Copy Appraisal Results From Previous (MBO)

Hi:
There is a business requirement to populate the "criteria" and "notes" from previous year's appraisal form.
This must be populated when the appraisal form is launched.
I probably should be using a BADI for this. However, I don't know which function module I should use.
I hope experts in this forum can help me. Any help is appreciated.
Thank you,
Ash

Hello Ash,
You can use the Value Determination BADI to default value in the VC.
There are some standad BADIs implementation in the following definition:
HRHAP00_VAL_DET     Appraisal Document - Value Determination
You may copy/create your own custom implementation from the standard.
Best Regards,
Vincent

Similar Messages

  • Referring to Automator Results from Previous Steps

    Is it possible to refer to the results from previous steps in an Automator Workflow? Specifically, I'm trying to modify my backup Workflow to remove files from a folder before archiving it. I'm writing code and I want to back up my progress every so often. I have a decent workflow for archiving my entire project folder, but my executable is 21 MB where as the source code is .5 MB. I could cut the size of my archive dramatically if I could remove the executable file before archiving (plus it's obviously nonportable and redundant anyhow). I'm running into 2 issues when trying to create a Workflow to handle this:
    1) Find/Filter Finder Items rely on Spotlight meta tags. Since I'm constantly recreating the executable, it appears Spotlight generally doesn't have the executable indexed so these two functions don't work. They simply don't see the executable.
    2) Even if I find the file and delete it, I don't know how to select the folder again to archive it. I'm trying to keep this general so it'll work on any project folder so I don't want to point it directly to the folder.

    Is it possible to refer to the results from previous steps in an Automator Workflow? Specifically, I'm trying to modify my backup Workflow to remove files from a folder before archiving it. I'm writing code and I want to back up my progress every so often. I have a decent workflow for archiving my entire project folder, but my executable is 21 MB where as the source code is .5 MB. I could cut the size of my archive dramatically if I could remove the executable file before archiving (plus it's obviously nonportable and redundant anyhow). I'm running into 2 issues when trying to create a Workflow to handle this:
    1) Find/Filter Finder Items rely on Spotlight meta tags. Since I'm constantly recreating the executable, it appears Spotlight generally doesn't have the executable indexed so these two functions don't work. They simply don't see the executable.
    2) Even if I find the file and delete it, I don't know how to select the folder again to archive it. I'm trying to keep this general so it'll work on any project folder so I don't want to point it directly to the folder.

  • Reg: Copying inspection results from inspection( 04) to inspection type (!0

    Dear Friends ,
    I have configured for Quality certificate.
    At the time of delivery , the system will create an inspection lot.
    To make delivery we need to carry out RR and UD once again.
    Can we copy inspection results of inspection type (04) to inspection type 10 , as we are maintaining  the same results of inspection type (04). Also can we sit as background whenever a lot is created with lot origin(10) , automatically it has to copy the results from inspection  type 04 .
    Thanks in advance.

    HI Dear,
    As you said  , it is for COA.
    And the materials are not batch manged.
    Is there any possibility  of copying the results of 04 inspection lot to inspection type 10 lot  , which is created at the time of PGI.
    Because untill and unless RR and UD is made sales people will be not able to  make the delivery . if there are multiple lots , it takes
    time for them to carry out RR and UD.
    Thanks for your reply!!!

  • Use results from previous action to filter

    I hope there are some automator pros out there who can shed some light on this one.
    I am trying to create an app that will look in a specified folder, find all documents that were created in the last seven days, and then return results of only the files that contain a set of file names I specified.
    So far I have this:
    Find Finder Items
    .....Search (FOLDER)
    .....Any of the following are true:
    ........list of 15 filenames
    Get File Information
    Copy to Clipboard
    Paste Clipboard Content into Word Document
    Here is the crux. I need to find only the files with the specified names that were created in the last 7 days. I work for a television station, and all episodes have the same name, with an episode number at the end. I don't want results of every file with that name, there's thousands. Just the new ones. I can't just do a search for last 7 days files, because over 30 are created, and I only need 15. So how can I filter the results of the first action to only give me the results from the last 7 days? I added a Filter Finder Items, thinking it would take its information from the previous task, but it didn't work. Any help would be appreciated.

    I don't have a smb network drive to test, but if the find shell script works (it does not use Spotlight, and I am guessing that at least one of the actions uses it), the following *Run AppleScript* action may also work (and be shorter than 27 actions).
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #DAFFB6;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters} -- find items by age
    searches the specified folder for the specified items newer than the specified number of days
    input: nothing (any existing input is passed on)
    output: a list of items found matching the search criteria
    # search criteria
    set theFolder to quoted form of text 1 thru -2 of (POSIX path of (choose folder)) -- no trailing delimiter
    set fileNames to {¬
    "Example_File_Name_1.txt", ¬
    "Example_File_Name_2.txt", ¬
    "Example_File_Name_3.txt", ¬
    "Example_File_Name_4.txt", ¬
    "Example_File_Name_5.txt", ¬
    "Example_File_Name_6.txt", ¬
    "Example_File_Name_7.txt", ¬
    "Example_File_Name_8.txt", ¬
    "Example_File_Name_9.txt", ¬
    "Example_File_Name_10.txt", ¬
    "Example_File_Name_11.txt", ¬
    "Example_File_Name_12.txt", ¬
    "Example_File_Name_13.txt", ¬
    "Example_File_Name_14.txt", ¬
    "Example_File_Name_15.txt"} -- a list of names to find
    set daysOld to 7
    set nameList to {} -- build an evaluation string from the list of names
    repeat with anItem in fileNames
    set the end of nameList to "-iname " & (quoted form of anItem) & " -or " -- case insensitive match for any of the names
    end repeat
    set nameList to text 1 thru -6 of (nameList as text) -- strip off the last boolean operator
    # find files newer than 7 days old with any of the specified names
    do shell script "/usr/bin/find " & theFolder & " -type f -newerBt '" & daysOld & " days ago' \\( " & nameList & " \\)"
    return input & (paragraphs of the result) -- add to any input items
    end run
    </pre>

  • How do I copy over files from "Previous System 1" to my current system

    Hello.
    I was having trouble with starting up my computer. I used a friend's computer to check Apple's Knowledge Base. The suggestion was to perform an Arhive and Install and to select the option of preserving my user and network settings.
    I could not locate my Panther Install disc (my previous OS was 10.3.9). However, I did find my Jaguar 10.2 Install disc so I decided to use that instead (my disorganization is truly exasperating).
    I thought once my system was again accessible (which it now is) I'd be able to reinstall Panther from the Archive even though I still can't locate my Panther Install disc. Is that possible?
    I am, of course, having trouble using many of my 10.3.9 applications as they are incompatible with my currently loaded Jaguar 10.2 OS. I am unable to print, get my email, or use countless applications.
    I'd sure appreciate help and suggestions as to how I might reaccess my 10.3.9 OS from the Archive so that I can avoid having to repurchase and reload Panther to get my original system back.
    Is there a simple way to copy/move my previous system from "Previous System 1" back to my current system?
    Thanks in advance for any suggestions.
    Luna Monte
    P.S. I foolishly neglected to maintain a back-up of my data onto an external disk. If I can get things back to where they were, I've learned my lesson.
    iMac Flat Panel   Mac OS X (10.2.x)  

    Lona:
    Welcome to Apple Discussions.
    As Kappy pointed out, you need Panther install disks to install Panther. However, you may be able to recover your data files from the Previous System Folder.
    You can purchase Panther disks from applerescue. Your computer will support Tiger if it meets the minimum system requirements for Tiger.
    Please don't hesitate to post back should you have further questions.
    Good luck.
    cornelius

  • Copying Inspection results from inspection lot.

    Dear All,
    Please explain me the process of copying inspection results in QM. Following is my clients requirement:
    During receiving inspection they receive the same material in say 10 batches (coils). They want to create the independent batch for  each coils of same material for tracking mechanism, so I  don't have any option to generate that many number of lots.
    Out of this 10 lots, say there are 2 masters (mother coils). Means there are two set of characteristics only which i need to copy for 5 lots each.
    As I  learn from SDN, EA - PLM  need to be activated . But I don't know what are the  adverse effects of activating  same.
    Please explain me the process.
    Best Regards.
    Shekhar Mokashi

    Hi Shekhar,
    Refer the OSS note 855959 - Activation of Extension Sets via SPRO not successful.
    I think all your doubts regarding to this Enhancement package will get resolved.
    The big warning is given there in that note itself about implementing the EA-PLM enhancement is.....
    Once an Enterprise extension set has been activated, it cannot be de-activated by de-selecting the option in the SPRO or otherwise, because BC Set activations cannot be undone.
    Appart from that note refer the document for
    Release Notes
    SAP ERP Corporate Services
    SAP enhancement package 2 for SAP ERP 6.01.
    the link for the same is pasted here FYI.
    [Chap_04_RNCorporateService|http://www.id.uzh.ch/dl/sw/sap/upgrade/Chap_04_RNCorporateService.pdf]
    Even after this much stuff completion, you don't have your doubt cleared up then I would advice you to ask the question in [ SAP Enhancement Packages|/community [original link is broken]; forum.
    Regards with lots of good luck wishes.
    Shyamal.
    Edited by: Shyamal Joshi on Jul 26, 2008 12:19 PM
    Edited by: Shyamal Joshi on Jul 26, 2008 3:06 PM

  • How to get login crenditials(Result) from the MBO in a js file

    Hi Experts,
        I got a table from oracle db, and i have deployed it and MBO is generated.
    That table contains the login credentials which i am giving in the login page.
          I have created a login page with user id and password when i am trying to login by using the credentials which i have registered earlier the credentials are being checked in the table and it should return me yes or no if yes i have to move to next screen if no i should display some alert . My problem is that i am not knowing how to get that verified credentials and display them in my code. I am writing this line of code in java script and i am unable to know, how to handle the data after being checked from the MBO .. please help me out of this ..

    Hi Lokesh,
    You can write an object query for checking the credentials details.
    Right click mbo>Attributes>Object query>Add
    Add 2 parameters, give some name like usernameParam and passwordParam
    Map these parameters to respective fields like username and password(from MBO)
    Generate object query
         e.g. select x.username, y.password from ABC where x.username=:usernameParam and      y.password=:passwordParam
    select Return type"as single object""
    (assuming username and password are the parameters defined in the mbo ABC.)
    redeploy mbo
    call this object query to Login button and do all required mappings
    For verification, if details are/not available in backend
    You have to write some piece of code in customBeforeNavigateForward
    e.g.
    hwc.customBeforeNavigateForward = function(screenKey, destScreenKey) {
    if(destScreenKey="Employee" && screenKey=="Start"){
    //Here Employee is the MBO name
    alert("test");
    var message = getCurrentMessageValueCollection();
    alert("test1");
    var itemList = message.getData("Employee");
    alert("test2");
    var items = itemList.getValue();
    var noOfItems = items.length;
    alert("noOfItems="+noOfItems);
    if(noOfItems==0){
    alert("Invalid input");
    return false;
    Rgrds,
    Jitendra

  • Add Row in table and copy the properties from previous row

    Hello,
    i have a table with just one row (and 7 columns). The cells (columns) are
    all of different types, f.e. ring, numeric, string.....On runtime the user
    can add more rows to the table. I'm looking for a function to copy a row
    with all the cell propertis (cell type, format, text style....) and insert
    as a new row. Is there an easy way to do this?
    Thanks
    Norbert

    Thank you Luis,
    thats exactly how i thought it shoul work. I created a table with 7 columns
    and 1 Row and in the UI Editor i configured each column. The first column is
    set to ring, second colum is a set to numeric (default val 0.0000), double,
    with the precision 4 and the text justification set to CENTER CENTER. On
    runtime the user pushes a button that calls the function
    InsertTableRows(panel, PRUEFKREIS_TABLE, -1, 1, VAL_USE_MASTER_CELL_TYPE);
    That there are no default values in the new line is ok following your
    explanation, but when i enter a value in the second column of the new row i
    expect to get it formated with precision 4 and jaustification CENTER CENTER,
    but that doesnt work. If i enter a 2 i expect to get 2.0000 in the center of
    the cell, but i just get 2 in the upper left corner.
    i'm using LabWindows/CVI 2009 Version 9.1.0 (427).
    Any idea what i'm doin wrong ? The table mode is set to column. I also
    removed the ring columns to test if they cause the probplem, but still got
    the same error.
    Norbert
    "LuisG" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]...
    > Norbert, Roberto's method allows you to create your new cells with the
    > cell attributes that you have defined for each column. Once you define
    > these attributes by configuring each column in the UI Editor (Edit
    > Table&gt;&gt;Edit Column&gt;&gt;Edit Default Cell Values), you can ensure
    > that each new cell created under that column inherits those attributes. By
    > attributes, I'm referring to items such as the cell type, or the text
    > style. Sadly, however, you can't inherit the cell values themselves. One
    > thing you could do is to go ahead and create the new cells and then use
    > the functions ClipboardGetTableVals and ClipboardPutTableVals to copy the
    > values from the first row to the new row. However, you will still have a
    > problem with your ring cells, since the entire list of items that each
    > ring cell holds is not considered an attribute (therefore, you can't
    > define it ahead of time in the column) but it also is not copied to the
    > clipboard. Only the current value is copied, I believe. So you'll have to
    > recreate this list for new ring cells each time. I'm sorry that this isn't
    > as easy as it should be... Luis

  • Copy Net Result from Many Accounts to An Account

    Hi All,
    I want to copy Net Result for all products to an account for a product.
    Accounts :
    ACT = Technical Account
    AC1 = account
    Products :
    P1 = Product1
    P2 = Product 2
    NA = Na product
    With Property : I've tried to copy a list of accounts using property
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MEMBERSET INTCO=NON_INTERCO
    *XDIM_MEMBERSET MEASURES=YTD
    *WHEN ACCOUNT.PROPERTY
           *IS INCOME
                *REC(FACTOR=-1,ACCOUNT="AC1",PRODUCT="NA")
    *ENDWHEN
    *COMMIT
    This solution copy only the last value of account list.
    With Business Rules and script logic :
    I use Business Rules to copy list account to an account -> List of account in ACT
    Logic to copy all products of ACT in NA Product of AC1
    *FOR %PRODUCTL%=P1,P2,NA
    *XDIM_MEMBERSET ACCOUNT=ACT
    *XDIM_MEMBERSET DATASRC=INPUT
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MEMBERSET INTCO=NON_INTERCO
    *XDIM_MEMBERSET MEASURES=YTD
    *WHEN PRODUCT_LINE
             *IS %PRODUCTL%
                     *REC(ACCOUNT="AC1",PRODUCT="NA")
    *ENDWHEN
    *COMMIT
    *NEXT
    OR
    *XDIM_MEMBERSET ACCOUNT=ACT
    *XDIM_MEMBERSET DATASRC=INPUT
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MEMBERSET INTCO=NON_INTERCO
    *XDIM_MEMBERSET MEASURES=YTD
    *REC(ACCOUNT="AC1",PRODUCT="NA")
    *COMMIT
    The 2 solutions does not work. It copy ACT of NA product in AC1 of NA Product and I want to copy all products of ACT in NA product of AC1.
    Any Idea ?
    KR,
    Samir

    Hi,
    Try with the following code
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MEMBERSET INTCO=NON_INTERCO
    *WHEN ACCOUNT.PROPERTY
           *IS INCOME
                *REC(EXPRESSION=%VALUE%,ACCOUNT="AC1",PRODUCT="NA")
    *ENDWHEN
    *COMMIT
    After this, if you want to invert the sign, you can add the following before the *COMMIT
    *WHEN ACCOUNT
    *IS AC1
    *REC(FACTOR=-1)
    *ENDWHEN
    Try to run the script using the debugger and see whether the result is correct or not.
    Hope this helps.
    I have removed the statement *XDIM_MEMBERSET MEASURES=YTD

  • Query Builder problem - query results from previous query

    Hi.
    I have a 100% repeatable problem in Oracle Query Builder (Version 6.0.7.1.0) where some rows from the results of a previous query appear in the results for the current query. The queries being run are saved in *.brw files. If I close down Query Builder completely between queries, there is no problem. If I run one query, export the results to a CSV file, close that query and then open a second query, when I run the second query there are rows in the results that shouldn't be there (they are remnants of the first query). Interestingly the total number of rows for the second query is correct, so the same number of rows are missing as shouldn't be there. Anyone come across this before? Problem is repeatable for different database users and on different computers.
    regards,
    Martin

    as i posted earlier .. queryBuilder as a stand alone product is neither supported nor available anymore. it is only available as part of the report data wizard.
    thanks,
    ph.

  • How to copy Location toolbar from previous Firefox versions

    Hi,
    I've been using a very old version of Firefox (3.0.16), mainly because I like very much its intuitive, centrally-located and coloured Location Toolbar. Is there any chance of to import the old Location Toolbar (or its icons)to the new Firefox 11.0? Many thanks.

    Do you mean the Navigation Toolbar with the URL box? If so, then everything should be ported over when you update. Just so you know, we strongly suggest you get Firefox 11.0 ASAP, as it contains many security fixes, patches, and updates not available to Firefox 3 users. [ftp://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest-11.0/win32/en-US/Firefox%20Setup%2011.0.exe Here's the download link (direct from Mozilla's download servers).]

  • Firefox hangs at start. A new profile with a copy of my bookmarks and other files, from previous profile starts OK. At next start I have to setup a new profile. Since June 2010 in Ubuntu, with automatic update.

    Hi,
    My firefox-profiles in Ubuntu, are practically one-timers.
    Next time i want to use firefox it hangs at start. The window comes up
    and it's white, except for a square in upper left corner (without color).
    I'm having this problem since June 2010, when I started using an electronic ID,
    for access to Swedish goverment organisations. The Electronic ID (BnakID) is
    supported in Windows, Mac and Ubuntu. I had a new installation of Ubuntu, in a
    virtual machine at that time.
    I can't say that this is a problem with Firefox in Ubuntu or some other
    combination, I'm a newbie with Ubuntu and BankID.
    I've used been using Firefox and installing (Firebird, Mozilla) since 2001,
    in other OS:es than Ubuntu (Solaris, RedHat, Windows and SLED).
    My workaround are:
    - cd ~/.mozilla/firefox
    - mv profiles.ini profiles.ini-
    - Start and stop firefox
    - Copy some files from previous profile, to the new.
    cd <previous>.default
    cp -r bookmark* cert8.db content-prefs.sqlite cookies.sqlite* \
    extensions* places.sqlite* prefs.js sessionstore.* signons.sqlite* \
    ../<new>.default/
    - Start firefox
    My environment:
    Linux uw000141 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 09:00:03 UTC 2010 i686 GNU/Linux
    Mozilla Firefox 3.6.13, Copyright (c) 1998 - 2010 mozilla.org
    BR,
    Henrik

    Try the fix posted by houseboats in this discussion: spinning beachball suddenly every time at launch. Other users have reported that it fixed their problem which is similar to yours, good with airport off, freeze with airport on. 
    The only problem I had with the fix was that it killed the name I gave my computer in the System/Sharing preference pane.  So if you use it go to that pane and rename your computer as it was originally.
    OT

  • Copy of conditions from PO, even if in price adoption - do not copy is ther

    Hi all,
    Even if i have the settings like in default value for buyers - in price adoption tab - copy of conditions from previous PO - do  not copy is there. then also previous PO value is copying , every time when i create a PO.. because of this I am really confused to find out the solution for this.. kindly let me know the possible solution for this..
    regards,
    Archana

    No here no info record requirement, PO should be created manually each and every time since the price changes each time that has to be entered manually only while creating PO..
    Since we are creating PO through BAPI.. it is always copying old po price.. and hence it is giving problem like whatever price manitained in excel sheet is not copying into the PO
    kindly let me know possible solution to resolve this
    regards,
    Archana

  • Error during copying inspection result.

    Hi All,
    While recording result with the Inspection plan where I had done settings to copy inspection result from another lot I got the error message;;;;
    Message Text
    No active implementation exists for BAdI QEC_SELECTION, procedure
    Technical Data
    Message type__________     E (Error)
    Message class_________     QECOPY (QM Data Transfer to an Inspection Lot)
    Message number________     016
    Message variable 1____     QEC_SELECTION
    Message variable 2____     
    Message variable 3____     
    Message variable 4____     
    Message Attributes
    Level of detail_______     
    Problem class_________     1 (very important)
    Sort criterion________     
    Number________________     1
    Pls guide me how do I activate this BADi
    Regards,
    Shyamal Joshi

    HI all,
    I think I will not get any response over it so closing the thread to contribute in new rule of engagement.
    Regards,
    Shyamal

  • How to include X-IDSSessi​onID in every header and copy the AuthToken from the previous response

    Hello,
    The business process is to login  and logout using Web HTTP/HTML protocol in LR 11.52; while I am trying to login to the website and after several attempts keep getting  error-500. One of the suggestion was to  copy the X_IDXSessionID to each request.  Also applied correlation but keep getting the authentication error in the session.
    My concern:How to include X-IDSSessionID in every header and copy the AuthToken from the previous response into the current request header? 
    I got the X-IDXSessionID and X-Allscripts-AuthToken from the snapshot response and request tab. Thanks.

    are you looping of this input with a for each?
    /yourdata/details[1] should return always the first detail element.
    or before the for each do an assing of this first detail element to "generic_details_var"
    and use this var in every looping iteration (in an assign or as input for xquery)

Maybe you are looking for

  • How to move windows from disconnected screen to active desktop?

    Hi I have a projector connected over the MiniDisplay-port on my Mac Mini, and a large Samsung screen connected over the Mini-DVI-port. Whenever I turn off the projector, I can still see from the Display menu that the proejctor is still connected. How

  • Whats faster than array?

    Hey there everyone. I got a problem. I need to compare two text files, each a couple of thousand words. The 1st is sorted, the second is un-sorted and must remain so. I need to compare the second file to the first and print out all the words that wer

  • Usage Decision -Transfer Posting

    Hi All, In our system Usage decision is usually done by QA10 (RQEVAI30) for inspection types 01,04,06.09. Now i tried to do it for an inspection type 08(transfer posting),but the system is not recognizing the lots available for usage decision with in

  • Why is it when I zoom at any value other than 25%, 50% or 100% my photoshop image looks pixelated?

    This is really bugging me and I can't get any work done...but I've had Photoshop for years so I know that if you zoom at any value other that 25%, 50%, 100%, 200% etc then the image loses some of it's quality, but up until today the image looked a li

  • Dropped frames / preview without rendering - A few questions

    Hey guys, I'm pretty new to video. I'm a photographer, but I've been getting into video a little bit recently. I shot a music video last weekend and I'm trying to edit it now. I was originally using these settings for my timeline based on the suggest