‎2006 Feb 15 10:56 AM
Hi frnds,
My requirement is like this..
im calling a BDC session method program created by an other programmer. But a session is being created. I dont want it that way. I want the upload to happend imdiatly and not thru SM35 or the program 'RSBDCSUB'....
im passing the file name and the path to the called program....is there any other method to run the session method immediately????
points assured to 1 and all..
regards,
Madan...
‎2006 Feb 15 11:02 AM
Hi Madan
ya it is possible using Backgroud processing
it is possible using the CALL TRANSACTION method which is the other way of uploading other then Session method
regards
kishore
‎2006 Feb 15 11:01 AM
Hi madan,
1. U will have to use
CALL TRANSACTION USING BDCDATA
(SEE F1 HELP)
2. this will immediately put the data
(without using sm35)
regards,
amit m.
‎2006 Feb 15 11:04 AM
Hi,
The program im calling has been created by session method..
and im not to create the BDC again using 'CALL TRANSACTION...'..
hope u understood my requirement..
‎2006 Feb 15 11:17 AM
HI madan
to my understanding you already have the session which created by program written by other programmer.
now you want to process that data in the session immediately without session.
if it is correct then try using Background while pocessing the session.
notify me if i am wrong
regards
kishore
‎2006 Feb 15 11:23 AM
No dude, its not like that...
i have a program which creates the upload file, then using the program created by an other porgrammer i have to upload the file.. but the other program is by sessions method...so a session is created which has to be processd from SM35... but i want it to be processed from my program itself..hope it makes you clear...
regards,
Madan..
‎2006 Feb 15 11:31 AM
HI
then you have to copy that program and make the necessary modifications so that it will upload your data immediately.
regards
kishore
‎2006 Feb 15 11:02 AM
Hi Madan
ya it is possible using Backgroud processing
it is possible using the CALL TRANSACTION method which is the other way of uploading other then Session method
regards
kishore
‎2006 Feb 15 11:06 AM
Hi Madan,
To upload immediately use SUBMIT RSBDCSUB VIA SELECTION-SCREEN USING SELECTION-SET 'VARIANT1' AND RETURN.
Create a vriant and supply that in place of "VARIANT1".
This will help you in getting immediate processing.
Thanks & Regards,
Ankur
‎2006 Feb 15 11:07 AM
Use CALL TRANSACTION tcode USING bdcdata
MODE ctumode
UPDATE cupdate
MESSAGES INTO messtab.
U can get message details from message tab.
Look at the code generated by the recorded transaction.
‎2006 Feb 15 11:11 AM
Hi again,
1. im passing the file name and the path to the called program....is there any other method to run the session method immediately????
urprogram -
> another program(created by programmer)
2. A -
B
3. B uses the concept of session for bdc.
4. unless and until u
CHANGE B (to post data thru call transaction method
and not sesssion method)
or
CREATE C (by copying B and modifying logic)
u cannot do anything.
regards,
amit m.