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

Question about data transfer

Former Member
0 Likes
651

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
564

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

3 REPLIES 3
Read only

Former Member
0 Likes
564

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.

Read only

0 Likes
564

So how do i run my bdc! Is there any solution for that

Read only

Former Member
0 Likes
565

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