The link: Dynamically Creating Buttons on UIBB Panel Area helps to add dynamic button on the UIBB panel area. As an extension will add button choice
Year: 2016
Dynamically Creating Buttons on UIBB Panel Area
The below link provides how to create a header list UIBB and an item list UIBB. FPM OVP Application -Integrating Header LIST UIBB and ITEM
Adding Button Choice on the UIBB Panel area
The link : Adding a Button on the UIBB Panel Area shows how to add a button on the UIBB panel area. For the application we
Adding a Button on the UIBB Panel Area
The below link provides how to create a header list UIBB and an item list UIBB. FPM OVP Application -Integrating Header LIST UIBB and ITEM
SAP ERP system details
During the initial SAP ERP system set up, the basis guy setup the system details like whether it is a CUSTOMER system or SAP system.
Instance Operator- NEW(Part 2)
Instance Operator NEW can be used to create Instance/object of any Class. CLASS lcl_demo DEFINITION. PUBLIC SECTION. METHODS : disp. ENDCLASS. CLASS lcl_demo IMPLEMENTATION. METHOD disp. WRITE ‘Hello’. ENDMETHOD. ENDCLASS. START-OF-SELECTION. * Old way to create an Object and calling the method DATA : obj1 TYPE REF TO lcl_demo. CREATE OBJECT obj1.