‎2022 Oct 17 11:24 AM
Hello Community,
I got a requirement which states that while records are uploaded through bdc it should be default
ticked in pa30 as displayed in below Screenshot (Medical insurance Exemption).
‎2022 Oct 17 11:43 AM
Do F1 on that checkbox and open the Technical settings:

In the next screen you then see the field name for BDC:

Then you need to add something like that to your code:
DATA:
ls_bdc_data TYPE BDCDATA,
lt_bdc_data TYPE BDCDATA_TAB.
ls_bdcdata-fnam = 'YOUR_FIELD'.
ls_bdcdata-fval = abap_true.
INSERT ls_bdcdata INTO TABLE lt_bdcdata.
‎2022 Oct 17 12:07 PM