Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

At selection

Former Member
0 Likes
274

Hello,

I need an advice

I have a program that download a file.csv

LOOP AT LV_FILES INTO I_DIR.
    CLEAR IT_FICHERO[].
    CLEAR IT_STATUS_F[].
    CLEAR IT_TEXTO[].
    CLEAR IT_TEXTO2[].
    CLEAR TMP_TEXTO[].
    PERFORM SELECCIONA.
    IF FECHA IS NOT INITIAL.

      PERFORM CREAR_PATH.  .
      PERFORM INSERTAR_VERIFICAR  .    
"Here I need that the program wait until I push F8 (EXECUTE). 
"I tried with At selection screen,... but it doesn't work because I inside a loop.
"The program don't  detect the button because the dynpro is '1000'.

      PERFORM FICHERO_LOG. "download a file
      APPEND LINES OF IT_STATUS_F TO TMP_STATUS.
   
    ELSE.
      MESSAGE 'Escoja un fichero de la lista' TYPE 'I'.
    ENDIF.
    
  ENDLOOP.
END-OF-SELECTION.

1 ACCEPTED SOLUTION
Read only

JozsefSzikszai
Active Contributor
0 Likes
251

what about issuing an informatio message in a popup, pls. press F8 or something like that?

1 REPLY 1
Read only

JozsefSzikszai
Active Contributor
0 Likes
252

what about issuing an informatio message in a popup, pls. press F8 or something like that?