Hi..,
My code:
SELECTION-SCREEN COMMENT 80(2) text-027
Error Which I am getting with above syntax:
The specified offset "80" is too large (maximum:79)
Q: How to slove this? and here I need that text 27 is in greater than 80th position only.
Thanks,
Naveen.I
I realize I'm 7 1/2 years too late to help Naveen, but for those who later do a search on this issue, I found a work-around that's satisfying my purposes, allows me to position the text where I want it, and allows me to keep the BLOCK definitions as well.
My COMMENT line is defined as follows:
SELECTION-SCREEN COMMENT 79(39) text-025.
I've set the offset at the maximum allowed for me to keep my BLOCK statements (79). The text I'm displaying in text-025 is 12 characters, but the Text Symbols dialog allows one to put leading spaces in front of the text; so in the Text box of the Text Symbols dialog I put 27 leading spaces, then my 12 characters of text, for a length of 39.
Hi,
check this...
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001. PARAMETERS: c1 as checkbox. SELECTION-SCREEN COMMENT 79(2) text-027. SELECTION-SCREEN END OF BLOCK b1.
if you use comment statement with in the frame then you can't exceed 79.
SELECTION-SCREEN BEGIN OF LINE. PARAMETERS: c1 as checkbox. SELECTION-SCREEN COMMENT 83(2) text-027. SELECTION-SCREEN END OF LINE.
if you use comment statement with in line then you can't exceed 83.
for horizontal line
with in frame
SELECTION-SCREEN ULINE /79(2).
with in line
SELECTION-SCREEN ULINE /83(2).
I splitted the perticuler text,
and displyed in two lines...as its not possible with in the frame.
---Naveen Inuganti
Add a comment