SAP /OSP/CL_TRVL_TRIP_SYNC OO Class - Trip Plan Sync
/OSP/CL_TRVL_TRIP_SYNC 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 /OSP/CL_TRVL_TRIP_SYNC 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 /OSP/CL_TRVL_TRIP_SYNC 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 |
| CREATE_PROPERTY_UPDATE_DTO | Method to construct the Property update dto | Private |
| CALL METHOD /osp/cl_trvl_trip_sync=>CREATE_PROPERTY_UPDATE_DTO...more details | ||
| CREATE_TRIP_OBJECT_DTO | Method to contruct the trip object dto | Private |
| CALL METHOD /osp/cl_trvl_trip_sync=>CREATE_TRIP_OBJECT_DTO...more details | ||
| GET_COMMON_DTO | Method to get common dto | Private |
| CALL METHOD /osp/cl_trvl_trip_sync=>GET_COMMON_DTO...more details | ||
| GET_PROCESSED_SYNC_DATA | Method to get the trip object | Public |
| CALL METHOD /osp/cl_trvl_trip_sync=>GET_PROCESSED_SYNC_DATA...more details | ||
| GET_TRIP_PLAN_DTO | Method to get the trip plan dto | Private |
| CALL METHOD /osp/cl_trvl_trip_sync=>GET_TRIP_PLAN_DTO...more details | ||
| GET_TRIP_REQUEST_DTO | Method to get the trip request dto | Private |
| CALL METHOD /osp/cl_trvl_trip_sync=>GET_TRIP_REQUEST_DTO...more details | ||
|
| ||
/OSP/CL_TRVL_TRIP_SYNC 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 |
| ERROR_LOG | Instance Attribute | Table with BAPI Return Information | LIKE BAPIRETTAB | Private | |
| GC_PRODUCT_NAME_DUET | Constant | 'DUET' | LIKE STRING | Private | |
| GC_SYNC_ACTION_PLAN_APROVED | Constant | 'P_APPROVED' | LIKE STRING | Public | |
| GC_SYNC_ACTION_PLAN_CANCELLED | Constant | 'P_CANCELED' | LIKE STRING | Public | |
| GC_SYNC_ACTION_PLAN_REJECT | Constant | 'P_REJECT' | LIKE STRING | Public | |
| GC_SYNC_ACTION_REQUEST_APROVED | Constant | 'R_APPROVED' | LIKE STRING | Public | |
| GC_SYNC_ACTION_REQUEST_REJECT | Constant | 'R_REJECT' | LIKE STRING | Public | |
| GC_SYNC_ACTION_TRIP_DELETED | Constant | Trip Delete Action | 'DELETED' | LIKE STRING | Public |
| GC_SYNC_ACTION_TRIP_UPDATE | Constant | 'UPDATE' | LIKE STRING | Public | |
| GC_TRIP_STATUS_APPROVED | Constant | '03' | LIKE STRING | Private | |
| GC_TRIP_STATUS_CANCELLED | Constant | '05' | LIKE STRING | Private | |
| GC_TRIP_STATUS_IN_PROCESS | Constant | '02' | LIKE STRING | Private | |
| GC_TRIP_STATUS_NOT_SENT | Constant | '01' | LIKE STRING | Private | |
| GC_TRIP_STATUS_REJECTED | Constant | '04' | LIKE STRING | Private | |
| PRODUCT_NAME | Instance Attribute | LIKE STRING | Public | ||
| PROPERTY_UPDATE_DTO | Instance Attribute | Proxy Structure (Generated) | LIKE /OSP/PROPERTY_UPDATE_DTO | Private | |
| TRIP_OBJECT | Instance Attribute | Proxy Structure (Generated) | LIKE /OSP/TRIP_OBJECT_DTO1 | Private | |
| TRIP_SYNC_DATA | Instance Attribute | Trip Sync Action, Status and Initiator Mapping | LIKE /OSP/S_TRIP_SYNC_STATUS | Private |
Links to Related Class(s)
/OSP/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects