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

issue in 'at selection screen on value request' in LDB report program

suresh_namani
Participant
0 Likes
376

Hi Gurus,

I have created a report program using LDB(PNPCE) and added 4 more fields using parameters statement. and i have used the F4IF_INT_TABLE_VALUE_REQUEST function module in 'at selection screen on value request' to get the F4 help for a field designed using parameter statement(Not LDB field). when i tried to press the f4, i got the values in popup. and when tried to execute the program, agian 'at selection screen on value request' is triggered. it is triggering when i am pressing the enter key in any field on screen. kindly advise me on this issue. thanks in advance.

thanks & regards,

Suresh

Hi Gurus,

I have created a report program using LDB(PNPCE) and added 4 more fields using parameters statement. and i have used the F4IF_INT_TABLE_VALUE_REQUEST function module in 'at selection screen on value request' to get the F4 help for a field designed using parameter statement(Not LDB field). when i tried to press the f4, i got the values in popup. and when tried to execute the program, agian 'at selection screen on value request' is triggered. it is triggering when i am pressing the enter key in any field on screen. kindly advise me on this issue. thanks in advance.

thanks & regards,

Suresh

1 REPLY 1
Read only

Former Member
0 Likes
333

Suresh,

Are you using addition "FOR FIELDNAME" Correctly ??


PARAMETERS: p_test1 type ...,
               p_test2 type ...  .

AT SELECTION-SCREEN on VALUE-REQUEST FOR P_TEST1.
  .....your code.....
  
AT SELECTION-SCREEN on VALUE-REQUEST FOR P_TEST2.
  .....your code.....
  
START-OF-SELECTION.
   .....code......