Es posible modificar una tabla Z, con una tabla interna con cabecera?....aca les dejo el codigo de ejemplo:
REPORT ZPTICABECERA.
TABLES: ztfacturas.
DATA: BEGIN OF st_facturas OCCURS 0,
idfactura TYPE ztfacturas-idfactura,
idcliente TYPE ztfacturas-idcliente,
fechafact TYPE ztfacturas-fechafact,
importe TYPE ztfacturas-importe,
moneda TYPE ztfacturas-moneda,
fechapago TYPE ztfacturas-fechapago,
END OF st_facturas.
SELECT SINGLE *
FROM ztfacturas
WHERE idfactura = 5 AND idcliente = 3.
SELECT *
FROM ztfacturas
into TABLE st_facturas.
WRITE:/ ztfacturas-idfactura,
ztfacturas-idcliente,
ztfacturas-fechafact,
ztfacturas-importe,
ztfacturas-moneda,
ztfacturas-fechapago.
SKIP 3.
SORT st_facturas BY idfactura idcliente.
READ TABLE st_facturas WITH KEY idfactura = 5 idcliente = 3 BINARY SEARCH.
IF sy-subrc EQ 0.
st_facturas-fechafact = '20120208'.
st_facturas-importe = '200,00'.
st_facturas-moneda = 'EUR'.
st_facturas-fechapago = '20120208'.
MOVE st_facturas TO ztfacturas.
UPDATE ZTFACTURAS.
ó
modify ztfacturas from st_facturas
"igual ninguno de estos dos funca", alguna idea?, Se puede?porque me parece que solo con working-area nomas?
ENDIF.
WRITE:/ st_facturas-idfactura,
st_facturas-idcliente,
st_facturas-fechafact,
st_facturas-importe,
st_facturas-moneda,
st_facturas-fechapago.
SKIP 3.
FORMAT COLOR 4.
WRITE 'AHORA CON LOS CAMBIOS'.
SKIP 2.
WRITE:/ ztfacturas-idfactura,
ztfacturas-idcliente,
ztfacturas-fechafact,
ztfacturas-importe,
ztfacturas-moneda,
ztfacturas-fechapago.