Application Development 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: 

CA21 - routing upload message

Former Member
0 Kudos

Hi there,

Is there anyone of you who have created a BDC program for CA21? because I'm experiencin a problem with field VORNR. The message is "Field PLPOD-VORNR (1) input value is longer than screen field". Though when you try to run it in SM35 the message is just an information message, in call transaction the program identifies it as an error that's why it doesn't post any data to the system.

regards,

Pete

2 REPLIES 2

Former Member
0 Kudos

Hi,

Add the Below Condense Code it will work fine..

CLEAR gs_bdcdata.

gs_bdcdata-fnam = p_fieldname.

gs_bdcdata-fval = p_fieldval.

CONDENSE gs_bdcdata-fval.

APPEND gs_bdcdata TO gt_bdcdata.

Thanks

kalyan.

Former Member
0 Kudos

Hi,

Add the Below Condense Code it will work fine..

CLEAR gs_bdcdata.

gs_bdcdata-fnam = p_fieldname.

gs_bdcdata-fval = p_fieldval.

<B> CONDENSE gs_bdcdata-fval. <B>

APPEND gs_bdcdata TO gt_bdcdata.

Thanks

kalyan.

Edited by: Kalyan on Dec 10, 2009 8:06 PM