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: 

function module ?

Former Member
0 Kudos
154

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

former_member156446
Active Contributor
0 Kudos
108

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

3 REPLIES 3

former_member156446
Active Contributor
0 Kudos
109

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

former_member632729
Contributor
0 Kudos
108

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 ..

Former Member
0 Kudos
108

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