‎2006 Nov 27 3:19 PM
Hi,
I am currently modifying a Query. I have added a new selection field. The fieldname for this selection field has been autogenerated within the query and I have pasted a bit in here:
SELECT-OPTIONS SP$00015 FOR ZERROR_FLG LOWER CASE.
SELECT-OPTIONS SP$00022 FOR KNA1-ERDAT.
SELECT-OPTIONS SP$00023 FOR KNA1-ERNAM.
SELECT-OPTIONS SP$00027 FOR ZLOEVM LOWER CASE.
SELECT-OPTIONS SP$00030 FOR ZPARTNERNO
NO INTERVALS NO-EXTENSION.
I relation to this select -option, I want to execute a few lines of code that only is executed if the user has filled in a value in teh ZPARTNERNO field. However, no matter if I use the field name ZPARTNERNO or SP$00030 it has no effect.
Any good ideas ?
‎2006 Nov 27 3:33 PM
If I am understanding correctly,
are you using:
if not SP$00030 is initial.
endif.
Warren
‎2006 Nov 27 3:35 PM
‎2006 Nov 27 3:37 PM
HI,
In the AT SELECTIOn-SCREEN event, you can write the code
IF not <b>SP$00030[]</b> is initial.
write the code which you want to execute before the output
ENDIF.
if you want in START-OF-SELECTION>
IF not <b>SP$00030[]</b> is initial.
write the code which you want to execute before the output
ENDIF
Regards
Sudheer
‎2006 Nov 27 4:02 PM
Hi,
I just tried that and it says that SP$00030 is unknown and not declared in the DATA section etc...
/Peter