SAP Sales Journal Entry

Hi to all,
I am currently implementing SAP SD in my company.
With my current configuration and conditions following journal entry is posted in FI :
Customer AC        100    Debit
                     Sales Revenue           80   Credit
                     Sales Tax Payable      20   Credit
In above scenario , we are recording the net sales. But my clients also have a requirement to know what gross sales are , as in this case gross sales in 100. They need to publish this in public documents.
Please any one can advice how can i record gross sales , as net sales are derived from condition and are posted to Fi based on the account key.
Thankign you all in advance.
Have a nice day,
Best Regards,
Samad Farooq
00923332131219

HI Samad Farooq,
This can be done through by using subtotal column in pricing procedure.
In pricing procedure for final step take a total for net value and Tax. Then assign one subtotal to that.  Once you save a billing document the gross value will get copied in Standard billing table. From there you can pick the sum value.
Tis data will be saved in VBRK table wrt to billing doc,
Hope this will be helpful.
Regards,
Nagesh

Similar Messages

  • Getting Internal Error (-1101) occured (message 131-183) on SAP B1 Journal Entry.

    Hi,
    Im inputting data on journal entry module on SAP B1 when the message showed up, my computer is running on windows 8. (is it an OS problem?) Is there anyway that i could get rid of this error.
    Thanks and Regards,
    Christian

    Hi Christian,
    Please check below link.
    https://helpdesk.coresystems.ch/entries/20781833-Internal-error-131-occurred-131-183-FAQ-10062-
    SAP B1 client system we got error Internal Erro... | SCN
    Internal error (-1101) occurred [Message 131-183]
    Internal error (-1101) occured [Message 131-183]
    Hope this help
    Regards::::
    Atul Chakraborty

  • Error while posting to Tax Journal Entry for sales and use tax

    Hi,
    I am trying to post a journal entry (FB50) to cleanup and correct the liability on our sales and use tax. All  lines are giving warnings and messages.Give me a suggestion  on how to get it to post .  Or if needed, another solution to correcting the balances in the sales and use taxes.
    But the entry to a/c # 226530 is giving an information message but still wouldnu2019t save.
    The Error message is
    Enter the tax base amounts for account 226400 in company codeAFCO
    Message no. F5A375
    Diagnosis
    You are posting directly to a tax account. Enter the tax base amounts per item using the function "Tax Amounts".
    Kindly help me how to fix the above issue.
    Thanks
    Suvarna

    You may want to check out the following notes... they may shed some light on your problem.
    681930 - Posting on tax account possible w/o specific. of base amount
    1090096 - FB60 / MIRO - Checking direct tax after change (F5A375)
    944978 - FB60 / MIRO - check of direct tax after change

  • G/L Account mentioned on line level does not get hit in Journal entry on GRPO and AP Invoice in SAP B1 9.0 PL - 11

    Hi,
    G/L Account mentioned on line level does not get hit in Journal entry on GRPO and AP Invoice in SAP B1 9.0 PL - 11
    I am creating an independent AP Invoice, there are two issues:
    1. On line level G/L Account field is not open for selection
    2. I have then selected and updated the account on Form Settings. Same account gets updated on line level.
         In Journal Entry selected G/L account on line level shall be hitted. But it does not put any effect on JE. Accounting is set by Warehouse. It picks up accounts from warehouse only.
    Need help its urgent.
    Thanks in advance.

    Invoice is Item Type.
    G/L Accounts are set by Warehouse. But if explicitly we are want to change the account on line level in that case, it is not getting reflected in Journal entry. On AR Invoice same scenario works perfectly. On line level I can change the accounts explicitly and have the effect on Journal entries.
    Issue seems to be on AP side only.
    As required please find attached the screen shots.
    JEwith mapped GL Account on Warehouse
    JEwith different GL Account on line Level via Form Settings
    Thanks & Regards
    Sonil

  • Manual Journal entry limitations in sap b1

    Hi friends,
                   We are creating Manual JE in sap b1. We give the access only two users for creating Manual JE. Now we will plan one more thing . Limitation of JE .  it is means, per user we will go to allow only 1000 manual journal entries only creating by the user. if they reached their limitation we block that . How i will block ? Is it possible in sap b1 ? or any store procedure is there?

    Number of Journal Entries could be limited by giving user specific document numbering series for a particular user.
    Hope this helps.
    Regards
    Iftikhar

  • SAP Journal Entry Approval

    I would like to know how to go about configuring the SAP journal entry approval process and the business scenarii in which it makes sense to use this functionality. If you could explain a business scenario for which you have used this functionality, that would be very helpful.

    Your requirement fulfills as below:
    Only Journal entry park and  post options are available.
    As per my Knowledge there is no seperate process for journal entry approval. One user can park the document and approval user can post the document.

  • SAP 9 PL07 Journal Entry unrelated to invoices

    Hi Experts !
    I just migrate my DB to PL07 SAP 9 and noticed that the Journal Entry is no more link to the source notes as in previous PL.
    Someone also noticed this difference?
    This version is a failure or a change in behavior?
    The following 2 pictures comparing the versions.
    Thank you.
    Att
    Eliezer

    Hi Eliezer,
    Actually it happens to Brazil location, please check the notes for this release and if you can not find any information about it talk to SAP support or your local partner.
    Patch Information:
    1904912 - Overview Note for SAP Business One 9.0 PL07           (Patch)
    I hope this tip helps you!
    Regards,
    Marcelo Silva Santos

  • How to get Data from SAP B1 through Journal Entries objects (Excel VBA)

    Hi Genius
    i had try to login SAB B1 thorugh MS Excel VBA code and it worked well. but i need some questions regards getting the data from after login. that means i want the Posting date, Transaction No, account code, debit and credit amount from Journal entries posted in a particular day through MS excel VBA into excel sheets 1 cell A1:E1
    how i get it if any possible ways to do that
    here my code to login
    Public Sub login()
        Sheets("Login").Select  'access the login tab
        Worksheets("Login").Range("B1").Activate 'put focus on cell B1 (manager)
        B1UserID = Trim(ActiveCell.Value2) 'set Businsss One user
        ActiveCell.Offset(1, 0).Activate
        B1Password = Trim(ActiveCell.Value2) 'set Business One password
        ActiveCell.Offset(1, 0).Activate
        sqluser = Trim(ActiveCell.Value2) 'set SQL user
        ActiveCell.Offset(1, 0).Activate
        sqlpass = Trim(ActiveCell.Value2) 'set SQL password
        ActiveCell.Offset(1, 0).Activate
        Db = Trim(ActiveCell.Value2)      'set Database name
        ActiveCell.Offset(1, 0).Activate
        Server = Trim(ActiveCell.Value2)  'set Server name
        Set company1 = New SAPbobsCOM.Company  'initialate DI company object
        company1.DbServerType = dst_MSSQL2005
        company1.Server = Server
        company1.DbUserName = sqluser
        company1.DbPassword = sqlpass
        company1.CompanyDB = Db
        company1.UserName = B1UserID
        company1.Password = B1Password
        'connect to the database
         lRetCode = company1.Connect
            If lRetCode <> 0 Then
                sErrMsg = company1.GetLastErrorDescription
                MsgBox (sErrMsg)
            Else
                MsgBox ("Connected to: " & company1.CompanyName)
            End If
    End Sub
    pls help me
    advance thanks to solvers

    Gordons way is the easiest - just query the OJDT table for journal entry headers and JDT1 for journal entry lines if needed.
    But if you want to work with the business objects:
    'Journal entry
       Dim oJE As SAPbobsCOM.JournalEntries
       Set oJE = company1.GetBusinessObject(oJournalEntries)
       oJE.GetByKey(1234)
       Dim postingDate as String
       postingDate = oJE.DueDate
    'etc etc

  • Preview of Journal Entry - G/L effect , GL Mapping reference

    Hi All,
    I have observed that due to non availability of preview of Journal Entry - G/L effect, there are chances that customer/users come to know of wrong G/L Mapping after the posting of transaction.
    If an option to preview the G/L effects before adding a transaction e.g. A/R Invoice,Sales Delivery etc... is available than the customer/user can rectify the G/L Mapping or the G/L selection at the transaction level.
    Also if one column say GL mapping reference can be added in Journal Entry, the purpose is to store infromation from where the SAP B1 has picked up the GL e.g. from GL increase , GL deccrease , Price Difference from Item Group,Ware House,Item Level GL Mapping.
    Best Regards,
    Samir Gandhi
    Edited by: Samir Gandhi on Apr 22, 2009 7:30 PM

    Dear Peter Dominik,
    I think it is good to show the to be Journal entry effect on click on Add botton, this way user will not have to take additional pain click on preview button to see the JE, but for all cases every user will have to forcefully see the JE screen and confirm that it is OK, and he/she will not be able to change it.
    BR
    Samir Gandhi

  • Differrent date between AP Credit Memo and Journal Entry

    Hi!
    I don't know why AP Credit Memo posting date = '31/08/2011' but Journal Entry record posting date ='1/9/2011'.
    Change log on AP Credit Memo Create date ='31/08/2011' and change log on Journal Entry Create date='1/9/2011'
    APCredit Memo and Journal Entry link together.
    I try to make AP Credit Memo again and check. It's ok. It's not always happen just 1 Entry has problem.
    pls help me solve this problem

    HI Darius Gragasin!
    we use SAP 8.81 PL5.
    yesterday I try to check and reconize something:
    There are many trans from AR different date than Journal Entry but same month
    It's happen on date all user open addon (addon just help user load data from excel and put data on Sales order --> user add Sales order, addon don't add data), another date It's ok
    so, I think this problem by SDK but I don't know how to control SDK with this problem
    Regards,
    Hong Bich

  • Business partner balance does not match journal entries message

    Dear All,
    The error message "Business partner balance does not match journal entries" appears in customer receivable report print preview. This is happened While generating the Customer Receivables Aging report by sales documents. What is the main cause ? How to resolve it ? Thanks a lot
    Rgds,
    Edu

    Hello,
    I've got solution from SAP notes. From the notes, the problem is probably caused by :
    1. Inconsistent Reconciliation
    2. Unbalanced Reconciliation
    3. Document is closed but the Document Journal Entry is Unreconciled
    4. Business Partner Balance is Incorrect
    5. Reconciling Part of Split Payment's Journal Entries
    There aresome queries need to run in order to solve the problem. If you are not a partner, let me know your e-mail so that I could send.
    Rgd,

  • Manual Document Number for Journal Entry

    I tried to upload invoices via DTW. I used manual doc. series for those invoices. SAP automatically creates a journal entry for every invoice but with it's auto numbering series. How can I use manual number for journal created by system? Thank's a lot.

    Hi,
    as far as I know, there is no manual option series like in document e.g. sales order.
    you could create new series and it is intended to manual operation of journal entry. By using this way, we can manage and differentiate the journal entry document numbering. Which one is for document accounting transaction journal and memorial journal (manual journal).
    Rgds,
    (http://tech.groups.yahoo.com/group/SBO_Knowledge_Village/ )

  • Serie of Journal Entry

    Hi,
    I have a question about the operation of the selection automatic entries in the series in journal entry. When a document is posted in the posting period 2009, for example, the documents of sales or purchase, the series is selected correctly. However, the corresponding journal entry don´t selected a series correctly, posting the series of journal entry predefined.
    The configurations of the posting period, period indicators and document numbering (series) are correct, ie, the period indicators is associated with the posting period and series.
    I read SAP Note 1052551, and this refers the new rules for Document Numbering Series selection on Manual Journal Entries, but the automatic Journal Entries nothing is indicated.
    How it controls the automatic posting journal entry in the right series?
    Regards,
    Sandra Pereira

    Hi Sandra Pereira,
    You may check this: How to do Back Entries of Previous Financial Year in 2007
    Thanks,
    Gordon

  • Journal Entries

    Hello i am recently got a job and facing some problem in understanding the logic behind the job.:
    Please help me with following query
    1) What would be the journal entry for goods transfered to sperate location in SAP for damage and destory?
    When we get the goods damaged during transits or in warehouse then we move the goods to sperate location and at the end of the month after taking necessary approval we sale it to the scrap vendor or destroyed it as per the company policy.
    similarly when goods cross the Expiry date then it will be sold out or destroied as unfit for consumption
    Please note that we are in FMCG business
    Now, please help me what would be the journal entry when goods are received and transfer to specific location.
    for example: If there is STO of 100 product and we received 90 product in good condition and remaining in damaged condition, then we will do the grn for full amount of order and then using movement type will transfer the 10 damaged goods to DDIT (damaged and destory goods in transits) and then at the end of the month after necessary approval, this goods are sold out or burn or dump below the earth.so what would be the journal entry along with logic if possible.

    Hi,
    Please go through the user guides of various modules which give you information on JE created for various transactions.
    Or go through the online documentation on various modules.
    for example -
    For AR the userguide shows the various accounting entries in Chapter 7 -25.
    for all transactions
    I hope this helps
    thanks and regards,
    Raj..

  • Purchase Indent & Journal Entry Parking

    Dear All,
            If it is possible can Purchase Indent form be taken care off in the coming patches of SAP B1 in near future.
           Also is it possible by the Product Enchancement Team of SAP B1 to bring up with a feature of Journal Entry Parking whenever Marketing Document like GRPO, A/P Invoice, Delivery, A/R Invoice etc. is been Posted.
           Journal Entry Parking means the Journal Entries are saved in a Draft mode. Unless and until the Finance head adds that Draft the accounting entries is not been passed.
           Please look into this matters. As this things can make the Product more workful within SME's.
        Regards
    Hitesh Parsawala

    Dear Peter,
             The reason for not making the Journal Entry Posting Immediately is because when some Enduser is making GRPO or Purchase Invoice or Sales Delivery or Sales Invoice that Enduser is not known to Accounting concepts.
             So what happens at that time if the JE Posting is done immediately after making any Marketing Documents like GRPO or Purchase Invoice or Sales Delivery etc that Journal Entry Passed could not be changed.
             Now instead of the Journal Entry if a Journal Voucher is passed at the time of Posting of Marketing Docuement like GRPO or A/P Invoice or Sales Delivery or A/R Invoice than the Accounts or Finance Manager can check the Journal Vouchers and hence once the Journal Vouchers are checked those Journal Vouchers can be further Posted as Journal Entries by the Accounts Manager.
           Hence this feature will lead to less errors within Accounting in SAP B1. Also the Accounts Manager will stand more responsible if any wrong entries has been passed.
    Regards
    Hitesh Parsawala

Maybe you are looking for