cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with Visual Composer

Former Member
0 Kudos

HI,

i have created RFC in R/3(4.7) .it is working fine in the R/3.when i try to use the same RFC in Visual Composer it is not fetching data .please tell me we are suppose to do any setting on R/3 side.

i tried with various RFC some are fetching data on VC and some are not.please guide me.it's urgent.

code of RFC :

(

FUNCTION Z_KNKK_DATA.

*"----


""Local interface:

*" IMPORTING

*" VALUE(I_KUNNR) LIKE KNKK-KUNNR OPTIONAL

*" VALUE(I_KKBER) LIKE KNKK-KKBER

*" TABLES

*" T_KNKK STRUCTURE KNKK

*"----


Tables: knkk.

select * from knkk

into table T_knkk

where KKBER = i_kkber and KUNNR = I_kunnr.

ENDFUNCTION.)

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Sachin,

Problem met be due to leading zeros.

Do the following

1. In VC, right click on your data service and select test data service and give the same parameter which you passed at the time of RFC call in R/3. Look for the result. If you dont get any response you add leading zeros based on the field length and try.

Hope this will solve the problem.

Regards

Ajay