Application Development 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: 

why do i get f4 on field in alv report ?

Former Member
0 Kudos

i done general (MM) alv report

And i display "MATKL" (Material Group) in one of the column.

I don't know why, but when i stand on the data , i get f4 option

, when i asking for f4 i get message, u201CNo input help is availableu201D.

In the definition, I didnu2019t put the matkl original data element ,

I just put char9, i didnu2019t ask/build and double click or

Event for it.

so why do i get f4 option in this column ?

thanks .

5 REPLIES 5

Former Member
0 Kudos

Hi,

CHAR9 itself is a domain in standard. Might be this would be a reason.

Delare your field as floows.

DATA field(9) type c.

This will help for sure.

Former Member
0 Kudos

It might be because you gave the reference fieldname and reference table name whicle populating the fieldcatalog for that field.

regards,

Advait

Former Member
0 Kudos

Hi,

Please check if you have statement:

at selection-screen on value-request for 'Your_Field'.

this will also generate a f4 help

Cheers

With Rewards

Former Member
0 Kudos

Hi,

You need to populate the given below field catalogue fields for the column for which you need F1 & F4 help on ALV Report,

Ref_fieldname

Ref_tabname

0 Kudos

Ajay said the correct answer...

chech this sample code:

CLEAR  wa_catalog.
  wa_catalog-fieldname = 'BANFN'.
  wa_catalog-ref_table = 'EBAN'.
  APPEND wa_catalog TO catalog.

Edited by: Sebastian Bustamante on Oct 6, 2008 9:40 PM