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

function module ?

Former Member
0 Likes
566

Hi experts,

in the table t706k the field KONT1 has value +96 but when i double click its comes as 196 when i link to table t030-komok this field has 196 but its not linking

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
520

look for the convertion exit... in the data element/domain level..

3 REPLIES 3
Read only

former_member156446
Active Contributor
0 Likes
521

look for the convertion exit... in the data element/domain level..

Read only

former_member632729
Contributor
0 Likes
520

Hi,

ru moveing the value of T706K-KONT1 to T030-KOMOK. then insted of declaring the varialbe like T030-KOMOK you can use var1(3) type c.

Check This ..

Read only

Former Member
0 Likes
520

Hello,

How did u solve this ?

I am also fetching similar like this as seen below:

SELECT *

       FROM t706k

       INTO TABLE i_t706k

       FOR ALL ENTRIES IN i_t706b4

       WHERE morei i_t706b4-morei AND

       lgart = i_t706b4-lgarl AND

       endda > sy-datum.



SELECT *

         FROM  t030

         INTO TABLE i_t030

         FOR ALL ENTRIES IN i_t706k

         WHERE ktopl = c_GCOA AND

         ktosl = c_hrt  AND

         komok = i_t706k-kont1.


but we have +10, +65 values in kont1, what conversion routine needs to be used to convert it to KOMOK type.



Thanks

Ritesh Solanki