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

Re: selection screen with parameters

Former Member
0 Likes
588

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
Read only

Private_Member_49934
Product and Topic Expert
Product and Topic Expert
0 Likes
541

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.

Read only

0 Likes
541

Thank kumar my problem is solved.

Regards,

Addu

Read only

Former Member
0 Likes
541

Hi,

try using SELECTION-SCREEN COMMENT.

this should solve your  problem.