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

BDC - Item

Former Member
0 Likes
436

Hi All,

I am trying to write a bdc program - I want to make the item field(EBELP) as blank but system still shows as 0.

if I don't have a value in the item it should be blank and not 0.

Please help.

Meghna

Hi All,

I am trying to write a bdc program - I want to make the item field(EBELP) as blank but system still shows as 0.

if I don't have a value in the item it should be blank and not 0.

Please help.

Meghna

2 REPLIES 2
Read only

Former Member
0 Likes
401

Hi Megha,

if EBELP value is 0 then don't populate, that means, if it is a values place the perform stmt.

like

if not EKKO-EBELP is initial.

perform bdc_field using 'EKKO-EBELP' itab-ebelp.

endif.

Bst rgds,

Srinu

Read only

nirajgadre
Active Contributor
0 Likes
401

Hi,

the data type of EBELP is NUMC 5 and hence i guess if you not passing any value to this field then it will populate with default value as 0.