SAP ISP_JSTSTRPRO_DBP_POSTE_DATA Function Module for IS-M/SD: Transfer Data for Table JSTSTRPRO
ISP_JSTSTRPRO_DBP_POSTE_DATA is a standard isp jststrpro dbp poste data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Transfer Data for Table JSTSTRPRO 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 isp jststrpro dbp poste data FM, simply by entering the name ISP_JSTSTRPRO_DBP_POSTE_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: JSS4
Program Name: SAPLJSS4
Main Program: SAPLJSS4
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_JSTSTRPRO_DBP_POSTE_DATA 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 'ISP_JSTSTRPRO_DBP_POSTE_DATA'"IS-M/SD: Transfer Data for Table JSTSTRPRO.
EXPORTING
DSETNAME = "Dataset name
LAND = "Country
IMPORTING
LOC_JSTKGSPRO = "
X_DBCODE_OTL = "
X_DBCODE_PLZ = "
X_DBCODE_PLZORT = "
X_DBCODE_POF = "
X_DBCODE_STR = "
LOC_JSTORTPRO = "
LOC_JSTOTLPRO = "
LOC_JSTPLZORT = "
LOC_JSTPLZPRO = "
LOC_JSTPOFPRO = "
LOC_JSTSTRPRO = "
X_DBCODE_KGS = "
X_DBCODE_ORT = "
EXCEPTIONS
CANT_READ_DATASET = 1 END_OF_DATASET = 2 UNKNOWN_DATA = 3
IMPORTING Parameters details for ISP_JSTSTRPRO_DBP_POSTE_DATA
DSETNAME - Dataset name
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
LAND - Country
Data type: T005-LAND1Optional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_JSTSTRPRO_DBP_POSTE_DATA
LOC_JSTKGSPRO -
Data type: JPOST_JSTKGSPROOptional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_OTL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_PLZ -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_PLZORT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_POF -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_STR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
LOC_JSTORTPRO -
Data type: JPOST_JSTORTPROOptional: No
Call by Reference: No ( called with pass by value option)
LOC_JSTOTLPRO -
Data type: JPOST_JSTOTLPROOptional: No
Call by Reference: No ( called with pass by value option)
LOC_JSTPLZORT -
Data type: JPOST_JSTPLZORTOptional: No
Call by Reference: No ( called with pass by value option)
LOC_JSTPLZPRO -
Data type: JPOST_JSTPLZPROOptional: No
Call by Reference: No ( called with pass by value option)
LOC_JSTPOFPRO -
Data type: JPOST_JSTPOFPROOptional: No
Call by Reference: No ( called with pass by value option)
LOC_JSTSTRPRO -
Data type: JPOST_JSTSTRPROOptional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_KGS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_DBCODE_ORT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CANT_READ_DATASET - Cannot be read
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
END_OF_DATASET -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
UNKNOWN_DATA -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_JSTSTRPRO_DBP_POSTE_DATA 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_dsetname | TYPE STRING, " | |||
| lv_loc_jstkgspro | TYPE JPOST_JSTKGSPRO, " | |||
| lv_cant_read_dataset | TYPE JPOST_JSTKGSPRO, " | |||
| lv_x_dbcode_otl | TYPE JPOST_JSTKGSPRO, " | |||
| lv_x_dbcode_plz | TYPE JPOST_JSTKGSPRO, " | |||
| lv_x_dbcode_plzort | TYPE JPOST_JSTKGSPRO, " | |||
| lv_x_dbcode_pof | TYPE JPOST_JSTKGSPRO, " | |||
| lv_x_dbcode_str | TYPE JPOST_JSTKGSPRO, " | |||
| lv_land | TYPE T005-LAND1, " | |||
| lv_loc_jstortpro | TYPE JPOST_JSTORTPRO, " | |||
| lv_end_of_dataset | TYPE JPOST_JSTORTPRO, " | |||
| lv_unknown_data | TYPE JPOST_JSTORTPRO, " | |||
| lv_loc_jstotlpro | TYPE JPOST_JSTOTLPRO, " | |||
| lv_loc_jstplzort | TYPE JPOST_JSTPLZORT, " | |||
| lv_loc_jstplzpro | TYPE JPOST_JSTPLZPRO, " | |||
| lv_loc_jstpofpro | TYPE JPOST_JSTPOFPRO, " | |||
| lv_loc_jststrpro | TYPE JPOST_JSTSTRPRO, " | |||
| lv_x_dbcode_kgs | TYPE JPOST_JSTSTRPRO, " | |||
| lv_x_dbcode_ort | TYPE JPOST_JSTSTRPRO. " |
|   CALL FUNCTION 'ISP_JSTSTRPRO_DBP_POSTE_DATA' "IS-M/SD: Transfer Data for Table JSTSTRPRO |
| EXPORTING | ||
| DSETNAME | = lv_dsetname | |
| LAND | = lv_land | |
| IMPORTING | ||
| LOC_JSTKGSPRO | = lv_loc_jstkgspro | |
| X_DBCODE_OTL | = lv_x_dbcode_otl | |
| X_DBCODE_PLZ | = lv_x_dbcode_plz | |
| X_DBCODE_PLZORT | = lv_x_dbcode_plzort | |
| X_DBCODE_POF | = lv_x_dbcode_pof | |
| X_DBCODE_STR | = lv_x_dbcode_str | |
| LOC_JSTORTPRO | = lv_loc_jstortpro | |
| LOC_JSTOTLPRO | = lv_loc_jstotlpro | |
| LOC_JSTPLZORT | = lv_loc_jstplzort | |
| LOC_JSTPLZPRO | = lv_loc_jstplzpro | |
| LOC_JSTPOFPRO | = lv_loc_jstpofpro | |
| LOC_JSTSTRPRO | = lv_loc_jststrpro | |
| X_DBCODE_KGS | = lv_x_dbcode_kgs | |
| X_DBCODE_ORT | = lv_x_dbcode_ort | |
| EXCEPTIONS | ||
| CANT_READ_DATASET = 1 | ||
| END_OF_DATASET = 2 | ||
| UNKNOWN_DATA = 3 | ||
| . " ISP_JSTSTRPRO_DBP_POSTE_DATA | ||
ABAP code using 7.40 inline data declarations to call FM ISP_JSTSTRPRO_DBP_POSTE_DATA
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 LAND1 FROM T005 INTO @DATA(ld_land). | ||||
Search for further information about these or an SAP related objects