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: 

input help for SELECT-OPTIONS

Former Member
0 Kudos

Hi Experts,

i have created searchhelp(using Matchcode object) for my select-options. everything is ok while creating, but problem is after executing report. if select that input gelp button it is displaying msg like search help is empty.

error is like: No input help available (search help GLTM is emptz).

my statement is.

SELECT-OPTIONS: so_racct FOR glt0-racct MATCHCODE OBJECT GLTM,

so why it is empty? actually there is a values in glt0 table.

could anyone help on this.

Thanks in advance,

sudharsan.

5 REPLIES 5

gopi_narendra
Active Contributor
0 Kudos

Instead you can use

TABLES : ska1.
SELECT-OPTIONS: so_racct FOR ska1-saknr.

Regards

Gopi

0 Kudos

Hi gopi,

Thank u for ur quickly, but in my report i am using GLT0 table, i need to use GLT0 tab only as per my requirement.

so what can i do?

Regards,

sudharsan.

0 Kudos

Hi,

Have you checked if match-code object GLTM present in the system.

Just see how to create match code object (Search help)

http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm

Regards,

Atish

Former Member
0 Kudos

hi sudharsan,

I just checked f4 help for that field(racct) in table (glt0) in se11 and se16. it shows 'no input help is available'.

The reason is 'Input help implemented with check table' is not available for that field.you can see that in SE11 ---> glto --> dispaly --> Entry help/check (in tab strip) for that field.

so it is not possible to give input help for that field.

Thanks,

Senthil kumar.

0 Kudos

You can change your select option declaration to this one

SELECT-OPTIONS: so_racct FOR ska1-saknr.

This should work.

Please check and let me know.

ashish