cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic table display in list ATS feeder in FPM

former_member224404
Active Participant
0 Kudos


Hi Team,

I have a requirement to display a dynamic internal table. Is it possible to display it using list ATS feeder GUIBB in FPM? If possible, please provide me steps to achieve it.

Thanks,

Mainak

Accepted Solutions (0)

Answers (1)

Answers (1)

simon_hoeg
Advisor
Advisor
0 Kudos

Hello Mainak,

not really clear what you mean with "dynamic internal table", but normally you start at method GET_DEFINITION of IF_FPM_GUIBB_LIST with

  DATA:    lt_table TYPE << TABLE_TYPE >>.

   eo_field_catalog ?= cl_abap_tabledescr=>describe_by_data( lt_table ).

where eo_field_catalog is of type reference to cl_abap_tabledescr.

Regards,

Simon

former_member224404
Active Participant
0 Kudos

Dear Simon,

Thanks for your response. Dynamic internal table I mean to say is - the table structure is not known in design time. So I don't know how many columns will be there in my internal table to be shown in the list ATS . So I won't be able to design anything in FLUID in this case. Please let me know if you have any other question.

Thanks,

Mainak

simon_hoeg
Advisor
Advisor
0 Kudos

Hi Mainak,

in this case you have to work with a dynamic feeder class, i.e. implementing the interface IF_FPM_GUIBB_DYNAMIC_CONFIG and using the event FPM_INVALIDATE_UIBB.

Please start reading at the following Link

Regards,

Simon