SAP CL_CACS_PERIOD OO Class - Handling of Periods
CL_CACS_PERIOD is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_CACS_PERIOD including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of CL_CACS_PERIOD SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| BUFFER_ALL_PERIOD_RULES | Buffer Period Rules | Private |
| CALL METHOD cl_cacs_period=>BUFFER_ALL_PERIOD_RULES...more details | ||
| CALC_NEXT_DATE | Determine Next Date | Private |
| CALL METHOD cl_cacs_period=>CALC_NEXT_DATE...more details | ||
| CALC_NEXT_DATES | Add Value to a Date | Private |
| CALL METHOD cl_cacs_period=>CALC_NEXT_DATES...more details | ||
| CALC_NEXT_TIME | Determine Next Date | Private |
| CALL METHOD cl_cacs_period=>CALC_NEXT_TIME...more details | ||
| DETERMINE_PERIOD_END_DATE | Determine Period End | Public |
| CALL METHOD cl_cacs_period=>DETERMINE_PERIOD_END_DATE...more details | ||
| FILTER_PERIODS_FOR_BUSI_DATES | Filter Periods for a Date Range | Public |
| CALL METHOD cl_cacs_period=>FILTER_PERIODS_FOR_BUSI_DATES...more details | ||
|
| ||
| GET_FACTORY_CALENDAR | Read Dates from Factory Calendar | Private |
| CALL METHOD cl_cacs_period=>GET_FACTORY_CALENDAR...more details | ||
| GET_LAST_UPDATED_PERIOD | Determine Last Updated Period | Public |
| CALL METHOD cl_cacs_period=>GET_LAST_UPDATED_PERIOD...more details | ||
| GET_LAST_UPDATED_PERIOD_KEY | Determine Last Updated Period | Public |
| CALL METHOD cl_cacs_period=>GET_LAST_UPDATED_PERIOD_KEY...more details | ||
| GET_NEXT_PERIOD_BEGIN_DATE | Determination of Next Period Start Date | Public |
| CALL METHOD cl_cacs_period=>GET_NEXT_PERIOD_BEGIN_DATE...more details | ||
| GET_NEXT_PRD_BY_PREV_PRD | Determine Next Period on Basis of Previous Period | Public |
| CALL METHOD cl_cacs_period=>GET_NEXT_PRD_BY_PREV_PRD...more details | ||
| GET_NUMBER_OF_DAYS_PER_MONTH | Determine Next Date | Private |
| CALL METHOD cl_cacs_period=>GET_NUMBER_OF_DAYS_PER_MONTH...more details | ||
| GET_PERIODS_FOR_DATE_RANGE | Determine Periods for a Date Range | Public |
| CALL METHOD cl_cacs_period=>GET_PERIODS_FOR_DATE_RANGE...more details | ||
| GET_PERIODS_FOR_RULE_BY_RANGE | Determine Periods for a Period Range | Public |
| CALL METHOD cl_cacs_period=>GET_PERIODS_FOR_RULE_BY_RANGE...more details | ||
| GET_PERIODS_FOR_RULE_BY_SEL | Determine Periods for a Period Range | Public |
| CALL METHOD cl_cacs_period=>GET_PERIODS_FOR_RULE_BY_SEL...more details | ||
| GET_PERIODS_FOR_RULE_VERSION | Read Periods for Period Rule Version | Public |
| CALL METHOD cl_cacs_period=>GET_PERIODS_FOR_RULE_VERSION...more details | ||
| GET_PERIOD_ATTR_FOR_DATE_RANGE | Determine Periods (with Attributes) for a Date Range | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_ATTR_FOR_DATE_RANGE...more details | ||
| GET_PERIOD_FOR_DATE | Determine Period for Date | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_FOR_DATE...more details | ||
| GET_PERIOD_FOR_DOCUMENT | Read Period for Document Header For Purposes of Resetting | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_FOR_DOCUMENT...more details | ||
| GET_PERIOD_RULE | Determine Period Rules | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_RULE...more details | ||
| GET_PERIOD_RULES | Determine Period Rules | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_RULES...more details | ||
| GET_PERIOD_RULE_FOR_VERSION | Determine Period Rules | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_RULE_FOR_VERSION...more details | ||
| GET_PERIOD_VERSION | Determination of Period Version | Public |
| CALL METHOD cl_cacs_period=>GET_PERIOD_VERSION...more details | ||
| GET_SINGLE_PERIOD_ATTRIBUTES | Determine Attributes of Period | Public |
| CALL METHOD cl_cacs_period=>GET_SINGLE_PERIOD_ATTRIBUTES...more details | ||
CL_CACS_PERIOD attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| GT_PERRULE_BUFFER | Static Attribute | Buffer Table Period Rules | LIKE PERIOD_RULE_HASH | Private | |
| GV_BUFFERSTATE_ACTIVE | Static Attribute | Versions in Buffer Table | LIKE BUFFERSTATE_ACTIVE | Private | |
| GV_BUFFERSTATE_APPL | Static Attribute | Period Rules Belong to This Application | LIKE BUFFERSTATE_APPL | Private | |
| SO_PRD_DB_ITF | Static Attribute | Periods: Database Interface | LIKE CL_CACS_PRD_DB_ITF | Protected |
Links to Related Class(s)
CL_CACS_...Full list of available SAP object classes
Search for further information about these or an SAP related objects