Hi gurus,
I need a FOX formula solution which will ask user input during execution not before execution.
Project need is something like this:
In a loop of CALDAY I need to check if this day is a holiday. Then user is asked for Yes or No during execution.
FOREACH CALDAY.
CALL FUNCTION 'HOLIDAY_GET'
EXPORTING CALDAY
IMPORTING RESULT.
IF RESULT = X
POPUP (USERINPUT). // This part is important for me..
IF USERINPUT = YES.
DO ........
ELSE.
DO ........
ENDIF.
ENDIF.
ENDFOR.
If there is not any holiday in selection it will never ask for popup but if there is holiday in selection how can I raise popup??
Thanks in advance.
ergin