Documents/PPT for Understanding how SAP SRM works from SAP website

Hi,
Can some one help me in finding some docs/ppts which helps me to understand how SAP SRM working from SAP website.
Regards,
Manesh

Hi, thanks for the response.
This is what they get
Fatal error: Call to a member function remove_all() on a non-object in .../.../.../welcome.php
This error is not generated by SAP. It is shopping cart error.
And here is the content of welcome.php
<?php
  require("includes/application_top.php");
     $cart->remove_all();
    $hook = $_REQUEST['HOOK_URL'];
?>
The value of HOOK_URL is empty
<a href="index.php?HOOK_URL=<?php echo $hook; ?>">Start shopping here</a>
Edited by: janjan123 on May 14, 2010 5:06 PM

Similar Messages

  • Good resources for understanding how the internet works

    Hi everyone,
    I got quite a lot of spare time at my hands these days, so I thought I might learn about how the internet (and networking in general, after all I'm using the internet daily, and I've even programmed with Java sockets for ages)! Specifically, I'm probably talking about the OSI model and its components.
    Historically, reading Wikipedia entries doesn't quite cut it for me, I tend to get the hang of things a lot easier with a book. So, if you know a good book (though a good online guide / explanation is fine, too), please let me know!
    Cheers,
    - Allan

    At my uni, we use "Computer Networking: A Top-Down Approach" by James Kurose and Keith Ross for all our networking classes.  I wholeheartedly recommend it; it's clear, approachable, and something you'd want to read if you didn't have to read it.

  • How SEM BPS works with SAP BW

    Hi,
    How SEM BPS works with SAP BW.
    how to save planned in SAP BW.
    how to work with the data in Basic cubes and Transaction cubes.
    what is the relation between these two cubes.
    Thanks,
    cheta.

    hi,
    chk the link for BPS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7c85d590-0201-0010-20b5-f9d0aa10c53f
    Can any body send the material for BPS?
    Authorization for BPS
    Ramesh

  • I really can't understand how this recursive works??

    Hi all,
    I have got a recursive function that checks for palendrome string. But it is confusing. I know that a string is palenromme if it is empty or has a char or first char and last one are same and middle is palindromme too.
    but can't understand how this function works.
    class Palindromme
         boolean palindrom(String s)
              if (s.length() <= 1 || s.equals(null) || s=="") //this is the stopping point
                   return true;
              else
              {                    //recursive definition
                   return ( s.charAt(0) == s.charAt(s.length()-1) ) && palindrom(s.substring(1,s.length()-1));
    specially i don't know how palindrom(s.substring(1,s.length()-1)); is working cause it has to be increased for each loop.
    abdul
    PS: actually i don't know how recursion works from Data structure point of view

    Hi,
    ok your palindrome is : "otto"
    return ( s.charAt(0) == s.charAt(s.length()-1) ) && palindrom(s.substring(1,s.length()-1));
                  o                     o                                   tt
    so first part is true                                        
    in the second part palindrom is called again but with the remaining tt
    so second time :
    return ( s.charAt(0) == s.charAt(s.length()-1) ) && palindrom(s.substring(1,s.length()-1));
                   t                     t                                 ""
    Third time:
    if (s.length() <= 1 || s.equals(null) || s=="") //this is the stopping point
    return true;after all for otto the recusion is:
    return ( s.charAt(0) == s.charAt(s.length()-1) ) && s.charAt(1) == s.charAt(s.length()-2) ) && nothing left of otto);
    Phil

  • Need to understand how ioctl errors work.

    I'm trying to understand how ioctl errors work. Who is responsible for returning a -1 for an error and passing the actual error number in errno? Do the functions miocack and miocnak play any part in this? Where can I find a desciption of miocack, miocnak?

    Hi
    The return value of ioctl is dependent upon the called device
    control function. If for some reason the ioctl is not able to
    call the corresponding device control function then a return
    value of -1 is returned by the kernel and the errno set to
    indicate the type of error.
    -Manish Dixit
    Sun - dts

  • I would like to understand how merging cells works

    I am trying to reduce nine fields, into three, but can't understand how merging cells works. Because sometimes it will allow me to merge cells, and at other times the word merge is greyed out
    Regards Lee

    The User Guide, which you can download using the link in the Help menu, explains merging cells pretty clearly.
    I suspect the relevant line to your problem is:
    "The group of cells you choose must form a rectangle, and they must be all body cells, all header cells, or all footer cells."
    The merge option is probably greyed out because your selection includes both header and body cells.
    I think there is a general feeling among users that merging cells should be avoided because it breaks some operations like sorting tables.

  • HI, I WANT TO KNOW DETAILS SYLLABOUS OR ROOT MAP ABOUT SAP- SRM WORK FLOW

    HI, I WANT TO KNOW DETAILS SYLLABOUS OR ROOT MAP ABOUT SAP- SRM WORK FLOW & USER/VENDOR/ORG.MA...

    and I want to have one million euros .....

  • Insert SAP ICONS into from SAP into Word document (OLE)

    Hi ,
    I want to Insert SAP ICONS into from SAP into Word document (OLE) .
    Please let me know how can I do it? I would really appreciate it.
    Regards,
    Sanjeev

    Hello,
    Try this out:
    (1) Copy program DD_ADD_PICTURE into your own version called ZDD_ADD_PICTURE. Make sure
    you select all the checkboxes (including GUI Status and screens).
    (2) Paste the modified code at the end of this reply into your ZZ_ADD_PICTURE program.
    (3) Run ZZ_ADD_PICTURE for a range of Icons (e.g. enter Icon name ICON_IN* on the selection screen)
    (4) When you get the result list, type in ok-code EXPO directly in the ok-code
    field (you could also add a button for this function in the GUI status).
    (5) Download all the displayed icons as .gif files into a Windows folder
    that you have created to hold the icon .gif files (e.g. C:SAPICONS)
    (6) Now you can work with the icon files as you would any .gif file. (e.g. In a Word doc, use menu path
    Insert -> Picture -> From file.)
    Here is the code:
    REPORT dd_add_picture.
    TYPE-POOLS: sdydo.
    DATA: do TYPE REF TO cl_dd_document.
    DATA: is_displayed.
    TABLES: icont.
    DATA: BEGIN OF icontab OCCURS 0.
            INCLUDE STRUCTURE icon.
    DATA: END OF icontab.
    select-options: s_icon for icontab-name obligatory.
    SELECT * FROM icon INTO TABLE icontab WHERE locked NE 'X'
                        AND name in s_icon.
    * Event Handler Definition, handling changes of GUI fonts, colors,...
    CLASS cl_my_event_handler DEFINITION.
      PUBLIC SECTION.
        METHODS:
          use_new_resources FOR EVENT resources_changed OF cl_gui_resources.
    ENDCLASS.
    DATA: my_handler TYPE REF TO cl_my_event_handler.
    CREATE OBJECT my_handler.
    * Call Screen
    CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
    MODULE status_0100 OUTPUT.
      IF is_displayed IS INITIAL.
        SET PF-STATUS 'BRP'.
        SET HANDLER my_handler->use_new_resources.
    * create document
        CREATE OBJECT do.
    * fill document
        PERFORM dd_add_icon USING do.
    * merge document
        CALL METHOD do->merge_document.
    * display document .
        CALL METHOD do->display_document
                           EXPORTING  container          = 'HTML'
                           EXCEPTIONS html_display_error = 1.
                                           " do some exception handling ...
        is_displayed = 'X'.
      ENDIF.
    ENDMODULE.                             " STATUS_0100  OUTPUT
    MODULE user_command_0100 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.                       "Beenden
          LEAVE PROGRAM.
        WHEN 'PRN'.
          CALL METHOD do->print_document
                  EXPORTING reuse_control = 'X'.
        WHEN 'PRN_NEW'.
          DATA text TYPE sdydo_text_element.
          CALL METHOD do->initialize_document.
          text = 'Dies Dokument wurde speziell fürs Drucken erstellt!' &
                            ' Druckdatum: '(500).
          CALL METHOD do->add_text EXPORTING
                               text         = text
                               sap_fontsize = cl_dd_area=>large.
          WRITE sy-datum TO text DD/MM/YYYY.
          CALL METHOD do->add_text EXPORTING text = text .
          CALL METHOD do->new_line EXPORTING repeat = 2.
          PERFORM dd_add_icon USING do.
          CALL METHOD do->merge_document.
          CALL METHOD do->print_document.
        WHEN 'EXPO'.
          CALL METHOD do->export_document EXPORTING to_filesystem = 'X'.
      ENDCASE.
      CLEAR sy-ucomm.
    ENDMODULE.                             " USER_COMMAND_0100  INPUT
    *&      Form  DD_ADD_ICON
    *       text
    FORM dd_add_icon USING p_do TYPE REF TO cl_dd_document.
      DATA ta TYPE REF TO cl_dd_table_element.
      DATA col1 TYPE REF TO cl_dd_area.
      DATA col2 TYPE REF TO cl_dd_area.
      DATA col3 TYPE REF TO cl_dd_area.
      DATA text TYPE sdydo_text_element.
    * set Heading
      text = ' Bilder in Dynamischen Dokumenten'(001).
      CALL METHOD p_do->add_text EXPORTING text = text
                                      sap_style = 'heading'.
      CALL METHOD p_do->new_line.
      CALL METHOD p_do->new_line.
      CALL METHOD p_do->add_table EXPORTING with_heading    = 'X'
                                          no_of_columns     = 3
                                          width             = '100%'
                                          IMPORTING table   = ta.
    * set columns
      text = 'Ikone'(011).
      CALL METHOD ta->add_column EXPORTING heading  = text
                                 IMPORTING column   = col1.
    * fill table
      LOOP AT icontab.
        SELECT SINGLE * FROM icont WHERE langu = sy-langu
                                   AND   id    = icontab-id.
        CALL METHOD col1->add_icon EXPORTING sap_icon = icontab-name
                                             sap_color = 'LIST_GROUP'.
      ENDLOOP.
    ENDFORM.                               " DD_ADD_ICON
    * CLASS cl_my_event_handler IMPLEMENTATION.
    CLASS cl_my_event_handler IMPLEMENTATION.
      METHOD use_new_resources.
        IF is_displayed EQ 'X'.
    * initialize document
          CALL METHOD do->initialize_document.
    * fill document
          PERFORM dd_add_icon USING do.
    * merge document
          CALL METHOD do->merge_document.
    * display document
          CALL METHOD do->display_document
                              EXPORTING reuse_control        = 'X'
                                        reuse_registration   = 'X'.
        ENDIF.
      ENDMETHOD.
    ENDCLASS.
    Regards,
    Vasanth

  • SAP SRM Contracts Vs SAP CLM Contract

    Hi SAP Gurus,
    Can you guys please tell me the difference between SAP SRM Contracts and SAP CLM Contracts.
    In which factors SAP CLM serves better than SAP SRM??
    Why SAP CLM came into existence when we have SRM Contracts? What are the draw back and what is not achieved with SRM Contracts?
    Thanks in Advance

    Hello Sanjay
    There are many differences, SAP CLM Contract run in Sourcing and SAP SRM Contracts run in SRM.
    Advantages CLM Contracts:
    - Establish a contract as a result of a project
    - build the draft agreement from a template
    -   - Create your own folder structure to organize your contract attachments
        - Transfer quickly attachments between the different folders
    -   - Download easily multiple attachments with a single click
    - Administrator can create new customer fields (extensions) and customer tables (extension collections) for all      master agreements or specific master agreements
         - New customer fields are immediately available in the UI and as a search parameters 
          - All is done via configuration, therefore no upgrade issues
         - Generation of contract document out of master agreement
         - Template Library with approved legal contract templates for quick contract generation
         -  Possibility to provide end user with flexibility to modify the provided content from the template during contract creation
          - Adjust contract by adding or removing of clauses and sections to the content provided by the selected contract template
          - Multiple content options (alternative clause content) available to provide end user with controlled flexibility
          - Automated transfer of master agreement meta data into generated contact document
          - Creation and transfer of line item table into contract document
    -     - Creation of a unique barcode on the contract header
          - Contract negotiation with clause changes in MS Word are tracked in the contract repository
          - Change of meta data like Agreement Effective Date in MS Word possible and transfer back to master agreement in repository
          - etc
    The are the possibility to integrate CLM contract to SRM Contracts
    Regards

  • How to send SMS from SAP to Any mobile

    Hi Friends,
    I have a requrement. How to send SMS from SAP to Any mobile?? For Example: If i created PO in SAP then i want to send a SMS to Concerned Vendor and HOD.
    Please provide the pre-requisites?
    Naveen

    Hi Naveen,
    there is a standard webservice globally available called Send SMS and you can consume that webservice with the help of CAF and you can send PO number as SMS, If the standard webservice do not work then you have to create your own webservice to fulfill the functionality.
    Regards
    Manohar

  • How to extract data from SAP in FDM 11121

    I came across some documents from version 11113, says there is a SAP adapter, however ,when I check 11121 there's no such adapter, does anyone know how to extract data from SAP in FDM 11121?

    I download a package from Bristlecone, but I dont see any xml files in it, just a bunch of dll and I didn't find any instructions on how to set up/configure in FDM, it just explained how to register in SAP app server and client.
    Hyperion 11113 has readme on sap adapter(Hyperion Readme Template), but I cannot find the same readme file in 11121, all I can find is ERP Integration Adapter document. any idears where I can find at least a readme document?

  • How to Pull data from sap r/3 tables to oracle tables

    how to fetch data from sap r/3 tables & data pulled to oracle table .
    GIVE THE APPROPRITE ANSWER FOR THIS.
    THANKS IN ADVANCE.
    If it is useful for me , i am giving point.
    regards ,
    Navita
    Edited by: NAVITA YADAV on Mar 7, 2008 2:07 PM
    Edited by: NAVITA YADAV on Mar 7, 2008 2:08 PM

    You need to perform some native SQL to fetch data. Before doing this connection must be exists b/w your R/3 and Oracle server.
    Basis team will help you to have connection.
    Check the connection name in the table DBCON.
    Check the below code to handle native SQL.
      SELECT SINGLE  DBMS
               FROM  DBCON
               INTO  DBTYPE
               WHERE CON_NAME = DBS.
      IF DBTYPE = 'ORA'.
        TRY.
          EXEC SQL.
            CONNECT TO :dbs
          ENDEXEC.
    ERROR Handling for Native SQL *************
          IF SY-SUBRC <> 0.
            MESSAGE `Docusphere connection failed.` TYPE 'I'.
            EXIT.
          ENDIF.
      EXEC SQL PERFORMING loop_output.
        OPEN C1 FOR
        SELECT  UK1, UK7, uk6, uk9, uk22, uk23, uk25    "field names of Oracle table
        FROM IIS_DOCS_AP10D
        WHERE ( UK2 = 'ZFIINVOICE' OR UK2 = 'ZFIPAYREQ' )    AND
        UK19 = 'E'                                           AND
        UK20 IS NULL
      ENDEXEC.
          DO.
            CLEAR W_OUTPUT.
            EXEC SQL.
              FETCH NEXT C1 into :wa1-arc_doc_id, :wa1-bukrs, :wa1-belnr, :wa1-gjahr, :wa1-wi_id, :wa1-ARCH_METHOD, :wa1-barcd.
            ENDEXEC.
    enddo.
    Reward points if helpful.................

  • How to extract data from SAP 4.7 and upload data to SAP ECC 6.0

    Hi,
        How to extract data from SAP 4.7 and upload data to SAP ECC 6.0? Can i use BDC,BAPI,LSMW? Help me please.

    hi
    good
    both works not possible simultaneously.
    If you want to do it in two separate task than you can use the GUI_UPLOAD function module to fulfill your requirement.
    thanks
    mrutyun^

  • I am sorry but I don't understand how to delete photos from my Iphone that were sys from a computer.

    I just don't understand how to delete photos from my Iphone placed there by Syc.

    Well, if they were synced fomr a computer then the iPhone says the computer "owns" them for instructional purposes.  You have two options.
    1) Plug your iPhone up to any computer with iTunes.  You can get itunes at www.itunes.com  Then tell it to sync photos, but then select no photos or an empty folder.  This will override what the previous computer put on your iPhone.
    2) Go to Settings > General > Reset > Erase All Content & Settings and say goodbye to everything including those synced photos.  If you make a quick backup first in iCloud (be sure it finishes) then you can restore form your iCloud backup via Wifi and those synced photos wont be there.  How to backup: http://support.apple.com/kb/ht1766

  • HOW to retrive data from SAP Tabel

    Hi Friends,
       1)Can you please explain how to retrive data from SAP table(example AFRU).
       2) we had requriment based on the qunatity , Product name and date we need to display KPI's .KPI is based no products manfactured per day with some conditions
    Regards
    Srikanth

    Hi Udayan,
        I want to retrive SAP Table data from xMII.can you please explain elabarately how to call "RFC_READ_TABLE" from xMII.
    please do the needful
    Thanks
    Srikanth

