2013 Jul 21 11:10 AM
Hi Experts
I m getting below dump when calling smartform to print sales order
I am using below code
field-symbols:
<ls_vbdpa> type vbdpa.
loop at it_vbdpa assigning <ls_vbdpa>.
if <ls_vbdpa>-posnr_neu is initial.
append <ls_vbdpa> to gt_sch_item.
IF sy-subrc = 0.
* delete it_vbdpa.
ENDIF.
endif.
endloop.
Bset Regards
Harsh
2013 Jul 22 4:13 AM
Hi Harsh,
I suppose... or I am sure the IT_VBDPA is the importing parameter of the smartform.
In general cases we use field symbols to modify values directly.
Since the table is importing parameter it is READ ONLY.
Try using a work area instead.
Regards