How to get Shopping Carts based on UserId's?

Hello All,
I want to get all the shopping carts by passing the User Id.
Is there any FM which suits the requirement??
Regards,
Yugesh A.

Hello Yugesh,
Which version your are in??
You  can get the status of the Shopping cart FM BBP_DOC_STATUS_GET.
Give the following details to the FM
Import parameters
IV_OBJTYPE  = object_id
IV_GUID    = header guid
Tables           
IT_STATUS    = Give all the entries in exist in  crm_jest table for same header guid of the shopping cart.
In export parameter u will get the status in
EV_STATUS            
EV_STATUS_DESCRIPTION
Regards,
Neelima.
Edited by: S Neelima on May 26, 2010 8:17 AM

Similar Messages

  • How to get Shopping cart number from TECH_INFO Guid approval offline

    Hi,
    When a user approves a shopping cart via e-mail (offline approval), then in transaction SOIN we can the mail which is like this:
    TECH_INFO_A=00F3D1395134D34D34D37DFBE75E81512DB5DB5FBE&submit_a=Approve by e-mail&TECH_INFO_R=444244093D34D34D34DF7EF9D7A0544B6D76D7&NOTM_OUT=&EOM=1
    How can I retrieve shopping cart number from these guids ?
    Thank you very much.
    Regards,
    Peggy

    Hello,
    E-mail data extraction is done by method EMAIL_DATA_EXTRACT from class /SAPSRM/CL_OFFLINEAPP_INBOUND.
    With the exporting parameter EV_WIID, call function BBP_PDH_WFL_OBJECT_WI_GET: you will get the Shopping Cart number.
    To have an idea of the whole mail data extraction process, check report /SAPSRM/OFFLINEAPPROVALGET
    Regards.
    Laurent.

  • How to get Shopping Cart Name from PO number in EBP ?

    Hi,
    If I have the PO number how I can get the shopping cart name related to this PO? I need technical fields and table relations.
    Regards,
    Achirangshu

    I'm not sure if this will work. I posted an answer to a similar question a while ago, but it didn't work well in the posters system. So maybe we can try this in steps. See if you get results from this:
    REPORT ztest   MESSAGE-ID 00 LINE-SIZE 80.
    TABLES srrelroles.
    PARAMETERS: po_no(10) DEFAULT '3000001977'.
    DATA: xobjkey  LIKE srrelroles-objkey,
          roleid(22).
    CONCATENATE po_no 'X' INTO xobjkey.
    * use PO to obtain the role id
    SELECT * FROM srrelroles
      UP TO 1 ROWS
      WHERE objtype EQ 'BUS2012'
        AND roletype EQ 'BBP_TARGET'
        AND ( objkey >= po_no
        AND   objkey <= xobjkey ).
      roleid = srrelroles-roleid.
      EXIT.
    ENDSELECT.
    You'll have to use a PO that you know exist in your system.
    If you get no results, try removing the WHERE on objtype and/or roletype and see what values are returned for these fields.
    Rob

  • Will do ANYTHING for someone to tell me how to get shopping cart to work ..

    in itunes 6.0.4

    Details?
    Have you checked "Use Shopping cart" in preferences?
    Have you clicked on the little triangle next to "Music Store" in the source list to reveal it?
    What is happening that you need help with. As posted, you are not really giving anyone an incentive to help you. In the words of Number Two "We want information."

  • How to install shopping cart in Adobe Muse Website?

    How to install shopping cart in Adobe Muse Website?

    Hi,
    Please refer to the following link Shopping Carts
    Regards,
    Aish

  • How to pass Shopping cart currency to PO currency in SRM 7.0

    Hi all,
    As Iam  very much new to SRM. Can any one help me how to pass shopping cart current to PO currency in SRM 7.0.
    I mean what ever currency value we will maintain in SC same should reflect in PO also. Please let me know which BADI is useful to solve this issue.
    Thanks in advance !!!
    Regards,
    Kalyani

    Hello,
    This is the standard indeed.
    Are you using Extended Classic Scenario, which means that PO is created in SRM?
    When the PO is created without a vendor assigned , the Currency should be defaulted from SC .                                                        
    When adding the vendor a warnning message is issued to inform the purchaser the vendor currency is different with the PO current currency.
    The purchaser could judge by himself if he should change the currency or not.                                                                               
    If the PO is created with the Vendor , the currency is determined from the vendor.
    Not sure if BBP_DOC_CHANGE_BADI would overwrite the PO vendor currency.
    Kind regards,
    Ricardo

  • How to pass Shopping cart currency to  PO  SRM 7.0

    Hi ,
    How to pass Shopping cart currency to Po(insted of vendor master currency). Please help if there is a BADI or work around for solving the issue.
    Thanks & Regards,
    Sai

    Hi Ricardo,
    We found the BADI name from the note which you have provided.But unfortunately we are not able to find the spot where to write the code.
    for example
    After shopping cart is approved (final level release) the po is being created ,So we want to find the code which creates a po in srm.So can you please help how to move on in this case.
    Thanks & Regards,
    Padmasai

  • How to implement Shopping cart functionality in weblogic portal 10.3

    Hi,
    Can someone help me out on how to implement Shopping cart functionality in weblogic portal 10.3?
    Thanks,
    Uttam

    One piece of advise I can give is to NOT* use the Shopping Cart fuctnionality inherent in WLP (com.beasys.commerce.ebusiness.shoppingcart. The Online Commerce functionality in WebLogic Portal has been deprecated.
    Brad

  • How to get fiscal period based on date and Fiscal year?

    Hi Guys,
               Can anybody tell me how to get Fiscal period based on date and Fiscal Year or fiscal year variant?
    Thanks,
    Gopi.

    Hi,
    Please refer the code below:
    *: Report:  ZFISCALYR                                                  :
    *: Date  :  2004                                                       :
    *: Description: Demonstrates how to return the corresponding fiscal    :
    *:              year and posting period for a company code and posting :
    *:              date or posting date and fiscal year variant.          :
    REPORT  zfiscalyr NO STANDARD PAGE HEADING.
    TABLES: ekko.
    PARAMETERS:     p_bukrs TYPE ekko-bukrs,
                    p_bedat TYPE ekko-bedat.
    DATA: gd_fiscalyr  TYPE bapi0002_4-fiscal_year,
          gd_fiscalp   TYPE bapi0002_4-fiscal_period.
    DATA: gd_fiscalyr2 TYPE T009B-BDATJ,
          gd_fiscalp2  TYPE bapi0002_4-fiscal_period.
    DATA: gd_periv     TYPE t009-periv.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    * get fiscal year and period - (requires date and company code)
      CALL FUNCTION 'BAPI_COMPANYCODE_GET_PERIOD'
        EXPORTING
          companycodeid = p_bukrs
          posting_date  = p_bedat
        IMPORTING
          fiscal_year   = gd_fiscalyr
          fiscal_period = gd_fiscalp.
    * Alternative fiscal year function module
    * - (requires date and fiscal year variant code from T009 table)
    * gets first entry in fiscal year variant table (will need to choose
    * correct one from table rather than just using first entry)
      SELECT SINGLE periv
        FROM t009
        INTO gd_periv.
    * get fiscal year and period
      CALL FUNCTION 'DETERMINE_PERIOD'
        EXPORTING
          date                      = p_bedat
    *    PERIOD_IN                 = '000'
          version                   = gd_periv
       IMPORTING
          period                    = gd_fiscalp2
          year                      = gd_fiscalyr2
       EXCEPTIONS
          period_in_not_valid       = 1
          period_not_assigned       = 2
          version_undefined         = 3
          OTHERS                    = 4.
    *END-OF-SELECTION.
    END-OF-SELECTION.
      WRITE:/ 'From function module: BAPI_COMPANYCODE_GET_PERIOD',
            / 'Fiscal year is:', gd_fiscalyr,
            / 'Fiscal period is:', gd_fiscalp.
      SKIP.
      WRITE:/ 'From function module: DETERMINE_PERIOD',
            / 'Fiscal year is:', gd_fiscalyr2,
            / 'Fiscal period is:', gd_fiscalp2.
    Thanks,
    Sriram Ponna.
    Edited by: Sriram Ponna on Apr 17, 2008 8:59 PM

  • How to get BP kind based on user name?

    Hi,
    How to get BP kind based on user name?
    Is there any table other than BUT000 which gives the Business partner no. and BP KIND?
    What is BLUEPRINT table?

    Hi John,
    do you mean Type:
    1     Person
    2     Organisation
    3     Group
    or Role like
    000000     Business Partner (General)
    BBP000     Vendor
    BBP001     Bidder
    BBP002     Portal Provider
    BBP003     Plant
    BBP004     Purchasing Company
    BEA001     Billing Unit
    BUP001     Contact Person
    BUP002     Prospect
    BUP003     Employee
    BUP004     Organizational Unit
    BUP005     Internet User
    The Role can be found in BUT100.
    Regards
    Gregor

  • How to Add Shopping Cart items to an existing PO

    hai friends
    how to Add Shopping Cart items to an existing PO
    Regards
    Emil

    Hi,
    go to the Manage PurchaseOrder
    (BBP_POC) transaction.
    Then, I enter the "Item data" tab and I go to add shopping cart item part and click on "Start Search".
    I select one item in a shopping cart appearing in the screen and press "Add to Purchase Order" button.
    BR,
    Disha.
    Do reward points for useful answers.

  • Get the confirmation number  of a shopping cart based on its po number

    Hi All,
    I have a requirement where i need to find the confirmation number based on the  shopping cart number .
    I have fetched the po number from BBP_PDBEI table .
    How do i further proceed to get the confirmation number of the shopping cart ?
    Your help is  be highly appreciated .

    Hi,
    There are no of ways:
    Based on PO ;
    If your PO is in SRM (and replicated into R/3), and the GR is created directly in R/3, then there is no reference of this R/3 GR in SRM. The only way to get it it to read the backend PO history.
    To do this, you can try to call the BBP_PD_PO_GETDETAIL is SRM, with I_READ_BE_DATA = 'X'.
    You will get your R/3 reference (R/3 material doc number) in export tables E_HEADER_REL and E_ITMLIM_REL, and actual item values in E_ACTVAL.
    Also you can query the tables BBP_PDHGP and BBP_PDIGP to get the refernce doc no for PO and then use FM BBP_PD_CONF_GETDETAIL to get the details fo a particular confirmation.ALso you can search confirmations by "Reference Document", use BBP_PD_CONF_GETLIST, with parameter I_REF_DOC_NO, and then use BBP_PD_CONF_GETDETAIL for the found confirmations.
    Based on SC:
    You can use the FM 's BBP_PD_CONF_GETLIST to get the list of confirmations for SC's and "BBP_PD_CONF_GETDETAIL" to get details for a specific Confirmation.
    Also you can directly query on table BBP_PDHGP.
    HTH.
    BR,
    Disha.
    Do reward points for helpful answers.

  • How to identify Shopping cart status ?

    Hi Experts,
    I need your inputs regarding how to identify the status of the shopping cart ( like Awaiting approval, pending) passing through GUID of the shopping cart..
    Pls provide me if any classes or anythin in such related are available..

    Hello
    Please use FM BBP_DOC_STATUS_GET to get the current status of shopping cart.
    Inputs: SC/PO guid, All the status in the CRM JEST table.
    Output: Current Status of the Doc
    Hope this helps.
    Regards,
    Neelima

  • Get Shopping Cart Detail

    Hello,
    I create a shopping cart with an item and save it.
    I modify it by adding a second item.
    In the Badi BBP_DOC_CHANGE_BADI~BBP_SC_CHANGE :
                  I try to get the old data of my Shopping Cart by using the MF BBP_PD_SC_GETDETAIL in order to compare it with the
    entry parameters table "IT_ITEM".
    In the table output table ITEM of the MF BBP_PD_SC_GETDETAIL, I have not the old data of my shopping cart ... Changes are yet applyed.
    Is it normal ? What is the method to get the old value of my shopping cart ?
    (Initial requirement is : Restart the workflow when add/Remove Item in a Shopping Cart)
    Version Component : SRM 5.00
    Thx.

    Hi,
    > (Initial requirement is : Restart the workflow when add/Remove Item in a Shopping Cart)
    How about setting BBP_WFL_SECURITY value? Is it not enough?
    Please check the BBP_WFL_SECURITY personalization key in personalization tab of PFCG or SU01 transaction.
    BBP_WFL_SECUR_BADI is also available.
    No authorization
    Changes to the document are not allowed while it is being approved.
    Low
    Changes can be made to the document. The approval workflow is restarted after every change.
    Medium
    Changes can be made to the document. After every change, the approval workflow either continues or is restarted.
    The system evaluates the start conditions and restarts the workflow if a new approval is required as a result of the change. If this is not the case, the approval workflow continues.
    High
    Changes can be made to the document. The current approval process always continues. A new approval workflow is not started when the document is changed.
    Regards,
    Masa

  • How to delete shopping carts from Favourites(EBP)

    Hi,
    Could any one help me ASAP .
    I have a problem that a user is using EBP since 2.5 years and all the shopping carts that she orderd filled up in Favorites(under my Ordered shoppingcarts).
    So when she is ordering from Favourites(My Order shoppingcarts) ,the shopping cart is not showing in Order Status.
    So how to delete my ordered shopping carts from Favourites.Please advice me asap because this is a Production issue
    Message was edited by: Sreenivasa Reddy

    HI Mani,
    The problem is not in viewing the shopping carts orderd more than one year, i can view all the shopping carts ordered in favorites(since 2004).
    The Problem is:
    If user follow the path to create shopping cart:Reuisitioning-shop-Special Request- enter text-order-then shopping cart showing in order status(there is no problem )
    But, if user follow the path:Reuisitioning-shop-Favorites-My Ordered Shopping cart-Add to shopping cart-order-then this created shopping cart is not showing in Order status(i mean cart is not getting saved, there is no number also).Is there any thing that after filled up some number of shopping carts in favorites, we cannot follow this path?
    I think now the problem is clear, could you please advice me

Maybe you are looking for

  • How can I use my iPhone as a USB drive?

    I'd like to use my iPhone 4 as a portable USB drive -- the same way I can use my old iPod.  Is there a way to do this, or (Apple, are you listening) will this be included in a future OS release? I find it difficult to believe that this basic function

  • What is the privacy policy of Home Sharing? Why does it require an AppleID?

    Do devices using Home Sharing upload any usage information--or for that matter, any data at all--about the files being shared, or the libraries to which they have access? Why is an AppleID required, rather than, for instance, any made-up shared key,

  • RMI Startup Problem

    Hello: We have installed Ptg 1.0.2.2.0 in a Solaris machine with Solaris 2.7. All things seem to be right, but we have a problem with the RMI server that appears in /tmp/sys_panama.log. Why don4t it find the ServerImpl_Stub class? It finds the Server

  • Prepopulate dropdown list based on selections made in other fields

    I wonder if anyone can help? A form with a radio button group containing two radio buttons "yes" and "no". Below the radio buttons is a dropdown list that has three items in the list "option A, option B, & option C. Below that, is another dropdown li

  • Cant send Picture MMS after 5.1 upgrade

    Im on Tmobile and since I did the 5.1 update I can no longer send picture messages. Anyone have an update? I used the workaround before with the iphonebackup program, I tired it again and it did not work. Soooo Anyone have any ideas????