SAP BBP_COMMITMENT_ITEM_GETLIST Function Module for NOTRANSL: Liste Finanzpositionen









BBP_COMMITMENT_ITEM_GETLIST is a standard bbp commitment item getlist SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Liste Finanzpositionen 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 bbp commitment item getlist FM, simply by entering the name BBP_COMMITMENT_ITEM_GETLIST into the relevant SAP transaction such as SE37 or SE38.

Function Group: BBPC
Program Name: SAPLBBPC
Main Program: SAPLBBPC
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BBP_COMMITMENT_ITEM_GETLIST 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 'BBP_COMMITMENT_ITEM_GETLIST'"NOTRANSL: Liste Finanzpositionen
EXPORTING
* FM_AREA = "Controlling Area
* VALID_TO = "FM: Valid to date
* CMMT_ITEM = "Commitment Item
* LANGUAGE = SY-LANGU "ABAP System Field: Language Key of Text Environment

IMPORTING
RETURN = "Structure with Return Information

TABLES
* COMMITMENT_ITEM_LIST = "List of Selected Orders
.



IMPORTING Parameters details for BBP_COMMITMENT_ITEM_GETLIST

FM_AREA - Controlling Area

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

VALID_TO - FM: Valid to date

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

CMMT_ITEM - Commitment Item

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

LANGUAGE - ABAP System Field: Language Key of Text Environment

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

EXPORTING Parameters details for BBP_COMMITMENT_ITEM_GETLIST

RETURN - Structure with Return Information

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

TABLES Parameters details for BBP_COMMITMENT_ITEM_GETLIST

COMMITMENT_ITEM_LIST - List of Selected Orders

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

Copy and paste ABAP code example for BBP_COMMITMENT_ITEM_GETLIST 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_return  TYPE BAPIRETURN, "   
lv_fm_area  TYPE BBP_FMCMMT-FM_AREA, "   
lt_commitment_item_list  TYPE STANDARD TABLE OF BBP_FMCMMT, "   
lv_valid_to  TYPE BBP_FMCMMT-VALID_TO, "   
lv_cmmt_item  TYPE BBP_FMCMMT-CMMT_ITEM, "   
lv_language  TYPE SY-LANGU. "   SY-LANGU

  CALL FUNCTION 'BBP_COMMITMENT_ITEM_GETLIST'  "NOTRANSL: Liste Finanzpositionen
    EXPORTING
         FM_AREA = lv_fm_area
         VALID_TO = lv_valid_to
         CMMT_ITEM = lv_cmmt_item
         LANGUAGE = lv_language
    IMPORTING
         RETURN = lv_return
    TABLES
         COMMITMENT_ITEM_LIST = lt_commitment_item_list
. " BBP_COMMITMENT_ITEM_GETLIST




ABAP code using 7.40 inline data declarations to call FM BBP_COMMITMENT_ITEM_GETLIST

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 FM_AREA FROM BBP_FMCMMT INTO @DATA(ld_fm_area).
 
 
"SELECT single VALID_TO FROM BBP_FMCMMT INTO @DATA(ld_valid_to).
 
"SELECT single CMMT_ITEM FROM BBP_FMCMMT INTO @DATA(ld_cmmt_item).
 
"SELECT single LANGU FROM SY INTO @DATA(ld_language).
DATA(ld_language) = SY-LANGU.
 


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!