cancel
Showing results for 
Search instead for 
Did you mean: 

How to display fields in list view in webdynpro configuration using Feeder Class

Former Member
0 Kudos

Hi experts,

I have to 7  fields in the table,these 7 fields to display in webdynpro using feeder class.

i have created one z class using  IF_FPM_GUIBB_LISTand implemented z method Get_employee.

then after i created configuration in webdynpro using feeder class,nothing to display in list.

please give me a solution.

Accepted Solutions (0)

Answers (2)

Answers (2)

AbhishekSharma
Active Contributor
0 Kudos

Hi Mayank,

I have posted a blog please have a look.

In very simple steps :

  1. You need to create one application
  2. You need to create one class which will have all your binding logic this class called Feeder class.
  3. You need to add structure in Public section of your class this will be used to define columns of your ATS UIBB in UIBB Configuration.
  4. Implement ATS List UIBB
  5. For your application you need to create Component Configuration
  6. Add LIST UIBB to it.
  7. After that configure that UIBB based on your requirement here structure will be available which you defined in Setp 2 above.
  8. Save.
  9. Come to Feeder Class and in GET_DATA write code to bind ATS, set CT_DATA with your Data.
  10. Do not forget to write EV_DATA_CHANGED = abap_true.

Setp 10 could be a reason if you are not seeing Data in your ATS LIST UIBB even if all you did is correct.

Side Note: Post which I have suggested above contains FORM UIBB Binding also, try to grab information which is of your Interest don't get confuse.

Hope this will Help.

Thanks-

Abhishek

Former Member
0 Kudos

Hi,

Refer this link which will give you idea on how to use List GUIBB.

Thanks

KH