‎2007 Dec 04 10:26 AM
Hi,
I have a workflow task to insert records into a table. On execution, i get the following error message "Erro in reading form data"
Could anyone tell me why this is so?
Thanks,
Prasy
‎2007 Dec 04 10:27 AM
‎2007 Dec 04 11:42 AM
Hi,
I'm using BUS7051 and created a copy of it to include a method createrecord. This method uses function module as template. Function mudle has notification number as import parameter.
BEGIN_METHOD ZMCREATEVERECORDS CHANGING CONTAINER.
DATA:
NOTIFNO TYPE VIQMEL-QMNUM.
SWC_GET_ELEMENT CONTAINER 'NotifNo' NOTIFNO.
CALL FUNCTION 'Z_M_CREATE_VE_RECORDS'
EXPORTING
NOTIF_NO = NOTIFNO
EXCEPTIONS
OTHERS = 01.
CASE SY-SUBRC.
WHEN 0. " OK
WHEN OTHERS. " to be implemented
ENDCASE.
END_METHOD.