Balance of line item different from the figure of open item

Hi
User has posted the document by  USD currency(f-02). The balance of line item display in FBL3n it is showing 1985202 while the figure in open item(f-06) it is showing 1990323.60.
What will be cause of error?
Regards

Please check whether the exchange rates are different for the clearing date and the invoice posting date.
Regards,
Naveen

Similar Messages

  • In the info bar at the bottom of the iphoto window, why is the number of items different from the total

    In the info bar at the bottom of the iphoto screen, why is the number of items different from the total?

    What version of iPhoto and system are you running? What mode are you in, i.e. Events, Photos?
    If it's the Photos mode the number at the bottom will represent the number of photos displayed in that mode or the number of photos selected in that mode. The number will match the number next to the photos mode only when there are no photos in that mode that are selected. 
    If you click on the Events icon and then back on the photos icon the numbers should match.
    OT

  • Running iTunes 11.0.3 64bit Windows 7. The "join Tracks" line has disappeared from the box that opens when you click "options" after inserting a CD. Only 2 lines show up: "Get track names" and "Submit CD Track names". Where did "Join Tracks" go?

    Running iTunes 11.0.3 64bit Windows 7. The "join Tracks" line has disappeared from the box that opens when you click "options" after inserting a CD. Only 2 lines show up: "Get track names" and "Submit CD Track names". Where did "Join Tracks" go?

    i have the same problem no radio stations at all bit shabby hate technolgy now adays

  • How to have a JComboBox display an item different from the one selected

    Hello,
    I have a JTable (single column). I have set this column cell editor to be a JComboBox...
    JComboBox stdComboBox = new JComboBox();
    TableColumn column_zero = stdTablewCombo.getColumnModel().getColumn(0);
            column_zero.setCellEditor( new DefaultCellEditor(stdComboBox) );I have added a lovString array say {"A", "B", "C") to this stdComboBox. However, when the user selects a value from this list, I need to display a value from another lovString array say {"1", "2", "3"}. So if the user selects A then 1 needs to be displayed.
    I have a TableModelListener on this table that is getting me the correct selected index for any of the JComboBoxes on any of the rows. But I am little lost on how to display the value from the 2nd list.
    Thanks.

    Yes...but do I do that in the TableModelListener ?
    This is what I've tried in the TableModelListener:
    public void tableChanged(TableModelEvent e)
             System.out.println(e.getSource());
               if(e.getType() == TableModelEvent.UPDATE)
                    TableModel model = stdTablewCombo.getModel();
                    int row = e.getFirstRow();
                    this.cellValue = ((String)model.getValueAt(row, 0));
                    if (cellValue != null)
                         this.selectedIndex = this.stdComboBox.getSelectedIndex();
                          System.out.println("Selected Index:" + this.selectedIndex);
                          if (this.selectedIndex >= 0)
                             String valueToSet = this.lovStringB[this.selectedIndex];
                             model.setValueAt(valueToSet, row, 0);
                          else
                               System.out.println("Value in cell is not from List");
                          }It returns the selectedIndex value allright.
    It sets the value of valueToSet string allright.
    it also does the model.setValueAt allright....but this triggers a tableChanged event and it goes back up - this is also fine. However, when it now comes back to the this.selectedIndex = , this again returns the index of the original selection and not a -1 (for values not in the ComboBox list). This makes it go into an infinite loop and gives me a StackOverflowError.
    Edited by: 799076 on Oct 10, 2010 9:41 AM
    Edited by: 799076 on Oct 10, 2010 9:49 AM

  • Can anybody help me in finding the reasons why the time of email received are different from the one on my macbook which time is correct

    Hi
    Can anyone help me in finding the reason why the date on e=mail reced is different from the one on my MacBook eventhough it is correct
    Thanks

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • HT1386 Hello, When trying to sync, I get the following message.  This computer is no longer authorized for apps that are installed on the iPhone "Terri George's iPhone". Would you like to authorize this computer for items purchased from the iTunes Store?

    while trying to sync with my iphone I recieve the message: This computer is no longer authorized for apps that are installed on the iPhone “Terri George’s iPhone”. Would you like to authorize this computer for items purchased from the iTunes Store?  When I put in my password and hit authorize, I get a message telling me there was an unknown error (-50).  Would love to sync today.  Any help would be appreciated.

    The -50 error is documented in this article:
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    Here is a synopsis:
    Error 13, 14, 35 and 50 (or -50)
    These errors are typically resolved by performing one or more of the steps listed below:
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting.
    Put a USB 2.0 hub between the device and the computer.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online.
    Try to restore from another known-good computer and network.

  • How can i AppendText to richTextBox only if the text is new(different) from the text that is already in the richTextBox ?

    Code
    public void ScrollNews()
    listsext.Ext(page);
    combindedString = string.Join(Environment.NewLine, ListsExtractions.myList);
    richTextBox1.SelectAll();
    richTextBox1.SelectionAlignment = HorizontalAlignment.Right;
    richTextBox1.AppendText(combindedString);
    scrollerText = string.Join(Environment.NewLine, ListsExtractions.myListWithoutLinks);
    scroller1.TextToScroll = scrollerText;
    if (NewsLevels.newsLevel && NewsLevels.shouldStart)
    UpdateTextControls();
    scroller1.Start();
    NewsLevels.shouldStart = false;
    if (NewsLevels.newsLevel == false && NewsLevels.shouldStart)
    UpdateTextControls();
    scroller1.Start();
    NewsLevels.shouldStart = false;
    string[] rlines = richTextBox1.Lines;
    richTextBox1.SelectionStart = 0;
    richTextBox1.SelectionLength = rlines[0].Length;
    richTextBox1.SelectionColor = Color.Red;
    richTextBox1.Select(rlines[0].Length, rlines[1].Length + 1);
    richTextBox1.SelectionColor = Color.Green;
    RedColorAlert1();
    if (lines == null)
    label5.Text = "0";
    else
    label5.Text = lines.Length.ToString();
    The line is:
    richTextBox1.AppendText(combindedString);
    I'm calling this method ScrollNews every X minutes with a timer.
    The way it is now it will AppendText all the time. But i want it to Add the combinededString only if the text in combindedString was different from the text that is already in the richTextBox. Somhow to keep all the time the last text and compare it and
    if there is a new text then appen it.

    public void Scroll()
    listsext.Ext(page);
    combindedString = string.Join(Environment.NewLine, ListsExtractions.myList);
    richTextBox1.SelectAll();
    StringBuilder sb = new StringBuilder();
    sb.Append(combindedString);
    richTextBox1.SelectionAlignment = HorizontalAlignment.Right;
    richTextBox1.AppendText(combindedString);
    The problem is that now it will keep adding to the richTextBox the content in combindedString over and over again. I need somehow to check each time if the content in combindedString already exist in the richTextBox if not meaning it's new content then AppendText
    it.
    If it's the same already exist do nothing don't add it.
    EDIT
    I write to a text file the content of the ombindedString variable .The first content the lines is the combindedString:
    המשטרה עצרה אמא ל2 ילדים קטנים שבעלה נעצר בחשד למעורבות בעלה בכריתת עצים
    15:03 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189935.shtml
    אדם החשוד בעבירת מין בקטינים נעצר לאחר שהתלונן על 2 שסוחטים אותו על רקע מעשיו
    14:50 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189932.shtml
    אינדונזיה: 5 הרוגים בקריסת האנגר בנמל תעופה
    14:44 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189930.shtml
    אום אל-פחם: מספר חשודים עוכבו בחשד למעורבות במימון טרור
    14:04 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189914.shtml
    אלמנתו של רפ''ק ג'דעאן אסעד, שנרצח בפיגוע הדריסה, ילדה בן
    13:05 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189884.shtml
    תנאי ליברמן לכניסה לממשלה עונש מוות למחבלים חובת חתימה על מסמך נאמנות
    12:39 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189868.shtml
    תלמיד תיכון מרחובות חשוד שהפעיל מעבדה ביתית לזיוף תעודות זהות ואישורי מחלה
    12:03 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189856.shtml
    הצביעות של רענן שקד: האשים את אמהות 3 החטופים ומגנה את חגי הוברמן
    11:43 דווח במקור בתאריך : 09.03.15 : שעה
    http://rotter.net/forum/scoops1/189848.shtml
    And this is a screenshot i couldnt copy the text of the richTextBox1.Text
    richTextBox1.Text content image
    co uld be that the format of the text in the combindedString and the richTextBox1.Text looks different so it think it's not exist ?
    Update:
    Not sure if it's important but the combindedString i'm adding the text to it from the variable ListExtractions.myList
    myList is List and i build this List like that:
    private void ListToStringList(List<string> myl)
    for (int i = 0; i < AllNews.Count; i++)
    myl.Add(AllNews[i].text);
    IFormatProvider provider = CultureInfo.InvariantCulture;
    DateTime myTime = DateTime.ParseExact(AllNews[i].original_time, "DyyMMddTHHmm", provider);
    string results = myTime.ToString("HH:mm דווח במקור בתאריך : dd.MM.yy : שעה");
    myl.Add(results);
    myl.Add(AllNews[i].link);
    myl.Add(Environment.NewLine);
    myListWithoutLinks.Add(AllNews[i].text);
    myListWithoutLinks.Add(results);
    myListWithoutLinks.Add(Environment.NewLine);
    for (int i = 0; i < myl.Count; i++)
    myl[i] = Regex.Replace(myl[i], @"\t|\n|\r", "");
    And use it:
    ListToStringList(myList);

  • Why does Photoshop display colors differently from the other applications even in sRGB mode ?

    Hello all !
    Here is my problem :
    Photoshop is set to use sRGB workspace (in edit/colors.../workspace/RVB).
    If I understand correctly this is how all native windows applications work.
    This means Photoshop and the other applications should display the same colors on a file with a sRGB profile.
    Now this is the case until I calibrate my monitor.
    When I do, Photoshop colors become different from the other applications (irfanview, explorer, browsers...).
    The only way I found to let everything display the same colors is to set Photoshop to use Proofing/RVB Monitor.
    What upsets me even more is that Photoshop colors look "better" to me (dark grays seem to dark to me in the other applications.)
    I have read that this is because Photoshop takes the new profile into account and others applications do not. But I don't think this is relevant here because everything is in sRGB so the only profile is my monitor's and I think calibration is handled globally by windows : everything (including browsers, explorer, and Photoshop) changes color if I choose to apply the monitor's profile or not with windows color management tool ("use my parameters for this device").
    Here is my system configuration :
    - Photoshop CS4 (11.0.2)
    - Windows 7 64 bits
    - HP ZR2440W and DELL 2209WA (these are not wide gamut screens)
    I have spent two days trying to figure the logics behind this and really am upset. Any help would be greatly appreciated. Don't hesitate to ask me if there is something that is unclear or some information I forgot to mention.
    Thanks in advance,
    Yannick

    That sounds like an invitation to continue to talk about the issue.  Fair enough.
    I'm not sure where you're getting "insecurity"...  I am just trying to help you help others more effectively.
    I invite you to re-read just the first sentence of what you wrote very carefully, putting yourself in the shoes of someone struggling with both the terminology and the concepts:
    Photoshop (CMS) reads an embedded ICC profile and CONVERTS it to the custom monitor profile for a theoretical 'true color' display
    Think about what "Photoshop (CMS)" might mean to a person who doesn't know the acronym might stand for "Color Management System" (which is I assume what you meant).  Adobe themselves don't call it "CMS", they use the acronym "CMM" (Color Management Module).  The term "CMS" is used in the computer industry for about a dozen different things.
    While a color profile might have been embedded in an image file before it was opened by Photoshop, Photoshop works on documents.  A profile is not "embedded" in a document, it is maintained by Photoshop with the document and describes the color values in the document.  If Photoshop opens a document without an embedded profile, depending on settings and user choices it might assign a profile or it might even operate on the document without color-management.  Oversimplification doesn't help people when they're trying to learn new things unless it's described as such, for example, "This is a bit of an oversimplification..." or "Generally speaking..."
    Not every monitor profile is a "custom monitor profile".  Quite often a standard profile (e.g., sRGB IEC61966-2.1) is associated with a monitor by the operating system as a default, or a factory profile is installed by a driver package or system update.  Your use of the term "custom" is a bit ambiguous and could be read as implying the creation of a profile using a calibration and profiling device specific to the particular monitor.
    Photoshop's color management code does not convert an embedded ICC profile at all (read carefully what you wrote).  As I said, it transforms color values.  That was the key error in your description that prompted me to comment.
    If ever there is a time to pick words carefully, it's in a color-management discussion.
    -Noel

  • HA-VMM cannot be installed : HAVMM name in db is differs from the user specified HAVMM name

    I have a two node HA VMM cluster.  This is working correctly and has been for while.  I am now attempting to add an additional node to the cluster.
    I joined the node to the cluster and then start the VMM install and follow the wizard till it gets to the Database Configuration Page.  When I Click Next here nothing happens.
    If I check the C:\ProgramData\VMMLogs\SetupWizard.log file I see the following error as the last item.
    HA-VMM cannot be installed : HAVMM name in db is differs from the user specified HAVMM name
    If I check the S
    CVMMCDB01 I find the HAVMMName property with a value of SCVMMC01.domainname  This is the same value that is returned when using powershell with Get-SCVMMServer
    When I check the cluster configuration it is the same story.  I connect to the  cluster name scvmmc01.
    Even if I look at Cluster Manager I can see the name is tied correctly.
    Any ideas would be great as I am effectively now stuck and cannot install another node.

    Greetings!
    It happened because you renamed your VMM cluster after first node installation.
    Juts update HAVMMName value in dbo.tbl_VMM_GlobalSetting. Start SQL Server Management Studio, connect to your VMM DB, and Edit table.

  • I was having ios 4.3 and decided to upgrade to ios 5 and in doing so I lost all my apps despite I restored from my earlier back up. The itunes I've backed up is different from the itunes I have used to upgrade-..

    I was having ios 4.3 and decided to upgrade to ios 5 and in doing so I lost all my apps despite I restored from my earlier back up. The itunes I’ve backed up is different from the itunes I have used to upgrade….. I was wondering if I can get back my apps that were purchased using different apple ID (not mine). Since I am in Ethiopia doesn’t even have the chance to buy it again. I have searched it in my computer/c/user/adminstrator….but couldn’t find it. Anyone p/l help

    When I updated my iPhone to IOS 5, I did it from my MB Air, when my iPhone's "home" is my work 27" iMac. I figured I could just download the new OS at home where internet is fast and then sync at office and be done. 
    WRONG!!!  So, like others here, all my apps were "gone."
    Following some of what I read above, I did the following and now all my apps that I purchased in the past are downloading to my 27". 
    In iTunes I went to Purchased, under "Store" in left column of iTunes.
    Then at the bottom of the Purchased screen was something like Download all apps, borrom right (sorry, cant see it now, its downloading all of them).  Once I hit that, I could see all my apps and it looks like they are all coming back.
    Now all I have to do is put them all like I had them before, folders, etc.  That will be a pain BUT at least I have all of them.

  • Hi, when typing an email the font on the first line is different then the second, can you help fix this

    Hi, when typing an email the font on the first line is different then the second, can you help fix this

    I can offer suggestions, but I can not fix it.
    Press enter three or four times before you start typing and then move the cursor back to the start. What happens is your point of insertion gets outside your predefined font range, it is a know bug and that will help you "stay in the lines" Another option is type Rick, go back to the start and then type your message. Anything which keeps the insertion point from the very end of the email really.

  • Is there a way to "print" a raster image to a size differing from the artboard, just as w/vectors?

    when you print from illustrator you can specify to fit a paper size
    that's different from the artboard being used. I want raster images that differ in size from the artboard - is this
    possible? Or would figuring out the pixels based on a dpi and a sheet size be the equivalent?

    I'm not clear what you describe. Sounds to me like you are confusing the rasterization on the printer/ in the printer driver with actually resizing. All that happens when you fit content on a page for printing is to change the overall ratio of paper vs. content vs. rasterization grid and that is a mere technical thing. Works for vectors and bitmaps. however, AI having a track record of being extremely picky about what it prints, you'd probably do better saving a PDF and printing from Acrobat.
    Mylenium

  • PERSG previous bet different from the current PERSG using info-type pa0000

    Hi Friends,
    Please guid me how get the PERSG previous bet different from the current PERSG
    using info type pa0000.
    Regards,
    Durga

    Folks,
    even after having repaired the inbox folder under "properties" a few times, I still had some e-mails where the contents are different from the subject line.
    In other words in the inbox there are two e-mails: one with subject line "abc", and another one with subject line "def".
    When I display the e-mail with the subject line "abc", the contents are from the e-mail with the subject line "def" in the in-basket.
    What else can be done to correct this problem?
    Thanks and best regards.
    Fred Kunz-Shirzad
    Chemin Ronzeures 6A
    1297 Founex VD
    Switzerland
    [email protected]

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

  • Why am I still getting this message after logging in - This computer is no longer authorized for apps that are installed on the iPhone "Myron Liptzin's iPhone". Would you like to authorize this computer for items purchased from the iTunes Store?

    why am I still getting this message after logging in?  "This computer is no longer authorized for apps that are installed on the iPhone “*************s iPhone”. Would you like to authorize this computer for items purchased from the iTunes Store?"  - after I have logged in and get the message that the computer is already authorized!!!?? - and then the above message pops up again?

    Click here and follow the instructions.
    (71175)

Maybe you are looking for