Export Screen Values

make

Member
Hi ,

i want to export some data to Excel.
But my code only export the first line.
Here is a piece of my code .
....
....
OUTPUT TO c:\Stati.txt.
DO zaehler = 1 TO 28:
EXPORT DELIMITER '~t'
MinEin-Feld:SCREEN-VALUE in frame {&FRAME-NAME}. (THIS will exported)

MinBiTri-Feld:SCREEN-VALUE in frame {&FRAME-NAME} .
MinMulti-Feld:SCREEN-VALUE in frame {&FRAME-NAME} .
...
...
...
...
output close.
end.

Isnt there a chance to export screen-values ?

Greets Make
 
Assuming your code example is exactly like your program, In your example, you have only one EXPORT statement, but the statement is terminated after the first line by the period (arrowed). I'm not sure what happens to the other lines - perhaps they are just ignored as null statements.

EXPORT DELIMITER '~t'
MinEin-Feld:SCREEN-VALUE in frame {&FRAME-NAME}. <-
MinBiTri-Feld:SCREEN-VALUE in frame {&FRAME-NAME} .
MinMulti-Feld:SCREEN-VALUE in frame {&FRAME-NAME} .

Try this instead:

EXPORT DELIMITER '~t'
MinEin-Feld:SCREEN-VALUE in frame {&FRAME-NAME}
MinBiTri-Feld:SCREEN-VALUE in frame {&FRAME-NAME}
MinMulti-Feld:SCREEN-VALUE in frame {&FRAME-NAME}.
 
Top