Changing Workflow for Incomplete Shopping.

Hi Experts,
Can anyone help me in changing the flow for Incomplete Shopping?
When a shopping cart is created without a vendor it goes to a purchaser, who then completes the cart. The cart then has to go back to the requester, who needs to approve the completion.
Is it possible to remove this last step of the flow, so that the shopping cart is converted into a PO once it has been completed by the purchaser?

Hello Anders,
            Probably I didn't get your question completely, are you looking the flow of shopping cart as:
Incomplete shopping cart (e.g: no Vendor) to Purchaser's queue and then purchaser completes the same and PO gets created. if YES then it is standard SRM feature. All you need to do is to configure "Sourcing":
Path: Supplier Relationship Management --> SRM Server --> Sourcing --> Define Sourcing for Product Categories
Here, select Cataegory id as '*' (if you want to have for all product cat) and select sourcing option as "Sourcing Carried Out for items without Assd Source of Supply"
Hope this helps.
Regards,
Shiv

Similar Messages

  • How to change workflow for expired qualification in HR Module

    Hi,
    My question how to change workflow for expired qualification in HR Module.We need to when date is expired tcode OOQA that system will check and that time workflow should be triggred.
    I have serached sap help but i am not understand please below mention URL for SAP help
    Link: [http://help.sap.com/saphelp_47x200/helpdata/en/ee/f4c9cafbab11d29ea40000e8215202/frameset.htm]
    Please explain step by step how to trigrred workflow for expired qualification?
    Please this problem is high and try to solve it.
    Thx!
    Sachin

    Hi,
    Why do you want to trigger a wflow and what do you want to do with this trigger. Can you give more details of your exact requirements.
    But, if you are looking for how to trigger, you can write a small ABAP pgm and schedule it as a job every night. THis job basically reads the table P1000-ENDDA for expiry date and if it reached today, then you can either trigger the wflow with SAP_WAPI_START_WORKFLOW or use SAP_WAPI_CREATE_EVENT to raise your custom event(for Business Obj. BUS7018, i think this is your BO and there are no std events right now, so you will ahve to add your custom event by extending BUS7018 to ZBUS7018).
    Hope I am clear and this helps and if you need more details, reply.
    venu

  • Changing workflow for LSO

    hi,
    i am facing a problem here: i am completly new to sap-workflow.
    we start with LSO - learning solution very soon. there we have a learn-portal where users can book courses and trainings. and there is a workflow behind it.
    now i want to change the email which is created from that workflow. i have to include the price of the course to the email.
    how can i handle this ? i have copied the sap-standard-workflow, but i have no idea how to put in the new values there ?!?
    best regards, Martin

    Hi Martin
    If those details are not present then you need to create a 'subtype' of the Business Object whose event gets triggered which in turn starts the workflow, this will allow you to add 'Attributes' like price for example and show them in the text....
    Have a look on <a href="http://help.sap.com/saphelp_nw04/helpdata/en/2f/c9a937a7777c38e10000009b38f842/frameset.htm">SAP Help</a> for more detailed info. Once you create a subtype, you need to delegate it to the parent one from which you created the subtype. After delegation, the new attribute should be available in the workflow for your use....The tcode for this is SWO1..
    Good Luck
    Ravi

  • Change logs for Shopping cart

    Hi,
    Is it possible to get the change logs for a shopping cart in SRM as to who deleted a line item after approval? We are in the SRM 4 version ( classic scenario).
    The problem is that the batch job user seems to be coming up in the last update for the shopping cart and the backend PO is deleted with the RFC user name.
    Are there any tables in SRM where the change is logged? I checked CDHDR/CDPOS tables but it is difficult to get the logs for the shopping cart especially for the deleted action.
    Any clues/ideas would be appreciated.
    Regards,
    Rajesh

    Hi
    expand the shopping cart
    in the right top corner you can see
    Display Changes
    shopping cart might be deleted by BATCHRFC
    if the BUYER deleted a PO and the status will be updated in the shopping cart by BATCHRFC user.
    Muthu

  • EScalation workflow for SC and PO

    We have implemented SRM7 process controlled workflows. Would like to know how can we achieve escalation workflow for either shopping cart or PO's.
    Scenario is like this : If Manager A has not taken any action, the workitem has to be escalated to his manager after 2 days. If manager B has not taken any action, then it has to be escalated to his manager C after 3 days.
    Is there any standard way to achieve this.
    Please advice.
    Regards,
    Pavan.

    Hi,
       The escalation to manager level is done by deadline monitoring, but escalation to manager of manager and so on can de done through custom program.. I have done the similar requirement in my customer.. below is the technical details..
    Selection Screen
    Field name       Selection Text     Type      Size     Default Value     Obligatory ( Y / N )
    P_STATUS       Status                          J_STATUS          I1015                         Y
    P_TIMESTAMP Time Period(hours)     I                          48                           Y
    Below is the development flow for this object.
    1.     Declare the internal table as it_status and workarea as lw_status for the structure JSTAT. Pass p_status value to lw_status workarea and append to lt_status.
    2.     Pass  lt_stauts value to function module u2018BBP_PD_SC_GETLISTu2019 to get the all awaiting for shopping cart into table parameter e_pdlist into lt_sc_no. lt_sc_no is an internal table of structure bbp_pds_pdlist.
    3.     Loop through lt_sc_no into lw_sc_no. lw_sc_no is a workarea of the internal table lt_sc_no.
    4.     lw_sc_no-object_id is holding the shopping cart number . Pass lw_sc_no-object_id value to function module u2018BBP_PD_SC_GETDETAILu2019 to get the CREATED_AT value. CREATED_AT value will be in importing parameter E_HEADER of the function module.
    5.      Declare lv_timestamp with type ad_tstamp.
    6.      Move CREATED_AT value to lv_timestamp.
    7.      Multiply 60 * 60 with p_timestamp into lv_second. lv_second is type of I.
    8.      Pass lv_second to the function module u2018ADDR_ADD_TO_TIMESTAMPu2019 and get the changing 
          parameter of the function module into lv_timestamp.
    9.     declare fields as lv_date type c(8),lv_time type c(6),lv_final type string.
    10.     move sy-datlo to lv_date.
    11.     move sy-timlo to lv_time.
    12.     concatenate lv_date lv_time into lv_final.
    13.     check lv_timestamp is less than lv_final.
    14.     If this is true then call method GET_CURRENT_PROCESS_LEVEL of the class /SAPSRM/CL_WF_PROCESS_MANAGER and pass the SC Header GUID to the method to get the current approver id.
    15.     declare ls_approver_id as structure with approver_id , object_id fields.
    16.     move approver id to an internal table lt_approver_id. lt_approver_id is structure of ls_approver_id.
    17.     sort lt_approver_id by approver_id.
    18.     loop through lt_approver_id .
    19.     use STATEMENT AT END OF approver_id.
    20.     call function module u2018BBP_READ_ATTRIBUTESu2019 to get the SLAPPROVER attribute value  by passing approver id.
    21.     call function module u2018BAPI_USER_GET_DETAILu2019 to get the Email id of the current approver and DOA / SLAPPROVER of approver.
    22.     call function module u2018SO_NEW_DOCUMENT_ATT_SEND_API1u2019 to send the notification Eamil with consolidate SCu2019s.
    23.     The content of email body to be decided.
    24.     write the success message with Shopping cart number.
    you have to change this technical details to meet your requirement
    I thought to have blog for this requirement, but could not make it..
    Saravanan

  • Searching for Workflow for Purchase Order Change

    Hi experts!
    We are using SRM5.0 / extended classic scenario and backend R/3 4.7 Enterprise.
    We should implement an approver process for the purchase order changes. Does any one of you know whether there exists a standard SAP workflow?
    Many thanks for your help.
    Regards,
    Corinne

    Hi
    <i>Please refer to the following links for detailed step-by-step details.</i>
    <u>Workflows for Purchase Orders - n-step approval workflow ( WS14000145 )... Start WS14000075, WS14000089 or WS14000145...-step approval workflow ( WS14000145 )</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/5a/c5173f5ff48443e10000000a114084/frameset.htm
    <u>Authorization - Purchase orders ( WS14000145 )</u>  
    http://help.sap.com/saphelp_srm50/helpdata/en/f7/a6a3415e34b05fe10000000a1550b0/frameset.htm
    <u>Setting Up SAP Business Workflow - WS14000145 ( n-step approval )... WS14000145... WS14000145 – N-step approval PO WS14000145 – N-step approval of contract</u>  
    http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    <u>Dynamic Modification - Purchase orders ( WS14000145 )</u>  
    http://help.sap.com/saphelp_srm50/helpdata/en/84/dda441e79ead5fe10000000a1550b0/frameset.htm
    <u>Back & Forth Processing and the Retain Function - Purchase orders ( WS14000145 ) </u> 
    http://help.sap.com/saphelp_srm50/helpdata/en/6b/eca441eea7ef0be10000000a1550b0/frameset.htm
    <u>Approval Workflows for Purchase Orders and Change Versions</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/ec/fe163ff8519a06e10000000a114084/frameset.htm
    <u>Workflow for Contracts - Workflow for Purchase Orders ( WS14000145 )</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/26/0f8b41ed891609e10000000a155106/frameset.htm
    <u>SRM Business Workflow - One-step Approval</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/8b/4fa9585db211d2b404006094b92d37/frameset.htm
    <u>WS14000089</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/5a/c5173f5ff48443e10000000a114084/frameset.htm
    <u>WS14000075</u>
    http://help.sap.com/saphelp_srm50/helpdata/en/2c/e68d406b305537e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/5a/af5efc85d011d2b42d006094b92d37/frameset.htm
    Regards
    - Atul

  • Trigger workflow when PR changed and copmlete activ workflow for same PR

    Hi,
    i am triggering the workflow for all line item of PR when PR is created. now i want to create workflow when PR change also.
    but before triggering the workflow i have to check the any in process workflow for the same and if then complete is and delete all its work item.
    for Ex.
    PR -4500000001 created with item 10 workflow triggerd ,
    suppose i changed it and agan save next workflow trigged now before triggerin this workflow we have to complete the 1 instance of workflow , delete all workitem of that instant
    Please suggest how can i achive this .
    Thanks in Advance
    Deepanker Dwivedi

    Hello,
    We have already implemented this in our old  project.Please find below the solution.
    No config change is required.
    1.Go to tcode SWETYPV
    2. Double click on your linkage.
    3. You will see there check function module.
    4. MAke a custom custom function module of yours and it will have CDPOS and CDHDR as its component.
    5. When so pr is changed or created this function module will be triggered there you can identify whether pr is changed or not using cdpos and cdhdr.
    6. If it is change raise two events one for completeion of old worklfows which are in process second for creation of new workflow instance.
    7. Create a wait step in your workflow which will wait for the completion event to be raised.
    Hope it helps.
    Regards,
    Nabheet Madan

  • Workflow for Changing Item Level Permission in SharePoint 2013 (Office365)

    I am using OOTB Tasks List in SharePoint 2013 (O365). Now my scenario is like this:
    I have two user groups: 1.Sales Managers 2. Sales Executives
    Sales Managers can create & assign task to Executive.  I want something like Sales Managers Can view all tasks (Which is by default view of tasks list i.e. perfact) but Executives can see only their tasks assigned to them. How can I achive this?
    Can I use WorkFlow for this to Change item level permission or to assign permission to assigned to user? or JS
    Can anyone have proper solution? thanks

    1. make 2 SharePoint group 1>Sales Managers 2>Sales Executives
    2. Show 2 WP of same task list in same page.
    3. Use Audience Target for Sales Managers Sharepoint group in first Webpart property. (All
    Iten view)
    4. Show "My Task" view (assign to =[Me]) Bottom WP for same task list and use Audience Target for Sales Executives. Or if you want it to see
    Sales Managers as well, the dont use any Audience Target.
    Bottom line - SharePoint group use in Audience Target will do the trick. OOTB
    Regards Sudip Misra [email protected] +1-412-237-5435 Pittsburgh, PA

  • Change settings for workflow operation

    Hi,
    I am trying to change the settings and choose a custom workflow for the workflow operation 'Upload Document' in a folder in content services. However i cannot change the settings as the 'Workspaces' container has 'Do not allow subfolders to modify this operations workflow settings' checked, and i cannot edit this as it is all greyed out (even though i have admin rights?). Could anyone tell me how I can change the containers workflow settings?
    Many Thanks
    Dave

    If you upgrade to Workspaces 10.1.2.2 you can relax this restriction. As a user with administration privs on the workspaces container (likely the orcladmin by default), switch into administration mode (with link in the top right hand corner of the UI) and edit the properties of the workspaces container to allow subfolders to override the workflow settings.
    regards,
    -sancho

  • N-step approval workflow for Shopping Cart-WS14000133

    Hi Experts,
    We have 5-6 levels of approvals for Shoppoing carts.All the SC needs to be approved by 5-6 managers based on their approval limits.All the approval limits are assigned at the Role level .(We have created Z roles)
    Please let me know how and where to define the roles in BADI to activate the N-step approval workflow for Shopping Cart-WS14000133
    Thanks,
    Venky

    To add to Masa's reply.
    This Badi is well documented by the online help and it even comes with example implementations AND it is mentioned in full detail at help.sap.com
    Kind regards, Rob Dielemans

  • Debug background task in custom workflow for PO change

    Hi,
    We are on ECC 6.0 EHP7.
    I have a custom workflow for PO object type(delegated to std object type BUS2012).
    There is a background task which has some custom code written and I need to debug this code.
    Can someone please let me know how to debug a background task?
    Thanks.

    As suggested by ronen we can debug through swo1 but we have to pass values manually for importing parameters, by using sm50 also we can do debug and there is one more way  to debug
    if its custom task change background  task to fore ground and change business object method also change it to fore ground and activate the work flow.
    now change any  po  then it will stop at that step now take that work item id in swi1 and go to swia and execute after putting break point in that method of business object.
    But best way to debug  through infinite loop i.e sm50.
    suri

  • How can I customize Workflow for Organizational Change (WS01000014)

    Hi ti all!
    Let me know please, How can I customize Workflow for Organizational Change (WS01000014)?
    What steps must I do?
    Thank!

    Oracle Workflow home page is basically static HTML content rendered by Mod PLSQL code written in WFA_HTML.HOME procedure. There is no supported way of customizing this page.
    Thanks

  • Workflow for organization change request

    Hi all,
    I need to develop a workflow for all changes done to organization structure.Whenever any change is done in the organization structure,a notification should go to the highest node user that what changes have been done to the nodes below.Is it possible to develop a workflow for this?
    If so,can some one explain me the tasks that will be involved and the Business Object type to be used?
    Thanks!

    Hi,
    Please check Alert customizing.
    Event Control for Organizational Management
    Use
    In this IMG activity, you can define whether the events of the event schema for the employee (DEPARTMENT_CHANGED and ADRESS_CHANGED) are to be used. These events are then triggered when the organizational unit or the address data of an employee is changed. Then, depending on the settings in the associated event schema, SRM Alert Management is used to trigger an alert, provided that you have entered the schema.
    You maintain this in the IMG activity Define Event Schema.
    You can change the event text under Define Events.
    Activities
    If you want to activate the event schema for the employee, enter the value for the business object Employee (BUS1006003) in the Event Schema field. The default value is MA.
    To deactivate it, leave the field empty.
    Regards,
    Masa

  • Setting up workflow for bom change LO-ECH

    Hi all,
    I am trying to set up the workflow for BOM change.  I have followed the Preparation step for the setup and was stuck at the step 'Define the Organizational Plan for the Change Department (LO-ECH)', step number 6.
    <a href="http://">http://help.sap.com/saphelp_46c/helpdata/en/f1/499a34272a5f2ee10000009b38f83b/frameset.htm</a>
    5.  Select the object type SAP Organizational Object, and click .
    The Add SAP Organizational Object screen appears.
    6.  In the field SAP org. object type, enter one of the following organizational object types:
    TCC11
    Responsible for changes of this change type (master record)
    TCC13
    Responsible for object changes of this change type
    When I click on either TCC11 or TCC13, it give me the below error message
    "Method CREATE not defined for object type Person responsible for changes of this type.
    Message no. 5W003"
    I have debugged the program and seems like it error out because there is no entries for 'CREATE' in the table SWOTDV for objecttype = 'TCC13' or 'TCC11'
    May I know what am I missing here?
    Regards
    Khong Kiam

    But I find if I have as original media - one jpeg still, one 480 x 720 video clip
    480x720? Do you mean 720x420? And what CODEC? DV? Some odd whackball one like MPEG-4? Look at COMPRESSOR in the BROWSER in FCP.
    Stills you have to render...
    and are employing opacity, a filter like Blink,some color correction, etc. That I get minutes to render a 30 second clip.
    That is still adding a filter, and opacity..and color correction. That will require rendering.
    If you find that you drop a clip onto the timeline, and you instantly need to render, then something is wrong with your settings. You shouldn't have to render clips in the timeline. Not if they are captured or imported PROPERLY, meaning that they are codecs that FCP edits with.
    If you want to just grab random clips or use random codecs and throw them all into an application and begin editing, then you should look at another editing application, like Vegas or Adobe Premiere CS5.
    Shane

  • Workflow for sales order change

    hi
      im new to workflow.can anyone help me the steps to configure a workflow to send a mail whenever a change in sales order.
    thanks

    Hi,
    Please refer the link given below and develop workflow for your requirement.
    (For your requirement, you need to use BOR BUS2032 with Method SalesOrder.Change and use the start event SalesOrder.CHANGED)[link1|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0bbdb3c-d640-2a10-d3b2-e4d9b90536a6]

Maybe you are looking for

  • I need to capture directly to a my external hard-drive

    I have tons of material recorded on a MiniDV. It is on standard definition, but I have no space in my hard-drive to capture directly on it. Nevertheless, I do have an external hard-drive, and I'd like to capture directly on it. How can I do that? I a

  • Ipod to TV Connection

    Not sure if this is the correct forum. Anyways , downloaded a movie from itunes store, plays great on computer and ipod. Then bought cable to hook it up to the TV (one connection to ipod, 3 connections (yellow,red and white) to TV. I get sound but no

  • How to open hyperlink(target Webi report) in new tab in BOXI3.1

    Hi all, Currently we are using report link using hyperlink syntax between summary report and transaction report. We were able to open transaction report either new window or same window. *"<a href="http://<servername>:8080/OpenDocument/opendoc/openDo

  • Pass value

    Hi, I want to pass value of kromosom which is an int array to myValue which is int. How to cast the kromosom? myValue = kromosom;

  • HH2 bt infinity and windows 8 Wifi does not have a...

    Hello I bought windows 8 in January and upgraded an old Dell xps m1730 laptop, however after 4 or 5 months the laptop lost all it's wireless connection to the HH. I rang Bt help and eventually was told that it was a fault with my Laptop, after playin