SAP EXIT_SAPLJJG3_002 Function Module for IS-M/AM: Output: Fill Communication Structure in BP Hierarchy









EXIT_SAPLJJG3_002 is a standard exit sapljjg3 002 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/AM: Output: Fill Communication Structure in BP Hierarchy 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 exit sapljjg3 002 FM, simply by entering the name EXIT_SAPLJJG3_002 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLJJG3_002 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 'EXIT_SAPLJJG3_002'"IS-M/AM: Output: Fill Communication Structure in BP Hierarchy
CHANGING
KOMKBJG = "

TABLES
IN_XJJTKS = "
IN_YJJTKS = "
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
ISM_BP_HIERARCHY_PARENTS_GET IS-M/AM: BP Hierarchy: Read Trees for Selected Business Partners
ISM_TJHVA_HITYP_GET Determine Contract Hierarchy Type
ISPAM_GP_NAST_OBJKY_BUILD IS-M/AM: Create Object Key for Messages Using Message Control for BP Hier.
ISPAM_GP_NAST_OBJKY_DISSOLVE IS-M/AM: Remove Object Key for Messages Using Message Control for BP Hier.
ISP_BP_HIERARCHY_BUFFER IS-M/AM: Read and Buffer BP Hierarchy
ISP_BP_HIERARCHY_FILL_SELOPT IS-M/AM: Entries for All BPs Above/Below a Specific BP in Seltab
ISP_BP_HIERARCHY_GP_READ IS-M/AM: BP Hierarchy: Read Trees for Selected Business Partners
ISP_BP_HIERARCHY_JJTKS_UPDATE IS-M/AM: JJTKS Update
ISP_BP_HIERARCHY_MAIL_FLAG IS-M/AM: Contains Mail Status
ISP_BP_HIERARCHY_MAIL_GENERATE IS-M/AM: Generated List of Modified Hierarchy Entries in a Text Module
ISP_BP_HIERARCHY_MAIL_PREPARE IS-M/AM: Check Cust.for Hierarchy Change Notification and Prepare Notific.
ISP_BP_HIERARCHY_MAIL_SEND IS-M/AM: Triggers Mail for BP Hierarchy Change
ISP_BP_HIERARCHY_PATH_READ IS-M/AM: BP Hierarchy: Read Paths
ISP_BP_HIERARCHY_READ_PATH_DWN IS-M/AM: Internal: BP Hierarchy: Read Paths Top Down (End Nodes Direction)
ISP_BP_HIERARCHY_READ_PATH_UP IS-M/AM: Intrn.: BP Hierarchy: Read Paths Bottom Up (Root Nodes Direction)
ISP_BP_HIERARCHY_ROOT_GET IS-M/AM: Read Root Nodes
ISP_BP_HIERARCHY_ROOT_GET_INT IS-M/AM: INTERNAL: Read Root Nodes for a Path Row
ISP_BP_HIERARCHY_TREE_READ IS-M/AM: BP Hierarchy: Read Trees for a Business Partner
ISP_BP_HIERARCHY_TREE_READ_INT IS-M/AM: INTERNAL: BP Hierarchy: Read Trees for a Business Partner
KOMKBJG_FILL IS-M/AM: Fill Communication Structure Messages Application JG

CHANGING Parameters details for EXIT_SAPLJJG3_002

KOMKBJG -

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

TABLES Parameters details for EXIT_SAPLJJG3_002

IN_XJJTKS -

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

IN_YJJTKS -

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

Copy and paste ABAP code example for EXIT_SAPLJJG3_002 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_komkbjg  TYPE KOMKBJG, "   
lt_in_xjjtks  TYPE STANDARD TABLE OF RJJKSVB, "   
lt_in_yjjtks  TYPE STANDARD TABLE OF JJTKS. "   

  CALL FUNCTION 'EXIT_SAPLJJG3_002'  "IS-M/AM: Output: Fill Communication Structure in BP Hierarchy
    CHANGING
         KOMKBJG = lv_komkbjg
    TABLES
         IN_XJJTKS = lt_in_xjjtks
         IN_YJJTKS = lt_in_yjjtks
. " EXIT_SAPLJJG3_002




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLJJG3_002

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



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!