‎2006 Oct 31 9:44 PM
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
?
‎2006 Oct 31 9:50 PM
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
‎2006 Oct 31 9:50 PM
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
‎2006 Oct 31 10:08 PM