‎2006 Jul 27 2:58 PM
Iam using a bdc for mb01 transaction. The thing is when i run the bdc i get a checkbox in the default for documents for documents screen which doesnt have a field help for it. Its been checked by default .When i run the mb01 transaction manually i dont get this checkbox. It looks strange to me. Can u tell me how to get away with this....
thanks
Vicky
‎2006 Jul 27 3:33 PM
Hi Vicky,
I am not sure whether is good idea or not to change the SAP default value for the check box.
But you can try to change something like this but please check the impact with/without the default value.
perform bdc_dynpro using: 'SAPMM07M' '0200'.
perform bdc_field using: 'BDC_CURSOR' 'XFULL',
'XFULL' ' ',
...
'BDC_OKCODE' '=NFBL'.The XFULL indicator will be used later when call FM COBL_SEND_PBO in include program MM07MFK0_KONTIERUNGSBLOCK_SEND.
...
call function 'COBL_SEND_PBO'
exporting
dclass = 'STD1'
icobl = cobl
full_always = xfull
importing
dynnr = dynnr
progn = progn
tables
icoblf = int_coblf.
...Hope this will help.
Regards,
Ferry Lianto
‎2006 Jul 27 3:09 PM
Hi.
I don't think, that you're able to get rid of this checkbox - while you're processing something in batch input mode (even when you're recording any transaction), transactions' behaviour change normally occur.
‎2006 Jul 27 3:29 PM
‎2006 Jul 27 3:33 PM
Hi Vicky,
I am not sure whether is good idea or not to change the SAP default value for the check box.
But you can try to change something like this but please check the impact with/without the default value.
perform bdc_dynpro using: 'SAPMM07M' '0200'.
perform bdc_field using: 'BDC_CURSOR' 'XFULL',
'XFULL' ' ',
...
'BDC_OKCODE' '=NFBL'.The XFULL indicator will be used later when call FM COBL_SEND_PBO in include program MM07MFK0_KONTIERUNGSBLOCK_SEND.
...
call function 'COBL_SEND_PBO'
exporting
dclass = 'STD1'
icobl = cobl
full_always = xfull
importing
dynnr = dynnr
progn = progn
tables
icoblf = int_coblf.
...Hope this will help.
Regards,
Ferry Lianto