SAP IF_CONDITION OO Class - Condition
IF_CONDITION 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 IF_CONDITION 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 IF_CONDITION 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 |
| ADD_CPE_FORMULA | Create CPE Formula Instance | Public |
| CALL METHOD if_condition=>ADD_CPE_FORMULA...more details | ||
| ADD_CPF_FORMULA | Public | |
| CALL METHOD if_condition=>ADD_CPF_FORMULA...more details | ||
| ADD_QTY_CONV_FACTOR | Public | |
| CALL METHOD if_condition=>ADD_QTY_CONV_FACTOR...more details | ||
| CPE_IS_USED | Public | |
| CALL METHOD if_condition=>CPE_IS_USED...more details | ||
| CPF_IS_ENABLED | Is CPF Enabled | Public |
| CALL METHOD if_condition=>CPF_IS_ENABLED...more details | ||
| CPF_IS_USED | Public | |
| CALL METHOD if_condition=>CPF_IS_USED...more details | ||
|
| ||
| DELETE_CPE_FORMULA | Delete CPE Formula Instance | Public |
| CALL METHOD if_condition=>DELETE_CPE_FORMULA...more details | ||
| DELETE_CPF_FORMULA | Public | |
| CALL METHOD if_condition=>DELETE_CPF_FORMULA...more details | ||
| FILL_OBJECT_DATA_GOS | Fill object key and type for GOS publishing | Public |
| CALL METHOD if_condition=>FILL_OBJECT_DATA_GOS...more details | ||
| GET_CPE_FORMULA | Read CPE Formula Instance | Public |
| CALL METHOD if_condition=>GET_CPE_FORMULA...more details | ||
| GET_CPF_FORMULA | Public | |
| CALL METHOD if_condition=>GET_CPF_FORMULA...more details | ||
| GET_DATA | Read Condition | Public |
| CALL METHOD if_condition=>GET_DATA...more details | ||
| GET_QTY_CONV_FACTORS | Public | |
| CALL METHOD if_condition=>GET_QTY_CONV_FACTORS...more details | ||
| PUBLISH_GOS | Publish generic object services | Public |
| CALL METHOD if_condition=>PUBLISH_GOS...more details | ||
| SET_CPF_USE_MANUALLY | set CPF use manually (when you lack a CPF GUID) | Public |
| CALL METHOD if_condition=>SET_CPF_USE_MANUALLY...more details | ||
| SET_DATA | Set Condition | Public |
| CALL METHOD if_condition=>SET_DATA...more details | ||
Events of Class IF_CONDITION
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... CPF_FORMULA_DELETED - Event is raised when CPF Formula is deletedLinks to Related Class(s)
IF_CONDI...Full list of available SAP object classes
Search for further information about these or an SAP related objects