‎2007 Jul 06 5:52 AM
i want to knw how to put a blank line / how to skip a line in selection screen...
like
in Block 1
Presentn filepath
Application filepath
(1 line skipped)
Log filepath
end of block 1
‎2007 Jul 06 5:57 AM
Hi ,
use <b>SELECTION-SCREEN SKIP 2</b>. statement.If u want to skip two lines .
check this code.
selection-screen begin of block B1 with frame title text-d01.
selection-screen SKIP 3.
parameters : p_lifnr type lifnr.
parameters : p_kunnr type kunnr.
parameters : p_count(2) type n.
selection-screen SKIP 3.
selection-screen end of block B1.
regards
reena
‎2007 Jul 06 5:54 AM
Hi Ashwin,
use SELECTION-SCREEN SKIP .
Reward points if useful.
Regards,
Atish
‎2007 Jul 06 5:57 AM
Hi ,
use <b>SELECTION-SCREEN SKIP 2</b>. statement.If u want to skip two lines .
check this code.
selection-screen begin of block B1 with frame title text-d01.
selection-screen SKIP 3.
parameters : p_lifnr type lifnr.
parameters : p_kunnr type kunnr.
parameters : p_count(2) type n.
selection-screen SKIP 3.
selection-screen end of block B1.
regards
reena
‎2007 Jul 06 6:02 AM