cancel
Showing results for 
Search instead for 
Did you mean: 

Pls help in WEBDYNPRO Function Module 'RFC_START_PROGRAM' not found error

Former Member
0 Kudos

Dear Friends,

While i am calling one function module in webdynpro the follwing erroe is coming.

Error:-

Function Module 'RFC_START_PROGRAM' not found error

Code:-

CALL FUNCTION 'ZUPDATE' DESTINATION 'PCNCLNT300'

EXPORTING

im_material = item_matnr

im_vornr = item_vornr

im_sheet = item_sheet

IMPORTING

value = ZMESSAGE .

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

try declarig variable of type rfc_dest

data: lv_dest type rfc_dest.

call....

destination lv_dest

....

offcourse make sure your rfc destination has that name in sm59

and you have the corect authorizations to your user in the remote system

Are you btw sure that there is no screen action called inside

the function module? popup or something? because you cannot

call functions that have screen interaction like in sapgui

grtz,

Koen

Answers (1)

Answers (1)

Former Member
0 Kudos

hi abap_friends..........

try using service call....

--regards,

alex b justin