Need Refresh Document for APO( SCM 7.0)

Hi All,
Need Refresh Document for APO( SCM 7.0) asap,
we are planning to do refresh of quality system with Production system
Environemnt is Unix
Database is Oracle
Live Cache Max DB

Hi,
Please check the upgrade guide in SAP service market place.
BR

Similar Messages

  • How to access the pre-delivered XI Integration Content for APO ,SCM or CRM

    Guys,
    Do anyone know how to access the pre-delivered XI Integration Content for APO ,SCM or CRM and load onto the XI server.
    Any inputs in this direction is appreciated.
    Thanks, -Vara.

    Hi VaraPrasad,
    you can try:
    1. https://websmp204.sap-ag.de/swdc
    2. Search for all Categories
    3. type: XI content
    then unpack and the easiest way is to import with the file system:
    http://help.sap.com/saphelp_nw04/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/content.htm
    and you have the content on your XI
    Regards,
    michal

  • Need a document for field exit....urgent

    Can any one please send a document for field exit or have a simple document on how to work on a field exit with screen shots. pls send it ...its urgent
    Thanks and regards
    Nandha kumar R

    Hi,
    A field exit is a type of user exit.
    A user exit is a hook where you can inject your own add-on functionality or behavior to SAP’s standard business applications without having to modify the original applications.
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.
    Field Exits
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company’s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100. 
    The field exit concept lets you create a special function module that contains this logic. 
    You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number. 
    In 4.6c, you can use "RSMODPRF" program to create field exits.
    An example of a user exits :-
    MODULE user_exit_0001 INPUT 
        CASE okcode.
            WHEN 'BACK OR EXIT'.
                CASE sy-dynnr.
                        WHEN '100'.
                             SET SCREEN 0.
                             LEAVE SCREEN.
                        WHEN '200'.
    Note that you can write any code that satisfy your needs.                                                     ****
    But in this case, this was wrote as a sample code for reference sake.                                    ****
    And you can test it.                                                                                ****
                             SET SCREEN 100.
                             LEAVE SCREEN.
                 ENDCASE.
          ENDCASE. 
    Field exits (SMOD/CMOD) Questions and Answers
    1. Field exit was created with CMOD, but is not processed when calling the screen.
    -  Since the field exit is not processed until PAI, an action must be triggered on the screen (Return, Save, ...).
    -  Set profile parameter abap/fieldexit to YES and restart the system.
    -  After activating the function module FIELD_EXIT... and the field exit, leave the transaction on whose screen the field exit is to be executed. The screen is not generated until the transaction is started.
    - Do not work on different application servers since there may be some delay before the field exit is activated.
    - The profile parameter must be set on all or none of the application servers.
    - If the field exit is to only be active on specific screens, check whether you chose the correct program and the correct screen
          number (take care with subscreens).
    - Using SE51 -> Field list, check that the screen field does have a reference to a data element. In the name of the field exit use the name of the data element and not the field name.
    - After transport, field exits are marked as active but will not be processed. 
       Tip: First try deactivating the field exit once more and then afterwards, activate it again.
    2. How is performance affected by setting abap/fieldexit?
    - If a screen is generated and the profile parameter is set, a check is run on 2 tables (TDDIR, TDDIRS) to see whether a field exit must be generated for the respective field. In practice, the screen load is not generated until the screen is selected after an
    update. The user should not notice any difference because screen generation is very fast.
    3. Can you read the contents of other screen fields in the field exit?
    - In principle, every field exit can store its value in the global variables of the function group (TOP) and hence make them
    available to other field exits. Note here that field exits are always called and not only if an entry is made in the field or if the field is empty. In addition, it is not possible to make any assumptions about the order in which the field exits will be called in the future.
    4. How does the field exit behave on step loop fields ?
    - After the user has entered data, the field exit is called in PAI as often as there are visible fields in the step loop. The system
    variable SY-STEPL is incremented each time. If a new value is assigned to the field, it is displayed in the module between LOOP and ENDLOOP. This module is also called once for each visible step loop line.
    5. Can field exits be debugged ?
    - No. Field exits must be tested separately in the ABAP/4 Development Workbench. For errors which only occur in the screen environment, it is helpful to write interesting variable to the file system using TRANSFER... . These can then be analysed there.
    6. What can you do if the field contents are no longer transported to to ABAP/4.
    - Check whether a value is assigned to the field OUTPUT.
    7. When is the field exit called if a conversion exit is attached to the
       data element ?
    - The field exit is called after the conversion exit. This means that the INPUT field receives the data in the same format as the
    ABAP/4 program also receives it.
    8. Although a global field exit is inactive, a function module is called which does not exist (for example FIELD_EXIT_PROGRAMM_@)
    - This is an error in the kernel which no longer occurs as of 3.0C.  As a temporary measure, it is useful to assign a program and a screen which do not exist to the field exit and then activate the field exit.
    9. Field exit is not visible in CMOD, although created.
    - If you want to create a field exit for a data element, a function module is proposed with the name FIELD_EXIT_. This
    function module must exist for the field exit to work. If you do not create this function module, but do create one with a suffix,
    the data element is not displayed in CMOD.
    10. Field exit is not executed although it is active.
    -  Fields which do not have the 'Input field' attribute usually do not trigger a field exit. The field exit is designed to allow an
    extended input check. It is therefore only called for input fields - even if they are not ready for input at runtime of the         application by LOOP AT SCREEN.
    This rule does not apply, however, if the field is located within a steploop. Here the field will be always activated, even if it is
    invisible.
    - Field exits can only be executed for fields that are directly related tothe dictionary. If the relation is indirect, i.e. via an       ABAP declaration (  LIKE ), no field exit can be executed.
    11. Field exits on check buttons do not work
    -  Field exits are only intended for input fields. As check buttons count as graphical elements, you cannot install field exits on
    them.
    12. Field exits do not work on selection screens
    SAP Field Exits
    From 4.6c onwards, Field exits will no more be supported by SAP.  They removed the function of field exit but they had given lot of flexibility through userexit.
    However, if you still required it, here is how to activate it :-
    First called up transaction  CMOD.
    Then called up transaction PRFB.
    or
    Activation of the field exits and assignment of the dynpros can also be carried out using program RSMODPRF. For this purpose, the program must be started without parameters (input fields remain blank).  If required, new field exits can be created using program RSMODPRF (see the program documentation).
    REFER THIS LINK ALSO.
    defining screen fields using FIELD-SYMBOL
    Thanks,
    Shankar

  • Need test documents for RAC failover Scenarios

    Hello friends...
    By the end of this week i have to produce sum test documents for RAC and Database server including Sun Cluster Failover Scenarios.
    Can sumone guide me to a link where i can get enough help.
    I have already managed to get enough information.. but i want to see to it that i cover most of the topics.
    Thanks, Regards
    Monu Koshy

    Please check the following links.
    http://download-uk.oracle.com/docs/cd/B19306_01/rac.102/b14197/toc.htm
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b14205/toc.htm
    -aijaz

  • Need installation document for OEM 11G on windows 2003(32 bit).

    Hi,
    As a part of my project, i need to install the OEM 11G on windows 2003(32 bit) machines and targets also windows 2003. there i need to install again agent 11g(11.1.0.1) and target DB is 10.2.0.4.
    I have done the installation of OMS successfully and installed the agent 11g on target as well. i am facing challeges in configuring the database from OMS. i tried couple of options but nothing is working out. Finally i decided to cross check the installation procedure once again with the previously completed ones. could any body share the same.
    in breif i have done following.
    1) installed RDBMS 11G on OMS server.
    2) insalled java 1.6.18.
    3) installed WLS 10.3.2
    4) installed the OMS 11G(11.1.0.1)
    On agent side i installed agent 11g(11.1.0.1) to monitor a database which is of 10.2.0.4 version.
    agent,listeners are reflecting on OMS with up status but DB is showing as "metric collection error". i tried all the possible options like removing and reconfiguring and agent clearing and agent restart etc...but no use. also i in the Oracle installation document, they mentioned as we need to set user equavelence between OMS and agent server but not sure of this, which i have not done. is this compulsary?
    Sorry for putting all the things in one single thread.
    Thanks in-advance.
    Regards
    DBA.

    Did you check if the database is configured in GC?
    If you can't connect using sqlplus to the user dbsnmp make a connection to the database: alter user dbsnmp identified by <password> account unlock;
    In GC go to Targets, All Targets select the DB concerned and hit Configure. Enter the dbsnmp user password etc. After a while you will see the result: DB shows Up (I hope)
    Eric

  • Need APEX document for learning practice

    Hi All,
    I am new user in Application Express and i want to create a web application for our day to day job.
    Data Should be in column: Serial Number,
    Analyst Name (Multiple),
    Date,
    Customer Name,
    Status (Pending or completed)
    Buttons - submit, cancel
    I should be able to enter the data in the application and at the end of the day I should be able to see how many customers has been completed by individual analyst and should be able to download the data in excel
    So please provide any link or document
    Thanks
    Vinod
    Edited by: user783485 on Dec 10, 2008 10:31 PM

    Hi,
    I have an account in apex and Actually I had already created excel(csv file) and loaded the data in APEX.
    and its showing the result I had put some 15 rows in that excel and its shows all the data in APEX. but I want to do it with out excel or loading excel into APEZ so that i can create form in APEX do the data entry and at the end of the day if i click some button i should come to know how many customer files i have completed and how much time i took for each customer

  • Free Training Documentation for APO

    Everyone,
    Does anyone know about a good training document for APO configuration.
    Please let me know.
    Thanks
    Gayatri

    Gayatri,
    APO is a rather significant subsystem of SCM.  Most experts don't attempt to learn all of it.  I suggest that you focus on a few solutions that you think you will be needing, rather than learning the whole thing.
    For starters, when learning configuration, always start with SAP's Best Practices.  For APO, look at
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/BBLibrary_EN_DE.htm.
    Each of the building blocks contains a configuration doc.  If you can master all of these, you will be more knowledgeable than 90% of the professional consultants in the business.
    Best regards,
    DB49

  • I need a document saying the serial number and imdi number was replaced with the new iPhone serial number and imel number, i need a document saying the serial number and imdi number was replaced with the new iPhone serial number and imel number

    Hi there.
    I live in Turkey and i purchesed
    IPHONE 5 S withh Serial number DNPLQ1S3FFFM this telephone had a water dammeg. so i ave replaced this phone with iphone 5s Serial F97M80SSFFFM.
    also
    IPHONE 5 with serial number DNPK51PTDTTR this telephne problem was shuts down randomly, replaced this phone with iphone 5 serial DQGL2030FH1F
    In Turkey i need a document for each replacment IPHONE showing the old IMEI number of the old telephone and the new IMEI number the new phone on the same document each replacement telephon.
    I NEED THIS DOCUMENT TO REGISTER THE NEW TELEPHONES WITHOUT PAYING ANY FEES AND NOT LOSSING MY RIGT OF REGISTERING.
    BEST REGARD.
    NEBIL YALCIN.

    Then contact whoever replaced the phone for you.
    No one here can help you & there is no one from Apple here either.

  • Reward Point for providing document for TREX able to search from Documentum

    Hi all,
    I am in need of documents for documentum integration with EP 6.0
    I want to make TREX to be able to search from Documentum.
    Sender will get the reward points.
    Thanks in advance.

    Karan,
    Documentum contains a brief overview of TREX configuration in teh Content services for SAP.
    Documentum provides a tool call Content SErvices fo SAP Portal - Repository Manager.  This software is used to creaet a seamless integration KM / TREX with Documentum.   In my opinion the product is pretty good.
    You will find the documentation you're lookign for on the EMC/Documentum website powerlink.emc.com:
    Content Services for SAP Portal - Repository Manager Release Notes,
    Content Services for SAP Portal - Repository Manager Installation,
    Content Services for SAP Portal - Repository Manager Administrator

  • What r the prerequisites for implementation scm-apo in ECC 6.

    HI,
    what r the prerequisites for implementation scm-apo in ECC 6.
    Thanks,
    Ashutosh
    9891595497

    Hi Ashutosh,
    you can find all informations about the implementation (installation /upgrade) of SCM on the SAP help portal.
    In http://help.sap.com choose in "SAP Business Suite" the "SAP Supply Chain Management".
    In Knowledge Center for SAP Supply Chain Management (SAP SCM) choose the required SCM release e.g. SAP SCM 5.0  and open it.
    Here under "Installation, Upgrade, Master and Operation Guides" you can find all necessary information about the installation, technical upgrade and operation of SAP SCM.
    The Master Guide for SAP SCM provides important information about the installation of the relevant scenarios and the components. It links to all other documents that are required for the implementation of a specific scenario, for example to the Upgrade Master Guide, which is the important overview guide for upgrading scenarios . 
    I hope I could help you with these informations.
    Regards,
    Tibor

  • Need help in creating documents for Contacts in Oracle HRMS

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

  • What is the best External Hard Drive for a Macbook Leopard 10.5.8?  I need more memory for documents, pictures, videos, and music.  Thanks!

    What is the best External Hard Drive for a Macbook Leopard 10.5.8?  I need more memory for documents, pictures, videos, and music.  Thanks!

    Hi, does your MacBook have Firewire, or just USB?
    FW is far faster if you have that.
    Avoid Bus powered ones.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    USB only...
    http://eshop.macsales.com/shop/firewire/usb/eliteclassic

  • I was at Apple Store yesterday and they created a pages document for me.  When I got home and tried to open it, I get a message that I need a newer version of Pages.  I see the image when I before I push "open".  The 'kind' is pages publication.

    I was at Apple Store yesterday and they created a pages document for me.  When I got home and tried to open it, I get a message that I need a newer version of Pages.  I see the image before I push "open".  The 'kind' is pages publication.  The file does not appear in the 'open recent' list.

    Just be careful with Pages 5, it is not strictly an upgrade.
    Apple has actually removed over 90 features and some work can be very difficult in the newer version.
    It was all done to make it more interchangeable with the inferior iOS version:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    Peter

  • I have ca. 30 pdf documents I need to search for keywords; how can I do on my MAC?

    I have ca. 30 pdf documents I need to search for keywords; when I open these documents in Adobe Reader on my MAC, it shows a Search tool; however, when I search for keywords I know are in the document, none are found.  How can I do a keyword search?

    Do you know if the text has been OCR recognised? Are the original documents "scans"?
    An easy way to find out, if you can select an individual word or letter? If you are selecting a whole block of text then the document will need to be put through Optical Character Recognition (OCR) software first to enable you to keyword search.

  • Need T.Code for "Classify G/L Accounts for Document Splitting"

    Hi All,
    I need the T.Code Document Splitting "Classify G/L Accounts for Document Splitting"
    Menu Path is:
    IMG-Fin. A/c- General Ledger A/c- Business transaction - Document Splitting - Classify G/L Accounts for Document Splitting
    Thanks & Regards,
    Mohan.

    Need T.Code for "Define Document Splitting characteristics for G/L Accounting and
    Define Document Splitting method

Maybe you are looking for

  • How to move an instance from one activity to another

    Hi all, Is it possible to move an instance from one activity to another using an external process? Is it possible to do this with PAPI and pass parameters to the instance in order to determine the instance's flow? Regards

  • JDK-8029253 Doesn't seem to be fixed

    Apologies if this post is in the wrong forum. http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8029253 I've been following this bug for quite some time, seeing that it's been fixed and now back-ported to 8 I thought it would solve the performance

  • Ya, try to download a 700 MB zip file !! with whatever available means

    Please a bit more commercial efforts, even if your name is ORACLE Because at the end it is in your interest !! Have you ever tried to download a 700 MB zip file !! to your private PC ? Me, I don't even dare to try!

  • App updates in iTunes confusion

    Whenever I open iTunes it always says under applications that I have updates but whenever I click on e.g. 9 updates available I'm told there are no updates!!! It's really annoying. Does anyone know why this is happening and how I can resolve it? Than

  • Time Machine, Network Share, Lion

    I have set up a network share to be used as the Time Machine backup location.  The share has a user/password assigned.  I can log in to the share in Finder OK.  I have run the terminal command: defaults write com.apple.systempreferences TMShowUnsuppo