SAP FT_BASIC_OBJECTS_UPDATE Function Module for NOTRANSL: Außenhandel: Kommunikation: Fortschreibung: UPDATE AH-Basisobjek
FT_BASIC_OBJECTS_UPDATE is a standard ft basic objects update 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 FM, simply by entering the name FT_BASIC_OBJECTS_UPDATE 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 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'"NOTRANSL: Außenhandel: Kommunikation: Fortschreibung: UPDATE AH-Basisobjek.
EXPORTING
* I_NAME_OBJECT = ' ' "
* I_NAME_OBJECT_TEXT = ' ' "
* I_T_XOBJECTS = "
* I_T_YOBJECTS = "
* I_T_XOBJECTS_TEXT = "
* I_T_YOBJECTS_TEXT = "
IMPORTING Parameters details for FT_BASIC_OBJECTS_UPDATE
I_NAME_OBJECT -
Data type: DD02D-TABNAMEDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_NAME_OBJECT_TEXT -
Data type: DD02D-TABNAMEDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_T_XOBJECTS -
Data type: VFUL_T_DB_OBJECTS_VBOptional: Yes
Call by Reference: Yes
I_T_YOBJECTS -
Data type: VFUL_T_DB_OBJECTS_VBOptional: Yes
Call by Reference: Yes
I_T_XOBJECTS_TEXT -
Data type: VFUL_T_DB_OBJECTS_TEXT_VBOptional: Yes
Call by Reference: Yes
I_T_YOBJECTS_TEXT -
Data type: VFUL_T_DB_OBJECTS_TEXT_VBOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FT_BASIC_OBJECTS_UPDATE 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, " ' ' | |||
| lv_i_name_object_text | TYPE DD02D-TABNAME, " ' ' | |||
| lv_i_t_xobjects | TYPE VFUL_T_DB_OBJECTS_VB, " | |||
| lv_i_t_yobjects | TYPE VFUL_T_DB_OBJECTS_VB, " | |||
| lv_i_t_xobjects_text | TYPE VFUL_T_DB_OBJECTS_TEXT_VB, " | |||
| lv_i_t_yobjects_text | TYPE VFUL_T_DB_OBJECTS_TEXT_VB. " |
|   CALL FUNCTION 'FT_BASIC_OBJECTS_UPDATE' "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_T_XOBJECTS | = lv_i_t_xobjects | |
| I_T_YOBJECTS | = lv_i_t_yobjects | |
| I_T_XOBJECTS_TEXT | = lv_i_t_xobjects_text | |
| I_T_YOBJECTS_TEXT | = lv_i_t_yobjects_text | |
| . " FT_BASIC_OBJECTS_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM FT_BASIC_OBJECTS_UPDATE
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) | = ' '. | |||
Search for further information about these or an SAP related objects