Please provide a solution

Hi,
Please let me know how can we check a G/L account, whether a invoice or a sales order amount is posted or not by using an invoice or a sale order number ?
Thanks & Regards,
Vijay.

Hi,
Financial entry will not be generated at Sales Order level, but will be generated at invoice level. You can view accounting entry in Invoice, by select the tab 'Accounting'. This will give you financial entry along with G/L accounts.
Alternatively, Transaction code FBL3N or FBL5N can be of use to you to check G/L account.
Reward points if helpful.
Regards,
Rajesh Banka

Similar Messages

  • Getting 'Out of memory' error while opening the file. I have tried several versions of Adobe 7.0,9.0,X1. It is creating issue to convert PDF into TIFF. Please provide the solution ASAP

    Hello All,
    I am getting 'Out of memory' error while opening the file. I have tried several versions of Adobe 7.0,9.0,X1.
    Also, it is creating issue to convert PDF into TIFF. Please provide the solution ASAP.

    I am using Adobe reader XI. When i open PDF it gives "OUT of memory" error after scrolling PDF gives another alert "Insufficient data for an image". after clicking both alerts it loads full data of PDF. It is not happening with all PDFs. couple of PDFs are facing this issue. Because of this error my software is not able to print these PDFS into TIFF. My OS in window7*64. I tried it on win2012R2 and XP. Same issue is generating there.
    It has become critical issue for my production.

  • When i open my itunes of recent edition , i am getting error as  "itunes.exe has been set to run in compatabiltity mode " Though i reinstalled it several times from last days ,the problem is not solved. Please provide the solution asap.

    When i open my itunes of recent edition 12.0, i am getting error as "itunes.exe has been set to run in compatabiltity mode " Though i reinstalled it several times from last days ,the problem is not solved. Please provide the solution asap.

    Try iTunes for Windows: How to turn off Compatibility Mode.
    tt2

  • Please provide a solution to get FaceTime on iphone without jailbreaking.

    Dear Concerns,
    please provide a solution to get FaceTime on iphone without doing jail breaking.

    This is very well known that FaceTime is disabled in Middle Eastern countries and that it is the Governments that ban it and not Apple.
    Basically, you may not be using your phone in a Middle Eastern country that bans FaceTime, but your phone may have originated from a Middle Eastern Country and if this is the case there is nothing at all that you can do to get FaceTime on your phone.
    Where did you get your phone?
    You cannot get FaceTime on your phone either via updates or though the Apple store or App store or anything else for that matter.  If your phone does not have FaceTime, then you can never get it on that phone and you will have to buy a new phone if you want it.
    Also, what is this with addressing people as Concern?  This is a user to user technical support forum and NOT Apple.  We are all just user.

  • I am getting message "Sorry, your browser/program is not supported by Web Dynpro! " Please provide the solution

    I am getting following message displayed, for one of the website.
    "Sorry, your browser/program is not supported by Web Dynpro! "
    Please provide the solution
    Regards
    Rajesh R Rakesh

    Use a browser that is supported.

  • Iam using iphone 4s and Iphone 5s with same apple ID but my network is different and whenever Iam getting call in i5s and in my both handset same calls are coming. Please provide me solutions

    Iam using iphone 4s and Iphone 5s with same apple ID but my network is different and whenever Iam getting call in i5s and in my both handset same calls are coming. Please provide me solutions

    On both devices, go to Settings>Facetime and turn off cellular calls.
    ~Lyssa

  • HT201320 mail app only sync mails app is active., please provide me solution to active sync to get mail instantly

    not syncing mail untill i open the mail app.
    it should sync automatically,
    so that whenever i got mail over serrver ,i get it in iphone.
    please provide mails

    Bump.

  • How to solve the Error code :45 for the below mentioned script. Please provide  the solution for the

    function fontcheck (){
        fonts=null;
    //var fonts=document.fonts.everyItem().getElements();
    var _docFonts = app.activeDocument.fonts.everyItem().getElements();
        var myDoc=app.activeDocument
        var fontlist = []
        for (var i = 0; i < _docFonts.length; i++) {
         var fontName = _docFonts[i].fullName;
         var fontpath= _docFonts[i].location;
    var mm=String(fontpath);
    var s=String.fromCharCode(92)
    var ms=String("C:"+(s)+"Windows"+(s)+"Fonts"+(s));
    mm=mm.substring(0,17);
    if (mm==ms)
    alert ("The Document contain System font Please fix the font using find font option");
    exit()
    mm=null;
    fonts=null;
    else
    if (mm=="System Font")
    alert ("The Document contain System font Please fix the font using find font option");
    exit()
    mm=null;
    fonts=null;

    works for me. Perhaps you can tell more about what happens?

  • Can you please provide the solution for creating process chain..

    Hi Experts,
    i need to work on this process chain PC_UN_HR_SAP_PM_TD01, i need to add one more step before DSO load that means delete existing data from DSO
    please let u know as soon as possible.

    Hi Kavya,
    Here you can use proces type: 'Complete deletion of data target content' from Data target administration node.
    Here in this process type you need to specify the target of which data to be deleted.
    PFB links which specify the creation of Process Chains. You 'll get enough idea from these to modify the existing process chain.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/101bed70-f13d-2e10-e7ad-d5c9dabf4485?overridelayout=true
    http://scn.sap.com/people/juergen.noe/blog/2008/01/11/process-chain-creation--step-by-step
    Hope this 'll help you to get desired result,
    Thanks & Regards,
    Pradip

  • Please provide optimistic solution

    Please say an optimistic way of the following query.
    I am having history of a transaction table named
    H_Trans in which certain columns will be filled one day and the rest of columns in some other days.
    For building a fact table i am in need of all the column
    values.
    here is my query
    SELECT A.ACC_TYPE,A.ACC_NO,A.TOT_BAL,A.LAST_TRAN_ID,B.LAST_TRAN_AMT,
    B.LAST_TRAN_ID PREV_TRAN_ID
    FROM H_TRANS A,H_TRANS B WHERE
    A.ACC_TYPE=B.ACC_TYPE AND A.ACC_NO=B.ACC_NO AND
    B.LAST_DATE&lt;=A.LAST_DATE AND
    (A.ACC_TYPE,A.ACC_NO,A.LAST_DATE,B.LAST_DATE) IN
    (SELECT A.ACC_TYPE,A.ACC_NO,MAX(A.LAST_DATE),MAX(B.LAST_DATE)
    FROM H_TRANS A,H_TRANS B WHERE
    A.ACC_TYPE=B.ACC_TYPE AND
    A.ACC_NO=B.ACC_NO AND
    B.LAST_DATE&lt;=A.LAST_DATE AND
    A.LAST_DATE&lt;='30-SEP-2004' AND
    (B.LAST_TRAN_AMT ||B.LAST_TRAN_ID) IS NOT NULL
    GROUP BY A.ACC_TYPE,A.ACC_NO)
    I will be greatful if i get a reply regarding this.
    Thank you,

    Perhaps there is a simpler way but this (if I understand you correctly) is what I came up with so far...
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> CREATE TABLE h_trans (
      2    acc_type VARCHAR2 (3),
      3    acc_no NUMBER,
      4    tot_bal NUMBER,
      5    last_tran_id VARCHAR2 (11),
      6    last_tran_amt NUMBER,
      7    last_date DATE);
    Table created.
    SQL> INSERT INTO h_trans VALUES (
      2    'XYZ', 12345, 2000, 'XYZ-123-456',
      3    10000, TO_DATE ('20-SEP-2004', 'DD-MON-YYYY'));
    1 row created.
    SQL> INSERT INTO h_trans VALUES (
      2    'XYZ', 12345, 5000, NULL, NULL,
      3    TO_DATE ('24-SEP-2004', 'DD-MON-YYYY'));
    1 row created.
    SQL> SELECT acc_type, acc_no, tot_bal,
      2         last_tran_id, last_tran_amt, last_date
      3  FROM  (SELECT acc_type, acc_no, last_date, 
      4                LAST_VALUE (tot_bal IGNORE NULLS) OVER (
      5                  PARTITION BY acc_type, acc_no
      6                  ORDER BY last_date) tot_bal,
      7                LAST_VALUE (last_tran_id IGNORE NULLS) OVER (
      8                  PARTITION BY acc_type, acc_no
      9                  ORDER BY last_date) last_tran_id,
    10                LAST_VALUE (last_tran_amt IGNORE NULLS) OVER (
    11                  PARTITION BY acc_type, acc_no
    12                  ORDER BY last_date) last_tran_amt,
    13                ROW_NUMBER () OVER (
    14                  PARTITION BY acc_type, acc_no
    15                  ORDER BY last_date DESC) row_num
    16         FROM   h_trans)
    17  WHERE  row_num = 1;
    ACC     ACC_NO    TOT_BAL LAST_TRAN_I LAST_TRAN_AMT LAST_DATE
    XYZ      12345       5000 XYZ-123-456         10000 24-SEP-04
    SQL>

  • I cant open Firefox, when I try I get this message "Your firefox profile can't be loaded, It may be missing or inaccessible". Can you please provide a solution.

    I bought a new IMAC Apple pc a month ago and am used to Windows. I am new to MAC software and tried to solve the issue myself by searching online and through your database without success. Can you please help by sending step by step instructions on how to fix the above issue.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an old profile (if you have one) to that new profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Exciting requirement--- please provide a solution

    I have a table as follows :
       CREATE TABLE test_detail
           (case                      CHAR(10) NOT NULL,
           item                         CHAR(9) NOT NULL,
           code                       CHAR(2) NOT NULL,
           type1               VARCHAR2(2),
           type2               VARCHAR2(2),
           type3               VARCHAR2(2),
           type4               VARCHAR2(2),
           type5               VARCHAR2(2),
           type6               VARCHAR2(2),
           amt1                NUMBER(9,2),
           amt2                NUMBER(9,2),
           amt3                NUMBER(9,2),
           amt4                NUMBER(9,2),
           amt5                NUMBER(9,2),
           amt6                NUMBER(9,2));
        INSERT INTO test_detail
        VALUES
        ('EML3371015','133761570','10','25','04','25','07','10','21',200,55,100,10,50,NULL)
        INSERT INTO test_detail
        VALUES
        ('EML3371015','133761570','10','01','25','06','07','10','21',26,20,NULL,10,50,5)
        INSERT INTO test_detail
        VALUES
        ('EML3371015','133761570','10','01','04','25','07','10','21',35.25,NULL,5,NULL,50,NULL)
        INSERT INTO test_detail
        VALUES
        ('EMC6369600','140328551','10','01','04',NULL,NULL,NULL,NULL,75,54,NULL,NULL,NULL,NULL)
        INSERT INTO test_detail
        VALUES
        ('EMH6353995','140328551','11','01','04','29','05','10','25',382,20.52,15,10,22,5.52)
        commit;I wanna check test_detail.type1, type2, type3,type4,type5,type6
    for types in {25,04}Then take sum of corresponding amounts test_detail.eob_column_amt[1..6] fields for the appropriate types
    The expected result is
    case       item       code            copay
    EML3371015      133761570      10            355 --amt1(25 of type1)+amt2(04 of type2)+amt3(25 of type3)
    EML3371015      133761570      10             20 --amt2(25 of type2 )
    EML3371015      133761570      10             5  -- amt2(04 of type2)+amt3(25 of type3)
    EMC6369600      140328551      10             54 -- amt2(04 of type2)
    EMH6353995      140328551      11             26.04 --amt2(04 of type2)+amt6(25 of type6)Can anyone help me to write a query?

    Hey,
    One way of doing it
    select case,
           item,
           code,
           nvl(type1, 0) + nvl(type2, 0) + nvl(type3, 0) + nvl(type4, 0) +
           nvl(type5, 0) + nvl(type6, 0) amt
      from (
            select case,
                    item,
                    code,
                    case
                      when type1 = '25' or type1 = '04' then
                       amt1
                    end type1,
                    case
                      when type2 = '25' or type2 = '04' then
                       amt2
                    end type2,
                    case
                      when type3 = '25' or type3 = '04' then
                       amt3
                    end type3,
                    case
                      when type4 = '25' or type4 = '04' then
                       amt4
                    end type4,
                    case
                      when type5 = '25' or type5 = '04' then
                       amt5
                    end type5,
                    case
                      when type6 = '25' or type6 = '04' then
                       amt6
                    end type6
              from test_detail)Thanks for the create/Insert statements.
    Cheers!!!
    Bhushan

  • Could you please provide a solution or an upgrade since I find "Modify Headers" being reported as incompatible with Firefox v3.6.12?

    After suffering a system crash, I re-installed Firefox 3.6.6 which was present with me and all the plug-ins that I needed.
    The automatic updater for Firefox then found the version 3.6.12 available for a download which I subsequently did.

    Tools > Addons > Extensions - right-click that extension and use the '''Find Update''' menu item, then restart Firefox

  • I am getting error : "Safari cannot download this file", while downloading a file with "ipa" extention. Please provide the guidelines, how this issue can be addressed.

    Please provide he solution.

    ipa is for an iPhone. You can't open it on Safari on a Mac.
    Read here >  .ipa (file extension) - Wikipedia, the free encyclopedia

  • I almost complete uploading a 32 page iPhoto book, on a number of occasions when I get an error message stating "An error occurred uploading your order" can anyone tell me why and provide a solution please?

    I am having problems uploading a photo book from my MacBook Pro!!! I almost complete uploading this 32 page iPhoto book when I get an error message stating "An error occurred uploading your order" This error message has occurred for each of my four attemps to upload. I have carried out a Disk Utility-Verify hard drive check and swapped from wireless to ethernet and still no joy. Can anyone suggest why this might be occurring and provide a solution please?

    Boot into Safe Mode and try again.

Maybe you are looking for

  • Desktop picture suddenly changed by itself

    I woke up the morning turned on my mac and booted it to find that the desktop picture was the blue galaxy. When I shut it down last night it was set to the purple nebula as far as I can recall. I havent enabled "change desktop picture every 30 minute

  • I cannot uninstall Firefox 3.4. Nothing seems to work. What can I do?

    I reinstalled Firefox 4. However, it failed to install correctly. After that point, I could not uninstall it, I could not use it, and I could not reinstall it. I am completely befuddled.

  • How do I make a Self Contained Project?

    I'm doing a huge digitization project that involves digitising interviews. My project is full of Bins with the relevant captured footage inside, how can I take one of these bins and either copy it or make it a self contained project so I can take it

  • ERROR MESSAGE - Scanner failure - Unable to scan, copy or send a fax - Photosmart 3310 All in One

    Hi, believe it or not, this worked.., unplug unit for 30 sec. press and hold # key plus 3 key (keep holding) plug in unit again keep holding # and 3 buttons until screen says reset has occurred release buttons, try copying or scanning if you're lucky

  • Export -import error  'SYS.DBMS_DATAPUMP'

    1-->Hi I exported data from oracle10 g by imp utility.on the same server Now I want to import the dump file on the oracle 9i user. when I give command on linux server c:\> imp username/password@oracle9i .. It will give mi error as UDI-00008: operatio