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: 

regarding selection screen

Former Member
0 Kudos

Hi i want to write the follwing in selection screen.

'The file is a text file and TXT format is required:'.

but when use the below code the above line is reflecting the selection screen.

SELECTION-SCREEN BEGIN OF BLOCK title WITH FRAME TITLE text-001.

SELECTION-SCREEN SKIP.

SELECTION-SCREEN COMMENT 2(30) text-002.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 2(25) text-003 FOR FIELD p_pcfile.

PARAMETERS: p_pcfile LIKE ibipparms-path OBLIGATORY

DEFAULT 'C:\CUSTOMER_TEXT.TXT' .

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN SKIP.

WRITE: /5 'The file is a text file and TXT format is required:'.

SELECTION-SCREEN END OF BLOCK title .

Please suggest

1 ACCEPTED SOLUTION

amit_khare
Active Contributor
0 Kudos

Dont use WRITE instead use SELECTION-SCREEN COMMENT

e.g. - SELECTION-SCREEN COMMENT /1(30) text-001.

1 REPLY 1

amit_khare
Active Contributor
0 Kudos

Dont use WRITE instead use SELECTION-SCREEN COMMENT

e.g. - SELECTION-SCREEN COMMENT /1(30) text-001.