T77HAP_EX has a missing entry AA ORG_OBJECTIVES

Hi Experts,
I am implementing SAP Pre-defined Performance template.
I have run the IMG entry u201CConfigure Performance Management Processu201D but when I run this I get the message u201CAn unexpected technical error has occurredu201D. Selecting the help text it mentions to run report RHHAP_CUSTOMIZING_CHECK.
When I run report RHHAP_CUSTOMIZING_CHECK it identifies two errors
1) table T77HAP - missing blank entry
2) table V_T77HAP_EX - missing entry AA ORG_OBJECTIVES
I went into these tables and added the necessary entries. I re-ran the IMG step u201CDefine Templates for Performance Managementu201D but still getting the error u201CAn unexpected technical error has occurredu201D but the report RHHAP_CUSTOMIZING_CHECK does not show any errors.
Please can someone explain what could be missing or if they had this issue before and were able to solve this.
Many thanks
Oliver

Hi Maurice,
Thanks for your reply. Sorry not got back to you but only back at work today from my last post and sorry in advance for the amount of text below but wanted to give you the full information on the errors I have encountered in the IMG for pre-defined performance template.
Now when I run the IMG step "Define Templates for Performance Management" and I hit the u201CEnd configurationu201D button, I am getting the following errors:
Previous status '2' is not permitted for pushbutton 'OBJECTIVE'
Error      Previous status '2' is not permitted for pushbutton 'OBJECTIVE
Error      Element Appraisal Template 'Performance Management' contains errors. Cannot change status
And warning messages
You have maintained a description that is not displayed
Warning      You have maintained a description that is not displayed
So I went back into the template that I generated which sits beneath the Appraisal template structure as followsu2026.Personnel Appraisals>New Category>Performance Management
And I then found where the word OBJECTIVE was against the dropdown for the Status flow for the template under heading In Planning>Schedule Planning>PUSHBUTTON and changed this to read u201CSend to Planning Approvalu201D u2013 is this the correct setting?
When I now do template consistency check I get several yellow triangles for the elements e.g.  u201CReference Element: Criteria Group New Goalu201D and u201CReference Element: Criteria Group Aligned withu201D
QUESTIONS
1)     Do you think I have made the correct change for the status and removed the OBJECTIVE?
2)     Do I need to do anything with the descriptions which are yellow triangle as described above?
Now When I go into the second step for IMG> Configure Performance Management Process (which is the timeline and description) I get the technical error u2013 so at the start of this IMG step
I then run the program RHHAP_CUSTOMIZING_CHECK which then tells me to that table T77HAP has missing entry u201CSpaceu201D and table T77HAP_EX has missing entry AA ORG_OBJECTIVES.
So I can not progress with creating the timelines unless these are fixedu2026..
How have you solved this or please can you offer any suggestions on this?
Many thanks
Oliver

