Ver Mensaje Individual
  #5  
Viejo 24/02/10, 19:57:45
gerbeltran gerbeltran is offline
Member
 
Fecha de Ingreso: jun 2007
Mensajes: 55
Buenas

Ahi Alfredo te explicó muy bien como hacerlo con la 2da opcion que te comenté.

Otra opción:
Para tomar el contenido del mes puedes hacer un split a la variable donde tienes el string que te devolvio la funcion que vos estabas usando.
Por ejemplo si la variable v_output = '24. Febrero 2010'.

DATA: str1 TYPE string,
str2 TYPE string,
str3 TYPE string.

SPLIT v_output AT space INTO: str1 str2 str3.

Y en str2 te va a quedar guardado el string "Febrero".


Saludos y éxitos!
Germán.
Responder Con Cita