Hi Guys,
I have this situation.
Parameters: street(20) type c,
code(10) type c,
number(6) type c.
If street is not initial.
if code is initial and number is initial.
"I have to put information into code or into number.
endif.
endif.
I could do.
AT SELECTION-SCREEN OUTPUT.
IF P_STREET IS NOT INITIAL. "Si está lleno es obligatorio llenar Población o Código Postal
IF P_CITY1 IS INITIAL AND P_CODE1 IS INITIAL.
MESSAGE 'write information into Code or into Numberl' type 'E'.
ENDIF.
ENDIF.
START-OF-SELECTION.
It doesn't work very well any idea,please?
Thanks a lot