What is the program in SRM to convert a shopping cart to be a purchase req?

SRM gurus,
What is the program in SRM to convert a shopping cart to be a purchase requisition?
I intented to put some break points in some related programs/BADIs and to see if those program will be called when a shopping cart is converted to a purchase requisition.
Thanks in advance!
Fisher Li

Hello,
During shopping cart transfer, FM META_BAPI_DISPATCH is called many times.
It is used when SRM checks some adapters to be called depending on ECC version.
Once your breakpoint stops at this FM, you can check the call stack.
Regards,
Ricardo

Similar Messages

  • What's the best way to integrate third party shopping carts with ATG's (10.6)?

    Hi,
    We are using ATG (10.6) for our e-commerce platform and we have many other websites which try to engage the end user to buy our products.
    Those other websites are developed using different technologies but we would like to allow the visitor to click a buy button and add things to a local shopping cart. That "generic" Shopping cart will be hosted locally in the website and only when he/she tries to "check out" we will forward them to e-commerce (ATG) main page, but the ATG's shopping cart has to have all the item he/she selected previously on the website.
    How can that be done?
    1) In the best possible way?
    2) In the simplest possible way?
    Regards

    Hi,
    We have seen that. Thanks.
    Now, how could we add multiple tiems to ATG's shopping cart before redirecting the user to ATG's home?
    The scenario we see is:
    User navigates on a Marketing website, spots items he/she is interested in and add them to the LOCAL shopping cart (without leaving the current website), after adding many items he/she decides to buy these items buy clicking FINISH, at this moment we add the N items to ATG shopping cart (how??) and redirect the user to ATG's home.
    Is that possible?
    Thanks

  • What is the best WMA to MP3 Converter?

    What is the best WMA to Mp3 Converter Software Program?

    http://www.iskysoft.com/convert-audio/wma-to-mp3-mac.html
    http://www.easywma.com/EasyWMA/About.html
    http://www.mediahuman.com/audio-converter/

  • Download the trial version.  Open the program and try to convert to PDF.  Keep asking to subscribe.

    Download the trial version.  Open the program and try to convert to PDF.  Keep asking to subscribe.  Don't I haveI trial version to use?  Why do I need to subscribe?

    "the program" being what?  Can you post a screenshot of what you see: https://forums.adobe.com/thread/1070933

  • What is the program name which extend the partitions in BW 3.5 ?

    Hi All..
    What is the program name which extend/split the partitions in BW 3.5 ?
    Thanks..
    Saj

    Hope It's not too late,
    You might be talking about the program described in note "697275":
      - SAP_EXTEND_PARTITIONING_INF for INFORMIX databases.
    There's also a possibility described in note "895539":
      - SAP_PART_EXTEND_ETABLE  for ORACLE databases.
    Good Luck!
    Edited by: Martin St-Jean on Dec 3, 2009 5:07 PM
    Edited by: Martin St-Jean on Dec 3, 2009 5:20 PM

  • When we create a table maintenance generator what is the program object

    When we create a table maintenance generator what is the program object
         & What is the database object is being created?

    check links
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=use%20of%20table%20maintenance%20generator&cat=sdn_all
    http://www.sapdevelopment.co.uk/tips/tips_tabmaint_tcode.htm
    http://www.sap-img.com/abap/create-a-table-maintance-program-for-a-z-table.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed2d446011d189700000e8322d00/content.htm
    Rewards if useful.....................
    Minal

  • Urgent what is the programs to delete work item history and work item

    hi gurus this is very urgent ,
    what is the programs to delete work item history and work item ?

    Hi Deppak.
    There is a program ,to delete an workitem and history
    RSWWHIDE---Program to delete the history.
    RSWWWIDE--- Program to delete an workitem.

  • What is the program object is being created when we activate smartform?

    What is the program object is being created when we activate smartform?

    hi,
    while activate the smart form, a function module is being created.
    by using this function module we can pass the business data to the form.
    in print program we can simply call the function module which has been created by smart form while it activate and pass required parameters to it.
    for more information follow this link.
    http://sap.niraj.tripod.com/id67.html
    regards,
    Ashok Reddy

  • What is the best software/plugin for converting Quark files to Indesign?

    What is the best software/plugin for converting Quark files to Indesign?
    I don't want to upgrade to the latest Quark now i've got CC so going to make the leap to indesign only. Does Indesign auto convert or do I need anything else?

    ID does not load QXD files. There is a respective commercial third-party plug-in to that effect, but it's rather pricey and I'm not up to speed which versions of Quark and ID it supports and which features come over. Inquire in the ID forum.
    Mylenium

  • What is the best mac software to convert vcd to dvd

    what is the best mac software to convert vcd to dvd

    There is no best per se.  All converter software does the same thing.....convert files. 
    Some are very user friendly, high tech or simple to use.  You will need to read the reviews of the ones that interest you the most. 
    I personally use several.....VidConvert, Voltaic, Xilisoft Video Converter Ultimate. 

  • What is the programming (ABAP) difference between Unicode and non Unicode?

    What is the programming(ABAP) difference between Unicode and non Unicode?
    Edited by: NIV on Apr 12, 2010 1:29 PM

    Hi
    The difference between programming in Unicode or not Unicode is that you should consider some adjustments to make on the Program "Z" to comply with the judgments Unicode Standard.
    In the past, developments in SAP using multiple systems to encode the characters of different alphabets. For example: ASCII, EBCDI, or double-byte code pages.
    These coding systems mostly use 1 byte per character, which can encode up to 256 characters. However, other alphabets such as Japanese or Chinese use a larger number of characters in their alphabets. That's why the system using double-byte code page, which uses 2 bytes per character.
    In order to unify the different alphabets, it was decided to implement a single coding system that uses 2 bytes per character regardless of what language is concerned. That system is called Unicode.
    Unicode is also the official way to implement ISO/IEC 10646 and is supported in many operating systems and all modern browsers.
    The way of verifying whether a program was adjusted or not, is through the execution of the UCCHECK transaction. Additionally, you can check by controlling syntax (making sure that this asset verification check Unicode).
    The main decisions to adjust / replace are (examples):
    ASSIGN H-SY-INDEX TEXT TO ASSIGN <F1> by
    H-SY-INDEX TEXT (*) TO <F1>.
    DATA INIT (50) VALUE '/'. by
    DATA INIT (1) VALUE '/'.
    DESCRIBE FIELD text LENGTH lengh2 by
    DESCRIBE FIELD text LENGTH lengh2 in character mode.
    T_ZSMY_DEMREG_V1 = record_tab by
    record_tab TO MOVE-Corresponding t_zsmy_demreg_v1.
    escape_trick = hot3. by
    escape_trick-x1 = hot3.
    itab_txt TYPE wt by
    ITAB_TXT TYPE TABLE OF TEXTPOOL
    DATA: string3 (3) TYPE X VALUE B2023 '3 'by
    DATA: string3 (6) B2023 TYPE c VALUE '3 '.
    OPEN DATASET file_name IN TEXT MODE by
    OPEN DATASET file_name FOR INPUT IN TEXT MODE ENCODING NON-UNICODE.
    or
    OPEN DATASET file_name FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    CODE FROM PAGE TRANSLATE a_codepage record by
    record TRANSLATE USING a_codepage.
    CALL FUNCTION 'DOWNLOAD' by
    CALL METHOD cl_gui_frontend_services => gui_download
    CALL FUNCTION 'WS_DOWNLOAD' by
    CALL METHOD cl_gui_frontend_services => gui_download
    CALL FUNCTION 'UPLOAD' by
    CALL METHOD cl_gui_frontend_services => gui_upload
    CALL FUNCTION 'WS_UPLOAD' by
    CALL METHOD cl_gui_frontend_services => gui_upload
    PERFORM USING HEAD APPEND_XFEBRE +2. by
    PERFORM USING HEAD APPEND_XFEBRE +2 (98).
    Best Regars
    Fabio Rodriguez

  • I purchased elements 12 last year. When I launch the program it tells me my trial subscription ended. I had purchased the product and put the serial number in? Thoughts

    I purchased elements 12 last year. When I launch the program it tells me my trial subscription ended. I had purchased the product and put the serial number in? Thoughts

    Moving the discussion to Photoshop Elements.
    Thanks,
    Atul Saini

  • What is the most efficient way of converting relatively large program to pervious version?

    I am trying to convert 8.5 labview program to 8.2 version.  When I do that it creates many more subfolders with VIs that are not converted.
    What is the best way to do this?  I tried the mass compile but converting the high level  program creates many folders that links to other areas?
    Am I missing anything?
    Thanks for any help.
    Chetna 

    Hi Chetna,
    How are you confirming that the VIs saved in the sub-folders after conversion have not been converted to a previous version? 
    If you open the VI at the top of the hierarchy and 'Save for Previous Version...' it saves the open VI and all it's depencies for the chosen version. The reason you see all the sub-folders is because the relative path between VIs is maintained.
    This KnowledgeBase article: Can I Save VIs in My Current LabVIEW for Use in a Previous Version? describes this process.
    There is also a Community Example: Programmatically Save VIs for Previous Version that could also save time if you have a lot of VIs to convert.
    I hope this helps!
    Tanya V
    National Instruments
    LabVIEW Platform Product Support Engineer

  • What is the best aax to mp3 converter

    hey guys
    I have audiable books with aax formats and need to convert to mp3; what is the best app to do that?
    thanks

    Yes, download a version of AudioHijack pro, and hijack the sound from your computer into a file.  Once in file form convert it to anything you like.  the program will even allow you to auto-split along 2 second pauses to separate tracks for each chapter.  Alternatively use a program such as Fusion to search for the chapter divisions and split it after the fact.  Non-mac computers have similar hijacking software available.  It simply diverts your audio into a file instead of sending it to a speaker.  It will convert anything.  The alternative can also be done with two computers and a simple audio jack taking sound out of one computer and recording it with another.  If your home is like mine, it is not a stretch to come up with two computers.  I could even play it on my main laptop and record it on my iPhone, this is not a big stretch these days.  This is the reason most large audio sellers have abandoned DRM, since sooner or later all sound has to be converted to audio and any audio can be recorded as a new recording.  I do purchase the original and support the authors, but if I buy it, I want to use it and that often means fair use rules must apply no matter what the seller states.

  • What are the programming language used in adobe livecycle development?

    hi friends,
                    I am a fresher.I woundered what adobe has done in livecycle import option.so i want to know wht is the programming language used and how they read graphical fields like line,circle.

    Programatically, Java is the language used to implement business logic that would plug into LiveCycle.  I believe you can use C# for older versions.  However, that information is irrelevant to your problem.
    That being said, it's typically not advisable to be modifying PDF files generated by different applications (iText, Adobe LiveCycle, etc.).  While both documents may render out as "PDF", they will not be created internally in the same manner.  I would advise that it may be easy to add PDF files generated by other applications as attachments, they are not going to be easily handled unless you address each specific document in a custom manner.

Maybe you are looking for

  • Logon Screen when opening a Crystal Report from Add-on

    Hello everyone, I have a problem that I've been trying to solve. I have an addon that opens a Crystal Report with the information that the user wants. I tried it in SBO using a SQL db and it worked without problems, but now I've test it in SBO using

  • Can I use a sim card from my galaxy S3 for and iphone

    Wanted to know if I purchase an iphone 5 can I use the sim card from my Galaxy S3 Verizon phone.

  • Global Web Filtering Options

    I am looking for a global web filtering solution for our business but am having trouble finding a solution that will work acceptably for us globally. The problem is that our campany has hundreds of very small offices (mostly only 2-3 users with the o

  • I am running Windows 7-32bit...

    I had to restore my laptop to an earlier date/time (before I tried out the Adobe CC trial software). Now that I have the Desktop app loaded, it indicates that all the apps I chose to trial, are "up to date". Yet they are missing off my Programs and F

  • Testing

    Hi SAP guru, Can u please help me in knowing the testing of following scenarios. 1.IDOC to file scenario 2.File to HTTP Thanks & Regards Vijaya