Problem with the text from previous year in current year appraisal (PPR)

Hi Gurus,
I have some problem with the text from the PPR of the previous year in the PPR current year.
The text from the previous year have not the same displaying in the tab "previous year" of  the current year PPR.
EXAMPLE :
this is write in the PPR of year 2009 in Individual Targets without Incentives (tab My S-imple) :
-Aufrechterhaltung der MA motivation, in dieser Zeit der Neuorientierung.
-G1 Unterstüzung
-Fachübergreifende Teamarbeit ausbauen
Gefährdungsbeurteilung weiter führen
-tragen von PSA einfordern
-VI Opt.(Intervalle)
-Azubi und Praktikanten AUsbildung unterstüzen
and this is what I have in the PPR of 2010 in Individual Targets without Incentives (tab Previous Year's Targets):
-Aufrechterhaltung der MA motivation, in dieser Zeit der-Aufrechterhaltung der MA motivation, in dieser Zeit der
-Aufrechterhaltung der MA motivation, in dieser Zeit der
-Aufrechterhaltung der MA motivation, in dieser Zeit der
-Aufrechterhaltung der MA motivation, in dieser Zeit der
-Aufrechterhaltung der MA motivation, in dieser Zeit der
-Aufrechterhaltung der MA motivation, in dieser Zeit der
-Aufrechterhaltung der MA motivation, in dieser Zeit der
there is the error, all the end of the text isn't displayed and the begin of the text is repeated.
I think that this issue is created at the creation of the PPR.
If someone have a idea he is welcom.
thanks and regards

Hi,
Please follow the note:425601,
Go to Tcode: OBA5 change the error messge into warning message. carry out the settlement and roll abck the warning message into the error message after sucessfull settlement.
Reward points if found useful.
Thanks!

Similar Messages

  • A problem with copying text from english pdf to a word file

    i have a problem with copying text from english pdf to a word file. the english text of pdf turns to be unknown signs when i copy them to word file .
    i illustrated what i mean in the picture i attached . note that i have adobe acrobat reader 9 . so please help cause i need to copy text to translate it .

    Is this an e-book? Does it allow for copying? It is possible that the pdf file is a scan of a book?

  • Problem with the% deviation from Project Server 2010 field

    hello
    I have a problem with the% deviation from Project Server 2010 field.
    Within a file or project, this project contains tasks.
    Each task has completed the field% deviation.
    Within the row "Summary" in the field of% deviation does not perform the sum of all fields of tasks.
    Only occurs on certain projects, these projects have the view of PR Progress Report
    Anyone know happens?
    thank you very much

    Hi
    Sorry, I'll be more specific now.
    Within the field% deviation. Your settings in PWA is:
    The formula for field% Deviation:
    Str (IIf ([Job baseline] = 0; IIf ([Working] = 0, 0, 100); IIf ([Working] = 0; -100; Int (100 * ([Job] - [Work Online base]) / [Working baseline])))) + "%"
    Under the heading rows Calculation Summary:
    > Use formula.
    Within the field Allocation Calculation of rows:
    > It is labeled the "Apply unless you manually specify".
    The field [Job] and field [Job baseline] are fields Pack project server.
    The error is in project, in the list of tasks.
    In the top row, this row summary makes the sum of the ranks of the tasks of the file.
    But in my case only in the summary field the same value appears in the tasks.
    In all the cells in column% deviation appears the same value.
    I hope it helps.
    thank you very much

  • Setting a label with the text from cmd

    I know that label.setText("sdf"); usually prints out what ever we set in the label. But what i need help in is actually to get the text from the command prompt and print it unto the label. I'm doing a school project that requires users to click a GUI component menu "start server". This actually calls a batch file that connects the pc and a mobile phone with bluetooth. So, actually when the server(pc) is connecting, it prints out text like : "connecting..." . I want to disable the command prompt and actually print all those text unto a label on the GUI. Please help me somebody.

    these are three classes that object_au suggested might help me to print things from a cmd to a label:-
    ------------------------AutoReader.java---------------------------
    package au.com.objects.io;
    import java.io.*;
    import java.util.*;
    * Reads a text stream line by line notifying registered listeners of it's progress.
    public class AutoReader implements Runnable
         private BufferedReader In = null;
         private ArrayList Listeners = new ArrayList();
         * Constructor
         * @param in stream to read, line by line
         public AutoReader(InputStream in)
              this(new InputStreamReader(in));
         * Constructor
         * @param in reader to read, line by line
         public AutoReader(Reader in)
              In = new BufferedReader(in);
         * Adds listener interested in progress of reading
         * @param listener listener to add
         public void addListener(Listener listener)
              Listeners.add(listener);
         * Removes listener interested in progress of reading
         * @param listener listener to remove
         public void removeListener(Listener listener)
              Listeners.remove(listener);
         * Handles reading from stream until eof, notify registered listeners of progress.
         public void run()
              try
                   String line = null;
                   while (null!=(line = In.readLine()))
                        fireLineRead(line);
              catch (IOException ex)
                   fireError(ex);
              finally
                   fireEOF();
         * Interface listeners must implement
         public interface Listener
              * Invoked after each new line is read from stream
              * @param reader where line was read from
              * @param line line read
              public void lineRead(AutoReader reader, String line);
              * Invoked if an I/O error occurs during reading
              * @param reader where error occurred
              * @param ex exception that was thrown
              public void error(AutoReader reader, IOException ex);
              * Invoked after EOF is reached
              * @param reader where EOF has occurred
              public void eof(AutoReader reader);
         * Notifies registered listeners that a line has been read
         private void fireLineRead(String line)
              Iterator i = Listeners.iterator();
              while (i.hasNext())
                   ((Listener)i.next()).lineRead(this, line);
         * Notifies registered listeners that an error occurred during reading
         private void fireError(IOException ex)
              Iterator i = Listeners.iterator();
              while (i.hasNext())
                   ((Listener)i.next()).error(this, ex);
         * Notifies registered listeners that EOF has been reached
         private void fireEOF()
              Iterator i = Listeners.iterator();
              while (i.hasNext())
                   ((Listener)i.next()).eof(this);
    ------------------------AutoReaderDocument .java---------------------------
    package au.com.objects.swing.text;
    import javax.swing.text.*;
    import java.io.*;
    import au.com.objects.io.*;
    import java.awt.*;
    * Document implementation that automatically reads it's contents from multiple readers.
    * Each Reader is handled by a seperate thread.
    public class AutoReaderDocument extends PlainDocument
         implements AutoReader.Listener
         * Default Constructor, creates empty document
         public AutoReaderDocument()
         * Adds a new source Reader to read test from. The reading is handled
         * in a seperate dedicated thread.
         public void addReader(Reader in)
              AutoReader auto = new AutoReader(in);
              auto.addListener(this);
              new Thread(auto).start();
         * Invoked when a line is read from one of threads.
         * Appends line of text to document.
         * @param reader where line was read from
         * @param line line read
         public void lineRead(AutoReader in, final String line)
              EventQueue.invokeLater(new Runnable() { public void run()
                   try
                        insertString(getLength(), line+'\n', null);
                   catch (BadLocationException ex)
                        ex.printStackTrace();
         public void error(AutoReader in, IOException ex)
              ex.printStackTrace();
         public void eof(AutoReader in)
    ------------------------SwingExecExample.java---------------------------
    package au.com.objects.examples;
    import au.com.objects.swing.text.*;
    import java.util.*;
    import javax.swing.*;
    import java.io.*;
    * Example demonstrating reading output from Process.exec() into a JTextArea.
    public class SwingExecExample
         public static void main(String[] args)
              AutoReaderDocument output = new AutoReaderDocument();
              JFrame f = new JFrame("exec");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.getContentPane().add(new JScrollPane(new JTextArea(output)));
              f.setSize(400, 200);
              f.show();
              try
                   Process p = Runtime.getRuntime().exec(args);
                   output.addReader(new InputStreamReader(p.getInputStream()));
                   output.addReader(new InputStreamReader(p.getErrorStream()));
              catch (IOException ex)
                   ex.printStackTrace();

  • Problem with gettin text from a new window

    Hi
    I have been trying to for sometime to work out why i cant get this to work...I open a main window which opens a new window when a button is pressed. This window has a text field where data can be typed, it has a button called "Send" which then allows the data to be send. However, when "Send" is pressed, a NullPointerException is throwen in the ActionListener because it is unable to get the text from the text field.
    Anyone got any idea why, have done a small mock up just to give an example :
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    public class TwoWindows implements ActionListener{
         private JTextField chatLine;
         public volatile boolean start = false;
         //******************************GUI Production******************************
         public TwoWindows() {
              JFrame frame = new JFrame("Multicast Discovery");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel connectpanel = new JPanel();
              JButton button3 = new JButton("Open New Window");
              button3.setActionCommand("connect");
              button3.addActionListener(this);
              connectpanel.add(button3);
              frame.getContentPane().add(connectpanel, BorderLayout.PAGE_END);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         //*****************************action listener******************************
         public void actionPerformed(ActionEvent ae)
              //get what button was pressed
              String button = ae.getActionCommand();
              if (button.equals("search"))
                   System.out.println("\n Do Something!");     
              else if (button.equals("cancel"))
                   System.out.println("\n Do Something else!");     
              //start new window here
              else if (button.equals("connect"))
                   setupChat();
              if (button.equals("send"))
                    if (start)
                              //try to get the data from the new window
                              String s = chatLine.getText();
                              System.out.println("This has been inputted : " + s);
         //*****************************setup new window*****************************
         public void setupChat()
              JFrame frame01 = new JFrame("TCP Chat Window");
              frame01.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // Set up the chat pane
                 JPanel chatPane = new JPanel(new BorderLayout());
                JTextArea chatText = new JTextArea(10, 20);
            chatText.setLineWrap(true);
            chatText.setEditable(false);
            chatText.setForeground(Color.blue);
            JScrollPane chatTextPane = new JScrollPane(chatText,
            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
            JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            JTextField chatLine = new JTextField("Type Here!");
            JButton button4 = new JButton("Send");
              button4.setActionCommand("send");
              button4.addActionListener(this);
              chatPane.add(chatLine, BorderLayout.CENTER);
              chatPane.add(button4, BorderLayout.SOUTH);
             chatPane.add(chatTextPane, BorderLayout.NORTH);
              chatPane.setPreferredSize(new Dimension(200, 215));
              frame01.getContentPane().add(chatPane);
              frame01.pack();
              frame01.setLocationRelativeTo(null);
              frame01.setVisible(true);          
              start = true;
         public static void main(String[] args)
         new TwoWindows();
    }

    public class TwoWindows implements ActionListener{
         private JTextField chatLine;
         public volatile boolean start = false;
         public void setupChat()
    JTextField chatLine = new JTextField("Type
    ld("Type Here!");
    You have two variables called chatLine. One is a class field the other is a local object in setupChat.
    Change
    JTextField chatLine = new ...
    to
    chatLine = new ...

  • Hello I have a problem with the iPhone from China apple store

    Hello
    I have a problem with the iPhone and I do not know who to turn to.
    I bought an iphone 4 in the Apple Store in Shanghai, and it has a bug! I changed the regional settings to my native language, but the search in safari goes site the Google.cn.
    What should I do? On this particular no one says. This is clearly a bug!
    Also in my phone no youtube. I know that youtube banned in China, but I'm not in China now!
    Why do not you strapped local restrictions on the location of the phone??

    eh...
    The reason I bought the iphone in China - the price is reduced by 50% сompared to the price in Russia.
    I just thought that these restrictions are useless. And Apple should remove them when you change the region ...

  • Problem with imported text from quark

    Hi everyone
    I have imported files from quark version 4 off a mac to Indesign cs4 on a windows PC. everything is fine apart from the text being a little messed up so i am happy enough with that. The problem is that when i drag and drop or copy and paste into a new document all the images will move over but new text will not work with the images.
    By this i mean that when i try to type something over or near the graphics the graphics just vanish! you can drag them over the image and they vanish, then when you drag them away again them reappear!
    Also the shapes that i move over have a thin white border on them where as the shapes that i create directly do not have this boarder.
    Any help that you cold give me on this would be great!
    Thanks in advance!!
    Sam

    Thats it thank you!
    There was a text wrap applied to all the graphics. its working perfectly now!!
    Thank you again!!!
    Sam

  • Problem with reading text from .DOC files through java and POI

    I have used a jar file "poi-scratchpad-3.2-FINAL-20081019.jar" and "poi-3.2-FINAL.jar" to read text from a .DOC file. I used the "getParagraphText()" function of the class "org.apache.poi.hwpf.extractor.WordExtractor" to get the text.
    I am able to get the text in the .DOC file but along with that i am getting the following messages/warnings
    Current policy properties
    *     thread.thread_num_limited: true*
    *     file.write.state: disabled*
    *     net.connect_ex_dom_list:*
    *     mmc.sess_cab_act.block_unsigned: false*
    *     mmc.sess_cab_act.action: validate*
    *     mmc.sess_pe_act.block_blacklisted: false*
    *     mmc.sess_pe_act.block_invalid: true*
    *     jscan.sess_applet_act.stub_out_blocked_applet: true*
    *     file.destructive.in_list:*
    *     jscan.sess_applet_act.block_all: false*
    *     file.write.in_list:*
    *     file.nondestructive.in_list:*
    *     window.num_limited: true*
    *     file.read.state: disabled*
    *     jscan.session.origin_uri: http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/poi/poi/3.2-FINAL/poi-3.2-FINAL.jar*
    *     file.nondestructive.state: disabled*
    *     jscan.session.user_ipaddr: 10.136.64.153*
    *     net.connect_other: false*
    *     thread.thread_num_max: 8*
    *     file.destructive.ex_list:*
    *     file.nondestructive.ex_list:*
    *     file.write.ex_list:*
    *     jscan.sess_applet_act.sig_invalid: block*
    *     file.read.in_list:*
    *     mmc.sess_cab_act.block_invalid: true*
    *     jscan.session.policyname: TU1DIERlZmF1bHQgUG9saWN5*
    *     mmc.sess_pe_act.action: validate*
    *     thread.threadgroup_create: false*
    *     net.connect_in_dom_list:*
    *     net.bind_enable: false*
    *     jscan.sess_applet_act.sig_trusted: pass*
    *     jscan.session.user_name: 10.166.64.201*
    *     jscan.session.user_hostname:*
    *     file.read.ex_list:*
    *     jscan.sess_applet_act.sig_blacklisted: block*
    *     jscan.session.daemon_protocol: http*
    *     net.connect_src: true*
    *     jscan.sess_applet_act.unsigned: instrument*
    *     mmc.sess_pe_act.block_unsigned: false*
    *     file.destructive.state: disabled*
    *     mmc.sess_cab_act.block_blacklisted: true*
    *     window.num_max: 5*
    Below the above messages/warnings the data is getting printed. Only the text part of the data is retrieved not the fonts, styles and bullets etc.
    Can anyone explain me why I am getting above warnings and how can I remove them. Is it possible to fetch the text depending on delimiters.
    Thanks in advance,
    Tiijnar
    Edited by: tiijnar on May 21, 2009 2:45 AM

    The jar files which were used are downloaded from http://jarfinder.com. Those jars created the problem of displaying those messages on console. I downloaded APIs from apache.org and used them in my application. Now my application is running good.
    Tiijnar

  • Problems with displaying text from gtk+-2.0 with Cairo

    I've got a 64-bit app that uses gtk+-2.0 (2.8.17 with Cairo). I had to build my own libraries since the gtk+-2.0 libraries Solaris 10 ships with is 32-bit only (and does not contain Cairo support). The app is statically linked so that our customers don't have to do any more than just install the app.
    I've got a customer who's using a Sun Ray 2fs to run our app from a Sun Ray server. The problem is that none of the text in the UI is readable (including the menubar). He sent a screenshot and I can tell it's rendering the glyphs, just not correctly. The best way of describing the text rendering problem is to take a bitmap of antialised text drawn with a black pen color. Now remove all non solid black pixels. You only see pieces of the glyphs (typically, just the vertical and horizontal parts).
    We don't have a Sun Ray client to test with but for testing purposes, I installed our app on freshly built Solaris 10 (5/09) and Open Solaris systems with no modifications to the virgin systems. I could run our app on both Solaris systems and display the app on a remote X display just fine. I asked the customer to try a real X display and he ran X-Win32 on a Windows XP guest using VirtualBox on the Sun Ray server and our app appeared just fine on his Sun Ray client. I told him if our app displays just fine on a real X display, then the problem must be with the Sun Ray server.
    Has anyone encountered this problem? I'm going to try building the latest gtk+-2.0 libraries but I'm not convinced it's going to do any good. I don't think it's a Fontconfig configuration problem because our app worked out of the box on freshly installed systems (unless perhaps Sun has made changes to /etc/fonts/fonts.conf since the version on his system versus ours).
    PS. We actually need the Cairo graphics support. It just happens that the version of Pango that's in 2.8 (and all versions of gtk+-2.0 since) also uses it for text rendering in the widgets.

    Garrett Cobarr wrote:
    > I have been attempting to import text from Illustrator
    CS2 into Flash 8. I
    > would like to retain the layers if possible.
    >
    > I am having many different problems as I have
    experiemented at the AI side.
    > One is having the text come in with the outline offset
    and no longer alligned.
    > When I drag and drop, the outline completly dissappers.
    The text when it does
    > come in is converted to a png and longer has the layers
    seperated.
    >
    > I am also getting a message in the report window, on
    some of my tries, that it
    > is an improper PDF.
    >
    > The bottom line question is: What is the recommended
    method of importing text
    > from AI CS 2?
    You have to remember that both programs are totally different
    animals and simply
    some of the option used by you in AI won't be working or
    can't be translated into
    flash's environment. You will never get editable content,
    just an image.
    Export to SWF from AI and import that SWF to flash. Should be
    as close as possible
    to original file tho I can't assure your layers will
    maintain.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Flash CC Air iOS: Problems with loading text from an external xml located on a server.

    So I have this code allowing me to load text from an xml located on a server. Everything works fine on the Air for Android. The app even works in the ios emulator, but once I export my app to my ios device with ios 7, I don't see any text. The app is developed with Air sdk 3.9. What could be the reason? Do I need any special permissions like on Android? Does ios even allow to load xml from an external server?
    Any clues?

    It was my bad. I linked to a php file to avoid any connection lags, which was absolutely fine on the android, but didn't seem to work on the ios 7. So all I did is change the php extension to xml and it worked without any problems.

  • Imported RAW images badly corrupted, looks like red paint splashed all over the sky.  Photoshop and Iphoto have no problem with the images from my D800E.  Aperture worked fine for me in June with the same camera.  The Nikon software shows no problem.

    I am having a problem importing my images into Aperture 3 from my Nikon D800E.  The images appear as if red paint was splashed across the sky.  The Nikon software used to transfer from the camera does not show this problem and Photoshop 6 is fine with the images exported as jpg from the Nikon software.  Aperature does not even like the jpg images usable by Photoshop.  I am suspecting that Aperture is not correctly using the camera raw file.  Also, the histograms are radically different between the corrupted images and the Photoshop (good) versions.  Aperture worked just fine for me in June with the same camera.  All drivers and software are current as of this posting.  Anyone else out there seen this before??

    Are you sure you do not have Highlight Hot & Cold Areas turned on? (View->Highlight Hot & Cold Areas)?
    The bug in Digital Camera raw only affected Raw images. In your first post you wrote:
    Aperature does not even like the jpg images usable by Photoshop
    If the JPG's have the same problem then it isn't this bug.
    regards

  • Problem with the  text in my oracle report

    hi
    I am create an oracle 9i report which consists of some text.
    While writing the text , i want to type some alaphets as the power of a a number. For example, 1 to the power of 'st' (i.e. first). Can anybody help me out.
    Thanks in advance

    Hi,
    I don't think you'll be able to do it. It's a special effect, like Superscript in MS Work, that you can apply to a part of the text, but Oracle Reports (at least version 9.0.4.0.33 i'm working with) has only 2 of them - Strikeout and Underlying.
    Regards,
    Andrew Velitchko
    BrainBench MVP for Oracle Developer
    http://www.brainbench.com

  • Find problem with the text search in jdeveloper.

    When i press "ctrl + f" sometimes i am unable to edit the data which is already in the text box.
    Same case with the line number even. When i press "cntrl + g" the text box with line number is uneditable.
    My machine config :
    RHEL 4,
    Jdeveloper version : 10.1.3.0.4.3673

    I've seen this issue too. It appears to be related to top level window focus. Sometimes the modal dialogs for Find and Go to Line number are on top, but without focus. This seems to be some generic Java issue on Linux (I'm using Gnome, unsure about other desktops).
    One workaround for find: instead of using Ctrl+F, try using Ctrl+E instead. This invokes incremental search. A lot of people prefer this to regular find anyway.
    Brian

  • Problems with the wifi from the iMac to the iPhone with iTunes

    Hi all, I have a problem I can not solve ...
    I have an iMac, and every time I open iTunes should sync my iphone into wi-fi, but it does not work, I have to connect it with the USB cable, but in the settings it says "Synchronize this conn iphone via wi-fi 'and c' is ticking ...
    Please someone can explain, because I'm going crazy, and it was better ios 5 and os x Lion, everything worked like a charm!! ......
    Sorry for the english ..
    Giovanni

    Wireless is not meant to be configured in rc.conf (which is documented in rc.conf itself if you have kept it up to date).
    If you have just one network connection, install netcfg, it has plenty of sample configurations, among which one for WEP.

  • Problems with the text graphic and the text itself.

    Hello everybody. I have been making a site in Adobe Muse CC and I've run into some troubles. The textboxes I've made are not like textboxes, in preview mode, but more like a picture. This also makes the text look blurry when you zoom into the page. Is there a way to make the text in the textboxes like a real text and not like a picture. Make the textmoxes so that you can mark the words and letters, just like you can in a normal website.

    I have tried several fonts but it's still blurry and unclear when I preview it in a browser.
    I believe it has something to do with the textboxes.
    Karamelrand | Smith'N'Jones  You can try and look at the page here. The text is like a picture.
    Is that fixable?

Maybe you are looking for

  • Generating multiple rows from one physical row

    I was wondering if anyone has done or knows how to generate multiple rows for one physical row. In my query "SELECT Cust_No, Amount from Balances" if the amount is > 99,999.99 I want 2 rows returned, one with an amount of 90,000.00 and the other with

  • When starting J2EE server .....

    I have installed j2sdk 1.4 & j2sdkee1.3 on Windows XP. I have set Environment variables. When I start j2ee server COMMAN PROMPT SAYS C:\>j2ee Warning: This J2EE SDK release has only been tested on J2SE v1.3 J2EE server listen port: 1050 Redirecting t

  • Extension manager CC update failed download error retry (49)

    Trying to update extension manager CC. get an update failed - download error retry (49). Have retried several times without success

  • HP Probook 4540s: Fingerprint Scanner Not Working

    Hi, Problem: Fingerprint Scanner - Windows log in does not give option to log in via fingerprint scanner.  Overview: After installing fingerprint drivers from the HP site and using the HP Protect Tools to successfully enroll fingerprint, I tried logg

  • Where i can get fiori launchpad source latest one ?

    Hi, please help me find source code for fiori launchpad . Regards, Abul Ehtesham