What FM should be called to Order a shopping cart

Hi
I am using BBP_PD_SC_CREATE, BBP_PD_SC_SAVE & BBP_PD_SC_COMMIT in sequence to create the shopping cart..
Shopping cart gets created.. I see the entries in CRMD_ORDERADM_H & CRMD_ORDERADM_I but I don't find the shopping cart in BBP_MON_SC tcode. Looks like its not ordered.. Can anyone plz help on what FM should be called to order a shopping cart? ...
Thanks
Geetha

Hi
I tried the FM - BBP_PD_SC_CREATE_EXTERNAL, but I have issues with account assignment data (which will set up default for any user in config). This takes only the default Cost center & doesn't take business area & GL Account. I fed the GL Account & Business area in debugging mode & shopping cart went through without issues & was ordered. Thanks Muthu for your reply..
Still, due to the issue with GL Acct & Business area (that I face in the FM - BBP_PD_SC_CREATE_EXTERNAL) I am not sure if I will be able to use this..
Next question: Since BBP_PD_SC_CREATE_EXTERNAL inturn creates BBP_PD_SC_CREATE, I am tried to check what parameters are passed while calling the latter.. I see that the parameters I_SAVE is passed as X..
When I tried to pass I_SAVE & run the FM - BBP_PD_SC_CREATE, I get the dump CX_BBP_PD_ABORT. Can anyone help on this...
Did you get the same dump anytime..
Note -- If I run the FM - BBP_PD_SC_CREATE without passing I_SAVE = 'X' & retain the other data, it goes through sucessfully but doesn't order the shopping cart.. But it creates the SC sucessfully.
Thanks
Geetha

