Ver Mensaje Individual
  #4  
Viejo 27/03/08, 10:01:30
javibest javibest is offline
Senior Member
 
Fecha de Ingreso: ene 2007
Mensajes: 185
He probado con tu solucion y esta bien :

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'ARKTX'
window_title = 'material'
value_org = 'S'
TABLES
value_tab = it_matnr
field_tab = i_field_tab
return_tab = it_match
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.


IF sy-subrc EQ 0.
READ TABLE it_match INDEX 1.
MOVE it_match-fieldval TO s_arktx.
ENDIF.

Pero con esto, yo puedo obtener uno de los campos del match code, Pero si kiers obtener todos los campos del match code, como se podria hacer ?
Responder Con Cita