SAP FT_BASIC_OBJECTS_UPDATE_PREP Function Module for NOTRANSL: Außenhandel: Kommunikation: Fortschreibung: UPDATE AH-Basisobjek
FT_BASIC_OBJECTS_UPDATE_PREP is a standard ft basic objects update prep SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Außenhandel: Kommunikation: Fortschreibung: UPDATE AH-Basisobjek 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 ft basic objects update prep FM, simply by entering the name FT_BASIC_OBJECTS_UPDATE_PREP into the relevant SAP transaction such as SE37 or SE38.
Function Group: VFUU
Program Name: SAPLVFUU
Main Program:
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FT_BASIC_OBJECTS_UPDATE_PREP 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 'FT_BASIC_OBJECTS_UPDATE_PREP'"NOTRANSL: Außenhandel: Kommunikation: Fortschreibung: UPDATE AH-Basisobjek.
EXPORTING
* I_NAME_OBJECT = ' ' "
* I_NAME_OBJECT_TEXT = ' ' "
* I_SEGMENT_OBJECT = ' ' "
* I_OBJECT_TYPE = ' ' "
* I_OBJECTS_ENQUEUE_DEQUEUE = 'X' "
* I_INITIAL_LOAD = ' ' "
* I_T_RANGE_FIRST_KEY = "
* I_T_DB_OBJECTS_VB = "
* I_T_DB_OBJECTS_TEXT_VB = "
EXCEPTIONS
PROCESS_ERROR_OCCURRED = 1
IMPORTING Parameters details for FT_BASIC_OBJECTS_UPDATE_PREP
I_NAME_OBJECT -
Data type: DD02D-TABNAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_NAME_OBJECT_TEXT -
Data type: DD02D-TABNAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SEGMENT_OBJECT -
Data type: VFUL_R_DDIC_INFO-OBJECTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_OBJECT_TYPE -
Data type: VFUL_R_OBJCT_ATOM-CONV_OBJCTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_OBJECTS_ENQUEUE_DEQUEUE -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_INITIAL_LOAD -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_T_RANGE_FIRST_KEY -
Data type: VFUL_RANGE_KEYOBOptional: Yes
Call by Reference: Yes
I_T_DB_OBJECTS_VB -
Data type: VFUL_T_DB_OBJECTS_VBOptional: Yes
Call by Reference: Yes
I_T_DB_OBJECTS_TEXT_VB -
Data type: VFUL_T_DB_OBJECTS_TEXT_VBOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
PROCESS_ERROR_OCCURRED - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FT_BASIC_OBJECTS_UPDATE_PREP 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_i_name_object | TYPE DD02D-TABNAME, " SPACE | |||
| lv_process_error_occurred | TYPE DD02D, " | |||
| lv_i_name_object_text | TYPE DD02D-TABNAME, " SPACE | |||
| lv_i_segment_object | TYPE VFUL_R_DDIC_INFO-OBJECT, " SPACE | |||
| lv_i_object_type | TYPE VFUL_R_OBJCT_ATOM-CONV_OBJCT, " SPACE | |||
| lv_i_objects_enqueue_dequeue | TYPE C, " 'X' | |||
| lv_i_initial_load | TYPE C, " SPACE | |||
| lv_i_t_range_first_key | TYPE VFUL_RANGE_KEYOB, " | |||
| lv_i_t_db_objects_vb | TYPE VFUL_T_DB_OBJECTS_VB, " | |||
| lv_i_t_db_objects_text_vb | TYPE VFUL_T_DB_OBJECTS_TEXT_VB. " |
|   CALL FUNCTION 'FT_BASIC_OBJECTS_UPDATE_PREP' "NOTRANSL: Außenhandel: Kommunikation: Fortschreibung: UPDATE AH-Basisobjek |
| EXPORTING | ||
| I_NAME_OBJECT | = lv_i_name_object | |
| I_NAME_OBJECT_TEXT | = lv_i_name_object_text | |
| I_SEGMENT_OBJECT | = lv_i_segment_object | |
| I_OBJECT_TYPE | = lv_i_object_type | |
| I_OBJECTS_ENQUEUE_DEQUEUE | = lv_i_objects_enqueue_dequeue | |
| I_INITIAL_LOAD | = lv_i_initial_load | |
| I_T_RANGE_FIRST_KEY | = lv_i_t_range_first_key | |
| I_T_DB_OBJECTS_VB | = lv_i_t_db_objects_vb | |
| I_T_DB_OBJECTS_TEXT_VB | = lv_i_t_db_objects_text_vb | |
| EXCEPTIONS | ||
| PROCESS_ERROR_OCCURRED = 1 | ||
| . " FT_BASIC_OBJECTS_UPDATE_PREP | ||
ABAP code using 7.40 inline data declarations to call FM FT_BASIC_OBJECTS_UPDATE_PREP
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.| "SELECT single TABNAME FROM DD02D INTO @DATA(ld_i_name_object). | ||||
| DATA(ld_i_name_object) | = ' '. | |||
| "SELECT single TABNAME FROM DD02D INTO @DATA(ld_i_name_object_text). | ||||
| DATA(ld_i_name_object_text) | = ' '. | |||
| "SELECT single OBJECT FROM VFUL_R_DDIC_INFO INTO @DATA(ld_i_segment_object). | ||||
| DATA(ld_i_segment_object) | = ' '. | |||
| "SELECT single CONV_OBJCT FROM VFUL_R_OBJCT_ATOM INTO @DATA(ld_i_object_type). | ||||
| DATA(ld_i_object_type) | = ' '. | |||
| DATA(ld_i_objects_enqueue_dequeue) | = 'X'. | |||
| DATA(ld_i_initial_load) | = ' '. | |||
Search for further information about these or an SAP related objects