SAP J_1S_GLO_MUT_SELECT_EV Function Module for IS-M/SD CH: Data Selection for Global Change - Retail Orders









J_1S_GLO_MUT_SELECT_EV is a standard j 1s glo mut select ev 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 CH: Data Selection for Global Change - Retail Orders 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 j 1s glo mut select ev FM, simply by entering the name J_1S_GLO_MUT_SELECT_EV into the relevant SAP transaction such as SE37 or SE38.

Function Group: J1SM
Program Name: SAPLJ1SM
Main Program: SAPLJ1SM
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function J_1S_GLO_MUT_SELECT_EV 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 'J_1S_GLO_MUT_SELECT_EV'"IS-M/SD CH: Data Selection for Global Change - Retail Orders
EXPORTING
LAND = "
V_GUELTIG = "
B_GUELTIG = "
EINTEILUNG = "
ART = "
* AGRPP = "

TABLES
T_JKAP = "
* T_LFART = "
* T_INPUT = "
T_JKEP = "
* T_DRUCKERZ = "
* T_PVA = "
* T_BEZTYP = "
* T_AART = "
* T_GPAG = "
* T_PLZNEU = "
* T_KANTON = "

EXCEPTIONS
NO_AUART = 1 ART_FALSE = 2
.



IMPORTING Parameters details for J_1S_GLO_MUT_SELECT_EV

LAND -

Data type: JKAP-LANDE
Optional: No
Call by Reference: No ( called with pass by value option)

V_GUELTIG -

Data type: JKEP-GUELTIGVON
Optional: No
Call by Reference: No ( called with pass by value option)

B_GUELTIG -

Data type: JKEP-GUELTIGBIS
Optional: No
Call by Reference: No ( called with pass by value option)

EINTEILUNG -

Data type: TJAK-ETVAR
Optional: No
Call by Reference: No ( called with pass by value option)

ART -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

AGRPP -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for J_1S_GLO_MUT_SELECT_EV

T_JKAP -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

T_LFART -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_INPUT -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_JKEP -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

T_DRUCKERZ -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_PVA -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_BEZTYP -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_AART -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_GPAG -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_PLZNEU -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

T_KANTON -

Data type:
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_AUART -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ART_FALSE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for J_1S_GLO_MUT_SELECT_EV 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_land  TYPE JKAP-LANDE, "   
lt_t_jkap  TYPE STANDARD TABLE OF JKAP, "   
lv_no_auart  TYPE JKAP, "   
lt_t_lfart  TYPE STANDARD TABLE OF JKAP, "   
lt_t_input  TYPE STANDARD TABLE OF JKAP, "   
lt_t_jkep  TYPE STANDARD TABLE OF JKAP, "   
lv_art_false  TYPE JKAP, "   
lv_v_gueltig  TYPE JKEP-GUELTIGVON, "   
lv_b_gueltig  TYPE JKEP-GUELTIGBIS, "   
lt_t_druckerz  TYPE STANDARD TABLE OF JKEP, "   
lt_t_pva  TYPE STANDARD TABLE OF JKEP, "   
lv_einteilung  TYPE TJAK-ETVAR, "   
lv_art  TYPE TJAK, "   
lt_t_beztyp  TYPE STANDARD TABLE OF TJAK, "   
lv_agrpp  TYPE TJAK, "   
lt_t_aart  TYPE STANDARD TABLE OF TJAK, "   
lt_t_gpag  TYPE STANDARD TABLE OF TJAK, "   
lt_t_plzneu  TYPE STANDARD TABLE OF TJAK, "   
lt_t_kanton  TYPE STANDARD TABLE OF TJAK. "   

  CALL FUNCTION 'J_1S_GLO_MUT_SELECT_EV'  "IS-M/SD CH: Data Selection for Global Change - Retail Orders
    EXPORTING
         LAND = lv_land
         V_GUELTIG = lv_v_gueltig
         B_GUELTIG = lv_b_gueltig
         EINTEILUNG = lv_einteilung
         ART = lv_art
         AGRPP = lv_agrpp
    TABLES
         T_JKAP = lt_t_jkap
         T_LFART = lt_t_lfart
         T_INPUT = lt_t_input
         T_JKEP = lt_t_jkep
         T_DRUCKERZ = lt_t_druckerz
         T_PVA = lt_t_pva
         T_BEZTYP = lt_t_beztyp
         T_AART = lt_t_aart
         T_GPAG = lt_t_gpag
         T_PLZNEU = lt_t_plzneu
         T_KANTON = lt_t_kanton
    EXCEPTIONS
        NO_AUART = 1
        ART_FALSE = 2
. " J_1S_GLO_MUT_SELECT_EV




ABAP code using 7.40 inline data declarations to call FM J_1S_GLO_MUT_SELECT_EV

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 LANDE FROM JKAP INTO @DATA(ld_land).
 
 
 
 
 
 
 
"SELECT single GUELTIGVON FROM JKEP INTO @DATA(ld_v_gueltig).
 
"SELECT single GUELTIGBIS FROM JKEP INTO @DATA(ld_b_gueltig).
 
 
 
"SELECT single ETVAR FROM TJAK INTO @DATA(ld_einteilung).
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!