Maybe you are looking for

  • Main Computer died. Lost Apps can I get them back?

    My main Computer Died with all of my music and apps on it. So I downloaded it iTunes into another computer, connected my phone and for some reason I did an unintentional restore and I lost everything. I was wondering if there was a way to get itunes

  • Migrate from Existing SQL 2008 R2 Failover Cluster (Rackspace) to new offsite SQL 2008 R2 Cluster (our own cloud)

    I have an existing cluster sitting in Rackspace. We have a new co-location with its own SAN that we want to migrate everything over to. Now, if we were keeping the SAN active in Rackspace, this wouldn't be an issue and I'd just add two new nodes to t

  • Z87-GD65 can't use 3TB disk drives on Intel SATA ports

    I've been happily using my Z87-GD65 for several months now with a 256G SSD for Windows 8.1, and 4*2T spinning Seagate drives.  I decided it was time to make 'em bigger.  So I plugged in a 3TB Seagate ST3000DM001 on one of the Intel SATA ports.  The m

  • Post Children Before Parent

    First, I just want to apologize if this isn't appropriate here. Feel free to lock/delete/move my post elsewhere :) I'm having a BC4J related problem in the OA Framework on JDeveloper 9.0.3.5 and Oracle EBS 11.5.10. I have two EOs that are linked by c

  • RFC: INTEGRATION_DIRECTORY_HMI

    Hi all,    We are facing a problem with opening IB main page. We restarted J2EE server yesterday. after restart the <b>"SXMB_IFR"</b> is NOT working. the URL is <b>"http://icfxi1:50000/rep/start/index.jsp".</b> we checked Telnet IP address with servi