SAP LXE_OBJ_OBJECT_DISTRIBUTE Function Module for









LXE_OBJ_OBJECT_DISTRIBUTE is a standard lxe obj object distribute SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 lxe obj object distribute FM, simply by entering the name LXE_OBJ_OBJECT_DISTRIBUTE into the relevant SAP transaction such as SE37 or SE38.

Function Group: LXE_OBJ_WL
Program Name: SAPLLXE_OBJ_WL
Main Program: SAPLLXE_OBJ_WL
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function LXE_OBJ_OBJECT_DISTRIBUTE 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 'LXE_OBJ_OBJECT_DISTRIBUTE'"
EXPORTING
T_LANG = "ISO Language ID
* I_USE_INPUT = '' "
* I_DOMANAM = "
* I_USE_PP_BUFFER = ABAP_FALSE "Use PP Buffer
S_LANG = "ISO Language ID
CUSTMNR = "Customer Number
OBJTYPE = "Type of Translation Object
OBJNAME = "Name of Translation Object
MIN_STATUS = "Default Status
M_MIN_STATUS = "Default Status
* T_MIN_STATUS = 0 "Default Status
* BYPASSING = 'X' "

IMPORTING
PSTATUS = "Process Status
O_LANG = "ISO Language ID
TOT_CNT = "Natural Number
DIS_CNT = "Natural Number
DIS_CNT_SYSTEM = "
DIS_CNT_DOMAIN = "

CHANGING
* CT_TEXTS = "

TABLES
* LT_CONDITIONS = "
* LT_WHERECLAUS = "
.



IMPORTING Parameters details for LXE_OBJ_OBJECT_DISTRIBUTE

T_LANG - ISO Language ID

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

I_USE_INPUT -

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

I_DOMANAM -

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

I_USE_PP_BUFFER - Use PP Buffer

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

S_LANG - ISO Language ID

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

CUSTMNR - Customer Number

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

OBJTYPE - Type of Translation Object

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

OBJNAME - Name of Translation Object

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

MIN_STATUS - Default Status

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

M_MIN_STATUS - Default Status

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

T_MIN_STATUS - Default Status

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

BYPASSING -

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

EXPORTING Parameters details for LXE_OBJ_OBJECT_DISTRIBUTE

PSTATUS - Process Status

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

O_LANG - ISO Language ID

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

TOT_CNT - Natural Number

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

DIS_CNT - Natural Number

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

DIS_CNT_SYSTEM -

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

DIS_CNT_DOMAIN -

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

CHANGING Parameters details for LXE_OBJ_OBJECT_DISTRIBUTE

CT_TEXTS -

Data type: LXE_TT_PCX_S1
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for LXE_OBJ_OBJECT_DISTRIBUTE

LT_CONDITIONS -

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

LT_WHERECLAUS -

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

Copy and paste ABAP code example for LXE_OBJ_OBJECT_DISTRIBUTE 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_t_lang  TYPE LXEISOLANG, "   
lv_pstatus  TYPE LXESTATPRC, "   
lv_ct_texts  TYPE LXE_TT_PCX_S1, "   
lt_lt_conditions  TYPE STANDARD TABLE OF LXE_TABLE_SEL_KEY, "   
lv_i_use_input  TYPE LXEBOOL, "   ''
lv_i_domanam  TYPE LXEDOMANAM, "   
lv_i_use_pp_buffer  TYPE LXEBOOL, "   ABAP_FALSE
lv_o_lang  TYPE LXEISOLANG, "   
lv_s_lang  TYPE LXEISOLANG, "   
lt_lt_whereclaus  TYPE STANDARD TABLE OF RSDSWHERE, "   
lv_custmnr  TYPE LXECUSTMNR, "   
lv_tot_cnt  TYPE INT4, "   
lv_dis_cnt  TYPE INT4, "   
lv_objtype  TYPE LXEOBJTYPE, "   
lv_objname  TYPE LXEOBJNAME, "   
lv_dis_cnt_system  TYPE INT4, "   
lv_min_status  TYPE LXEPP_STAT, "   
lv_dis_cnt_domain  TYPE INT4, "   
lv_m_min_status  TYPE LXEPP_STAT, "   
lv_t_min_status  TYPE LXEPP_STAT, "   0
lv_bypassing  TYPE CHAR1. "   'X'

  CALL FUNCTION 'LXE_OBJ_OBJECT_DISTRIBUTE'  "
    EXPORTING
         T_LANG = lv_t_lang
         I_USE_INPUT = lv_i_use_input
         I_DOMANAM = lv_i_domanam
         I_USE_PP_BUFFER = lv_i_use_pp_buffer
         S_LANG = lv_s_lang
         CUSTMNR = lv_custmnr
         OBJTYPE = lv_objtype
         OBJNAME = lv_objname
         MIN_STATUS = lv_min_status
         M_MIN_STATUS = lv_m_min_status
         T_MIN_STATUS = lv_t_min_status
         BYPASSING = lv_bypassing
    IMPORTING
         PSTATUS = lv_pstatus
         O_LANG = lv_o_lang
         TOT_CNT = lv_tot_cnt
         DIS_CNT = lv_dis_cnt
         DIS_CNT_SYSTEM = lv_dis_cnt_system
         DIS_CNT_DOMAIN = lv_dis_cnt_domain
    CHANGING
         CT_TEXTS = lv_ct_texts
    TABLES
         LT_CONDITIONS = lt_lt_conditions
         LT_WHERECLAUS = lt_lt_whereclaus
. " LXE_OBJ_OBJECT_DISTRIBUTE




ABAP code using 7.40 inline data declarations to call FM LXE_OBJ_OBJECT_DISTRIBUTE

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.

 
 
 
 
DATA(ld_i_use_input) = ''.
 
 
DATA(ld_i_use_pp_buffer) = ABAP_FALSE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
DATA(ld_bypassing) = 'X'.
 


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!