‎2009 May 23 6:45 AM
Hi All,
I have a report in which 4 report are submitting, in which one of them is BDC and other are simple report.
problem is , suppose report got cancelled after 2nd (submit report) and 1st (submit report) is bdc which is working and which is updating the database.
I want when report get cancelled then BDC call transaction should not update database.
Is there any way to sort this issue ? and i cant change herirachy of reports.
thanks
Sandeep
‎2009 May 23 6:52 AM
problem is , suppose report got cancelled after 2nd (submit report) and 1st (submit report) is bdc which is working and which is updating the database.
I want when report get cancelled then BDC call transaction should not update database.
Is there any way to sort this issue ? and i cant change herirachy of reports.Create SESSION (SM35) and and Submit it unless all reports are successful. then you can call Program RBDCSUB to submit session otherwise Delete it.
‎2009 May 23 7:14 AM
‎2009 May 23 7:27 AM
>
> I m not able to find RBDCSUB report.
Hi, Sandeep
Check RSBDCSUB Report
Best Regards,
Faisal
‎2009 May 23 7:45 AM
Hello Sandeep,
Put a condition after your second record OR the position from where you want to stop execution.
PUT your condition with IF statement and there you give a message of type A. since the program will stop execution at that poit hope the session also goes off and the BDC would not update.
ex.
IF <Condition>.
MESSAGE a000(000) with 'Program terminated'.
ENDIF.
Try this hope it helps you.
Cheers,
Suvendu