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

Checkbox should be checked

0 Likes
1,088

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).

2 REPLIES 2
Read only

thkolz
Contributor
1,053

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.
Read only

Sandra_Rossi
Active Contributor
1,053

Then it should be:

ls_bdcdata-fnam = 'P0001-PERSG'.