FPM OVP Application- Form Repeater UIBB


 let’s create a FORM Repeater UIBB feeder class in Tx- SE24.

Implement the interfaces : IF_FPM_GUIBB and IF_FPM_GUIBB_FORM_REPEATER.

1

Activate all the methods and implement the below two methods : GET_DEFINITION & GET_DATA.

2

Put the below code in GET_DEFINITION method.3

    DATAlr_strucdescr TYPE REF TO  cl_abap_structdescr,
                lt_fields     TYPE         ddfields,
                ls_fields     TYPE LINE OF ddfields.

    eo_field_catalog ?=  cl_abap_tabledescr=>describe_by_name‘SPFLI_TAB’ ).
    lr_strucdescr    ?=  eo_field_catalog->get_table_line_type).
    lt_fields lr_strucdescr->get_ddic_field_listp_including_substructres abap_true ).

    LOOP AT lt_fields INTO ls_fields.
      APPEND INITIAL LINE TO et_field_description ASSIGNING FIELDSYMBOL(<fs_field_descr>).
      <fs_field_descr>name ls_fieldsfieldname.
      CASE <fs_field_descr>name.
        WHEN ‘CARRID’.
          <fs_field_descr>allow_grouping abap_true.
          SELECT
            carrid AS value
            carrname AS text
            FROM scarr INTO CORRESPONDING FIELDS OF TABLE <fs_field_descr>fixed_values.
      ENDCASE.
    ENDLOOP.


 

Put the below code in GET_DATA method.

4

   CASE IO_EVENT->mv_event_id.
     WHEN ‘FPM_START’.
      SELECT FROM SPFLI INTO TABLE GT_SPFLI.
        CT_DATA GT_SPFLI.
        EV_DATA_CHANGED ABAP_TRUE.
     WHEN OTHERS.
   ENDCASE.


 

Create an attribute.

5

Create a component configuration of the – FPM_FORM_REPEATER_UIBB .

6

Provide the configuration name. Save in the desired package.

7

Provide the feeder class name.

8

In general settings choose the SEPARATOR, Group Field.

Add necessary fields of the SPFLI table as element. Save the UIBB configuration.

9

rearrange the fields in the preview section as desired.

21.jpg


 

Now we have to create an OVP Application, application configuration and ovp component configuration. So execute Tx- FPM_WB.

10

Choose the highlighted link.

11

Provide application name, floor plan as – overview page and application configuration name and floor plan configuration name. Click Next button.

12

Save it.

13

Choose Edit Configuration link.

14

Provide title and choose FORM REPEATER COMPONENT.

15

Provide form repeater component name.

16

Save and then test the application.

17

Test the application.

18

So here we have the application looks like as below:

19

20


 

 

One comment

  1. Hi Could you please publish any reference scenario ( Form with List ) Repeater.
    I mean in one composite UIBb form and list will be there. User want to fill multiple composite s.

    Advance many thanks

    Like

Leave a Reply