Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

field catalog

Former Member
0 Likes
439

Hi ,

i have creadted one field catalog using " REUSE_ALV_FIELDCATALOG_MERGE " dynamicaaly , now

for that fieldcatalog i have to add some more additional fields so how can i added to that fieldcatalog ,

pls help me

THX

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
418

Hi Chaaya sen,

Declare a work area for the fieldcat say suppose wa_fieldcat.

Then do the following

wa_fieldcat-fieldname = 'TEST' "Input your field name here.

Now append the wa_fieldcat to the fieldcat internal table.

Hope this helps you.

Thanks,

Arun

Hi ,

i have creadted one field catalog using " REUSE_ALV_FIELDCATALOG_MERGE " dynamicaaly , now

for that fieldcatalog i have to add some more additional fields so how can i added to that fieldcatalog ,

pls help me

THX

2 REPLIES 2
Read only

Former Member
0 Likes
418

Hi,

After you get the field catalog, you can append or delete entries from that table.

Create a work area similar to the that table and do the modifications.

Reward if helpful.

Read only

Former Member
0 Likes
419

Hi Chaaya sen,

Declare a work area for the fieldcat say suppose wa_fieldcat.

Then do the following

wa_fieldcat-fieldname = 'TEST' "Input your field name here.

Now append the wa_fieldcat to the fieldcat internal table.

Hope this helps you.

Thanks,

Arun