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

Hotspot

Former Member
0 Likes
586

In My Report output :

After clicking on the cross company refrenec num : ( thats a hotspot) ...I want the user to be taken to the FBU3 tcode.

This tcode has only one field as input ..but I dont see ant SET/GET Paramatere ID associated with this field to call the transaction and skip first screen ?

If there is no SET/GET id then how do we pass the values to the screen for calling a tcode from our program

?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
541

Hi,

Create a small BDC program for FBU3..

DATA: BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE.

BDCDATA-PROGRAM = 'SAPMF05L'.

BDCDATA-DYNPRO = '0110'.

BDCDATA-DYNBEGIN = 'X'.

APPEND BDCDATA.

CLEAR BDCDATA.

BDCDATA-FNAM = 'RF05L-BVORG'.

BDCDATA-FVAL = 'GIVE THE VALUE'.

APPEND BDCDATA.

CLEAR BDCDATA.

BDCDATA-FNAM = 'BDC_OKCODE'.

BDCDATA-FVAL = '/00'.

APPEND BDCDATA.

CLEAR BDCDATA.

CALL TRANSACTION 'FBU3' USING BDCDATA

MODE 'E'.

Thanks,

Naren

2 REPLIES 2
Read only

Former Member
0 Likes
542

Hi,

Create a small BDC program for FBU3..

DATA: BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE.

BDCDATA-PROGRAM = 'SAPMF05L'.

BDCDATA-DYNPRO = '0110'.

BDCDATA-DYNBEGIN = 'X'.

APPEND BDCDATA.

CLEAR BDCDATA.

BDCDATA-FNAM = 'RF05L-BVORG'.

BDCDATA-FVAL = 'GIVE THE VALUE'.

APPEND BDCDATA.

CLEAR BDCDATA.

BDCDATA-FNAM = 'BDC_OKCODE'.

BDCDATA-FVAL = '/00'.

APPEND BDCDATA.

CLEAR BDCDATA.

CALL TRANSACTION 'FBU3' USING BDCDATA

MODE 'E'.

Thanks,

Naren

Read only

0 Likes
541

Thanks