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

how to avoid populating default values

Former Member
0 Likes
1,230

hi experts,

how can i avoid populating default values into screen fields while uploading data through BDC

5 REPLIES 5
Read only

Former Member
0 Likes
960

Hi

After you do the recording, you can remove the default values like this:

For Example:

Perform BDC_field using ekpo-menge '100'.

If 100 is the default value that is getting recorded,then just remove 100 .

Perform BDC_field using ekpo-menge.

Regards,

Vishwa.

Read only

Former Member
0 Likes
960

Hi,

Make sure you don't remove any Default Value from the Mandatory field.

You can comment the BDC_FIELD subroutine call for the default field, in the Program generated from BDC Recording.

Read only

Former Member
0 Likes
960

Explicitly set the field to a space.

Rob

Read only

Former Member
0 Likes
960

In the BDC program you can set blank values, but there might be some values that are populated based on the entry in another field. Such default values can be overwritten in the user exit just before saving the document.

regards,

Advait

Read only

Former Member
0 Likes
960

THANK U EXPERTS