Similar Messages

  • HP Officejet Pro 8500 A 910 - Missing entry: RunDLLEntry

    Each time I boot up my computer, I get the following error message on the Desktop:
    Error in C:\Program Files\HP\HP Officejet Pro 8500 A 910\bin\HPStatusBL.dll Missing entry: RunDLLEntry
    I can't find this file. I uninstalled the printer and reinstalled it - and still get the message.
    How do I fix it?

    Hi Sunriver10,
    I see you are getting the Error "C:\Program Files\HP\HP Officejet Pro 8500 A 910\bin\HPStatusBL.dll Missing entry: RunDLLEntry" when you boot up your computer.
    I will be happy to help you.
    Hold down the Windows Logo key () on the keyboard and the 'R' to open the run box, type %temp%.
    Delete all files and folders from the temp folder. Choose skip if any pop ups appear saying any of the files could not be deleted.
    Uninstall the software again - Uninstalling the Printer Software.
    When the uninstall has completed restart the computer.
    Follow these steps to reset the registry settings and options for Windows Installer.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box
    In the Openbox, type msiexec /unregister, and then click OK.
    Hold down the Windows Logo key on the keyboard and the 'R' to open the run box.
    In the Open box, type msiexec /regserver, and then click OK.
    If you have any difficulty with this step, please use this link to perform it another way.
    Restarting Windows Installer.
    Run Disk cleanup from Accessories\ System Tool <How to Delete files using Disk Cleanup
    Download and install the latest version of Adobe flash player http://www.adobe.com/support/flashplayer/downloads.html
    Restart the computer.
    Do a msconfig and turn off any start up programs and Antivirus Software before running the Wizard.
    Turn then on again after. How to use MSCONFIG.
    Download and run the HP Printer Install Wizard for Windows.
    The HP Printer Install Wizard for Window was created to help Windows 7, Windows 8, and Windows 8.1 users download and install the latest and most appropriate HP software solution for their HP Printer.
    Please let me know if this does resolve the issue.
    Thank you for posting on the HP Forums.
    Have a great day.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Missing Entries from T156T

    I have the following error message:
    When I try to maintain this table, I can not add entries in change mode - any suggestions?
    Check table 156T: entry E 261 _ _ _ V   does not exist
    Message no. M7001
    Diagnosis
    In table 156T the entry E 261 _ _ _ V   is missing.
    Procedure
    Make sure your entries are correct.
    If table  has not been maintained correctly, please inform your systems administrator.

    You may have to maintain the missing entries it through SM31.
    Refer to note 435734 as well.

  • Find missing entries

    Hi,
    I have a table that contains several names like along with some other information.
    alpha1
    alpha2
    beta2
    gamma1
    gamma2
    I wanted to know about some of these entries, so I did a select like this.
    select * from t
    where t.name in ( 'alpha1', alpha2', 'beta1', beta2', 'gamma1', gamma2')
    Now if you look at the data above you will see that beta1 is missing, so obviously the above query does not fetch information about beta1.
    Is there a way to find the missing entries like this through SQL.
    I have a restriction here. I have a readonly access to the database. I log in as schema2 and look at data in schema1. Moreover since this is a production database, I would not like to create any temporary tables in schema2 either. So, any solution has to use only select statements and no DML/DDL.
    Thanks in advance,
    Rajesh

    Hi All!
    2 kuljeet pal singh
    SQL> select * from a2
    SQL> /
    NAME
    alpha
    beta
    delta
    epsilon
    (Missing gamma)
    What show your procedure?
    2 Rajesh
    The temporary table i think is the best solution.
    SELECT * FROM TEMP_TAB_NAME;
    NAME
    alpha
    beta
    gamma
    delta
    epsilon
    SELECT * FROM TEMP_TAB_NAME a
    WHERE NOT EXISTS (SELECT 1 FROM PROD_TABLE_NAME B
    WHERE B.COL_NAME = A.NAME);
    You can use following SQL*Plus script:
    set echo off
    set ver off
    set fee off
    set serveroutput on
    declare
    type tp is varray (30) of varchar2(30);
    tp_tab tp := tp('alpha', 'beta', 'gamma', 'delta');
    var varchar2(30);
    cnt number;
    num number;
    begin
    cnt := tp_tab.count;
    for i in 1..cnt loop
    var := tp_tab(i);
    select count(*)
    into num
    from PROD_TABLE_NAME
    where COL_NAME = var;
    if num = 0
    then
    dbms_output.put_line('Missing '||var);
    end if;
    end loop;
    end;

  • Spool list recipient has been missing

    In one of our defined background Job in Sm37, the spool list recipient has been missing and we have no ideas what has gone wrong, Is there a way to check or rather to check who and what has been changed to a Job defined in Sm37?

    HI Jack,
    we can check the JOB in SM37 and find out if any variants/Program changes have occured which triggered this change. In Job details, the prog name and the Job logs provide the varinat for which it has been scheduled. A program change is traceable by Version history and a Variant change can be traced by its owner...
    Hopefully it helps.
    Br,
    Sri
    Award points for helpful answers

  • I have two ipods under one apple id (mine) and my daughters ipod has gone missing /poss stolen is it safe to keep using my ipod? should i do anything to protect my apple id?

    I have two ipods under one apple id (mine) and my daughters. my daughters ipod has gone missing /poss stolen is it safe to keep using my ipod? should i do anything to protect my apple id?

    Change the passwords for all accounts used on both iPods.

  • Error: java.util.zip.ZipException: missing entry name

    Does anybody know how to solve the following error? I got this error when I was trying to update files in my CVS.
    OracleJSP: oracle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    Error: java.util.zip.ZipException: missing entry name
    Thanks

    Hi,
    I get the same exception while reading a ZIP file. The size if the ZIP file is just 82KB but I am reading it over FTP not sure if it makes any difference. I am using JDK 1.4.2_05. Here is the code I am trying to execute.
    public class TestFTP {
    public static void main( String[] argv ) throws Exception {
    String inboundPath = "/transfer/inbound/";
    FTPClient ftp = new FTPClient();
    ftp.connect("123");
    ftp.login( "123", "123" );
    ftp.changeWorkingDirectory(inboundPath);
    FTPFile[] zipFiles = ftp.listFiles("*.zip");
    TelnetClient telnetClient;
    for(int i=0;i<zipFiles.length;i++){   
    System.out.println(zipFiles.getName());
    ZipInputStream zis = new ZipInputStream(ftp.retrieveFileStream(zipFiles[i].getName()));
    for (ZipEntry entry = zis.getNextEntry(); entry != null; entry = zis.getNextEntry()){           
    System.out.println(entry.getName());
    The error message is
    java.util.zip.ZipException: invalid entry size (expected 10291 but got 10233 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:367)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:91)
         at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:69)
         at test.TestFTP.main(TestFTP.java:41)
    Exception in thread "main"
    Please let me know if you were able to fix the problem.
    Thanks

  • How to Add a Video to iTunes that has a missing codec?

    I have a video that is the right format (I think) it is a .avi mpeg-layer3
    But it has a missing codec... don't ask me which cos I have no idea. I downloaded DivX and it plays on my laptop fine BUT I want to add it to my iPod Touch - HOW??!!

    iTunes does not play that format : http://support.apple.com/kb/HT2729
    The rules of this forum making talking about conversion tricky but no one is stopping you from using Google.

  • One of my bookmark folders has gone missing - Ican find it in the C:\Users\ my name\favorites but not in any of the bookmarkbackups folder - HELP

    For a week or so, my "media" folder has been missing from my Bookmarks list. It's a long folder, so I did not want to reenter all the URLs. I followed the troubleshooting info and checked all the bookmark backup files. No joy. I also ran a word search for "Media".
    No relevant hits.
    Neither "explorer" nor "Total Commander" could find the profile Folder. They did find a "Favorites" folder which included the lost folder.
    Is there any easy way for me to "reload" the lost folder?
    Also, there was a reference to Norton 360 - could it be the problem?
    I wouldn't think it would affect only one folder.

    IE stores favorites as separate files and folders on the hard drive. Firefox stores all the bookmarks and history in one SQLite database file called places.sqlite, so you won't find anything if you do a search on your hard drive.
    See:
    * http://kb.mozillazine.org/Lost_bookmarks
    * http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • I always receive receive a message onscreen Error in C\WINDOWS\SYSTEM32\SPOOL\DRIVERS\W32X86\3\DLCFtime.dll have to click on run. Would like missing entry permanently installed on computer file

    I always receive a message onscreen Error in C\WINDOWS\SYSTEM32\SPOOL\DRIVERS\W32X86\3\DLCFtime.dll
    Missing entry: Run DLL entry
    I then click onto the run box below the message and then can access my homepage by double clicking on the Mozilla icon.
    Can anybody tell me how to get the missing entry permanently into my programme files?

    Probably problem with Dell printer,DLCFtime.dll is part of Dell printer driver software, maybe you must update the driver or re-install the software, read here for more information:
    http://answers.microsoft.com/en-us/windows/forum/windows_vista-performance/missing-entry-run-dll-entry/dd6f8f71-ad23-4eff-8a9d-ac8b86d9a199
    http://support.euro.dell.com/support/topics/global.aspx/support/kcs/document?c=uk&l=en&s=gen&docid=DSN_28E393B4B4A5ADEEE040A68F5B2849AA&isLegacy=true
    http://www.tek-tips.com/viewthread.cfm?qid=1396261
    http://forums.majorgeeks.com/showthread.php?t=229356
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Note 1681589: Missing entry in search help of RPUTMSE0 report

    Hola Buena tardes,
    Estamos aplicando la Note 1681589: Missing entry in search help of RPUTMSE0 report; En la version 4.7 hace referencia a un valor que no existe.
    Table: T52B5
    TMS1 RPUTMSE004  TOA C111E0
    Puede ser que el valor correcto es: sobra un número "1"
    Table: T52B5
    TMS1 RPUTMSE004  TOA C11E0
    Saludos,
    Jorogape

    Hola,
    En la vista V_T52B4 la encuentro como:
    TOA     C111E0     Modelo 111 - Impuesto sobre la renta PF
    Saludos,
    Carlos.

  • /private/var/tmp has gone missing!  ***?!?!?!?

    Please, I need help on this one. I had an iBook G4 crash on me, then get as far as the white Apple screen with pinwheel before freezing. I tried running Disk Utility off of an OS X install disk, and it found no volume structure errors. However, when I tried repairing permissions on it, Disk Utility was reporting that the directory /private/var/tmp has gone missing, and it could not repair permissions.
    What gives? How can the whole directory get fried? How can I replace it? I've already tried doing an archive and install, but the OS X installed won't let me do an archive and install, probably because this folder is missing.
    Can anyone help?

    Get Prosoft Data Rescue to recover the data to an external hard disk. Shut down the computer, disconnect the drive any other third party peripherals and then next after that do an erase and install of the operating system. You will probably want to use a CD burner to burn off less frequently used data on occasion at least a couple times so that your hard drive does not fill up with unessential stuff. Some more tips on backing up are on this page:
    http://www.macmaps.com/backup.html
    Disclaimer: Reference to links I make to my Macmaps.com website are a for your information only type reference. I do not get any profit from this page, and it is open to the public.

  • Missing entry in table T043G

    While entering AR receipts with either of the following menu I am getting the message that' missing entry in table T043G'. I am trying to find more details of it , but could not...
    Easy Access Menu:  Accounting &#61614; Financial accounting &#61614; Accounts receivable &#61614; Document entry &#61614; Incoming payment
    Easy Access Menu:  Accounting &#61614; Financial Accounting &#61614; Accounts receivable &#61614; Account &#61614; Clear
    Can some one tell what the issue could be .
    Thanks.
    Venkat.

    You havent setup the tolerance limit.
    IMG -> Controlling -> Internal order -> Budgeting and availability control -> Define tolerance limit for availability control.
    IMG -> Financial Accounting -> Financial Accounting Global Settings -> Document -> Line item -> Define tolerance group for employees
    IMG -> Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Outgoing Payments -> Manual Outgoing Payments -> Define Tolerances (Vendor)
    IMG -> Financial Accounting/ General Ledger Accounting/ Business Transactions/ Open Item Clearing/ Clearing Differences/ Define Tolerance Groups for G/L Accounts
    IMG -> Materials Management -> Logistics Invoice Verification -> Invoice Blocking -> Set Tolerance Limits
    And you need to assign the tolerance limit to the company as well.

  • Bluetooth pane has gone missing since update from 10.10.2 to 10.10.3 on iMac mid 2007

    I have a iMac mid 2007 model. I was running os x 10.10.2 with no problems. I update to os x 10.10.3 for the security issue. Now my bluetooth pane has gone missing from system preferences. I have tried everything suggested in suggested in support as it seems others have suffered the same thing on different macs. Nothing has that was suggested there has corrected this issue. Does anyone have any ideas apart from using a wired mouse and keyboard or using time machine to revert to os x 10.10.2? Let me know please.
    Also booting up is slow to say the least, I can live with that though unless there is an as yet unknown by me fix.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Error message at start up; missing entry:_rundllentry@16

    I have a HP200 Notebook, running Windows 7. At start-up I receive this error message:  system 32\spool\drivers\x64\lxcgtime.dll  missing entry:_rundllentry@16Error

    Hi @genoa1883 ,
    Thank you for visiting our English HP Support Forum. We are only able to reply to posts written in English. To insure a quick response it would be advisable to post your question in English. The following links are here to assist you if you prefer to post in the following Language Forum.
    English:                                 http://h30434.www3.hp.com
    Spanish:                               http://h30467.www3.hp.com
    French:                                 http://h30478.www3.hp.com
    Portuguese:                       http://h30487.www3.hp.com
    German:                              http://h30492.www3.hp.com
    Korean:                                http://h30491.www3.hp.com/t5/community/communitypage
    Simplified Chinese:         http://h30471.www3.hp.com/t5/community/communitypage
    Thank you ,
    George
    I work for HP

Maybe you are looking for