SAP BPOB_NEUE_OBERFL Function Module for









BPOB_NEUE_OBERFL is a standard bpob neue oberfl 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 bpob neue oberfl FM, simply by entering the name BPOB_NEUE_OBERFL into the relevant SAP transaction such as SE37 or SE38.

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



Function BPOB_NEUE_OBERFL 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 'BPOB_NEUE_OBERFL'"
EXPORTING
* IV_PARTNER = "Business Partner Number
* IV_ROLESWITCH = "
* IV_AKTIVITYSWITCH = "
* IV_GROUP_SELECTION_ENABLED = "Sets the Indicator 'Partner Grouping Change Possible'
* IV_DIALOG_MODUS = "
* IV_ROLE_NEW = "
* IV_IN_NEW_MODE = "
* IV_ROLE = "BP Role
* IV_TYPE = "Business Partner Category
* IV_ACTIVITY = "Activity Category
* IV_MODUS = "Single-Character Indicator
* IV_GROUP = "Business Partner Grouping
* IV_SUB_HEADER_ID = "
* IV_BILD = "Screen
* IV_TAB_FIELD_VALUES = "Table Category with Line Structure BUS0FLDVAL

IMPORTING
EV_DATA_CHANGED = "Boolean Type, Do Not Use in Interfaces!
EV_PARTNER_HANDLE = "Business Partner Number

TABLES
* ET_RETURN = "

EXCEPTIONS
OTHERS = 1
.



IMPORTING Parameters details for BPOB_NEUE_OBERFL

IV_PARTNER - Business Partner Number

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

IV_ROLESWITCH -

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

IV_AKTIVITYSWITCH -

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

IV_GROUP_SELECTION_ENABLED - Sets the Indicator 'Partner Grouping Change Possible'

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

IV_DIALOG_MODUS -

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

IV_ROLE_NEW -

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

IV_IN_NEW_MODE -

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

IV_ROLE - BP Role

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

IV_TYPE - Business Partner Category

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

IV_ACTIVITY - Activity Category

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

IV_MODUS - Single-Character Indicator

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

IV_GROUP - Business Partner Grouping

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

IV_SUB_HEADER_ID -

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

IV_BILD - Screen

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

IV_TAB_FIELD_VALUES - Table Category with Line Structure BUS0FLDVAL

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

EXPORTING Parameters details for BPOB_NEUE_OBERFL

EV_DATA_CHANGED - Boolean Type, Do Not Use in Interfaces!

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

EV_PARTNER_HANDLE - Business Partner Number

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

TABLES Parameters details for BPOB_NEUE_OBERFL

ET_RETURN -

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

EXCEPTIONS details

OTHERS -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for BPOB_NEUE_OBERFL 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_others  TYPE STRING, "   
lt_et_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_iv_partner  TYPE BU_PARTNER, "   
lv_ev_data_changed  TYPE BU_BOOLEAN, "   
lv_iv_roleswitch  TYPE CHAR1, "   
lv_iv_aktivityswitch  TYPE CHAR1, "   
lv_iv_group_selection_enabled  TYPE CHAR1, "   
lv_iv_dialog_modus  TYPE CHAR1, "   
lv_iv_role_new  TYPE BU_PARTNERROLE, "   
lv_iv_in_new_mode  TYPE BU_BOOLEAN, "   
lv_iv_role  TYPE BU_ROLE, "   
lv_ev_partner_handle  TYPE BU_PARTNER, "   
lv_iv_type  TYPE BU_TYPE, "   
lv_iv_activity  TYPE BU_AKTYP, "   
lv_iv_modus  TYPE CHAR1, "   
lv_iv_group  TYPE BU_GROUP, "   
lv_iv_sub_header_id  TYPE BU_SUB_HEADER_ID, "   
lv_iv_bild  TYPE BU_DYNID, "   
lv_iv_tab_field_values  TYPE BU_BUS0FLDVAL_T. "   

  CALL FUNCTION 'BPOB_NEUE_OBERFL'  "
    EXPORTING
         IV_PARTNER = lv_iv_partner
         IV_ROLESWITCH = lv_iv_roleswitch
         IV_AKTIVITYSWITCH = lv_iv_aktivityswitch
         IV_GROUP_SELECTION_ENABLED = lv_iv_group_selection_enabled
         IV_DIALOG_MODUS = lv_iv_dialog_modus
         IV_ROLE_NEW = lv_iv_role_new
         IV_IN_NEW_MODE = lv_iv_in_new_mode
         IV_ROLE = lv_iv_role
         IV_TYPE = lv_iv_type
         IV_ACTIVITY = lv_iv_activity
         IV_MODUS = lv_iv_modus
         IV_GROUP = lv_iv_group
         IV_SUB_HEADER_ID = lv_iv_sub_header_id
         IV_BILD = lv_iv_bild
         IV_TAB_FIELD_VALUES = lv_iv_tab_field_values
    IMPORTING
         EV_DATA_CHANGED = lv_ev_data_changed
         EV_PARTNER_HANDLE = lv_ev_partner_handle
    TABLES
         ET_RETURN = lt_et_return
    EXCEPTIONS
        OTHERS = 1
. " BPOB_NEUE_OBERFL




ABAP code using 7.40 inline data declarations to call FM BPOB_NEUE_OBERFL

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!