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: 

Re: selection screen with parameters

Former Member
0 Kudos

Hi Expert,

I have desigh the selection with some parameters two parameters i have declare on same screen but i want in between this two parameter slash (/) to be declare.In between p_idate and p_itime i need slash which i am declaring on same line

Below is my code

  SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.

PARAMETERS: P_POINT TYPE IMRG-POINT OBLIGATORY.
selection-screen begin of line.
selection-screen comment 1(31) text-001 for field p_idate.
PARAMETERS: P_IDATE TYPE IMRG-IDATE.
*selection-screen comment 4(5) text-001 for field p_idate.
PARAMETERS: P_ITIME TYPE IMRG-ITIME.
*selection-screen comment (5) text-001 for field p_itime.
selection-screen end of line.
PARAMETERS: P_READR TYPE IMRG-READR.

Regards,

Am

3 REPLIES 3

Private_Member_49934
Contributor
0 Kudos

Check this   

PARAMETERS: P_POINT TYPE IMRG-POINT OBLIGATORY.

selection-screen begin of line.
selection-screen comment 1(31) text-001 for field p_idate.
PARAMETERS: P_IDATE TYPE IMRG-IDATE.
*selection-screen comment 4(5) text-001 for field p_idate.
selection-screen comment 44(1) text-002 for field p_idate. " TEXT-002 = '/'.
PARAMETERS: P_ITIME TYPE IMRG-ITIME.
*selection-screen comment (5) text-001 for field p_itime.
selection-screen end of line.
PARAMETERS: P_READR TYPE IMRG-READR.
selection-SCREEN : END OF BLOCK b1.

0 Kudos

Thank kumar my problem is solved.

Regards,

Addu

Former Member
0 Kudos

Hi,

try using SELECTION-SCREEN COMMENT.

this should solve your  problem.