Bugging problem  BI7.0 and 4.7 EE RFCs

Hi Friends,
I installed  SAP BI7.0 and  4.7EE and i find the  source system as Inactive in  BI.. and so  contacted the Installation person about the problem.
As per his  version , Though source system is active , data sources are replicated and so no problem for extraction  etc..
To my ssurprise , i find the data sources replicating from R/3 to BW, but  i could  not  able to create the IP for the data source in Infosource tree as iam getting  message as:
No active Transfer rules for the Source system..
How can  i work on this issue  and that installtion person is telling that every one  who  has installed  from his could able to work on ..:-)..
Is any setting  i have  to done?
Plz help.
Pavan

Hi
once check the status of ur source system in RSA1--->modelling source system
check for ur source system and rightclick on that press check,it will give the status of that source system.Next u check the status of datasource in RSA3
because u r saying transfer structure not found which is a part os datasource.
otherwise do check for ur datasource in RSA1 rightclick manage u will find the mistakes

Similar Messages

  • Upgraded to mac os x maverick 10.9.1. Any suggestions on how to fix problems with audio and video bugs?

    Having problems with video and audio delays for mac ox x maverick 10.9. Are there any ways to fix this?

    I also noticed that if I wiggle my mouse around while I watch video streams the video&audio is significantly smoothier.

  • Problem with JFrame and busy/wait Cursor

    Hi -- I'm trying to set a JFrame's cursor to be the busy cursor,
    for the duration of some operation (usually just a few seconds).
    I can get it to work in some situations, but not others.
    Timing does seem to be an issue.
    There are thousands of posts on the BugParade, but
    in general Sun indicates this is not a bug. I just need
    a work-around.
    I've written a test program below to demonstrate the problem.
    I have the problem on Solaris, running with both J2SE 1.3 and 1.4.
    I have not tested on Windows yet.
    When you run the following code, three JFrames will be opened,
    each with the same 5 buttons. The first "F1" listens to its own
    buttons, and works fine. The other two (F2 and F3) listen
    to each other's buttons.
    The "BUSY" button simply sets the cursor on its listener
    to the busy cursor. The "DONE" button sets it to the
    default cursor. These work fine.
    The "SLEEP" button sets the cursor, sleeps for 3 seconds,
    and sets it back. This does not work.
    The "INVOKE LATER" button does the same thing,
    except is uses invokeLater to sleep and set the
    cursor back. This also does not work.
    The "DELAY" button sleeps for 3 seconds (giving you
    time to move the mouse into the other (listerner's)
    window, and then it behaves just like the "SLEEP"
    button. This works.
    Any ideas would be appreciated, thanks.
    -J
    import java.awt.BorderLayout;
    import java.awt.Cursor;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class BusyFrameTest implements ActionListener
    private static Cursor busy = Cursor.getPredefinedCursor (Cursor.WAIT_CURSOR);
    private static Cursor done = Cursor.getDefaultCursor();
    JFrame frame;
    JButton[] buttons;
    public BusyFrameTest (String title)
    frame = new JFrame (title);
    buttons = new JButton[5];
    buttons[0] = new JButton ("BUSY");
    buttons[1] = new JButton ("DONE");
    buttons[2] = new JButton ("SLEEP");
    buttons[3] = new JButton ("INVOKE LATER");
    buttons[4] = new JButton ("DELAY");
    JPanel buttonPanel = new JPanel();
    for (int i = 0; i < buttons.length; i++)
    buttonPanel.add (buttons);
    frame.getContentPane().add (buttonPanel);
    frame.pack();
    frame.setVisible (true);
    public void addListeners (ActionListener listener)
    for (int i = 0; i < buttons.length; i++)
    buttons[i].addActionListener (listener);
    public void actionPerformed (ActionEvent e)
    System.out.print (frame.getTitle() + ": " + e.getActionCommand());
    if (e.getActionCommand().equals ("BUSY"))
    frame.setCursor (busy);
    else if (e.getActionCommand().equals ("DONE"))
    frame.setCursor (done);
    else if (e.getActionCommand().equals ("SLEEP"))
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    else if (e.getActionCommand().equals ("INVOKE LATER"))
    frame.setCursor (busy);
    SwingUtilities.invokeLater (thread);
    else if (e.getActionCommand().equals ("DELAY"))
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (busy);
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.print (" finished");
    System.out.println();
    Runnable thread = new Runnable()
    public void run()
    try { Thread.sleep (3000); } catch (Exception ex) { }
    frame.setCursor (done);
    System.out.println (" finished");
    public static void main (String[] args)
    BusyFrameTest f1 = new BusyFrameTest ("F1");
    f1.addListeners (f1);
    BusyFrameTest f2 = new BusyFrameTest ("F2");
    BusyFrameTest f3 = new BusyFrameTest ("F3");
    f2.addListeners (f3); // 2 listens to 3
    f3.addListeners (f2); // 3 listens to 2

    I've had the same problems with cursors and repaints in a swing application, and I was thinking of if I could use invokeLater, but I never got that far with it.
    I still believe you would need a thread for the time consuming task, and that invokeLater is something you only need to use in a thread different from the event thread.

  • Problem with JTextPane and StateInvariantError

    Hi. I am having a problem with JTextPanes and changing only certain text to bold. I am writing a chat program and would like to allow users to make certain text in their entries bold. The best way I can think of to do this is to add <b> and </b> tags to the beginning and end of any text that is to be bold. When the other client receives the message, the program will take out all of the <b> and </b> tags and display any text between them as bold (or italic with <i> and </i>). I've searched the forums a lot and figured out several ways to make the text bold, and several ways to determine which text is bold before sending the text, but none that work together. Currently, I add the bold tags with this code: (note: messageDoc is a StyledDocument and messageText is a JTextPane)
    public String getMessageText() {
              String text = null;
              boolean bold = false, italic = false;
              for (int i = 0; i < messageDoc.getLength(); i++) {
                   messageText.setCaretPosition(i);
                   if (StyleConstants.isBold(messageDoc.getCharacterElement(i).getAttributes()) && !bold) {
                        bold = true;
                        if (text != null) {
                             text = text + "<b>";
                        else {
                             text = "<b>";
                   else if (StyleConstants.isBold(messageDoc.getCharacterElement(i).getAttributes()) && bold) {
                        // Do nothing
                   else if (!StyleConstants.isBold(messageDoc.getCharacterElement(i).getAttributes()) && bold) {
                        bold = false;
                        if (text != null) {
                             text = text + "</b>";
                        else {
                             text = "</b>";
                   try {
                        if (text != null) {
                             text = text + messageDoc.getText(i,1);
                        else {
                             text = messageDoc.getText(i, 1);
                   catch (BadLocationException e) {
                        System.out.println("An error occurred while getting the text from the message document");
                        e.printStackTrace();
              return text;
         } // end getMessageText()When the message is sent to the other client, the program searches through the received message and changes the text between the bold tags to bold. This seems as if it should work, but as soon as I click on the bold button, I get a StateInvariantError. The code for my button is:
    public void actionPerformed(ActionEvent evt) {
              if (evt.getSource() == bold) {
                   MutableAttributeSet bold = new SimpleAttributeSet();
                   StyleConstants.setBold(bold, true);
                   messageText.getStyledDocument().setCharacterAttributes(messageText.getSelectionStart(), messageText.getSelectionStart() - messageText.getSelectionEnd() - 1, bold, false);
         } //end actionPerformed()Can anyone help me to figure out why this error is being thrown? I have searched for a while to figure out this way of doing what I'm trying to do and I've found out that a StateInvariantError has been reported as a bug in several different circumstances but not in relation to this. Or, if there is a better way to add and check the style of the text that would be great as well. Any help is much appreciated, thanks in advance.

    Swing related questions should be posted in the Swing forum.
    Can't tell from you code what the problem is because I don't know the context of how each method is invoked. But it would seem like you are trying to query the data in the Document while the Document is being updated. Try wrapping the getMessageText() method is a SwingUtilities.invokeLater().
    There is no need to write custom code for a Bold Action you can just use:
    JButton bold = new JButton( new StyledEditorKit.BoldAction() );Also your code to build the text String is not very efficient. You should not be using string concatenation to append text to the string. You should be using a StringBuffer or StringBuilder.

  • Problem with Facetime and my MacBookPro camera

    Hello,
    I've got a MacBookPro and I have a problem with Facetime and my front camera.
    When I have a discussion with an iMac or an other MacBook the image received by the other person becomes fix.
    To unfix it I have to put my finger on my camera and then everything is good until the next time, 4 to 10 seconds later I've got the problem again.
    Perhaps somebody can help me.
    My head on my screen is always good even when the bug appear on my correspondent's screen.
    For information, the 2 mac have the same iOS version (OSX Lion) and Facetime version.

    Hi Dave,
    Edit: Well, I guess I was lost when I posted this. My answer was regarding a problem with OS X, not iOS. I'm going to leave the answer here in case someone else with a Facetime for Mac issue can benefit, because when you're searching for "Facetime AND Login", you could land in any discussion area. -Jerry
    Keychain Access.app is in your Utilities folder in your Applications folder.
    The path will be: Macintosh HD > Applications > Utilities > Keychain Access.app.
    Keychain is where all your passwords are stored for those applications that you don't want to have to manually log into all the time.
    It's a handy app to become familiar with, for instance if you want to look up a password or user name from the past.
    Hope this helps you.
    Jerry

  • [SOLVED] Problem with zsnes and xcb_io.c on arch64

    Well after doing a pacman -Syu, zsnes won't start, when i run it, it gives me the next output
    [pablo@pablo-laptop ~]$ zsnes
    ZSNES v1.51, (c) 1997-2007, ZSNES Team
    Be sure to check http://www.zsnes.com/ for the latest version.
    ZSNES is written by the ZSNES Team (See AUTHORS.TXT)
    ZSNES comes with ABSOLUTELY NO WARRANTY. This is free software,
    and you are welcome to redistribute it under certain conditions;
    please read 'LICENSE.TXT' thoroughly before doing so.
    Use ZSNES -? for command line definitions.
    Starting Mouse detection.
    Unable to poll /dev/input/event11. Make sure you have read permissions to it.
    Unable to poll /dev/input/event10. Make sure you have read permissions to it.
    Unable to poll /dev/input/event9. Make sure you have read permissions to it.
    Unable to poll /dev/input/event8. Make sure you have read permissions to it.
    Unable to poll /dev/input/event7. Make sure you have read permissions to it.
    Unable to poll /dev/input/event6. Make sure you have read permissions to it.
    Unable to poll /dev/input/event5. Make sure you have read permissions to it.
    Unable to poll /dev/input/event4. Make sure you have read permissions to it.
    Unable to poll /dev/input/event3. Make sure you have read permissions to it.
    Unable to poll /dev/input/event2. Make sure you have read permissions to it.
    Unable to poll /dev/input/event1. Make sure you have read permissions to it.
    Unable to poll /dev/input/event0. Make sure you have read permissions to it.
    ManyMouse: 0 mice detected.
    zsnes: xcb_io.c:515: _XReply: Assertion `!dpy->xcb->reply_data' failed.
    Abortado
    it was working fine until yesterday, i've been searching about xcb_io.c but sadly i haven't found anything useful.
    Edit:
    it seems i can run it fine as sudo but not as a regular user
    Edit2:
    well it seems that there was something wrong with my .zsnes folder, i deleted it (well first i made a backup of it) and i can run zsnes again.
    Edit3:
    well, it seems i got a problem with opengl and my catalyst driver (but i'm guessing because i haven't tried with radeon) because i can use it without opengl but as soon as i change the video option to use opengl it crashes with the same error (zsnes: xcb_io.c:515: _XReply: Assertion `!dpy->xcb->reply_data' failed.) should i file a bug report or something???
    Last edited by jpablo (2011-08-30 17:12:55)

    Finally i had to edit my .htaccess file adding a RewriteBase rule to it.

  • Problem with Gnome and D-Bus

    Hi to all, i have a problem with Gnome and D-Bus
    Versions:
    Arch Release: 0.7.2 Testing
    Gnome:   2.14.1-2
    D-Bus: 0.61-3
    Screenshot explain all:
    [URL=http://img366.imageshack.us/my.php?image=gpwned6be.jpg][/URL]

    1>then i can't promote garnome on this forum??
    yeah you can, but not as a solution to gnome related problem in arch. cause this doesn't resolve anything.
    2>You don't have to, garnome2.14.2.1(481kb) download the patches and patch it automatically, just change install dir to /usr
    (ONLY if you are using console-linux who want gnome a try). of course there is need small arch related patch.(in my experience 0)
    eh, i haven't got a clue what this means, putting patches upstream means they will get include in gargnome and upstream releases. i only tried to say we put a lot of our free time in gnome for arch.
    2-1>Well said, so choice is the each one's freedom.
    and this category isn't arch, this is Desktop Environments,
    i installed arch, BUT THAT DOESN'T MEANS I SHOULD USE gnome FROM ARCH!!!
    agreed, but again then we won't support your desktop.
    ARCH != gnome
    3>some bug stuff about Xorg-7.0, include mine
    http://bbs.archlinux.org/viewtopic.php?t=22210[/quote]
    ah bugs.archlinux.org so it can be fixed.

  • Problem with XMLTABLE and LEFT OUTER JOIN

    Hi all.
    I have one problem with XMLTABLE and LEFT OUTER JOIN, in 11g it returns correct result but in 10g it doesn't, it is trated as INNER JOIN.
    SELECT * FROM v$version;
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    "CORE     11.2.0.1.0     Production"
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    --test for 11g
    CREATE TABLE XML_TEST(
         ID NUMBER(2,0),
         XML XMLTYPE
    INSERT INTO XML_TEST
    VALUES
         1,
         XMLTYPE
              <msg>
                   <data>
                        <fields>
                             <id>g1</id>
                             <dat>data1</dat>
                        </fields>
                   </data>
              </msg>
    INSERT INTO XML_TEST
    VALUES
         2,
         XMLTYPE
              <msg>
                   <data>
                        <fields>
                             <id>g2</id>
                             <dat>data2</dat>
                        </fields>
                   </data>
              </msg>
    INSERT INTO XML_TEST
    VALUES
         3,
         XMLTYPE
              <msg>
                   <data>
                        <fields>
                             <id>g3</id>
                             <dat>data3</dat>
                        </fields>
                        <fields>
                             <id>g4</id>
                             <dat>data4</dat>
                        </fields>
                        <fields>
                             <dat>data5</dat>
                        </fields>
                   </data>
              </msg>
    SELECT
         t.id,
         x.dat,
         y.seqno,
         y.id_real
    FROM
         xml_test t,
         XMLTABLE
              '/msg/data/fields'
              passing t.xml
              columns
                   dat VARCHAR2(10) path 'dat',
                   id XMLTYPE path 'id'
         )x LEFT OUTER JOIN
         XMLTABLE
              'id'
              passing x.id
              columns
                   seqno FOR ORDINALITY,
                   id_real VARCHAR2(30) PATH '.'
         )y ON 1=1
    ID     DAT     SEQNO     ID_REAL
    1     data1     1     g1
    2     data2     1     g2
    3     data3     1     g3
    3     data4     1     g4
    3     data5          Here's everything fine, now the problem:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for HPUX: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    --exactly the same environment as 11g (tables and rows)
    SELECT
         t.id,
         x.dat,
         y.seqno,
         y.id_real
    FROM
         xml_test t,
         XMLTABLE
              '/msg/data/fields'
              passing t.xml
              columns
                   dat VARCHAR2(10) path 'dat',
                   id XMLTYPE path 'id'
         )x LEFT OUTER JOIN
         XMLTABLE
              'id'
              passing x.id
              columns
                   seqno FOR ORDINALITY,
                   id_real VARCHAR2(30) PATH '.'
         )y ON 1=1
    ID     DAT     SEQNO     ID_REAL
    1     data1     1     g1
    2     data2     1     g2
    3     data3     1     g3
    3     data4     1     g4As you can see in 10g I don't have the last row, it seems that Oracle 10g doesn't recognize the LEFT OUTER JOIN.
    Is this a bug?, Metalink says that sometimes we can have an ORA-0600 but in this case there is no error returned, just incorrect results.
    Please help.
    Regards.

    Hi A_Non.
    Thanks a lot, I tried with this:
    SELECT
         t.id,
         x.dat,
         y.seqno,
         y.id_real
    FROM
         xml_test t,
         XMLTABLE
              '/msg/data/fields'
              passing t.xml
              columns
                   dat VARCHAR2(10) path 'dat',
                   id XMLTYPE path 'id'
         )x,
         XMLTABLE
              'id'
              passing x.id
              columns
                   seqno FOR ORDINALITY,
                   id_real VARCHAR2(30) PATH '.'
         )(+) y ;And is giving me the complete output.
    Thanks again.
    Regards.

  • Problem with Frameset and page session

    All,
    I am having a problem with Framesets and page session attributes. I
    have a client who's application uses a three frame frameset. They
    have a requirement on several pages that when a button is pushed two
    different pages load into the right and left frames. The way they
    are accomplishing this is that on the pages were this is required,
    they are adding target="_top" to the form declaration in their JSP.
    Then they store the page names they want to display in session,
    forward the request to the frameset, the frameset then determines
    which pages to display based on the session variables. This works
    exactly how they want it to.
    Here is our problem. We need to store some information in page
    session attributes. We have tried to get a handle to the desired
    view bean and call the setPageSessionAttribute method. However,
    since we are forwarding to the frame and the frame handles displaying
    the desired JSP, that view bean we had the handle to is not the one
    that is created to hand the display of the JSP.
    The next thing I tried was to use the request object. In the
    handleBtnRequest method, I set an attribute in the request object. I
    then query the request object in the beginDisplay event of the view
    bean. When the frame is reset the request object does not contain
    the attribute that I have set. I'm confused by this because I
    thought the request object would be available to me throughout the
    life of the request.
    Given the above information, does anyone have any suggestions? Also,
    am I going about this in the wrong manner.
    The client had been storing this information in user session, which
    seemed to work. However, since the data being stored dealt
    specifically with data for the requested page, we felt that storing
    it as page session was more appropriate.
    Thanks,

    The script on your page web page has some obvious bugs.. Best
    fix those
    first before looking to blame Flash.
    Jeckyl

  • Problem with ssh and bash-completion

    I and a co-worker are having a weird problem with ssh and bash-completion. We have a local config in .ssh/config with hosts we connect everyday. An example:
    host foo
    hostname foo.org
    user foobar
    host foobar
    hostname foobar.org
    user foobar
    When we try to type
    ssh foo<tab><tab>b<tab>
    the console just freeze and we can't type anything, everything we type is ignored, but after about 30 seconds the host is completed.
    This works a some time ago, so some upgrade make this happen. Anyone can reproduce this?

    quigybo wrote:
    Actually thinking about it, rather than using the semi-dodgy fix posted on the bug tracker, we can just test if the daemon is running since we are not on MacOS X. It is cleaner and 250 ms quicker.
    --- bash_completion.orig 2010-09-14 05:33:22.000000000 +0930
    +++ bash_completion 2010-09-14 05:45:04.000000000 +0930
    @@ -1316,10 +1316,12 @@
    # contains ";", it may mistify the result. But on Gentoo (at least),
    # -k isn't available (even if mentioned in the manpage), so...
    if type avahi-browse >&/dev/null; then
    - COMPREPLY=( "${COMPREPLY[@]}" $( \
    - compgen -P "$prefix$user" -S "$suffix" -W \
    - "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    - awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    + if [ -n "$(pidof avahi-daemon)" ]; then
    + COMPREPLY=( "${COMPREPLY[@]}" $( \
    + compgen -P "$prefix$user" -S "$suffix" -W \
    + "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    + awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    + fi
    fi
    # Add results of normal hostname completion, unless
    This is the same test as was used in bash-completion 1.1.
    Thanks  quigybo, I use your patch, the issue is gone
    Why does so many packages depends on Avahi? Maybe make it optdepends is
    enough?
    my laptop $ pacman -Qi avahi
    Required By : gnome-disk-utility gnome-vfs libcups mpd sane

  • Graphics render bug in FCP 6 and 7 - Dare to prove me wrong?

    I have an issue with an HD video that contains red and purple text and graphics in the edit. I've looked for an answer tirelessly online, with friends, and through trial and error for a good 7 hours before giving up. Here's the deal,
    Sequence settings: HD 1440x1080 16:9, 23.98, HDV 1080p24 for editing the canon7d footage that came in - this however doesn't matter because i tested with every setting imaginable including animation raw and ended up with the same results for the graphics problem I'm having (kind of unrelated to the actual footage).
    I need to output this 9 minute edit I have to an HD file 1280x720 for youtube upload. So, it has to be under 2gb (youtube's limit) but for client purposes, it needs to be crisp and great looking as you would imagine.
    I have a bunch of PSDs, each show a different line drawing of a brush. For each one, the line is a different color. For any of the colors that aren't red or purple, they render crisp and wonderful in final cut pro over top the video. However, the graphics that have the lines that are red or purple, come out pixelated and blurry no matter how i try to render them. The only solution that worked was to render and output them with the animation codec. ProRes HQ worked too but not as well. However, this makes a file way too big. Whenever I went from animation to h264 or from FCP to h264, or any other web friendly format, graphics come out way pixelated. It makes me frustrated as to why all the graphics that were exactly the same except not red or purple came out perfectly crisp. Also, why is animation codec the only codec out there (besides uncompressed obviously) that will create clean edges in these red/purple graphics?
    Conclusion: Found that reds and purples are the only colors that seem to be effected when rendering the graphics. Everything else comes out nicely. Animation and pro res codecs aside, any codec making the video small enough for the web (less than 2gb) resulted in the problem of pixelation with the red and purple graphics. Based on extensive research I did online, I was surprised not to find many people posting about the exact same problem. For the issues I did find that seemed related, people concurred that HD nor regular DV video do a good job rendering bright reds or variations of red. Because I found no solutions online or from all the things I tried in the list below
    -re-rendered the PSD's in Final cut pro with variation of sequence setting to see if that would make any difference - it didn't. Tried all kinds of different settings in export for h264, keyframes, max quality, etc. no luck.
    -tried rendering to "Animation/uncompressed" as far through the process as possible. For instance, I outputted a perfectly crisp "Animation" file that was perfect looking. As soon as I re-exported to h264, mpeg4, or sorenson, or any other codec dropping the file size down, all results returned pixelated results for the reds and purple graphics.
    -made sure photoshop settings were all good, even copied and pasted psd into new 1920x1080 project, played with DPI up to 300 to see if it did anything, saved as different formats TIFF, png, eps, layers, flattened, 8-bit, 24-bit, 36-bit, etc., none of the formats worked correctly.
    -outputted my own purple and red graphics and text and rendered in final cut to see if the file had anything to do with it. same problem with my red and purple graphics and text.
    -Tried adding slight moving grain to the graphic in Final cut to try and trick FCP to thinking it was a video instead of a graphic and therefore render it smoothly.
    -consulted with 2 other video editors/media experts, ended up frustrating them as well (and hurting their ego a little since they were sure they could figure it out)
    -Ran the shot and graphic through after effects and premiere pro separately (different video programs) to see if final cut pro was causing the problem, same problem with those programs.
    -tried rendering on a different mac, still the same.
    -Actually upgraded my final cut pro version to the new version (now Final cut studio 3). Ran tests on new version of final cut pro, same exact problem.
    -added black edge to purple graphics to see if that did anything different to the rendering. Didn't help
    -Changed the hue of the graphic to anything other than red or purple. Wouldn't you know...That fixed it.
    Here is a link to the Animation Output of a half second of the edit with a sample red graphic crisp as can be for you to test (12.7mb) -
    http://www.robinsonhope.com/downloads/makeup_animationtest.zip
    Here is a link to view screenshots before and after to show you what rendering does to the graphics.
    http://www.robinsonhope.com/downloads/makeup_ss.jpg
    In case you'd like to try and find a solution, please download the link to the HD animation half-second clip and output to h264 or any other web friendly codec that would show these red graphics clean and not blurry and pixelated. Other rule is after doing the math, a 9 minute video with the compression you choose would need to be under 2gb. This shouldn't be too much of a problem because even a 1280x720 h264 at max quality for a 9min video is still under 2gb.
    The first person to show me that you are truly a FCP guru and can solve this, post a link of your successful solution, I will praise you as genius all over this forum. I will also be eternally grateful. Live in LA? I'll also buy you dinner, Haha. But seriously...

    Welcome to this forum,
    Sorry to hear you so struggling with this issue.
    And I doubt whether I can solve this for you, but I can say a few things.
    The title of this thread is:
    Graphics render bug in FCP 6 and 7 - Dare to prove me wrong?
    I'll prove you are wrong. Or actually you've already proved yourself wrong in your post:
    -Ran the shot and graphic through after effects and premiere pro separately (different video programs) to see if final cut pro was causing the problem, same problem with those programs.
    Seams that I try to annoy you, but I'm not. It's not a joke. The fact that other applications can't handle it as well AND the fact that Animation Codec (Which is pretty lostless) does not have this problem, tells you that the problem is likely the low compression you want OR the footage itself. And I dare say it's BOTH.
    I downloaded your testfile and have opened it in FCP and I can see in the Vectorscope that your color Red is too hot.
    [Click here|http://i843.photobucket.com/albums/zz356/rienkL/Screenshot2010-04-02at1324 20.png] to see the vectorscope of your picture?
    You also see the small boxes (clockwise)
    Red, Magenta, Blue, Cyan, Green, Yellow. The signal of your picture should stay somewhere between those boxes. You should read [this article|http://www.larryjordan.biz/articles/lj_scopes.html] (two third on the page) about the vectorscope. Also has a picture with the range to be broadcast safe.
    So back to your picture and your vectorscope. You'll see that just along the right side of the R in the vectorscope there's a peak which goes way out of the range. And that's exactly the color of your graphic.
    I tried isolating that color, reducing the saturation, and then do an export, but that failed. You should adjust that within the PSD's first and then see how exporting goes.
    So now you are thinking: My client wants his own colors! Sure he does. But those colors were probably designed for print, which does have another colorrange. Simple technical story. You're bound to specific saturation. Going over that means troubles....
    And I'm not claiming that your problem will be solved when you adjust this. It is still possible that h264 just doesn't like red too much. Maybe that's on purpose. Our eyes are most less sensitive to red, so that gives the compressor some extra room to compress in the reds (Don't know if this is what compression developers do; just thinking out loud, just an idea...)
    Hope this helps at least a little.
    Rienk

  • Problems with SharePoint2010 and Adobe Reader X

    hi all,
    i have a big problem with SharePoint2010 and Adobe Reader x. We can open .pdf Files from SharePoint but not Safe. The Error Message is "
    SharePoint, SQL and OS are installed in English. The problem is that the site was probably created from a German template. One would have to create the site from an English template and then add the other languages by MUI. It is a matter which language site in the settings under Language Settings is uppermost to:
    how can the problem be solved?it looks like here, the reader still an error..
    andre

    Hi,
    Could you repost the error-message that you see in Adobe Reader? The problem might be because of a known bug in Microsoft SharePoint server 2010. Certain required field types are missing in the German/French site templates which cause a SOAP request on the server to fail. A workaround is to add these field types to the library. You could add these fields manually or using a script. You could look for following field types which might be missing from the site template.
    "Content Type ID","Approver Comments","Name","Document Modified By","Document Created By","File Type","HTML File Type","Source URL","Shared File Index","Title","Template Link","HTML File Link","Is Signed", "Document ID Value", "Document ID", "Content Type", "Created", "Created By", "Modified", "Modified By", "Has Copy Destinations", "Copy Source", "Approval Status", "URL Path", "File Size", "Item Type","Sort Type", "Effective Permissions Mask", "ID of the User who has the item Checked Out", "Is Checked out to local", "Checked Out To", "Unique Id", "Client Id", "Virus Status", "Check In Comment", "Edit Menu Table Start", "Edit Menu Table End", "Server Relative URL", "Encoded Absolute URL", "Property Bag", "Level", "Is Current Version", "Item Child Count", "Folder Child Count", "Select", "Edit", "UI Version", "Instance ID", "Order", "Workflow Version", "Workflow Instance ID", "Source Version (Converted Document)", "Source Name (Converted Document)", "Document Concurrency Number","Relink", "Merge", "Path"
    Thanks,
    Richa

  • Problem PPOME - Organization and Staffing

    Hi Experts,
    I have the following problems concerning Organization and Staffing interface :
    1) When trying to create a new Organization Unit or Position in the Basic Data Tab the Abbreviation and Description are lost, instead it keeps the standard ( like New org. unit   New Organizational Unit), although I can see the correct Abbreviation and Description in the Overview Area. It seems like a bug, but still couldn't find an appropriate note about it. My customer uses SAP ECC 6.0.
    2)I would like to insert new tab pages in the Detail Area with custom pd infotypes. I managed to display one (through configuration in the Hierarchy Framework) but doesn't appear properly. Table T77OMTABUS looks like this :
    OME0     O     ACCNTNG             2     SAPLRHOMDETAIL_APPL
    OME0     O     ADDRESS             3     SAPLRHADDRESS
    OME0     O     BASIS_O             1     SAPLRHOMDETAIL_BASE
    OME0     O     COSTDIST             3     SAPLRHOMDETAIL_APPL
    OME0     O     HEADC_EX       6     SAPLHROM_HCP_PLANNING_EXT
    OME0     O     HEADC_MB      6     SAPLHROM_HCP_PLANNING_EXT
    OME0     O     HEADC_O             6     SAPLRHOMDETAIL_APPL
    OME0     O     IT1000             1                                            
    OME0     O     IT1002             2                                            
    OME0     O     IT1003             14                                            
    OME0     O     IT1509GS             15     SAPLHRFPM_OM_ANNOT_TAB
    OME0     O     IT1509GW             15     SAPLHRFPM_OM_ANNOT_TAB
    OME0     O     IT9902             7                                            
    OME0     O     TASKS             15     SAPLRHOMDETAIL_BASE
    OME0     O     WORKTIME       5     SAPLRHOMDETAIL_APPL
    Any ideas about what might be configured wrong??
    Thanks in advance
    (Points to be awarded)

    My problem resolved after implement note 1156683.
    if your problem is still, you can also try.
    Regards,
    Ankit

  • Does anyone have a link to common bugs/problems encountered with flex 3?

    Hi,
    does anyone have a link to common bugs/problems encountered
    with flex 3, just so i can try and familarise myself before I go
    asking etc? thanks folks!!

    flex warnings:
    http://livedocs.macromedia.com/flex/2/langref/compilerWarnings.html
    flex errors
    http://livedocs.macromedia.com/flex/2/langref/compilerErrors.html

  • Encore CS3 - Hangs and import problems with menus and avi footage with audio tracks present.

    I'm trying to import some footage files in .avi format into Encore CS3 and am having several problems.
    In what follows when I say "crash" I mean Encore quits with a standard Windows error. When I say "hang" I mean Encore does not quit but rather becomes an unresponsive process that must be killed manually using Windows Task Manager.
    My System:
    WinXP Pro SP2
    2.93 GHz Intel Celeron CPU - single core
    Intel PERL mobo
    3GB 400MHz RAM
    NVidia 7800GS video
    I mention these specs however I am not experiencing any hardware
    related bugs or issues (like out of memory or video driver crashes
    etc) when using any CS3 app.
    The footage files (as reported by GSpot) and problems I am seeing. In all cases GSpot reports that I have the appropriate codec installed:
    footage1.avi - Dx50 XVid 1.0.3, Dolby AC3 48kHz 192kb/s, 716834 KB
    Attempting to import as timeline causes Encore CS3 to hang.
    Importing as an Asset allows it to import but when I try to click
    on it in the project windown to add it to a new empty timeline,
    Encore hangs. It plays fine in Windows Media Player.
    footage2.avi - Dx50 XVid 1.0.3, MPEG-1 Layer 3 48kHz 128kb/s, 718302 KB
    Imports fine as either a timeline or asset but no audio track comes
    with it, even though there is an audio track in the footage. It plays
    fine in Windows Media Player. Video imports perfectly, just no audio.
    footage3.avi - Dx50 XVid 1.0.3, MPEG1-Layer3 48kHz 112kb/s, 717606 KB
    Imports fine as either a timeline or asset but no audio track comes
    with it, even though there is an audio track in the footage. It plays
    fine in Windows Media Player. Video imports perfectly, just no
    audio. I tried converting this one using AVS to both MPEG3 and DivX,
    each using MPEG1-Layer3 44kHz 192kb/s audio, and got the same issue
    upon importing into Encore CS3. I also loaded it into Camtasia
    Studio and it looked fine over there. The audio was present and I
    was able to export it as a .WAV file. When I tried looking at the
    file in Soundbooth CS3, there was no audio track or, more
    accurately, the audio track was a flat line.
    By way of comparison these are importing perfectly:
    footage4.avi - XVID XviD 1.1.0 Beta2, MPEG1-Layer3 48kHz 189kb/s Two mono
    channels LAME3.96r, 717436 KB.
    footage5.avi - XVID XviD 1.1.0 Final, Dolby AC3 48kHz 448kb/s Six
    channels (3/2 .1), 716418 KB.
    footage6.avi - XVID XviD 1.1.0 Final, Dolby AC3 48kHz 448kb/s Six
    channels (3/2 .1), 716418 KB.
    footage7.avi - XVID XviD 1.0.3, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 717502 KB
    footage8.avi - XVID XviD 1.0.3, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 717180 KB
    footage9.avi - XVID XviD 1.1.2 Final, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 2291904 KB
    Although this one imported & transcoded correctly, when I went to
    build it to a DVD image file I got some strange errors during the
    "planning video" stage that prevented the process from completing.
    Unfortunately I neglected to write down the error message I recieved
    which read like quite nonsensical babble to me, and I have since
    deleted the project folder. I remember it was not a memory or
    display related error and it included a timestamp where the error
    was happening. I played the footage in the preview panel thru the
    identified timestamp but it previewed perfectly without even a
    jitter in either the video or audio. Took forever to transcode so I
    doubt I'll be doing this one again anytime soon.
    Another issue I am having is with the motion menus. I burned a DVD and it does not load correctly in one of my DVD players (a Sony rdr-gx330 recorder/player). It appears to take extra time to recognize the disk, the startup (first-play) menu does not show automatically, and I must press the Main Menu button on the

    Another issue I am having is with the motion menus. I burned a DVD and it does not load correctly in one of my DVD players (a Sony rdr-gx330 recorder/player). It appears to take extra time to recognize the disk, the startup (first-play) menu does not show automatically, and I must press the Main Menu button on the remote control to make it appear. Other than that it seems to play ok in that player. Also tested it in 2 other DVD players (a Panasonic and Zenith) and it worked just fine like it's supposed to in them. Also plays perfectly in my computer's DVD player/burner using Windows Media Player v10. I tried burning to Memorex +RW single-layer single-sided disks at 6, 7, & 8Mbps project settings but got the exact same result every time.
    Encore CS3 crashes fairly often during authoring, particularly during imports, and when I go to edit things like calling up a timeline in the timeline panel, dragging footage into an existing timeline, or changing button links in a menu etc.. I have also experienced seemingly random hangs even more often, probably 5 or 6 times as often as a crash. Saving the project after every little change I make, then closing and restarting Encore allows me to make progress albeit at a significantly reduced workflow rate. Accessing Photoshop from Encore appears to be working flawlessly so far aside from the slow load times. Encore hangs sometimes during video transcoding, repeat the process and it works ok. If I try to import a menu from the library after importing my footage files, Encore hangs trying to import it either at the 50% mark or the 99% mark (it varies even with the same exact menu selected from the library). If I import the menu first and the footage after, then no problems. Also trying to render motion menus after importing footage causes Encore to hang, render before footage import and everything works ok. Interestingly enough, previewing my project in Encore's monitor or preview panels works perfectly even in High quality mode -- in fact it operates quite smoothly in comparison to other apps I have tried. Although those footage files that had missing audio tracks on import obviously played silently, I have yet to experience a hang or crash during a preview or when scrubbing through a timeline in the monitor panel.
    The last problem I've seen is with the project cache files. It doesn't always get rid of cache files when stuff is deleted from the project. I was working on one project and surprisingly ran out of disk space. When I tracked it down I found that there were some two dozen copies of a footage file I had repeatedly imported and deleted from the project still sitting in the cache folder. The file was an avi about 2GB so it was taking up some 40 GB of disk space for stuff that was no longer in the project. I tried shutting down Encore and manually deleting all the cache files, and that worked for most of them, but there was one 2GB file that kept reappearing in the cache folder even though it was no longer in the project. The XML file in the cache folder still had references to it in there so I can only assume that was the reason it kept showing up. I eventually had to delete and totally recreate the project from scratch to regain my lost disk space. This included having to sit thru a 6 hour long transcoding session which pissed me off to no end.
    Encore CS3 appears on the surface to be a very powerful, feature rich, and approachable app with a simple easy to use interface, but it is awfully bugged in just about every area I have explored and still needs lots and lots of work for it to be really useful. Frankly for me it is pretty damn annoying that I have invested so much money in this suite only to find several of the apps in it (Encore & Premiere in particular) behaving this poorly. In my opinion every single app in the suite exhibits lousy performance whenever you must do anything at all involving the disk from the time you click to start it up until the time you click to close it down. Several of them are just as seriously bugged as Encore too, and being a long time Photoshop v5.5 user I expected much more from Adobe. Even Photoshop is two or three times as slow now (e.g. it takes about 20-30 seconds to simply create an empty 500x500 pixel image file and almost a full minute to load a 30x60 pixel single-layer gif). So far I have attempted to create 6 DVDs using Encore and after 3 weeks of effort have only succeeded in getting one of them onto a final disk -- and that one is kinda limping to work correctly in my DVD player. Three of those projects became so corrupted while working on them that I had to delete them completely and recreate them from scratch, only to find that I still couldn't get them to completion for one reason or another. Seriously disappointing.

Maybe you are looking for

  • I inadvertently removed the junk mailbox from Mail.app in SL, how can I recreate / restore it ?

    Hi, Well, the title says it all : I inadvertently removed the junk mailbox from Mail.app in SL, it still is spresent in my ~/library/mail folder, how can I recreate / restore it in mail.app ? Since I have a fair number of email accounts, intelligent

  • [SOLVED]Ruby on Rails won't run with apache/passenger

    Hi I want to run Redmine, a Ruby on Rails application, on a personal server using MariaDB as the database and Apache with the Phusion Passenger module as the application platform. So far I am able to run Redmine with the default WeBrick server, but i

  • How to reset ipad

    Is there any ways that I can reset my New iPad to factory settings? It got switched off due to less charge and now after charging I'm unable to see the screen turned on. Display is not turning on. But when I put it in silent mode ring icon displays o

  • Lost utube with upgrade

    Just did the upgrade to ios6, lost utube I get its owned by google, but didn't expect that. I know I can u tube via safari, Problem is I can't use air play to stream videos via Apple TV to my big screen.  Very upset. How can I revert back?

  • Dreamweaver CS5 issue

    Hello, Dreamveaver brake up when i go to 'Edit' then 'Serch and Remove' ! I try to install Dreamweaver again , but the Problem is the same. Thanks for Help