Similar Messages

  • BADI  that is called when we create shopping cart

    Hi all,
    Can any one tell me the BADI that is called when we order a shopping cart.
    Thanks&Regards,
    Hari

    Hi
    For Business Object type - BUS2121, the SAVED event is triggered, once shopping cart is saved, using Standard SRM Workflow. 
    Refer to SAP transaction - SWETYPV (for Event linkages)
    When a user orders a shopping cart. This triggers the SAVED event, which starts the approval workflow. The system analyzes the start conditions in Customizing.
    There is information here on which workflow the system should start under which conditions. Each workflow represents an approval process (single-level or multi-level) or is defined in such a way that no approval is necessary.
    If approval is required, the system goes through the corresponding approval procedure. The user can meanwhile change or delete the shopping cart. The shopping cart can take on the following statuses:
    Not accepted
    Approved
    Deleted
    Changed
    You can further process a request via a subworkflow.
    If approval is not required, the system sets the status to Approved and immediately starts the subworkflow.
    Users receive a work item. Before the shopping cart can be further processed, they have to accept the rejection of items (or not, as the case may be).
    After the shopping cart is released, the system calls the spooler. This transfers the shopping cart to the backend system or creates a purchase order locally in the Enterprise Buyer system.
    This is how a workflow triggers.
    You want to start several Wf for one event ? Technically this is possible, but not recommended as you will loose some functionalities like the approval preview and maybe some related to the workflow restart: In SRM the system consider that only one workflow instance can be active at a time.
    For the approval preview, it get the last active version.
    For the worklow restart, the same.
    Select BOR object BUS2121 using SWO1 transaction.
    The whole list of shopping cart approval WF will be displayed.
    Please go through the related links as well ->
    Re: Activating workflow
    Re: Custom Workflow is not behave as like standard..
    How workflow is getting trigger when you click order
    can we have 'BUS2121' for multiple WF..
    Hope this will help. Do let me know.
    Regards
    - Atul

  • What is the Best Way to add a shopping cart?

    What is the best way to add a shopping cart?
    Thanks.

    See that field at the top right that says "Search Forums"? Try Dreamweaver shopping cart. You'll get a lot of answers.

  • DIfferent screen search fields in Purchase Order and Shopping Cart

    Hi,
    I created a field in MDM and associated it in OCI , in order to appear in SRM , in the Catalog Search screen in the Purchase Order.
    But, the field also appears in the search screen in Shopping Cart. Do you know if there is any way of limiting the field to appear only in Purchase Order catalog search?
    Thanks in advance,
    Lígia Moreira
    Edited by: Lígia Moreira on Feb 28, 2011 9:45 AM

    Hello Xavier,
    If partner "Requester" and/or "Goods Recipient" is different between PO items and there was previously a "Requester" and/or a "Goods Recipient" at PO header, after your update, partner at header level should have field CRMD_PARTNER-DISABLED set: "Requester" and /or "Goods Recipient" is active at header level only if the same partner is populated for all PO items.
    Concerning SC, there is no "Requester" and/or "Goods Recipient" at header level.
    Be that as it may, if you use function modules BBP_PD_PO_UPDATE,  BBP_PD_PO_SAVE and BAPI_TRANSACTION_COMMIT, modifications will be OK (do not forget to not populate table I_PARTNER for partner at header level if partners are different at item level).
    Regards.
    Laurent.

  • I dropped my MacBook the other day.  It fell of a couch about a foot drop. Soon after, it froze and I forced shut down. Now it won't turn on past the white apple screen. What do I do? What number should I call?

    Please help!

    Make an appointment at an Apple store...not covered under warranty...hope all that's wrong is a failed hard drive. Do you have a backup?

  • Producat Category should not have any default value - Shopping Cart

    Hi SRM Experts,
    Presently I am getting default value for Product Category in SRM Shopping Cart Creation Web Browser Screen initial screen. But I dont require to have any default value. Please suggest me or provide a solution how I can get a solution for the above issue.
    Thanks a lot in advance.
    SRM Version - SRM 4.0
    Thanks,
    Sudarsan

    Hi Lokesh / Muthu / Krish,
    Thanks a lot for your response .
    I checked BAdI (DOC_CHANGE) and Extended attributes also. I removed default prodcut category from extended product category and we are not maintaining the default Product Catgory values in BAdI also. Still I am getting default value while I am creating Shopping Cart with Describe Requirement Option. Please let me know is there any other solution for my issue.
    Thanks,
    Sudarsan

  • What query should be created for this case

    Here are those classes:
    Folder{
        String name;
        @ManyToOne
        Subject owner;
    Subject {
        String name;
    }What query should I create in order to: find out if there is an actual Folder for a Subject with the name X in the database ?
    Actually, the question is kinda stupid, but im not experienced with queries....

    javaUserMuser wrote:
    Here are those classes:
    Folder{
    String name;
    @ManyToOne
    Subject owner;
    Subject {
    String name;
    }What query should I create in order to: find out if there is an actual Folder for a Subject with the name X in the database ?Can't tell based on the info you posted. These are Java objects, and queries deal with relational tables.
    Your naming is confusing. Subject and owner are two very different things.
    If I had two tables like this:
    CREATE TABLE IF NOT EXISTS owners
        owner_id bigint not null auto_increment,
        name varchar(80),
        primary key(owner_id)
    CREATE TABLE IF NOT EXISTS folders
        folder_id bigint not null auto_increment,
        name varchar(80),
        owner_id bigint   
        primary key(folder_id),
        foreign key(owner_id) references(owners)
    );I'd write the JOIN query this way:
    SELECT f.name, o.name
    FROM folders as f, owners as o
    WHERE o.owner_id = ?
    AND o.owner_id = f.owner_idYou realize, of course, that if you're using EJB3 as the annotations suggest, that you don't write any SQL. EJB3 generates it dynamically for you.
    %

  • Order forms and shopping carts

    I'm fairly new to web design, having set up 3 or 4 basic
    sites. A friend asked me to help him set up a website for his small
    candy business. It all went fine until I got to the order form. The
    only thing I could think of was set up a form in a layout program
    that gets imported into dreamweaver and the viewer would have to
    print it out, fill it out and fax it back. I know this is totally
    lame, but I have no idea how to go about setting up order forms,
    shopping carts, secure certificates, etc. Is there a good easy to
    follow step by step explanation and tutorial anywhere?

    Hi,
    I bought Dreamweaver MX unleashed by Pizzi Ruvalcaba. Very
    good step by step instructions on setting up an e-commerce site. I
    should add that I had to buy "shopping cart" code to implement it.
    Regards
    Paul

  • Officejet 8600 missing parts of online shopping cart orders I receive

    My new networked Officejet 8600 is selectively printing parts of an online shopping cart whose orders I print out. The order shows perfectly in the 'preview screen" but certain parts of the order, such as the city, are blank spaces.
    Also, when testing other online pages, they  come out fine. Don't know what to do! Please help. The shopping cart company blames the printer. 

    I found and corrected the issue.
    A BADI Enhancement Spot ME_PROCESS_PO_CUST was implemented. The Method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM was modified within this Implementation. The focus of this upodate was to Modify the ROUTE information within the SHIPPING information in the PO Update Process (PTV Internal Table within  ABAP SAPLMEPO). Unfortunately, the ultimate update of this internal table destroyed the UPDKZ indicator, which signifies when the EKPV record is to be created ('I') or updated ('U'). The update ultimately did not create the EKPV record.
    Once this METHOD and the above SAP Enhancement (MM06E005 - EXIT_SAPMM06E_012 - ZXM06U43) were corrected, an STO Modification (creation of a new Item) ALWAYS creates a Shipping Tab (EKPV record).

  • Workflow for shopping cart ordering not triggered

    Hi Gurus,
    we are running SRM 7.0 and we are facing a big issue in handling the shopping carts when created by interfaces.
    basically, when we create a shopping cart via interfaces and not manually on the SRM, the shopping cart remains in status "Open" and it is not ordered. We can also see in the shopping cart (in the tab Approval Process Overview we can see that the Approval Status is Open - No Decision Made).
    Can anybody give a hint on how having the worlflow to "order" the shopping cart executed also whenever a shopping cart is created by the interface and not manually?
    Thanks a lot in advance (lot of points promised...)

    Hi Masa, thanks a lot for answring!
    - It is a new implementation
    - We are using the new Processed-Controlled workflow
    - it works if I manually create a SC from the standard webdynpro UI and I click the Order button.
    - How can I check the receiving interface?
    thanks!

  • Limit Order Shopping Cart issue

    Hi SRM Gurus,
    I have some issue regarding Limit Order SC.
    Currenty I am using SRM 4.0 and doing the Limit Order SC.
    The Limit Order SC has been created successfully in SRM and the PO is also getting populated in ECC.
    But the problem is like,
    When we create Limit Order(blanket) Shopping cart, then there has 2 options to do that.
    (Under Follow-Up Action)
    1. Confirmation and invoice
    2. Invoice Only.
    Depending on the above in ECC, the Item category for the PO will be D(Confirmation and Invoice only)and B (Invoice Only).
    But for my case it's always showing Item Category D in both of the cases.So as because of this issue, some thing is going wrong from ECC perspective.
    So please help me out from this problem.
    Thnaks for your help in advance.
    Full points for the answer.
    Thanks again,
    Shraman

    Hi Shraman,
    We would like to start using limit shopping cart, but do not know how to implement this.
    Can you enlighten me in regards to this?
    Can you do it without using extended classic scenario?
    I have the option in the shop on behalf but not in normal shopping
    Thanks in advance,
    Thomas

  • Create Shopping Cart or Purchase order with MPN SRM

    Hello,
    I have a problem with the manufacturer part number in purchase order and shopping cart. In the enterprise have implemented SRM 7.0 with PPS and Extended Classic Scenario, I can't do purchase order and replicate this to ECC, there is an error with the material HERS and plant, it doesn't exist in the plant but this material in ECC has relationship whit the material inventory managed.
    Can anyone help me please?
    Thanks
    Patty

    Hi,
    You would get better response for your question from
    Internet Transaction Server (ITS)
    Regarding your question about break point. yes it can be done.
    Regards
    Raja

  • I can not download any files, i think i by misstake put the download manager in the trash and then deleted it, what should i do? I am not so shore what the program is called in English( in Swedish:filhämtare) but it looks like a little grey box

    Hi, i really need help... I think i by accident deleted the "download manager" i´m not shore what the program is called in English ( Swedish : filhämtaren), but its symbol looks like a grey little box and when you download a file it appears on a list and is then saved in this program. I don`t know how i didn´t see it in the trash, but somehow i deleted this program by mistake. And as a consequence i can no longer open/download any files. I just got my macbook pro and i do love the system but i am now unsure about what i should do with this problem since i am not that terribly good with computers.... Is there any way you can fix this?

    soffi h wrote:
    Hi, i really need help... I think i by accident deleted the "download manager" i´m not shore what the program is called in English ( Swedish : filhämtaren), but its symbol looks like a grey little box
    If it looks like this:
    It's called an "installer.app"
    You can custom install the "installer.app" directly from your System DVD that originally came w/your computer.  It will be either inside the "Bundled Software" folder or inside the "Applications" folder.

  • After upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the   mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in or

    After yesterday upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the + mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in order to quickly add an address to an e-mail that I wish to send?
    Bob

    On the right of the To: field you will see a circled plus sign:
    Click it.

  • Whenever  Transfer order Genarated  Smartform  Should be called?

    HI Guys,
    I have Requirement like Wnenever  we save the Transfer Order number then  MY smartform should be called ? for this i am suing one EXit  LIke  EXIT_RLVSDR40_001  there i am calling my smartform . BUt when Iam trying to save the TO  but this is nnot triggered.   I am using same exit  for printing samrtform  for another country  it is working .    but is it not working now ? can any one please help me on these ?

    resolved

Maybe you are looking for

  • Can I create a salutation field to print labels like, "Rob & Julie Smith" ?

    I want to send Christmas cards to my friends in Address Book. But when I print the address labels up, I want something to appear other than the standard "firstname lastname" on the top line of the label. Can I create a custom field, like a salutation

  • Conversion of microseconds to number of days in OSB

    Hi All, I want to convert a string variable (e.g1245677889) which represents microseconds.I want to convert this microseconds to corresponding number of days in OSb.I there any xquery function that can be directly used to get the number of days???? t

  • O9i Database Config. Assistant Error

    I have installed O9i on a 5G logical partition, secondary disc XP system. The install is fine, but the DB Configuration Assistant fails to start at the end. The installer says that it cannot find the JavaSoft file, but it is in the proper location on

  • Parameters not saving

    Just purchased new machine with Snow Leopard.  Now parameters are not being saved, e.g.:  window placement, mail preferences, safari bookmarks, and on and on.  Anyone have ideas?

  • When text messages are deleted are they gone for good?

    My daughter accidentally deleted messages that I need for court. Is there any way to retrieve them after she cleared my conversation ?