SAP ISU_INV_BBP_DEREG_SELECT_SOLL Function Module for Selection of BB Items from TEM_BBP_DEREG









ISU_INV_BBP_DEREG_SELECT_SOLL is a standard isu inv bbp dereg select soll SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Selection of BB Items from TEM_BBP_DEREG 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 isu inv bbp dereg select soll FM, simply by entering the name ISU_INV_BBP_DEREG_SELECT_SOLL into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_INV_BBP_DEREG_SELECT_SOLL 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 'ISU_INV_BBP_DEREG_SELECT_SOLL'"Selection of BB Items from TEM_BBP_DEREG
EXPORTING
X_SOLLDAT = "Selection date of a budget billing plan item
* X_WHERE = "

IMPORTING
YT_SOLL = "Table with Budget Billing Data
YT_EABP = "Header Data from Budget Billing Plan

TABLES
* XT_PORTION = "Structure: Select Options
XT_VKONTO = "Structure: Select Options

EXCEPTIONS
IU_IGNORE = 1 IU_ERROR = 2 SYSTEM_ERROR = 3
.



IMPORTING Parameters details for ISU_INV_BBP_DEREG_SELECT_SOLL

X_SOLLDAT - Selection date of a budget billing plan item

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

X_WHERE -

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

EXPORTING Parameters details for ISU_INV_BBP_DEREG_SELECT_SOLL

YT_SOLL - Table with Budget Billing Data

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

YT_EABP - Header Data from Budget Billing Plan

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

TABLES Parameters details for ISU_INV_BBP_DEREG_SELECT_SOLL

XT_PORTION - Structure: Select Options

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

XT_VKONTO - Structure: Select Options

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

EXCEPTIONS details

IU_IGNORE -

Data type:
Optional: No
Call by Reference: Yes

IU_ERROR -

Data type:
Optional: No
Call by Reference: Yes

SYSTEM_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISU_INV_BBP_DEREG_SELECT_SOLL 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_yt_soll  TYPE ISU25_BUDBILDATE_TABLE, "   
lv_iu_ignore  TYPE ISU25_BUDBILDATE_TABLE, "   
lv_x_solldat  TYPE ABSDAT_INV, "   
lt_xt_portion  TYPE STANDARD TABLE OF ISU_RANGES, "   
lv_x_where  TYPE RSDS_WHERE, "   
lv_yt_eabp  TYPE ISU25_EABP_TABLE, "   
lv_iu_error  TYPE ISU25_EABP_TABLE, "   
lt_xt_vkonto  TYPE STANDARD TABLE OF ISU_RANGES, "   
lv_system_error  TYPE ISU_RANGES. "   

  CALL FUNCTION 'ISU_INV_BBP_DEREG_SELECT_SOLL'  "Selection of BB Items from TEM_BBP_DEREG
    EXPORTING
         X_SOLLDAT = lv_x_solldat
         X_WHERE = lv_x_where
    IMPORTING
         YT_SOLL = lv_yt_soll
         YT_EABP = lv_yt_eabp
    TABLES
         XT_PORTION = lt_xt_portion
         XT_VKONTO = lt_xt_vkonto
    EXCEPTIONS
        IU_IGNORE = 1
        IU_ERROR = 2
        SYSTEM_ERROR = 3
. " ISU_INV_BBP_DEREG_SELECT_SOLL




ABAP code using 7.40 inline data declarations to call FM ISU_INV_BBP_DEREG_SELECT_SOLL

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!