Changing Appraiser Name in the Appraisal Document

Hi,
I am able to change the appraiser name as per the BADI implementation. I am unable to see that in the Portal link.
Any thought what is missing?
Joe

You may have a look at the default BAdI (HRHAP00_ACC_HEAD)
Implementation HRHAP00_ACCESS_HDR_2     'PART_APPER_ACCESS_2'
Methode GET_HEADER_ACCESS
( eg. s_header_cust_display-appraisee = c_output_mode_display ).
you can check See please also the function module 'HRHAP_DOC_WF_ACTOR_USER_CHECK'
For example, PART_APPER_ACCESS and PART_APPER_ACCESS_2 are not
the implementation names. Their names should be HRHAP00_ACCESS_HDR_1
and HRHAP00_ACCESS_HDR_2.
You can see that through:
SE18 =>
Input BADI name HRHAP00_ACC_HEADER =>
Menu 'Enhancement Implementation' =>
'Overview'

Similar Messages

  • What is the registry key in Adobe Acrobat v9 which turns the dialog off: any form fields that have the same name in the merged documents are now...

    what is the registry key in Adobe Acrobat v9 which turns the dialog off: any form fields that have the same name in the merged documents are now...

    There is no key because that is an important dialog.  Why would you want it to go away?

  • How to get customer number and name from the SD document

    Hi All,
    Can you please let me know how to get Customer Number and Name from the SD Document?
    Thanks a lot....
    Anil

    Hi,
    It will be displayed in the SD (BIlling document) itself,  you clikc on the VF03. The customer name and number will also appear in the SO document also Tcode VA03
    regards,
    radhika
    Edited by: kolipara radhika on Jul 10, 2009 5:32 AM

  • Can I Change My name in the Profile

    Hi All,
    Don't mine any one that  I Asked this Q here
    How To Change My Name in the SDN Profile ???
    I Given My Pet name At the Time of Registration in SDN.
    So I Want to Change My Display Name As Wel As The name in the Database
    I Tried Like this
    GotoMy Profile-Update Profile
    Here I Changed First name Last name Display Name
    I Logoff the User
    Then Dispaly name Has been Changed But In My Postings my old name is Remains Same
    I Want to See the Changes to Those Also
    Please Let me Know
    Regards
    Vamsi

    Vamsi,
    <b><i>Then Dispaly name Has been Changed But In My Postings my old name is Remains Same</i></b>
    Where u are seeing ur old name in ur thread? Please make sure only the display will change not the contents which u wrote in ur questions/replies. Like Best regards Vamsi, this one u are referring to? If yes then it won't changes.
    Best regards,
    raj.

  • How to obtain the name of the front document

    Hi,
    I would like obtain the name of the front document.
    How I can do.
    Thanks for your help.

    What type of plug-in are you? Look into PIProperties.h and the properties callback suite if you are a non-automation plug-in. If you are an automation plug-in type see the Getter example on how to pull all kinds of information from Photoshop.

  • Why can't I save any changes I make to the converrted document?

    Why can't I save any changes I make to the converrted document?

    Hi,
    Have you mark the OCR Feature checked while converting the PDF to DOC.
    Please try that and let me know if that work,
    ~Pranav

  • USER EXIT FOR CHANGING POSTING DATE IN THE MATERIAL DOCUMENT

    Hi,
    Pls advise any USER EXIT FOR CHANGING POSTING DATE IN THE MATERIAL DOCUMENT.
    Regards,

    Hi,
    There is another user exit for updating material document data Upon posting  is MB_CF001
    I hope this will fullfill you.
    Prem

  • How to change the name of the Portal DOCUMENT.

    I have some document like
    http://portal.co.com/pls/portal/docs/1/26024.GIF
    I want to rename the file name at the end to be something like
    http://portal.co.com/pls/portal/docs/1/1234.GIF
    How can I achieve this. Anything from the front end / browser window is preferred. I got some hint after doing some searching on this... like wwdoc_api.move_document... but dont know how to use this..
    Any pointers are highly appreciated.
    Thanks,
    -Raj

    Display the documents list, tap the Edit button, select the file you want to rename, and tap the Rename icon at the top (4th from the left, just to the left of the trash can).

  • Change File Name In The "File Download" Dialog Box For Web Reports

    Hi All ,
    I followed the below note to change the "File Download" name.
    How To Change The File Name In The "File Download" Dialog Box For Web Reports? Doc ID: Note:418366.1
    However its not working. Has anyone tried this and works fine ?
    Basically I wanted to change the name "rwservlet" when a report is run in an
    excel format.
    Rajesh Alex
    Rajesh Alex

    Hello,
    Have you checked if a HTTP header "Content-disposition" is returned ?
    You can use ieHTTPHEaders for IE
    http://www.blunck.se/iehttpheaders/iehttpheaders.html
    and
    Live HTTP Headers for FireFox
    https://addons.mozilla.org/en-US/firefox/addon/3829
    Regards

  • Having problem with change of name in the datagrid Coding

    I am having problem with changing the name of the datagrid header text name for one of the data either in the flash file or the php file.
    The thing is i want to change the Course_Name to Course Name that has no underscore so that it will look nicer in the datagrid but if I change it in the php file like SELECT Course_Name as 'Course Name' ....., it will not turn out in the datagrid when I CTRL ENTER the flash file but the others like Price,description and display is shown.
    There is no problem with my php code but I do not know how to change the Course_Name into Course Name so please help me resolve this error that I am having.
    This is my flash code
      function goCourse(e : MouseEvent):void
      gotoAndStop(5);
      refreshResponder = new Responder (refreshSuccess, onFault);
      connection = new NetConnection ();
      connection.connect (gateway);
      dataDG.addEventListener (Event.CHANGE, gridItemSelected);
      refreshData (true);
      function gridItemSelected (e: Event): void {
      ID = e.target.selectedItem.ID;
      courseTxt.text = e.target.selectedItem.Course_Name;
      priceTxt.text = e.target.selectedItem.Price;
      descTxt.text = e.target.selectedItem.Description;
      private function getParams () {
      var param: Object = new Object ();
      param.ID = ID;
      param.Course_Name = courseTxt.text;
      param.Price = priceTxt.text;
      param.Description = descTxt.text;
      return param;
      private function refreshData (refresh: Boolean): void {
      if (refresh)
      connection.call ("Course.viewCourse", refreshResponder);
      private function refreshSuccess (result: Object): void {
      dataDG.dataProvider = RecordSetDP.toDataProvider (result);
         dataDG.columns = ["Course_Name","Price","Description","Display"];
      private function onFault (fault: Object): void {
      trace (String (fault.description));
    This is my php file code.
      function viewCourse()
      $this->connect();
      $sql = "SELECT Course_Name,Price,Description,Display
      FROM coursetb";
      return mysql_query($sql,$this->_connection);

    i don't see where you're calling your php file in your code, but change 'Course Name' to 'Course_Name' (or vice-versa) there.

  • Change Item Quantity in the Billing Document ( Proforma Invoice )

    Hi,
    There is a requirement from the client to change the quantity at item level in the billing document ( Order based Proforma Invoice ) after it is saved.
    As SAP does not allow to change in the VF02 transaction, Please let me how to change quantity at the item level of the billing document.
    Please let us know if we need to use any user exit or any other system modification.
    Regards
    V R Reddy

    Hi Venkat Rama Reddy
    First of all Welcome to SDN forum
    Now coming to your query , your requirement cannot be fulfilled  as standard SAP doesn't .Because ,First of all at billing level you cant change the item quantity , then in VF02 it is not possible.But if your clients requirement is to change the item quantity in VF02 , then first of all do VF11->VL09->VL02N and here you can change the picking quantity and then do the billing ,as once if you change the picking quantity then at billing item  level also the item quantity will change
    Check with the following user-exit  USEREXIT_SAVE_DOCUMENT_PREPARE. Here with the help of the Technical consultant include the requirement that after saving the billing document we can change the item quantity
    But it is not suggestible to change the item quantity at billing level . As once you save the billing document , an accounting document will be getting created.
    Regards
    Srinath

  • How do i change artist name in the iphone?

    So I downloaded a CD I got for christmas onto itunes and I changed the artists name on the album and when I put it on my iphone it didnt transfer and now it says unknown artist when I already have another album by the same person on my iphone. Please Help?

    Sounds like you didn't complete all of the needed tags in iTunes. Delete it from the phone, go back to itunes on your computer and make sure the Album artist is completed. Then resync.

  • How to change display name of the attachment item attribute.

    Hello Experts
    I have a requirement to send a notification with attachment but attachment name should be attachment name,
    Is there any way to change the display name of the Attachment
    Please advise;
    Thanks
    Rajesh.

    Azmathulla,
    It is not possible to change the name of the server, but you can add a label to it (see attached screenshot).  And yes, it can be done during production hours, this doesn't affect the production data.
    Please let me know if this answers your question.

  • Change display name of the server under Equipment

    is it possible to change the display name of the LIVE / PRODUCTION blade under equipment --> Chasis -->Servers to our own naming standards.
    Attached is the screenshot of current names.
    UCS Manager Version 2.1(3a)

    Azmathulla,
    It is not possible to change the name of the server, but you can add a label to it (see attached screenshot).  And yes, it can be done during production hours, this doesn't affect the production data.
    Please let me know if this answers your question.

  • Table name holding the material document

    hi friends....plz tell me any table name holding the value of  material document(migo) and purchase order.

    Hello,
    The table for this EKBE

Maybe you are looking for

  • Apple TV will only play one track at a time, can anyone help?

    Hi, I have Apple TV model #MC572LL/A which I think makes it 2nd gen, right? I've had it for a couple of years, never really had a problem with it until maybe the latest update of the firmware (5.2), or maybe the latest iTunes (11) or maybe my brand n

  • ICR proces 003: data reconciliation runtime

    Dear all, we are implementing SAP ICR process 003 for both customer/vendor open items and GL open items and have come across the following issue: If a user runs tcode FBICR3 for a period in which no data exist (yet) in table FBICRC003A, tcode FBICR3

  • IPhone Crashes PC (Blue Screen)

    Hi, THE PROBLEM: My query is regarding the synchronization of the iPhone with a PC. WHAT HAPPENS: When I connect my iphone to my PC the message appears on a pop up "Digital Camera" then a few seconds later the BSOD blue screen appears and my PC crash

  • Internal table updation

    Hi, Internal table declaration data: begin of test occurs 0,        salesorg type vkorg,        palnt    type werks,       end of test. Internal table Data Sales org     Plant XXX           PPP YYY           OOO ZZZ           III Now the plant of all

  • Can someone please help me install mac office

    e