SAP LMSDC_BDT_ACTIVITY_GET Function Module for Returns the status of the integrated limit check









LMSDC_BDT_ACTIVITY_GET is a standard lmsdc bdt activity get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Returns the status of the integrated limit check 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 lmsdc bdt activity get FM, simply by entering the name LMSDC_BDT_ACTIVITY_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function LMSDC_BDT_ACTIVITY_GET 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 'LMSDC_BDT_ACTIVITY_GET'"Returns the status of the integrated limit check
EXPORTING
I_OBJAP = "Application Object for Integration of FO into CFM
I_AKTYP = "Activity category
I_COMPCODE = "Company Code
I_XDINP = "EDT

IMPORTING
E_SDC_XACTV = "Integrated Limit Check Active
.



IMPORTING Parameters details for LMSDC_BDT_ACTIVITY_GET

I_OBJAP - Application Object for Integration of FO into CFM

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

I_AKTYP - Activity category

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

I_COMPCODE - Company Code

Data type: BUKRS
Optional: No
Call by Reference: Yes

I_XDINP - EDT

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

EXPORTING Parameters details for LMSDC_BDT_ACTIVITY_GET

E_SDC_XACTV - Integrated Limit Check Active

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

Copy and paste ABAP code example for LMSDC_BDT_ACTIVITY_GET 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_objap  TYPE CFM_OBJAP, "   
lv_e_sdc_xactv  TYPE SDC_XACT, "   
lv_i_aktyp  TYPE TBZ0K-AKTYP, "   
lv_i_compcode  TYPE BUKRS, "   
lv_i_xdinp  TYPE BUS000FLDS-CHAR1. "   

  CALL FUNCTION 'LMSDC_BDT_ACTIVITY_GET'  "Returns the status of the integrated limit check
    EXPORTING
         I_OBJAP = lv_i_objap
         I_AKTYP = lv_i_aktyp
         I_COMPCODE = lv_i_compcode
         I_XDINP = lv_i_xdinp
    IMPORTING
         E_SDC_XACTV = lv_e_sdc_xactv
. " LMSDC_BDT_ACTIVITY_GET




ABAP code using 7.40 inline data declarations to call FM LMSDC_BDT_ACTIVITY_GET

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 AKTYP FROM TBZ0K INTO @DATA(ld_i_aktyp).
 
 
"SELECT single CHAR1 FROM BUS000FLDS INTO @DATA(ld_i_xdinp).
 


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!