You are on page 1of 1

*----------------------------------------------------------------------*

***INCLUDE Z05RP_REPORT5_F_MANIP_CLIENF01 .
*----------------------------------------------------------------------*
*&---------------------------------------------------------------------*
*&
Form F_MANIP_CLIENTES
*&---------------------------------------------------------------------*
*
text
*----------------------------------------------------------------------*
* --> p1
text
* <-- p2
text
*----------------------------------------------------------------------*
FORM f_manip_clientes.
LOOP AT it_clientes INTO wa_clientes.
WRITE:/ sy-vline, wa_clientes-cpf_cli,
17 sy-vline, wa_clientes-rg_cli,
27 sy-vline, wa_clientes-nome_cli,
60 sy-vline, wa_clientes-datanasc,
80 sy-vline, wa_clientes-cidade,
94 sy-vline, wa_clientes-telefone,
104 sy-vline, wa_clientes-email,
150 sy-vline.
WRITE:/ sy-uline(150).
ENDLOOP.
ENDFORM.

You might also like