on 2010 May 13 1:12 PM
hi experts,
we are using SRM70 SP3, and we found that in some of the SC's, workflow is not getting initiated, mainly after logging in to the system
process based workflow is active
once the user creates the first request, no workflow is initiated and it goes to 'in process' status.
next time onwards user is able to create SC's successfully with status as 'Awaiting Approval'.
kindly help.
Thanks
Hitesh
Hi,
It might be an issue with number ranges. Please check once.
Thanks,
Venkatesh.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Hitesh,
did you solved this issue? We have the same dumps and entries in SM13.
thank you in advance
Rgds
Pablo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Hitesh
Did you use COMMIT WORK statement in a BADI ? For example BBP_DOC_SAVE_BADI.etc
We do not recommend to use the COMMIT WORK statement in a BADI since it
has an impact on the update process.
Regards
Lauren
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,
please find below the error:
The exception 'CX_OS_DB_INSERT' was raised, but it was not caught anywhere
along the call hierarchy.
Since exceptions represent error situations and this error was not adequately responded to, the running ABAP program
'/SAPSRM/CB_WF_PROCESS=========CP' has to be terminated.
source code is:
* DB Inserts
insert /SAPSRM/D_WF_000 from table DB_ITB_/SAPSRM/D_WF_000
accepting duplicate keys.
if sy-subrc <> 0.
raise exception type CX_OS_DB_INSERT
exporting
table = '/SAPSRM/D_WF_000'.
endif.
* DB Updates
update /SAPSRM/D_WF_000 from table DB_UTB_/SAPSRM/D_WF_000.
if sy-subrc <> 0.
raise exception type CX_OS_DB_UPDATE
exporting
table = '/SAPSRM/D_WF_000'.
endif.
*>
"MAP_SAVE_TO_DATABASE>
endmethod.
in SM13 also its makin an entry
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.