‎2006 Jul 29 12:38 PM
hi friends,
iam developing BDC for transaction FB50.when posting data , the amount document currency(BSEG-WRBTR) giving error .
the error is :<b>posting is possible with zero balance. pls correct document.</b>my code is like this:
DATA: v_bdcqty(16) TYPE c.
WRITE wa_new-wrbtr TO v_bdcqty.
CONCATENATE 'ACGL_ITEM-wrbtr(' v_count ')' INTO v_string.
PERFORM bdc_field USING v_string
v_bdcqty.
pls tell me how to solve this problem.
pls urgent.
chandu
‎2006 Jul 29 12:43 PM
Hi Chandra,
Do the following change
DATA: v_bdcqty(16) TYPE c.
WRITE wa_new-wrbtr TO v_bdcqty.
<b>condense v_bdcqty</b>
CONCATENATE 'ACGL_ITEM-wrbtr(' v_count ')' INTO v_string.
PERFORM bdc_field USING v_string
v_bdcqty.
Thank you,
Ramu N
‎2006 Jul 29 4:16 PM
Check the value in wa_new-wrbtr. Zero value is going into BDCDATA.
posting is <b>NOT ?</b> possible with zero balance. pls correct document
Regds
Manohar