I could not thank you enough, I was in dire need of learning workflow basics and stumbled upon your channel, I simply loved you content, please keep making such content . Also if you can take up some more complex workflow scenario would be a great service to the community, Thank you from the bottom of heart!
Requirement for SAP ABAP HANA with Workflow. Package : 30% to 40% hike Exp : 5 to 8 Years Location : Noida ( Sector - 126) Notice Period : Immediate Joiners + Max 25 Days Notice Period Interested candidates, please share your resume to AMAHESH.B@DYNPROINDIA.COM Posted on 9-11-2020
1. Create a workflow event object 2. Set the event parameters 3. Raise the event to trigger the workflow Here's a basic code example: DATA: lv_objtype TYPE sweinstcou-objtype, lv_objkey TYPE sweinstcou-objkey, lt_container TYPE swcont_t. " Set object type and key lv_objtype = 'BUS2038'. " Example: Sales Order lv_objkey = '0000001234'. " Example: Sales Order number " Create container for parameters CALL FUNCTION 'SWC_CREATE_CONTAINER' EXPORTING im_objtype = lv_objtype im_objkey = lv_objkey IMPORTING ex_container = lt_container. " Raise the event CALL FUNCTION 'SWE_EVENT_CREATE' EXPORTING objtype = lv_objtype objkey = lv_objkey event = 'SAP_EVENT_NAME' " Replace with your event name receiver = 'WS00000001' " Replace with your workflow template ID TABLES container = lt_container.
Requirement for SAP ABAP HANA with Workflow. Package : 30% to 40% hike Exp : 5 to 8 Years Location : Noida ( Sector - 126) Notice Period : Immediate Joiners + Max 25 Days Notice Period Interested candidates, please share your resume to AMAHESH.B@DYNPROINDIA.COM Posted on 9-11-2020
It's the 1st sap vid on which I would really want to say - 'Topic very well explained in such a short time'.
I could not thank you enough, I was in dire need of learning workflow basics and stumbled upon your channel, I simply loved you content, please keep making such content . Also if you can take up some more complex workflow scenario would be a great service to the community, Thank you from the bottom of heart!
Hi,
How to trigger a workflow from program?
Can you please explain.
this one is quick and easy to comprehend for HCM people, thank you..!
I always like your video which enhances my skills. specially your OOPs video are awesome.Keep posting. Thanks a lot Sooraj
Simply explained but effective
Thank you
Hi how the system finds out who is the manager of the given employee?
Thanks for sharing these videos, can you please explain with a real time scenario.
Hi, Can you please create a video on WorkFlow and BRF+ Integration? Also calling BRF+ from ABAP report.
Please use additional users for realistic effect.
Well done and explained
Thanks and will take your suggestion into consideration for the next time :)
Requirement for SAP ABAP HANA with Workflow. Package : 30% to 40% hike
Exp : 5 to 8 Years Location : Noida ( Sector - 126)
Notice Period : Immediate Joiners + Max 25 Days Notice Period
Interested candidates, please share your resume to AMAHESH.B@DYNPROINDIA.COM
Posted on 9-11-2020
Thank you 🙏💕 .... Create a workflow for PO approved scenario...
How to trigger a workflow from program?
Can you please explain?
Hi please include how to design and debug a brf plus workflow..
Well explained in simple way
Useful. Thank you.
Can we scripting on SAP Business one like excel macro? Thanks for your help
Thanks for sharing basics ...
My pleasure
In my workflow log, it's showing "No agent Ready" on decision step and workflow not getting triggered.
What could be wrong with this?
Kindly upload more videos on workflow
nice explanation
Actually i am facing an issue that i am getting wf batch instead of creator name after approving how to rectify it please help me
I always like your all videos sir .
Sir pls upload Idoc's sir
Nice 🔥
How to trigger workflow from program?
Can you please explain.
1. Create a workflow event object
2. Set the event parameters
3. Raise the event to trigger the workflow
Here's a basic code example:
DATA: lv_objtype TYPE sweinstcou-objtype,
lv_objkey TYPE sweinstcou-objkey,
lt_container TYPE swcont_t.
" Set object type and key
lv_objtype = 'BUS2038'. " Example: Sales Order
lv_objkey = '0000001234'. " Example: Sales Order number
" Create container for parameters
CALL FUNCTION 'SWC_CREATE_CONTAINER'
EXPORTING
im_objtype = lv_objtype
im_objkey = lv_objkey
IMPORTING
ex_container = lt_container.
" Raise the event
CALL FUNCTION 'SWE_EVENT_CREATE'
EXPORTING
objtype = lv_objtype
objkey = lv_objkey
event = 'SAP_EVENT_NAME' " Replace with your event name
receiver = 'WS00000001' " Replace with your workflow template ID
TABLES
container = lt_container.
Thanks for sharing..
Super
Thank you very insightful, however your video is not clear
hi, I have a question, to which object and event is the workflow related?
This is a simple standalone workflow.
Requirement for SAP ABAP HANA with Workflow. Package : 30% to 40% hike
Exp : 5 to 8 Years Location : Noida ( Sector - 126)
Notice Period : Immediate Joiners + Max 25 Days Notice Period
Interested candidates, please share your resume to AMAHESH.B@DYNPROINDIA.COM
Posted on 9-11-2020
tutorial...🤞💙
How to trigger workflow programatically?
You have different function modules for that. :)