Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error in reading form data

Former Member
0 Likes
410

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

2 REPLIES 2
Read only

Former Member
0 Likes
373

Can you paste the code?

Regards,

Satish

Read only

0 Likes
373

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.