Tema: Workflow
Ver Mensaje Individual
  #3  
Viejo 22/08/06, 10:52:46
prosi prosi is offline
Junior Member
 
Fecha de Ingreso: jun 2006
Mensajes: 2
Conditional Loops

To repeat a statement block for as long as a certain condition is true, use the following control structure:

WHILE log_exp
[statemaent_block]
ENDWHILE.

EXAMPLE:
WHILE string NE space.
WRITE string(1).
length = sy-index.
SHIFT string.
ENDWHILE.
Responder Con Cita