Problems in shopping cart approval workflows

Hello friends,
We are using standard shappong cart approval workflows ( WS14000129 and WS14000060). I have configured all the steps mentioned in documents but workflows are not working while creating saving shopping carts.
I have tried testing above workflows from background and they work properly from there, which means nothing wrong with basic workflow settings. But when I try save a cart from portal, workflow does get triggered but stops at very first step ( i.e. Parralel section between approval) in workflow. Also it does NOT get errored out but just waiting.
Can anyone please help me in understanding what is wrong and how I can fix it.
Regards,
Arpit

Here are some screenshots of what is happening
http://img306.imageshack.us/img306/245/scerror1np5.jpg
http://img101.imageshack.us/img101/1065/scerror2lx9.jpg
Here is the binding
http://img101.imageshack.us/img101/2289/scerror3wo1.jpg

Similar Messages

  • Re-starting Item Level Shopping Cart Approval Workflow

    Hi All -
    We are implementing WS 14500015 - the Item-based n-level approval workflow for shopping carts - for certain scenarios.  In other scenarios we are using the overall approval workflow.
    I need to re-start the item-level approval workflow for certain scenarios (change in price, change in quantity, etc) - not when any and all changes are made to a line item.
    I was hoping to use the badi BBP_WFL_SECUR_BADI - which works great for the overall n-level shopping cart approval workflow.  However, I can't seem to hit it appropriately for the item level approval workflow!
    Does anyone know if this BADI or any other can be utilized for determining when to re-start the item-level shopping cart n-level approval workflow?
    Thanks so much!
    Abby

    hi,
    Have you implemented the badi BBP_WFL_SECUR_BADI ? for restarting the workflow?
    Let me know?
    Also it is possible to debug and see why the restart does not happen.
    Also let me know wether the restart happens in other cases?

  • Error in Shopping cart Approval workflow

    Hi Workflow experts,
    We are on SRM 5.0 with Extended classic scenario.
    I have activated & set the start conditions for No Approval workflow.
    The workflow for shopping carts end up in Error status.
    Message "Error changing to status RELS". upon further dwelling, the message "Work item XXXXX: Object XXXXXXX method SETRELEASED cannot be executed" is displayed. How can i check the Binding between the Task container & the Method Container.
    I have no red flags in SWUD for WS10000060. I have checked the automatic customisation of workflow & every thing looks good. The workflow back ground jobs are running.
    What could be the problem?
    Your inputs in this regards are appreciated & will be rewarded!!
    Cheers,
    Akash

    Hi
    hopefully this link and the OSS note  1233774 should help
    "method SETRELEASED cannot be executed" for SC work item
    thanks

  • Determine approvers based on lineitem in Shopping Cart Approval Workflow

    Hi All,
    We have N-step Approval workflow for Approving the Shopping cart implemented.
    The issue here is that based on the Product Category for a line item the list of approvals may differ.
    How can i handle this scenario ?
    Regards,
    Radhika.

    Hello Priyanka,
    While using N-step item level SC WF, you have to use BBP_WFL_APPROV_BADI for agent determination. This badi gets called everytime when shopper changes SC or approver takes action on it. So after every change done to SC, approvers are determined.
    Follow the listed steps:
    1) As per your logic, for each item first determine the approvers at each level & assign them approval index. Arrange them in ascending order of their approval index at item level.
    2) Now its possible that you have multiple approvers, multiple item at each level. For sending SC for approval, you will have to generate Approval_object_guid for each approver.  For this you have to find out a criteria for generating Approval guid.
    Eg:
    SC has 3 items then, if for any 2 items product category is similar then approvers will be similar at a particular level. Similarly for different Product Category, different approvers are determined. So you can consider 'Product Category' & 'Approval index' as a criteria to club approvers at each level.
    3) Use function module ''BBP_WFL_DIN_APP_OBJ_GET' to generate approval guid based on criteria & to update badi parameter 'item_approval_obj'.
    4) Update badi parameters 'Approval_table' and 'Item_approval_table'.
    5) Once SC is approved by all, set 'no_further_approval_needed' flag.
    Please let me know if you need any further help.
    Thanks,
    Shital

  • How to activate Shopping cart approval ProcessControlled Workflow inSRM 7.0

    Hi,
    I need to activate shopping cart approval Process Controlled workflow in SRM 7.0. ,I have activated the link for Standard Work Flow Template WS40000014 .But the approval process is not initiated for Shopping cart.
    (But its working for PO)
    Do I need to configure something in the system?
    Thanks

    Hi Masa,
    Yes configuration is done.
    Process Schema for SC:
    BUS2121     3C_SC_600_000
    BUS2121     3C_SC_600_001
    BUS2121     3C_SC_700_002
    Process Schema for PO :
    BUS2201     3C_PO_600_000
    BUS2201     3C_PO_600_001
    BUS2201     9C_BUS2201_EX01
    BUS2201     9C_BUS2201_EX02
    In BBP_PD status is ....
    Stats:
               Status         Description                    Inactiv
    HEADER     I1015          Awaiting Approval
    HEADER     I1021          Created
    HEADER     I1038          Complete
    HEADER     I1106          Shopping cart ordered
    Please suggest do i need to change anything?
    Thakn you

  • Problem with Shopping cart's currency

    Hello,
    I've got a problem with shopping cart's currency. I create the shopping cart with 1 item currency "EUR", I see in my backend ECC 5.0 , my purchase requisition have got a currency in "CHF".
    System SRM : SRM 5.5
    System ECC : 5.0
    The scenario for approval shopping cart is automatic, the workflow WS1000060 is active.
    Can you help me please, thanks very much.
    Lionel

    Hi Sambit,
    Yes I found the solution.
    You must implemente this BADI BBP_CREATE_BE_RQ_NEW with method FILL_RQ_INTERFACE. 
    You can see my code :
    METHOD if_ex_bbp_create_be_rq_new~fill_rq_interface.
      DATA : wa_requisition_items TYPE bbps_badi_rq_item,
             wa_item TYPE bbp_pds_transfer_item,
             w_tabix TYPE sy-tabix,
             w_check.
      LOOP AT cs_rq_document-it_requisition_items INTO wa_requisition_items.
        w_tabix = sy-tabix.
        READ TABLE is_sc_document-item INDEX w_tabix INTO wa_item.
        IF wa_requisition_items-currency NE wa_item-currency.
          wa_requisition_items-currency = wa_item-currency.
          wa_requisition_items-c_amt_bapi = wa_item-gross_price.
        ENDIF.                                               
        MODIFY cs_rq_document-it_requisition_items FROM wa_requisition_items INDEX w_tabix.
        CLEAR : wa_requisition_items,
                wa_item.
      ENDLOOP.
    ENDMETHOD.
    I hope that will help you.
    Kind regards.
    Lionel
    Edited by: Lionel Lacotte on Jun 24, 2008 2:22 PM

  • Shopping Cart approval process in SRM using Black Berry

    Hi,
    I am very new to SRM. Here the user wants the whole approval/rejection process of shopping cart should be done via the Black Berry.
    When a shopping cart is created in SRM then automatically a mail should appear in this mail box(outlook or lotus) as well as in the black berry mail box, so from black berry the user will accept/reject the shopping cart.
    What workflow should be used? for mailing to outlook as well as in the blackberry whether we should implement any BAdI and also for integrating SRM & black berry whether we require any plug-in or configuration to be done..
    Please do the needful..
    Thanks and Regards,
    Chandra Sekhar

    Hi,
    pl. read this:
    Mobile Enterprise Buyer
    Use
    Users can log on to the Enterprise Buyer system using a WAP-enabled cellular phone or any other WAP-enabled front end. This allows them to perform many procurement tasks completely independently of any docking station. These mobile applications are part of the standard system setup for Enterprise Buyer.
    Managers can approve shopping carts while on business trips far away from the office.
    The start URL for the mobile scenarios is:
    http://.:/scripts/wgate/wapbbpstart/!?~language=
    where <language> = de or <language> = en, for example.
    The initial screen is displayed in the relevant language.
    Integration
    You can either use your own WAP gateway or you can use a WAP gateway service from a telecommunications provider. If you have your own gateway, you can position it behind your firewall. This means that communication is via a dialup line as far as the WAP gateway, that is, a secure connection going behind the firewall. Beyond this point, communication is via HTTP. If you are using a WAP gateway service, the dialup line stops outside your firewall with the less secure HTTP communication starting outside the firewall.
    The graphic shows a standard configuration with a WAP gateway located behind the firewall.
    Prerequisites
    You require the following:
    WAP-enabled mobile device
    WAP gateway
    WML-enabled catalog that supports OCI
    You have configured your Web server to handle the MIME (Multipurpose Internet Mail Extensions) types required for WAP. These are as follows:
    File extension
    MIME type
    Wml
    text/vnd.wap.wml
    Wmlc
    Application/vnd.wap.wmlc
    Wmls
    text/vnd.wap.wmlscript
    Wmlsc
    Application/vnd.wap.wmlscriptc
    Wbmp
    image/vnd.wap.wbmp
    If you have your own Web server, you define the MIME types using the Web server's administration tools. In Microsoft IIS, you have to enter the types on the Properties page of your site on the tab card HTTP Headers. If you are not using your own Web server, inform the administrator or provider running the Web server.
    Features
    The following functions are available:
    Create new shopping cart
    Users can:
    Select catalogs using input help
    View catalogs (by product group)
    Search for products in catalogs (full text)
    Display item details
    Add items to shopping carts
    Delete items from shopping carts
    Change item quantities
    Delete shopping carts
    Order shopping carts
    When a shopping cart is ordered, an order confirmation is displayed giving the shopping cart name and the total value of the shopping cart.
    Status check
    Users can:
    Display overview of shopping carts (shopping cart name and status)
    Display header data for shopping carts (for example, shopping cart name and date of last change)
    Inbox
    Users can:
    Display overview of work items (only shopping cart approval) and messages
    Display detail view of messages (sender and full short text)
    Display detail view of work items (full short text only)
    Managers can approve or reject shopping carts
    Managers can only approve or reject complete shopping carts. Approval and rejection at item level is not possible.
    Reporting
    Managers can display the most recent purchase orders created for their cost center(s).
    to get presentable doc mail me on
    [email protected]
    BR
    Dinesh
    <b>Reward if helps</b>

  • Tables to link Shopping Cart to Workflow

    I have a request to report on total dollars for shoppng carts that are sent to a particular inbox and total dollars for shopping carts that were rejected in that inbox.  I've written dozens of Quickviewer queries to report on shopping cart data however I've never linked the shopping cart to workflow items.
    Can this be done without writing an ABAP program to extract the workflow data?

    Hi Nancy,
    You may want to form joins between the following Shopping cart tables and workflow tables.
    Shopping cart tables
    CRMD_ORDERADM_H
    CRMD_ORDERADM_I
    Workflow tables
    SWWWIHEAD
    SWW_CONTOB (The field Object key in this table will have shopping cart number)
    SWWUSERWI
    SWW_CONT(Workflow container table which will store whether workitem is approved or rejected)
    Hope this helps.
    Please reward points if hint is foud useful.
    Thanks
    Venkat

  • Shopping Cart Approval & PO generation

    Hi All,
    I am using N step BADI for Shopping Cart approval process. Here can we generate the PO even when the Shopping Cart is awaiting Approval.
    Please let me know how POs can be created without any approval necessary?
    This is Urgent!!!
    Thanks,
    San

    Hi,
    Yes this needs to be active.
    This is the job which updates the item overview status from awaiting approval to approved.
    We had a similar issue for one step workflow for SC where becos of this the SC's were showing awaiting approval though the approver activity is completed.
    Refer OSS note 790027 which says that after all configs the status is updated by background jobs. This is the one which is explained in it.
    Go to SWU3 and verify all green tick marks "Schedule background job for event queue" is the with this job. Execute it and you can display the job from here.
    Best regards,
    Sridhar.
    Please reward points for useful answers.

  • Accept / Rejection Reasons for Shopping Cart Approval

    Hi experts!
    Our customer would like to have the following functionality.
    During approval workflow the user will either Accept or Reject the shopping cart and at the same time he must enter a reason for approval / rejection from a list with fixed texts / values.
    I didn't find any documentation about rejection reasons during approval of shopping cart. Has anybody of you ever seen this or realized anything like that?
    If SAP Standard doesn't offer anything suitable we might have to modify the approver screen or develop a new screen.
    Any helpful answer would be much appreciated.
    Best regards,
    Corinne

    Hi
    <b>Please try this -></b>
    Re: Make mandatory field-Reason for rejection notes-SC approval screen
    Reason for Return Delivery missing
    Re: Text Types Issue on Bid/Quote
    Temporary GUID coming from Sourcing in Doc change badi
    Reason for Return Delivery
    inactive approval and reject buttons on shopping cart approval screen
    <u>Else Use BBP_DOC_CHECK_BADI</u>
    SC header level Reject- Display error message
    Hope this will help. Do let me know.
    Regards
    - Atul

  • Shopping cart using Workflow??

    Hello Expert could anyone plz tell me why we need shopping cart ? i mean what is the necessity of it ? and how to implement shopping cart  with WORKFLOW ?
    Useful answer will be rewarded.
    Thanks
    A v I

    Hi,
       most of the Badi's that are related to business document will trigger when the approver take the decision.. if the error raise by the standard code.. approver must be seen in the SC screen.. if the error is raise by the check badi then you can debug the check badi in BBP_PD.. put the break point in DOC_CHECK badi and click the check message again in the bottom of the details screen..
    Saravanan

  • Addition of extra fields in Shopping Cart Approval Screen

    Hi,
    We are investigating how to change the design of the shopping cart approval table. We would like to include the row "Shopping Cart Number", and be able to sort on that column as well. Would that be possible?
    We have been looking at SAP Note 672960 which describes how to add information to other objects, but not the approval screen.
    Any suggestions?
    Kind Regards,
    Christian

    Hi,
    If you are talking about Workflow Inbox, please check Dynamic Column customizing.
    <a href="http://help.sap.com/saphelp_srm50/helpdata/en/8b/4fa9465db211d2b404006094b92d37/frameset.htm">http://help.sap.com/saphelp_srm50/helpdata/en/8b/4fa9465db211d2b404006094b92d37/frameset.htm</a>
    Regards,
    Masa

  • Shopping cart Approval preview in SRM

    Hi Experts,
    I have an issue in SRM Shopping Cart Approval Overview.
    Now in Shopping Cart approval overview, displaying the positions of the agents. But i want to display names of the agents in case of positions.
    Please help me to solve this issue.
    Regards,
    Chandu

    hi
    substitue the name of the postiions with the name of the agent
    regards
    andrea

  • Disable "Change approver" in shopping cart approval

    Hi all,
    I need to deactivated "change approver" in shopping cart approval process, I'm working in SRM Server 550, it can be controlled trough an authorization objet in role or a configuration?
    Regards,
    José Luis D.

    Hi,
    Please check  the BADI BBP_CHNG_AGNT_ALLOW.
    Regards,
    Masa

  • Error in shopping cart approval

    Hello all, I am working in SRM 7.0. I am working with shopping cart with one approve level only
    The approver must be the requisitioner's manager always, but when I go to change shopping cart approve squema I have an error message.
    I configured it:
    In process levels for object type BUS2121
    Process schema evaluation: 1EV_SC_001
    Process level schema: 1C_SAPSRM_MIG_101 and 3C_SC_700_002
    For 1C_SAPSRM_MIG_101:
    Process level configuration:
    Level Type: Approval
    Responsible Resolver Name: RR_MANAGER
    Task ID: 40007954
    Decision Type: 2
    When I save a shopping cart I have this error message:
    No approver found RR_MANAGER BUS2121 4CFCDAE5BAC10B80E10080000A8C6250
    In the organizational structure I am in the same organization unit of manager and I have only one manager in all structure. How can I determine the manager in this case? Which can be the error?
    Thanks in advance
    Rosa Rodríguez

    Hello, in SLG1 I can´t see errors, I only see this:
    @5BQInformation@     10 Execute event 1EV_SC_001 Evento para BO SC. 09.12.2010 12:11:36
    @5BQInformation@     42 Execute expression 1V_SC_SCHEME Determinação do esquema dinâmica para SC; result 1C_SAPSRM_MIG_101
    @5BQInformation@     52 Execute expression 0V_SC_EVENT Evento do objeto; result SAVED
    @5BQInformation@     63 Execute expression 0C_C1_C_FWFSCRLCNTNT Classe: /SAPSRM/CL_WF_RULE_CONTXT_SC; result /SAPSRM/CL_WF_RULE_CONTXT_SC
    @5BQInformation@     63 Execute expression 0C_C2_C_EVENT Método - evento do objeto; result GET_WF_EVENT
    I am using 1EV_SC_001 evalution ID not 0EV000.
    For evaluation ID 1EV_SC_001 I used 1C_SAPSRM_MIG_101 process level schema and RR_MANAGER as Resp. Responsable Name.
    Can I used 0EV000 evaluation ID? What is the process level schema that I have to used?
    Thanks in advance
    Rosa Rodríguez

Maybe you are looking for

  • Lenovo System update 5.1 won't install on windows 8

    My sytstem update worked for a few weeks in windows 8 and then it stopped loading.  I tried to do an uninstall and reinstall but unfortunately I get the following message "the wizard was interrupted before lenovo system update could be completely ins

  • Charged £36 for switching to a different supplier ...

    I signed a 12 month phone and broadband contract last September with BT, and received a renewal notice a month prior to my contract being up to say that I should let them know if I didn't want to renew, otherwise my renewal would go ahead on 19th Sep

  • Calling external C code from the database

    Hi, We have an external routine written in C which we want to reuse. I have run this using external procedure call but as expected extproc processing is very slow. The routine cannot be rewritten, it is a "black box" component. We have considered wra

  • How open old Appleworks documents that appear as UNIX executable files?

    A few of my old Appleworks or Clarisworks files won't open with Appleworks 6, but show up as a "UNIX executable file." I have tried adding the ".cwk" extension, repairing permissions using Disk Utility, and using Finder>File>Get info>Open to choose A

  • About workflow

    Hi all, I have problem with process flow, when i am deploying process flow it not deployed and i am getting workflow is not properly installed error. where i have to install workflow is it in database(oracle 10g) or in OWB software. Thanks, Kumar.