Step by step Time Evaluation Configuration

Dear All,
I am searching for documents on step by step Time Evaluation (both with and without clock times) for each configuration node wise, but not ble to find a complete one. Plz help? 
Regards
Susmita Mukherji

Hi Susmita,
No one will give step by step document but they will help if you miss any thing in the configuration.
TE with Clock Times : Positive Time management
Schema : TM00
Function : TIMTP
Compulsory Table Update : T555Z
TE with Clock Times : Negative Time management
Schema : TM04
Function : TYPES
Compulsory Table Update : T555Y
Need to configure Time Types table : V_T555A
Read the SAP Documents : HR310 TE with clock times
check this link: process and procedure
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0b58e9b-2239-2a10-e68c-ba8b3823e8c6?overridelayout=t…
Best Regards,
Praneeth kumar

Similar Messages

  • Absence quota addition after Time Evaluation

    Hi Experts,
    This is regarding Time Evaluation.
    Time Evaluation Configuration is fine. Absence quota is getting generated in days.
    But while adding to the previous balance it's treated as hours and the net balance is coming as hours.
    Example, Absence quota from previous year = 15 hrs
                    Quota generated = 0.77 days
                   After generation the total is 15 + 0.77 = 15.77 hours.
    Please advise what could be the problem . Thanks

    Hi ,
    Thanks for your reply.
    Cause :
    Actually the employee had moved from one Personnel area to another but due to the settings same Absence quota was applicable to the employees in both cases.
    Now i am not able to delimit the record in 2006 from transfer date.
    Edited by: Tomesh Sahu on Jul 21, 2009 10:17 AM

  • Vendor Evaluation Configuration and steps?

    Dear Gurus,
    Pls explain me Vendor Evaluation Configuration and steps?

    Hi,
    Vendor evaluation is the process of analyzing and assessing the performance of the external vendors. In this processes vendors are allowed to score in different criteria and the highest points scored by vendor is selected for procurement.
    Follow the bellow steps:
    1. SPRO>MM>Purchasing>Vendor Evaluation> Define Weighting Keys
    Select…………….Equal Weighting or Unequal Weighting
    2. SPRO>MM>Purchasing>Vendor Evaluation> Define Criteria
    Price,
    Quality,
    Delivery,
    Service
    For each criteria you will have Sub criteria
    Criteria Sub-Criteria
    Price, 1.Market Price,2. Price List
    Quality, 1.Goods receipt,2.Quality Audit
    Delivery 1.On time deliver,2. Confirmation, 3.Shipment Intructions
    Service 1. Innovative, 2. Flexibility
    3. SPRO->MM->Purchasing>Vendor Evaluation>Define Scope List.
    4. SPRO->MM->Purchasing>Vendor Evaluation> Maintain Purchasing Organization Data
    5. ME61
    With above, you need to explore urself and read SAP help files.
    Note: Follow the below link and check saphelp file
    http://www.sap-img.com/mm009.htm
    Regards,

  • What are the steps involved in configuring Oracle EBSR12 after installation

    What are the steps involved in configuring Oracle EBS R12 after installation is complete?
    We have an empty oracle EBS R12 installed and up and running. We do not have anything configured.
    Please direct me to the documents that can be followed to do initial steps for the application functionality to work.
    Thanks,
    SR

    What are the steps involved in configuring Oracle EBS R12 after installation is complete?
    We have an empty oracle EBS R12 installed and up and running. We do not have anything configured.
    Please direct me to the documents that can be followed to do initial steps for the application functionality to work.All Oracle EBS Docs 11i/R12 can be found at:
    Oracle Applications Documentation
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Thanks,
    Hussein

  • Errors in few of the step while running configuration wizard for PI 7.0

    hi all,
    i have installed Netweaver 2004s (PI 7.0) quality. during installation i had chosen sld option to be my development system as i wanted to use just single SLD.
    now for the post installation steps i had run Configuration wizard. i haven't yet implemented Note : 939592 : PI Usage configuration versus Central SLD as it says first i need to perform all CTC steps.
    now in this i got error in few steps:
    STEP1 : PI_00_This wizard will execute Postinstall steps of technical configuration for the PI Usage
    the error was: CIM_ERR_FAILED: Object manager is not activated
    PI_05_This wizard will configure the integration server for sld.
    The error was:
    Error: CIM_ERR_FAILED: User credentials are invalid or user is denied access
    PI_09_This wizard will configure Role of Integration server
    Not able to load function SXMB_SET_ROLE_TO_IS( Connect to SAP gateway failed).
    What should i do?
    Regards,
    Priyanshu Srivastava

    Hi Priyanshu,
    "Object manager is not activated" simply means, that the SLD server is not started. So, please, first of all navigate to the SLD URL http://<host>:<httpport>/sld, login with an administrative SLD user -> Admininstration and push the star button.
    Regards,
    Blanca

  • Steps involved to Configure a Smartform for printing TO Item

    Hi,
    I want to develop a Smartform to print TO for each Item.
    Currently it is being done using SAP Script.
    I checked the Configuration in OMLV and assigned my print program Z****** .
    This thing here is I don't see any values passed to my program like TO Number, Whse Number etc when called through LT31.
    Where as I assign the standard program RLVSDR40 and debug it all the details are being passed to this program.
    I am not sure if I am missing any configuration.
    Please help me to figure out the issue and let me know all the steps involved in configuring the Smartforms to print Transfer Orders.
    Thanks in Advance.
    MK.

    Hi Murali,
    The SAP delivers the solution to print the TO item by SAPScript, but we can do it by Smartform as well, as in
    You need to create a project for the enhancement MWMD0001, because EXIT_RLVSDR40_001 will fulfill your purpose of doing it the other ways i.e. via Smart from.
    For this you have to use CMOD transaction to create the project for the above said enhancement.
    Note: If you do this way any configuration done via OMNU wont't be considered.
    Then after in teh import parameters you have a table XRLDRI, which contains both the warehouse number and the transfer order number, the same can be passed on to the designed Smartform to fulfill your purpose.
    Sample Code, you can refer to:
    *local variable declaration.
       DATA: l_wa_fm_name            TYPE rs38l_fnam.
    * Local Field Symbols
       FIELD-SYMBOLS : <l_fs_rldri> TYPE rldri.
    * Local Constant declaration
       CONSTANTS : lc_fmname TYPE tdsfname   VALUE 'XYXYXYXY',  "Smartform name, here designated by 'XYXYXYXY'
                   lc_chk      TYPE rldrudruck VALUE 'X'.
    *Moving Transfer Order Print :Item level data into corresponding work area.
       LOOP AT xrldri ASSIGNING <l_fs_rldri>.
    * Determine smartform function module
         CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
           EXPORTING
             formname           = lc_fmname
           IMPORTING
             fm_name            = l_wa_fm_name
           EXCEPTIONS
             no_form            = 1
             no_function_module = 2
             OTHERS             = 3.
        IF sy-subrc = 0.
    * Call the function module of the smartform
           CALL FUNCTION l_wa_fm_name
             EXPORTING
               user_settings    = lc_chk
               tanum            = <l_fs_rldri>-tanum
               lgnum            = <l_fs_rldri>-lgnum
             EXCEPTIONS
               formatting_error = 1
               internal_error   = 2
               send_error       = 3
               user_canceled    = 4
               OTHERS           = 5.
           IF sy-subrc = 0.
           ENDIF.
         ENDIF.
       ENDLOOP."LOOP AT xrldri ASSIGNING <l_fs_rldri>. 
    Please validate the same at your end and let me know in case you require any further inputs from my end.
    BR/Thanks
    Pranav Agrawal

  • Need to know the steps to setup 'Configurable Search' in PeopleSoft CRM 8.8

    Hi,
    Could you please let me know the steps to setup 'Configurable Search' in PeopleSoft CRM 8.8(PeopleTools 8.48)?
    Thanks

    PeopleBooks > PeopleSoft Enterprise CRM Automation and Configuration Tools PeopleBook > Configuring Search Pages
    Nicolas.

  • What are the steps in Apple Configurator iPad restore? It appears to me that Configurator repeats steps, but it probably is that I don't know what happens and when.

    what are the steps in Apple Configurator iPad restore? It appears to me that Configurator repeats steps, but it probably is that I don't know what happens and when.

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can get a clue to what it is, and potentially use it, by going to https://appleid.apple.com/ and clicking 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have, or don't want to use, your rescue email address (you won't be able to add/change it until you can answer 2 of your questions) then you will need to contact iTunes Support or Apple to get them reset (which will be by phone as they need to verify your id - we are fellow users here on these forums).
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down this page to add/change rescue email address for potential future use : http://support.apple.com/kb/HT5312 . Or you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • Kindly explain the step by step procedure for configuring sales order stock

    Hi friends,
    can anybody explain the step by step procedure for configuring sales order stock.
    Stock that is used for a sales order. It is directly allocated to a sales order. Components can only be used to produce material ordered by the customer and the finished product can only be delivered to the customer via the sales order.
    You can manage valuated or non-valuated sales order stock.
    If the sales order stock is not valuated, it is managed via a cost collector. The system does not carry out invoice verification postings for goods movements, and you cannot obtain an overview of how the stock is valuated until the end of the settlement period in Controlling.
    If the sales order stock is valuated, you have immediate access to its value in Financial Accounting. The assigned accounts are debited and credited as a result of the valuated goods movements.
    but i am not clear of how to map it into sap.kindly explain it step by step.
    regards,
    willaims

    Follow the link
    this will explain about complete config
    http://help.sap.com/bp_bblibrary/600/Documentation/V4J_BB_ConfigGuide_EN_US.doc

  • How do I enter rests in step time???

    How do I enter rests in step time???

    When I launch it all I see is the video window and the contacts list to the right...no menu

  • Step Time input

    I've got what looks like a nasty bug with step-time input using a MIDI keyboard.
    Using any editor - say the Matrix editor - if I start to enter a stream of notes of a selected length, say a 1/16th, it will randomly enter a few of those notes with ridiculously big lengths - e.g. the length of the song. In other words, it looks a bit like the equivalent of 'stuck' MIDI notes (no Note Offs). It will do this every few notes I enter; all the rest of them are the correct length.
    It makes it unusable because I have to keep stopping and deleting the notes that it's mis-entered.
    This problem doesn't seem to apply using the Step Input window.
    Does anyone else suffer from this?
    Adrian

    But even if this was the case (a glitchy interface etc.) we still have the Logic step input mechanism in software deciding to enter a note of enormous length - so it's a software issue, even if the hardware were dodgy (which it isn't - real-time recording is all fine)
    Think about it; what's coming in from the keyboard is just a MIDI message - whether it's a valid note on or not. Any conceivable glitch would just be an invalid or incorrectly-formed MIDI message, which the software should just handle by ignoring it. So I can't see this is the issue!
    The step-input mechanism must base its note-length decision on the currently selected 'format' value (1/16th or whatever) so it strikes me that the bug (if it exists) must be originating somewhere around that lookup process.
    Adrian

  • Step by step process in configuring the enterprise structure for MM in IDES

    Can any one give the Step by step process in configuring the enterprise structure for MM in IDES.

    check below link for enterprise structure in MM.
    http://www.docstoc.com/docs/10940744/SAP-MMWM-Configuration-Doc
    If you are new to material management please refer to below thread which will be very useful.
    New to Materials Management / Warehouse Management?

  • The step-by-step procedure of configuring Split-Valuation

    Hi
    Can anyone give the step-by-step procedure of configuring Split-Valuation
    cheers
    MaruthiRam

    Hii,
    To used split valuation, you have to activate it using 'OMW0'.
    To change split material valuation once it has been set, you must
    1.  first post out all stocks (for example, to a cost center or with movement type 562)
    2.  then change the control parameters
    3.  if necessary, change the automatic account determination
    4.  finally post the stocks back in again
    In split valuation, you can distinguish between partial stocks of a material according to certain criteria and valuate them separately.
    The material stock is divided according to valuation category and valuation type.
    The valuation category determines how the partial stocks are divided, that is, according to which criteria. 
    The valuation type describes the characteristics of the individual stocks. 
    With the function "Setting" you can determine:
    which valuation categories exist in your company (global categories) 
    which valuation types exist in your company (global types) 
    which valuation types belong to which valuation category 
    which valuation categories exist in a valuation area (local categories) 
    Your entries are only relevant if you set split valuation as active in the function "Global settings".
    In the standard SAP R/3 System, the following valuation categories are default settings :
    B procurement type 
    with the valuation types:
    "EIGEN" for in-house production
    "FREMD" for external procurement
    H Origin 
    X automatic valuation (only for batch) 
    To select split valuation ('OMWC'), proceed as follows:
    1.  Determine the valuation categories and valuation types that are allowed for all valuation areas:
        global valuation categories via menu "Goto --> Global Categories" 
        global valuation types via menu "Goto --> Global Types" 
    2.  Allocate the valuation types to the valuation categories.
         a) Select "Goto --> Global Categories".
         b) Position the cursor on a valuation category and select 
            "Goto --> Global Categories --> Assignments --> 'Types->Category'".
         c) Activate the valuation types you want.
    3.  Determine the local valuation categories for each valuation area.
         a) Select "Goto --> Local definitions".
         b) Position the cursor on a valuation area and select 
             "Goto --> Local Definitions --> Allocate Categoires->Org.units (button Cats->(OU)". 
             You obtain a list of the global valuation categories.
         c) Activate the categories to be used in this valuation area.
             The system creates the local valuation types based on the allocations under point 2.
             Only now can you create a master record with split valuation.
    Specifying Split Valuation by creating Material Subject to Split Valuation
    1.  Create a material master record, selecting the Accounting View 1. 
    2.  Enter your data as required on the Accounting data screen, specifying a valuation category. 
         (If you can't find the valuation category field, it might be hidden, use OMSR to define the Field Groups. 
          Look for the field MBEW-BWTTY for Valuation category).
    3.   Be sure that the price control indicator is V for moving average price and enter a moving average price. 
    4.   In the case of split valuation, you can create only one valuation header record with price control V because the 
          individual stock values are cumulated, and this total value is written to the valuation header record.  This is where the 
          individual stocks of a material are managed cumulatively. To do this, fill in the Valuation category field on the accounting
          screen when you create the material master record and leave the Valuation type field blank.
    5.   Save your data and the system creates the valuation header record.
    6.   The initial screen appears.
    7.   Extend the material by creating new material master records from the Accounting view 1. For the first material, specify a
          valuation type in the Organizational Levels dialog box and enter the respective accounting data on the data screen. 
          Proceed likewise for the other materials, distinguishing between them by valuation type.  To do this, call up the material in 
          creation mode again. Due to the fact that a valuation header record exists, the system requires you to enter a valuation 
          type for the valuation category.
    8.   Repeat step seven for every valuation type planned.
    You want to valuate the stock of material XYZ that you obtain from manufacturer A in Los Angeles at a different price than the stock you obtain from manufacturer B in Detroit. In this case, the valuation category is H for origin. Your valuation types can be LOS ANGELES and DETROIT.
    If a material is subject to split valuation, every quantity (sub-stock) of this material must be assigned to a valuation type (for example, country of origin). 
    For every valuation type, there are two types of data in the system, as follows:
    Valuation data (for example, valuation price, total stock quantity, total stock value), which is defined for every valuation type at valuation-area level and applies to all dependent storage locations. 
    Stock data, which, like batch data, is managed separately for each storage location. If a material that is subject to split valuation is also subject to management in batches, its stock data is not managed by valuation type, but rather by batch. Every batch is assigned to a valuation type.
    The stock quantity, stock value, and valuation price for all valuation types are managed cumulatively at valuation-area level.
    Must the Valuation Type Exist Before the First Goods Receipt?
    You can post the goods receipt of material of a certain valuation type only if the valuation data for this valuation type already exists, because the system valuates the goods receipt at the price defined in the valuation data. On the other hand, the stock data for the valuation type is created automatically during the first goods receipt into the storage location, if this is defined in Customizing for Inventory Management. 
    Goods Movements with Materials Subject to Split Valuation
    If you want to enter goods movements for materials subject to split valuation, you must enter the valuation type in addition to the material number. 
    Enter the valuation type in the Batch field for MB01.
    In MIGO, there is a valuation type field in Detail data -> Material.
    Regards,
    Kumar

  • Step by step SAP EDI Configuration

    Hi,
    Can you please shar step by step SAP EDI Configuration deatils.
    Regards,
    Nitin Patil

    Hi
    Seeburger EDI Adapter leverages SAP XI's Adapter Framework. This Adapter is used to perform conversion between EDI and XML format. It also provides some canned EDI layouts and the ability to build your own. It is used to transfer the EDI message via HTTP or AS2 protocols.
    The most direct way of using the Seeburger adapters is to configure the BIC as a module. There is a software component from seeburger called bicmapper which will allow you to do the following:
    1. define or import the inbound message metadefinition in various formats ( edifact, xml,...)
    2. using a mapping create an xml variant as the output metadefinition or edifact in the other direction.
    3. create a one to one mapping between input en output.
    4. export the metadata in xsd or sda format for import in XI
    5. generate an SDA which can be deployed in XI and used as a module.
    Please go through the following links which clearly explains what you want and it also helps you in understanding the same in depth:
    http://www.seeburger.com
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/SEEBURGER_SAP_Adapter_engl.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.sap.com/france/company/events/2006/02-01-Automotive-Seeburger.pdf
    http://h41123.www4.hp.com/presentations/ISUG/XISeeBurger.ppt
    http://www.sap.com/asia/company/events/nwtechdays/presentation/australia-slides/Pre-Built_Integration.pdf
    Integrating XI with SeeBurger
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6dc02f5d-0601-0010-cd9d-f4ff9a7e8c33
    Thoughts on EDI in an SAP XI Environment
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/135b0b94-0701-0010-f6a9-86a14057544a
    regards,
    Kishore

  • Step by Step Credit Mgmt Configuration

    Hi Gurus,
                     Can any body give me step by step Credit Mgmt.configuration to me?
    Points will be awarded for good answers for sure.
    Looking forward for your hlep.
    VCS

    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/FIARCR/FIARCR.pdf
    How To Do Configuration For Credit Management
    Credit and risk management takes place in the credit control area. According to your corporate requirements, you can implement credit management that is centralized, decentralized, or somewhere in between. 
    An organizational unit that represents the area where customer credit is awarded and monitored.   This organizational unit can either be a single or several company codes, if credit control is performed across several company codes. One credit control area contains credit control information for each customer.
    For example, if your credit management is centralized, you can define one credit control area for all of your company codes. 
    If, on the other hand, your credit policy requires decentralized credit management, you can define credit control areas for each company code or each group of company codes. 
    Credit limits and credit exposure are managed at both credit control area and customer level.  You set up credit control areas and other data related to credit management in Customizing for Financial Accounting. The implementation guide is under Enterprise Structure -> Definition or Assignment -> Financial Accounting and then Maintain credit control area. You assign customers to specific credit control areas and specify the appropriate credit limits in the customer master record.
    Settings for determining the credit control area of a document.  The settings of items 1 - 4 are taken into account according to their priority.  The credit control area found is stored in field VBAK-KKBER.
    1. Transaction OB38
       Check which credit control area is assigned to the company code.
       Company code:
       Credit control area:
    2. Transaction OVFL
       Check which credit control area is assigned to the sales area.
       Sales area:
       Credit control area:
    3. Transaction XD02 or VD02
       Check which credit control area is assigned to the payer.
       Payer:
       Credit control area:
    4. Transaction SE37
       Is user exit EXIT_SAPV45K_001 being used?
    5. Transaction OBZK
       For the settings under items 2 - 4, field "All company codes" must be marked in Transaction
       OB45, or the credit control area must be entered under the relevant company code in table
       T001CM of the credit control areas allowed.
       Company code:
       Credit control areas allowed:
    6. Settings for the credit checks
    7. Transaction OVAK
       Which settings do exist for the sales document type used?
       Sales document:
       Check credit:
       Credit group:
    8. Transaction OVAD
       Which settings do exist for the delivery type used?
       Delivery type:
       Credit group for delivery:
       Credit group for goods issue:
    9. Transaction OB01
       Credit management/Change risk category
       Definition of the risk category for each credit control area. This risk category can be
       assigned to a credit account by using Transaction FD32.
    10. Transaction OVA8
        Here, the individual credit checks for key fields
        o credit control area
        o risk category
        o credit group are set. Take these key fields from the above settings and go to the detail
          screen. In particular, check whether fields "Reaction" and "Status/block" are set
          correctly. To carry out follow-up actions in case of a credit block, the credit check
          status must be set (field "Status/block").
    11. Transaction FD32
        Credit master data for the payer of the relevant document.
        Credit account:
        Credit limit:
        Risk category:
        Currency:
    12. Settings for updating the credit values Update of the credit values is required for the limit
        check (static or dynamic credit limit check).
    13. Transaction OVA7
        Update of the credit value is active for the corresponding item type if the check box is marked. This field corresponds to 
        field "Active receivable" in Transaction VOV7.
        Item type: 
        Active receivable:
    14. Transaction V/08, Pricing
        In the pricing procedure used for pricing, subtotal "A" must be entered in a line for
        determining the credit value (mark the pricing procedure and doubleclick on "Control").
        Usually, the net value plus taxes is used. This way the system is determined to use this
        subtotal for credit pricing. The credit price is stored in field VBAP-CMPRE and used for
        update and credit check.
        You can find the used pricing procedure of the order under "Item -> Condition -> Analysis".
        Pricing procedure:
        Line with subtotal = 'A':
    15. Transaction OB45
        Which update group (field "Update") do you use in the relevant credit control area? The
        default setting is "12". If you use another update group, check whether this is fine with
        you. If you open an OSS message, please tell us the alternative update group.
        Credit control area:
        Update:
    16. Transaction OMO1
        Which kind of update did you choose for structure S066? 
         In any case, "Synchronous update (1)" has to be chosen as the kind of update. 
         All other settings will lead to errors.
    Regards,
    Rajesh Banka
    Reward points if helpful

Maybe you are looking for