Querry Regarding SAP-PM

HI,
i have a couple of querries:-
1. Plz explain wether Calibration is carried on all type of equipments or only on calibration equipments (weighing machines)?
2. What are the conditions for maintaining performance based warranty counters?
3. How do we capture warranty of sapres which are used in maintenance activities?
Regards
Pushpa

hi puspha,
calibrating the equipment is done mainly which is used for measuring some values and also it depends on the client requirments
For performance based warraty counters you have to create the characteristic and assign to the measurng point and mark it has counter, then you have to assign these counter in the IMG activity which will only be displayed while creating warratty
regards
thyagarajan

Similar Messages

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • PM Querry regarding old materials

    hi everybody
    i have a querry regarding how old items are handled in PM . example in our old company we use to maintain a scrap ledger where we use to account  our old items (materials/complete eqpts while replacing with new eqpts) etc we use to take into account as iron/copper/brass scrap etc and once they reach a certain level in scrap store we use to go for auction.
    How is this part handled in PM?
    regards
    pushpa

    I would recommend Create a New material Type , Once the Item becomes old Transfer all the Inventory to new material type. This way you can manage the Inventory for both the new and old and new materials.Once your old materials reaches certain Inventory , that material can be sold of and the revenues can be credited to Inventory.
    I hope this answers your  query

  • Need information/training material regarding SAP CRM Functional

    Hello,
    I am a SD Consultant.
    I want to learn SAP CRM (Functional) on my own without going to any training institute or some thing.
    Therefore, can anyone help me in forwarding the link(s) or document(s) with which I can learn about SAP CRM (Functional).
    I want information/training material regarding SAP CRM 7.0 (on system/software working, not the general information, for example- why CRM, where CRM, etc)
    For example, about org data, org structure, possible scenarios, etc.
    Thanks in advance for spending your valuable time for me.
    Regards,
    T. Chaitanya

    Hi ,
    In the SDN lot of documents are there search in the WIKI.check the standard sap doc cr100.

  • Hi All,I have one serious problem regarding sap b1.

    Hi All,
    I have one serious problem regarding sap b1.
    In Sales order whenever I select the item from list or tax from list one. I got this
    Msg Box (Application has a problem. Diagnostic file c|:\Program file\SAP\sap Business one \Log\Sap Business one_20080602105441.dmp was created.
    Please contact support and attach diagnostic file). When select ok sap b1 application close. If anyone required screen short of all this error  plz give me Ur email id I will send u.
    Can any one help me?
    Awaiting Early Response
    Regards
    Rajkumar Gupta

    Hi Rajkumar,
    create a message at the marketplace and send them the diagnostic file with an error description.
    lg David

  • Regarding SAP Sales & distribution.

    Dear SAP Guru's ...
    I have a general Query.....Career Related.
    As SAP AG is Launching New products
    Such as SCM Enhancements BW and other IS versions....
    What will be the future situation and Market of SAP SD Consultant.
    We also heard that it will be mergedwith other higher version modules.
    Please advice me ....
    The Market Situation future?
    The Trends ?
    Whch module Should I focus ..after SD......
    Regards,
    Amaln Sarkar
    SAP SD Consultant.

    Dear Amlan,
    Well I think the foundation of all the new dimensional products is the base modules. Moreover working on the base modules gives the opportunity to understand the business process of different verticals. So there is nothing like end for the market for base modules.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • Urgent Querry regarding SRM to R/3 PO Creation

    Hi All,
    I have one requirement where in PO is created in SRM (using Extended Classic Scenario) and the same PO is reflected in R/3 thru RFC.
    My requirement is related to pricing i have maintained a condition record for a condition type for eg : ZBRK is the condition type. In R/3 for condition type ZBRK i have maintained condition record. I need to populate the condition record when PO from SRM gets created in R/3.
    Is it possible?
    Points will be rewarded.
    Regards,
    Shuban

    Hi
    Which SRM version are you using ?
    See these SAP OSS Notes, which might help ->
    Note 907271 - Upload: New condition when you update the item
    Note 859049 - SRM 5.0: Restrictions for uploading and downloading
    You can try to use BBPECS_PO_OUT_BADI to transfer this condition type to ECC.However, please check that the condition type from SRM do not apply again in ECC else your original price will be recalculated twice both in SRM and ECC..._
    Using VMC cache when you modify the PO price schema.
    Thus, you have to reset the buffer of the VMC to "activate" your modifications.
    http://help.sap.com/saphelp_srm50/helpdata/en/72/f40f3c98ddaa4ce10000000a11402f/content.htm
    You can check if the conditions Customizing is complete.
    See the path in the IMG: SRM Server ® Cross-Application Basic Settings ® Pricing ® Check Technical and Customizing Settings for Conditions
    Meanwhile, Please go through the following SAP OSS Notes and Business Add-Ins(BADIs) which will help ->
    Note 640369 - Incorrect values in dropdown in account assignment details
    Note 1027656 - Simplified pricing:wrong price calculation in SC using prod.
    Note 1038241 - Simplified pricing: Follow-on note to note 1027656
    Note 1034949 - Wrong price in SC when a product has multiple conditions
    Note 539720 - Simplified pricing (classic scenario)
    Note 637562 - Simplified pricing
    BADIs ->
    1) BBP_PRICEDATA_READ
    2) PRODUCT_UPDATE2
    3) PRC_PRICING_INIT
    Note 622282 - EBP 3.5 - price is lost in the Shopping Cart
    Related links ->
    Pricing
    http://help.sap.com/saphelp_srm50/helpdata/en/72/f40f3c98ddaa4ce10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/ee/d9df3bbcce4b37e10000000a114084/frameset.htm
    Do let me know.
    Regards
    -Atul

  • Querry regarding Downloading SNC content in XI 7.0

    My scenario is ECC6.0->XI 7.0->SNC 7.0
    I Have downloaded SNC 7.0 (XI CONTENT SCM) content, But i am bit confused because of to option available at Service marketplace for SNC content: (complete path:service.sap.com->Support Packages and Patches - >Entry by Application Group" SAP Content" ESR Content (XI Content)"->XI CONTENT SCM->SNC 7.0)
    1. XI CONTENT ESM SNC
    2. XI CONTENT SCM
    1. Please suggest which content should i download or the content i have downloaded is correct.
    2. What is meant by ESM.
    - Rashmi

    Hello Rashmi
    See the link below:
    Defining Process Component Architecture Models in ES Repository
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/e5/9ad967721045cb8cb038fb61267e2e/content.htm
    Regards
    Mark

  • Regarding sap smartforms line items

    hi,
    this is regarding line items in sap smartforms
    when i am executing single line item i am getting out put
    when i am executing with 2 line items  i am getting error  like bellow
    You tried to switch to the next table column, but no other column exists. The current column is 9. The line type IT_GEN contains only 9 columns.
    plz explain clearly

    Hi,
    if you are using template and the line type is for 1 to 2 lines in the template... make sure that column position you mention is equal to the number of cells in the line type... if the data is displayed in the second row the row position should start from 2 and and column position should lie between 1 and 9.
    Just a suggestion ... its better to go with table node instead of going with template...
    regards
    padma

  • Regarding SAP PP Reports

    Hi Gurus,
    Can you explain me what is SAP PP Standard Reports..with important T codes..with details
    thank & Regard
    Rahul

    hi Rahul,
    Please check
    http://wiki.sdn.sap.com/wiki/display/ERPLO/SAPStandardReports
    http://www.sapfans.com/forums/viewtopic.php?f=9&t=235417
    Regards,
    Anand

  • Help Required Regarding - SAP Job names using R3 data flows

    We are calling a set of SAP Jobs using R3 data flows in data services. When ever a job fails we first kill the active SAP jobs by logging into SAP and then restarting the Jobs.
    There are about 100 odd SAP jobs that we call using these Data services Jobs so we wanted to kill the jobs using a reusable code on the SAP side by passing the Job name just before every R3 flows just incase its still in active status.
    So wanted to know if there are any short cuts to retrive the set of associated SAP job names because it will be a tedious process to hardcode the SAP job names and pass them as parameters for all the 100 + SAP job names in the custom defined resuable code.
    Any help or advice on this please !!

    The program is not meeting the expectations
    and the problem is due to reflection.Do we know this for certain?
    ... my application gets the class name, field name
    etc. from an XML file so i don't know their method names
    beforehand .
    Now since every class instance corresponds to a row
    in the database and i have to call get and set
    methods of each class instance so the performance
    keeps on degrading as the number of columns and rows increase .
    Can somebody suggest some improvement regarding this
    and regarding creating multiple instances of the same object Class.forName() will be using a hash already, so there is probably not much room for improvement.
    Class.newInstance() probably does not take significantly more processing than a simple "new Fubar();".
    Umpteen reflective method invokations (one per column) for each row/instance - Are you saying these are the problem?
    You can test this easy enough.
    If you comment out the reflective method invocations and leave the rest of your code untouched,
    does your application processing speed up significantly?

  • Regarding SAP -XI  associate certification.

    Hello friends,,
    Can anyone give me details regarding the  XI certification in Teched.
    what is the success rate in Teched ?
    pls also eqip me with the latest trends and patterns of the exam.
    Also provide all the links which will be helpfull for me to prepare for the exam.
    waiting for ur valuable responses.
    Thanks n Regards,
    ram
    Message was edited by:
            ramdevbabu reddy

    Hi
    <b>A Beginners Guide to XI Certification Details</b>
    /people/community.user/blog/2006/11/03/a-beginners-guide-to-xi-certification-details
    <b>Below are syllabus for XI certification:</b>
    TBIT40:
    https://websmp109.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT40
    TBIT41:
    https://websmp201.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT41&LANGUAGE=
    TBIT42:
    https://websmp206.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT42&LANGUAGE=
    TBIT43:
    http://www50.sap.com/useducation/curriculum/course.asp?cid=60161651
    TBIT44:
    https://websmp102.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=TBIT44
    You will be asked 80 questions. Some of them are Multiple choice questions and some of them are true or false. You will not have any negative marks. You will get 25% of questions in BPM, 20% of questions in Adapters, Mapping. 10% of questions in Basics.
    Also you go through the this links which might help you:
    Re: SAp XI Certification
    /message/1887921#1887921 [original link is broken]
    /message/1887923#1887923 [original link is broken]
    Do you have Marketplace access? If yes, you can go to the following links,it explains everything regarding certification clearly.
    https://service.sap.com/%7Esapidp/011000358700005902252004E
    https://service.sap.com/~sapidp/011000358700003595762004E
    /thread/187737 [original link is broken]
    XI certification
    Go through these weblogs :
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    /thread/25311 [original link is broken]
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1008087,00.html
    Thanks!!
    Regards
    Abhishek Agrahari

  • Regarding SAP PI 7.0 Configuration

    Hi Experts,
    We Completed The SAP PI 7.0 Installation.
    Now we Are Doing The Configuration Steps.
    Here We run the post installation Templates which automatically configures PI system.
    <b>Steps:</b>
    Step 1: Go to this link http://<host name>: <HTTP port number>/index.html
    Step 2: Click on SAP NetWeaver Administrator
    Step 3: Click on seeDeploy and Changelink
    Step 4: First executed the templates for NWA for configuring you SLD
    Step 5: Then executed the templates for PI
    After this  for the  Importing the XI Content for Software Component Version SAP Basis
    1. Here We Are Trying to Copy XI3_0_SAP_BASIS_6.40_00_12.tpz from <installation DVD>
    to directory /usr/sap/<SAPSID>/SYS/global/xi/repository_server/import/
    But We Are Unable to Find out <b>/repository_server/import/</b><u></u>
    We Can Able to Find out the Path Upto <b>/usr/sap/<SAPSID>/SYS/global/xi/</b><u></u>
    Can Anybody Please help To Go in the Right Direction
    Regards
    Khanna

    Hi,
    Thanks for the Reply.
    This was solved by team a long back,
    Sorry, i forgot to close the thread
    REgards
    Seshagiri

  • Regarding SAP PI 7.0 Configuration of Integration Engine

    Hi Experts,
    We Installed SAP PI 7.0 Successfully.After that We Run the Template Installers for PI.
    Here We Selected <u><b>PI Post Install Process</b></u> Option in the Template Field.
    <b>Q1)</b>  After Completion of this Should we Configure All   IE , IS, AE  Or Those wil be Configured Automatically ????
    <b>Q2) </b> What are the Necessary Steps to Do Even We Run the Template Installer, To execute a Scenario  Successfully.?????
    Please Let me Know
    Regards
    Khanna

    Here is an extract from the OSS note. I guess,this should answer your second question
    Reason and Prerequisites
    To avoid problems while using the configuration wizard (template installer )please check prerequisites for post-installation in SAP documentation. That information can be found in SAP Help Portal (http://help.sap.com --> SAP Netweaver --> Installation and Upgrade guide --> Installation --> 2 - Installation - SAP Netweaver 2004s --> SAP NetWeaver 2004s Installation Documentation).
    Select your Operating System and Database and look for 'Post-Installation Steps for Usage Type *' in the dedicated document.
    Important: You cannot use the configuration wizard after
    Upgrade
    Add-In installation (Exception: Configuration of Usage Type BI-Java can be executed after Add-In Installation)
    Additional usage type enablement
    System copy
    Always install the latest available SPS + Patches before running the CTC.( You can find the latest LMTOOLS Patch at http://service.sap.com -> SAP Support Portal -> Downloads (Tab) -> Downloads (Menue) -> Support Packages and Patches -> Search for Support Packages and Patches -> Search for: LMTOOLS*P -> Download and Save the .sca. Apply the patch by using the SDM.)
    The sequence is:
    1. Installation
    2. Install latest SPS + Patches (if available)
    3. Run configuration wizard.
    You can run the configuration wizard only once for initial configuration.
    In these cases, you need to perform the corresponding configuration steps as described in the configuration documentation.
    For more information on how to access the configuration documentation, see 'Accessing Configuration Documentation in the SAP Solution Manager'.

Maybe you are looking for

  • How to find a region in the Arrange Window

    I'm trying to find two audio files that are apparently in regions in my arrange window on Logic 9.  I can see them in my Audio Bin but I have no idea where to find them in my Arrange Window.  I don't know if they're wedged in between or underneath a

  • Random drop in battery charge while using plugged-in computer

    Hey everyone, I bought my Macbook Pro a couple weeks ago and have generally used it while it is plugged in. Recently I've noticed that while I am using it, the battery charge will suddenly drop from 100% to around 50-60% and the MagSafe adapter will

  • Em console does not work in 11.1.1.0.0 Standalone oc4j

    Hi, I have installed 11g OC4j ( Oracle Container for Java EE 11.1.1.0.0) and after starting the OC4J I can see the http://localhost:8888 welcome page but I am not able to access http://localhost:8888/em page. Is it renamed? I need to login to Admin p

  • HT201328 Hi

    My girlfriend has an iPhone4 on AT&T network and she wanted it unlocked so we contacted them and requested an unlock code, after receiving the code and connecting the phone to iTunes and doing everything that needs to be done for the phone to be unlo

  • What r the coding strategies of any company?

    any one tell me the coding strategies of any company? what is the difference b/w client dependent and client independent?