Ver Mensaje Individual
  #6  
Viejo 10/08/11, 16:04:03
fdelacruz fdelacruz is offline
Senior Member
 
Fecha de Ingreso: jun 2009
Localización: Lima, Perú
Mensajes: 111
Asumo q tu variable "tfich-tsl01" contiene un monto numerico. Entonces lo que tienes q hacer es:

* Declaras tu variable tipo string
data: monto_c type STRING.

* Pasas el monto a esta variable
monto_c = tfich-tsl01.

* Utilizas la variable en el batch
PERFORM dynpro USING: 'X' 'SAPLKPP2' '0145',
' ' 'BDC_OKCODE' '=CBUC',
' ' 'Z-BDC03(01)' monto_c

Con eso debe salir.

Saludos!
Responder Con Cita