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

uncheck with batch input

Former Member
0 Likes
759

Hi guys,

im creating a BI, and i need to uncheck a checkbox,

because is checked by default, but is not working.

here is the code,

any ideas?

perform bdc_field using 'PRT_PROT'

''.

4 REPLIES 4
Read only

Former Member
0 Likes
585

1. which transaction?

2. Try to pass it with a space ' ' instead of ''.

Read only

0 Likes
585

space is not working,

=(

Read only

0 Likes
585

Are you sure it's a checkbox?

I made recording in shdb and it shows space to inactivate a checkbox.

Does it work if you try it in shdb?

Read only

0 Likes
585

You need to do it manually,

i solved with.

BDCDATA-FNAM = 'PRT_PROT'.

BDCDATA-FVAL = ''.

APPEND BDCDATA.

tks