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: 

Hi Regarding F1 help

Former Member
0 Kudos

Hi everybody,

I want to know the function module to get F1 help for parameter or select options

Thanks in Advance,

jogu_vinesh@yahoo.com

5 REPLIES 5

0 Kudos

Hi,

If you use Data element for your field you will get it directly.

Regards,

Sesh

Former Member
0 Kudos

Hi Siddi Vinesh,

No need of F1 help... To get values: If you refer select-options for dictionary elements on pressing F4, it will come by default. Other wise you can use Fm F4IF_FIELD_VALUE_REQUEST.

To get help on select options... put cursor on that and press F1 and then F9.

Reward If Helpful.

Regards

--

Sasidhar Reddy Matli.

null

Message was edited by:

Sasidhar Reddy Matli

Former Member
0 Kudos

try this

PARAMETERS: P_CARR_1 TYPE S_CARR_ID,
                       P_CARR_2 TYPE SPFLI-CARRID.

AT SELECTION-SCREEN ON HELP-REQUEST FOR P_CARR_2.
  CALL SCREEN 100 STARTING AT 10 5
                  ENDING   AT 60 10.

Former Member
0 Kudos

Hi,

Do u want to create ur own help on some selection field?

than u can create elementary search help and than

PARAMETERS:doc LIKE lips-vbeln MATCHCODE OBJECT <b>zdel_typ</b>.

here <b>zdel_typ</b> is my search help

Former Member
0 Kudos

Hi,

Use this DOCU_GET_SHORTTEXT

Reward if useful!