SAP OTC_CONV_WRITE_DATA_UL_BCK Function Module for Save Underlying Data in Backup
OTC_CONV_WRITE_DATA_UL_BCK is a standard otc conv write data ul bck SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Save Underlying Data in Backup processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for otc conv write data ul bck FM, simply by entering the name OTC_CONV_WRITE_DATA_UL_BCK into the relevant SAP transaction such as SE37 or SE38.
Function Group: OTC_CONVERT
Program Name: SAPLOTC_CONVERT
Main Program: SAPLOTC_CONVERT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function OTC_CONV_WRITE_DATA_UL_BCK pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'OTC_CONV_WRITE_DATA_UL_BCK'"Save Underlying Data in Backup.
EXPORTING
IM_TAB_FLOW = "Flows
IM_TAB_CONDITION = "Conditions
IM_TAB_ACONDITION = "Alternativkonditionen
IM_EXECUTION_RATE = "Execution Rate of Migration Step
EXCEPTIONS
BACKUP_EXISTS = 1 BACKUP_SUCCESSFUL = 2
IMPORTING Parameters details for OTC_CONV_WRITE_DATA_UL_BCK
IM_TAB_FLOW - Flows
Data type: TRDE_TAB_IFHAPOOptional: No
Call by Reference: No ( called with pass by value option)
IM_TAB_CONDITION - Conditions
Data type: TRDE_TAB_IFINKOOptional: No
Call by Reference: No ( called with pass by value option)
IM_TAB_ACONDITION - Alternativkonditionen
Data type: TRDE_TAB_IAFINKOOptional: No
Call by Reference: No ( called with pass by value option)
IM_EXECUTION_RATE - Execution Rate of Migration Step
Data type: TPM_MIGRATION_EXECUTION_RATEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
BACKUP_EXISTS - Es existiert bereits ein Backup
Data type:Optional: No
Call by Reference: Yes
BACKUP_SUCCESSFUL - Backup erfolgreich
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OTC_CONV_WRITE_DATA_UL_BCK Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_im_tab_flow | TYPE TRDE_TAB_IFHAPO, " | |||
| lv_backup_exists | TYPE TRDE_TAB_IFHAPO, " | |||
| lv_im_tab_condition | TYPE TRDE_TAB_IFINKO, " | |||
| lv_backup_successful | TYPE TRDE_TAB_IFINKO, " | |||
| lv_im_tab_acondition | TYPE TRDE_TAB_IAFINKO, " | |||
| lv_im_execution_rate | TYPE TPM_MIGRATION_EXECUTION_RATE. " |
|   CALL FUNCTION 'OTC_CONV_WRITE_DATA_UL_BCK' "Save Underlying Data in Backup |
| EXPORTING | ||
| IM_TAB_FLOW | = lv_im_tab_flow | |
| IM_TAB_CONDITION | = lv_im_tab_condition | |
| IM_TAB_ACONDITION | = lv_im_tab_acondition | |
| IM_EXECUTION_RATE | = lv_im_execution_rate | |
| EXCEPTIONS | ||
| BACKUP_EXISTS = 1 | ||
| BACKUP_SUCCESSFUL = 2 | ||
| . " OTC_CONV_WRITE_DATA_UL_BCK | ||
ABAP code using 7.40 inline data declarations to call FM OTC_CONV_WRITE_DATA_UL_BCK
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects