Purchase Query through Control Account - Correction

Dear Experts,
                    Can anybody help me to correct the below query, where I need to incorporate the Control Account (OINV-Ctlaccount) as one another selection parameter in the existing one.
Try this :-
DECLARE
@StartDate DATETIME,
@EndDate DATETIME,
@Dummy INTEGER
SELECT TOP 1 @Dummy = DocNum
FROM OPCH T0
WHERE T0.DocDate >= [%1]
AND T0.DocDate <= [%2]
SELECT
@StartDate= '[%1]'
@EndDate = '[%2]'
SELECT DISTINCT
T0.DocEntry,
T0.DocNum AS 'A/P Inv Num',
CONVERT(VARCHAR(10), T0.DocDate, 3) AS 'Bill Date',
T0.CardName AS 'Supplier Name',
-- T1.Dscription AS 'Item Description',
----T1.Quantity,
--T1.Price AS 'Price',
--T1.TaxCode,
SUM(T1.LineTotal) AS 'Asscessable Value',
MAX(T1.TaxCode),
--t1.vatsum as 'TaxAmount',
T0.TOTALEXPNS AS [Freight Amount],
(SUM(T1.LineTotal)+SUM(T1.VATSUM)+T0.TOTALEXPNS+T0.rounddif) as [TotAmt],
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (11,-90)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'BED',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN( -60,12)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'Cess',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (-55,13)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'HeCess',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (5)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'Service',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (6)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'Cess_ST',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (-10)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'HSCess_ST',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (1,15)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'VAT',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType = 4
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'CST',
T0.Comments
--,ISNULL(T10.WTCODE,0) AS [WTCODE],ISNULL(T10.RATE,0) AS [RATE],ISNULL(T10.WTAMNT,0) AS [WTAMNT]
FROM OPCH T0 INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
LEFT JOIN PCH5 T10 ON T0.DOCENTRY = T10.ABSENTRY
LEFT JOIN OACT T99 ON T99.ACCTCODE = T1.ACCTCODE
WHERE T0.DocDate >= @StartDate
AND T0.DocDate <= @EndDate
AND T1.TargetType < > 19
--AND T0.DOCENTRY = 8679
AND (T99.ACCTname = '[%3]' OR '[%3]' = '')
GROUP BY T0.DOCENTRY,T0.DOCNUM,T0.DOCDATE,T0.CARDNAME,T0.TOTALEXPNS,T0.ROUNDDIF,T0.COMMENTS
FOR BROWSE
Thanks in Advance,
Bhoopathi.K

Hi,
Try this:
DECLARE
@StartDate DATETIME,
@EndDate DATETIME,
@Dummy INTEGER
SELECT TOP 1 @Dummy = DocNum
FROM OPCH T0
WHERE T0.DocDate >= [%1]
AND T0.DocDate <= [%2]
SELECT
@StartDate= '[%1]'
@EndDate = '[%2]'
SELECT DISTINCT
T0.DocEntry,
T0.DocNum AS 'A/P Inv Num',
CONVERT(VARCHAR(10), T0.DocDate, 3) AS 'Bill Date',
T0.CardName AS 'Supplier Name',
-- T1.Dscription AS 'Item Description',
----T1.Quantity,
--T1.Price AS 'Price',
--T1.TaxCode,
SUM(T1.LineTotal) AS 'Asscessable Value',
MAX(T1.TaxCode),
--t1.vatsum as 'TaxAmount',
T0.TOTALEXPNS AS [Freight Amount],
(SUM(T1.LineTotal)+SUM(T1.VATSUM)+T0.TOTALEXPNS+T0.rounddif) as [TotAmt],
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (11,-90)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'BED',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN( -60,12)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'Cess',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (-55,13)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'HeCess',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (5)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'Service',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (6)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'Cess_ST',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (-10)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'HSCess_ST',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType IN (1,15)
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'VAT',
(SELECT DISTINCT ISNULL (SUM(PCH4.TaxSum),0)
FROM PCH4
WHERE PCH4.StaType = 4
AND PCH4.DocEntry = T0.DocEntry
-- AND PCH4.LineNum = T1.LineNum
) AS 'CST',
T0.Comments
--,ISNULL(T10.WTCODE,0) AS [WTCODE],ISNULL(T10.RATE,0) AS [RATE],ISNULL(T10.WTAMNT,0) AS [WTAMNT]
FROM OPCH T0 INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
LEFT JOIN PCH5 T10 ON T0.DOCENTRY = T10.ABSENTRY
LEFT JOIN OACT T99 ON T99.ACCTCODE = T0.[CtlAccount]
WHERE T0.DocDate >= @StartDate
AND T0.DocDate <= @EndDate
AND T1.TargetType < > 19
--AND T0.DOCENTRY = 8679
AND (T99.ACCTname = '[%3]' OR '[%3]' = '') OR  (T99.[AcctCode] = '[%4]' OR '[%4]' = '')
GROUP BY T0.DOCENTRY,T0.DOCNUM,T0.DOCDATE,T0.CARDNAME,T0.TOTALEXPNS,T0.ROUNDDIF,T0.COMMENTS
FOR BROWSE
Thanks & Regards,
Nagarajan

Similar Messages

  • My daughter has purchased music through my account and would like to start her own account and transfer her purchases there.  Can this be done?

    Is there any way of moving her music to her new account/computer?  Will she have to re-purchase all of her music in order to accomplish this feat?  I have no problem dis-associating this music with my account.  Can it be done?

    Syncing to a new iTunes library or computer will erase her ipod. Only if you back up manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect her ipod to her new computer and right click on it in the device list and choose backup. iTunes will backup your device without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect her ipod for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPod for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in itunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread: http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved:iTunes: About iOS backups
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device

  • I have £16.50 on my account, when i go to purchase a song Itunes wants me to purchase it through a credit card? why can i use my account money?

    I have £16.50 on my account, when i go to purchase a song Itunes wants me to purchase it through a credit card? why can i use my account money?

    Assuming you were not buying a gift for someone else - gifts cannot be purchased using a credit balance - another user in the forums posted this as the reply from the iTunes Store when this issue was brought up. Perhaps it will help you. If problems persist, contact the iTunes Store:
    http://www.apple.com/emea/support/itunes/contact.html
    Regards. 
    I'm sorry you weren't able to make a purchase using your store credit. To purchase items on the iTunes Store with your store credit, your account information in your user profile needs to be corrected. I'll walk you through this process to get you back up and running in no time. 
    1) Visit the My Apple ID website at:  http://appleid.apple.com 
    2) If the site is not displayed in your preferred language, click the Change Language link in the upper-right corner, type the name of your language in the field that appears, then click the Save button. 
    3) Click the "Manage your account" link. 
    4) Type your iTunes Store account name (which is your Apple ID) in the Apple ID field, type your password in the password field, then click the Sign In button. 
    5) Click "Addresses" in the column on the left. If you have multiple shipping addresses, remove any out-of-date or duplicate addresses by clicking Delete. Also, make sure the state or province field is filled out correctly for each address. To edit an address, click Edit. Edit all of your shipping addresses and make sure the appropriate state is selected in the State drop-down menus. 
    6) Now click "Phone Numbers" on the left. The area codes should be in the area code fields and the phone numbers should be in the phone number fields. If an area code is missing, or if it is in a phone number field, your account information may not save properly. 
    7) Make any other necessary corrections, then click the Save Changes button. 
    8) Click Log out in the upper-right corner.  When you make your next purchase on the iTunes Store, you will be asked to review your billing information. At this point, you can change your information or simply click Done at the bottom of the screen to proceed. Once you click Done, you should be able to purchase on the iTunes Store using your store credit. 

  • Will i be able to install some of my personal apps(purchased on my itunes account) onto the ipad that is registered through my company ipad account?

    I have had an ipad for a  while, but my company is buying me one to use for work..  Will i be able to install some of my personal apps(purchased on my itunes account) onto my ipad that is registered through my company ipad account?
    I want to try and get out of having to cary both ipads with me everywhere i go...

    No need to switch. You can use both his apps, music, etc. and yours.

  • A purchase has gone through my account when I did not authorise it.

    A purchase of 4 games has gone through my account.  I did not buy these 4 games - I don't want them.  How do I delete these items and get my money back.

    Would love to do the things you suggest BUT the itunes credit were purchased using cash to buy an itune card and can't find the right number to ring itunes support - I have tried to do it on line but they are asking me questions about my account which I would not have a clue how to answer - I have changed my password.

  • TS1702 Already purchase applications through apple ID is not showing in apps store purchase history of apps and If I try to download the same application in apps store  its showing paid application in apps store with using same apple ID account. Please re

    Already purchase applications through apple ID is not showing in apps store purchase history of apps and If I try to download the same application in apps store  its showing paid application in apps store with using same apple ID account.

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • I bought student mac air through university account, Iworks were included when I purchased mac air. But there are no iworks and It's not free when I tried to download from App Store

    I bought student mac air through university account, Iworks were included when I purchased mac air. But there are no iworks and It's not free when I tried to download from App Store. OS was OS X Mountain Lion 10.9 When I received it. Is it because of OS? I upgraded to OS X Mavericks right after I got it.

    Today, I went to the mac store and asked the staff about above issue. Apple obviously sent me a mac air which was manufactured before October 2013 and therefore, iworks and OX Mavericks weren't installed. I have refund for around £45 to purchase iworks. However, I wasn't happy with what Apple actually did. I asked for replacement and refund the one I got and getting the new one from store so I can use mac straight away. however, the refund takes 5-7 working days. The staff on the phone told me if I have enough money I can just buy the new one in the store and get refund later. So I gave up! I was so disappointed with Apple. Even though I use the mac now, this was not the one Apple promised when I purchased online. if anyone would like to buy a mac, Please go to the actual store. DO NOT buy a mac through MAC ONLINE STORE!!! I strongly recommend! I feel like I wasted my time because the company doesn't keep its promise.

  • Accounts lock after managing users through control panel

    I have an account lockout issue that is reproducible and exists across many devices.
    These systems are Win 7 Professional 32-bit, not domain members, and fairly locked down via local Group Policy - I suspect the issue is in there, but I can't identify it. There are normally two administrator
    accounts (this might be important - see below) and one or more unprivileged user accounts.
    To reproduce the issue, I log in to one of the admin accounts, create or delete a standard user through Control Panel>User Accounts, and then log off. Immediately both admin accounts are locked out.
    I can log in as the standard user I just created, but have to unlock the admin accounts by booting to DVD. The event log shows the admin account log off, followed immediately by 3 credential validation failures for the other admin account
    - that is, the account that was not logged in when the user management was performed. I can't imagine where these cred validation failures are coming from, but per Local Group Policy, 3 failures should indeed lock the account. Logs show
    no reason at all (AFAIK) for the first admin account - the one actually doing the user management - to be locked.
    If I add or remove users through compmgmt.msc, there are no issues of any kind.
    As I said, I can reliably reproduce this issue on multiple machines. Any thoughts?

    I've just come across this same issue on a Windows 2008 Server.  When entering the User Accounts control panel, a failed logon event is immediately triggered (from dllhost.exe, logon type 2, status code of "bad password") targeting the current user
    account.  When clicking the "Manage another account" link, a similar failed logon event is triggered for every account that is listed on that screen.  If this screen is opened multiple times, it's possible to lock out every account on the system.
    It's not clear to me why the User Accounts control panel would be attempting to authenticate as any of these accounts, but in the short term, we'll probably use a GPO to prevent access to this particular control panel.  Any administration of local accounts
    should be done via MMC consoles anyway.
    Not sure if Home Edition desktop operating systems have the same option, or if the same behavior occurs there.

  • HT204088 Every time I try to look at my purchase history on my account, I keep getting a message saying that my session has timed out. How do I correct this?

    Every time I try to look at my purchase history on my account, I keep getting a message saying that my session has timed out. How do I fix this problem?

    Same thing happens to me as well. Might be a community wide problem, I tried entering my information on multiple devices and it doesn't wanna work, it gives me the same error when trying to purchase it's a good day to die hard

  • Diferente Control Account in A/P Credit Memo copied from A/P Invoice

    I have a strange situation in SBO2007. An A/P Invoice for Vendor X was created duplicating an A/P Invoice from Vendor B. The new Invoice was created with a differente Control Account from the assign in BP Master Data of Vendor X. The Invoice waas copied to a A/P Credit Memo but it used the right control account these time. Now I have an Invoice and a Credit Memo that reconcile each other but with different control accounts.. What is the best way to correct or undo these situation ?

    Hi,
    This problem is solved in B1 2007A SP01 PL12. To prevent this issue, you upgrade your current B1 version to the PL.
    The existing problem in the db can be solved by SAP Support. Log a message to SAP support to obtain  the solution.
    Prior to uprade and log message, check this note 1463211:
    Incorrect Control Account when duplicating invoice
    Symptom
    Create an AP Invoice for a Business Partner(BP1). Duplicate this invoice to another Business Partner(BP2) who has different control account. The journal entry of the duplicated invoice posts the amount to control account of BP1 instead of BP2.
    Behavior is reproducible for AR Invoice as well.
    Other terms
    Control Account, Payables Control Account, Receivables Control Account, Journal Entry, Incorrect Control Account, Duplicate Invoice, JE, SAP Business One
    Reason and Prerequisites
    Application error
    Solution
    SAP intends to provide a patch or patches in order to solve the problem described.
    The section Reference to Related Notes below will list the specific patches once they become available.
    The corresponding Info file of the patches in SAP Service Marketplace will also show the SAP Note number.
    Be aware that these references can only be set at patch release date.
    SAP will deliver patches only for selected releases at its own discretion, based on the business impact and the complexity of the implementation.
    In order to detect whether this issue affect your DB, please run the
    following query :
    SELECTt1.BaseRef as 'DocNum', t1.transid, t1.shortname [BP code], t1.account [account.jdt1], t0.debpayacct [BP control acct],
    CASE
    WHEN t1.transtype = '13' THEN 'A/R Invoice'
    WHEN t1.transtype = '18' THEN 'A/P Invoice'
    WHEN t1.transtype = '14' THEN 'Credit Memo'
    WHEN t1.transtype = '15' THEN 'A/P Credit Memo'
    WHEN t1.transtype = '204' THEN 'A/P Down Payment'
    WHEN t1.transtype = '203' THEN 'A/R Down Payment'
    ELSE 'Others'
    END
    FROM jdt1 t1
    inner join ocrd t0 on t1.shortname = t0.cardcode
    WHERE t1.account <> t1.shortname and t1.account <> t0.debpayacct
    AND TransType in (13, 18, 14, 15, 204, 203)
    If the above query retrieves results, please log a support message
    via the Service Marketplace referring to this note including all
    relevant information.
    Apply the solution of the note to solve your problem.
    JimM

  • What is Control Accounts? What is C/A for A/R and A/P?

    I have US COA set up automatically by SBO. So all accounts are already set up there.
    When I go to: Administration > Setup > Financial > G/L Account Determination:
    In Sales (general) tab, I noticed Account Receivable with (...) next to it.
    When I clicked it, it will bring window of Control Accounts for A/R.
    In Purchasing (general) tab, I noticed Account Payable with (...) next to it.
    When I clicked it, it will bring window of Control Accounts for A/P.
    1. What is this Control Accounts?
    Can I leave it blank as it is? If I left it blank, will it affect financial result? If the answer is it is OK to leave it blank then no need to answer my questions below. If I need to fill it out, then I need help with questions # 2  and # 3 below.
    2. Inside this Control Accounts for A/R: (note: we do business Domestic only)
    What will be the correct Account Code for Down Payment Receivable? (My guess it is A/R Domestic)?
    What will be the correct Account Code for Open Debts? (My guess it is A/R Domestic)?
    3. Inside this Control Accounts for A/P: (note: we do business Domestic only)
    What will be the correct Account Code for Down Payment Payable? (My guess it is A/P Domestic)?
    What will be the correct Account Code for Open Debts? (My guess it is A/P Domestic)?
    What will be the correct Account Code for Assets Account? (My guess it is A/P Domestic)?
    Thank you.

    Hi Tom
    You can define a G/L account as a control account.
    A control account links the business partner accounts to the general ledger. You must enter a control account in every business partner master record. Whenever you post a document to a business partner account, the system automatically adds a journal entry to the general ledger, which posts the receivables or payables to this control account.
    Some transactions, such as transactions with bills of exchange, must be posted to special control accounts. Therefore, you can assign these special accounts to predefined transaction types, such as
    Open Debts, Assets Account, Down Payments Receivable/Payable or other (country-dependent).
    You can also enter default control accounts under Administration &#61614; Setup &#61614; Financials &#61614; G/L Account Determination. These accounts appear by default whenever you create a new business partner.
    The system displays the total account balance in the business partner master record. From there you can navigate to the line item display of the account. In the line item display, the system displays the debit values in black and the credit values in green and in parentheses.
    If you are working with several control accounts, the system can display the business partner balances separately for every control account. To activate this, choose Administration &#61614; System Initialization &#61614; General Settings and select the Display Accounts Balance by Control Accounts indicator on the BP tab.
    You must have the proper authorization to view the accounts and balances.
    Hope this helps.
    Nagesh

  • How to reconcile customer balances with control accounts

    Hi!
    Sanjay Here,
    1. how to reconcile the customer balances  pl. explain in details.
    2. how to reconcile the customer balance with control accounts
    3. how to do the automatic clearing through T code f.13. pl. give us the screen shots if available.
    4. how to reset the T-code f.32 clearing documents, if wrongly showing in customer balance.

    1. how to reconcile the customer balances pl. explain in details &
    2. how to reconcile the customer balance with control accounts
    Ans:- Thru report painter T-code FGI4 (Form) & Report FGI1 using cutomer summary table we can define report, which shall give the desired requirement. It give customer wise & controll account wise balances.
    3. how to do the automatic clearing through T code f.13. pl. give us the screen shots if available
    Ans. F.13 is used for GL automatic clearing basing on the required config for GL . Like GR/IR clearing is there in automatic posting we have to define COA, GL & creteria1, creteria2 ..... Incase of GR/IR field name can be VBUND (Purchase order). When configure this in F.13 when we check the check box GR/IR and GL system shall look for setting for automatic clearing based on creteria it shall automatically clear.
    4. how to reset the T-code f.32 clearing documents, if wrongly showing in customer balance
    Ans. To reset a claerinf document Tcode is FBRA. Reset the clearing doc first and reverse the doc Tcode FB08.
    Thanks
    Colin Thomas

  • Down Payment Receivable control account?

    Hi All,
    I was hoping someone could help clarify account determination for me.
    Currently I have assigned a 'Down payments received clearing account' as a liability account. Is this correct?
    Then If I click the accounts recevable "..." I am presented with the control account selection for "Open Debts" and "Down Payment receivables". I have selected this as "Trade Creditors Domestic".
    When taking DP invoice payments I can see that the DP payments received liability account is posted to correctly. When the DP Invoice payment gets applied to the AR invoice, the account is cleared as expected. I think this is correct.
    I am however confused as to the control account determination. I dont see any postings made during this process. What should I see?
    Many thanks.
    John
    Edited by: Jantzman on Jul 26, 2010 4:06 AM
    Sorry... I clicked post before I as ready .. oops.

    Hello John...
    I am not sure what the Accounting Standards are where you are located, but generally a payment is not defined in the Liability Drawer, but in the Asset Drawer (because you are bringing in an asset of Cash - the so-called above posting).  Of course, the company has to really define that...it is only a temporary holding account from "Down Payments Received" to permanent "Cash" account ...
    I would suggest that you speak directly with the Finance folks of the company you are working with.  Folks in the forum will give you the correct answer as they understand it, but in financial postings the "correct answer" can vary so widely.  The only people who know how their individual books and related transactions work are the accounting/financial folks.  And some times they even have some differing opinions.  During the Blue Print Phase of Implementation I always sit in on the discussions to explain how SAP B1 works and we use the old school T accounts to walk through each scenario.   But the accountants/financial personnel are the ones who have the final say, because they are the ones who will be living with it for years to come.
    Regards,
    Zal

  • User exit/BADI  for Purchase requisition through release of Process order

    Hi ,
    i need to add some text to the Pur Req.
    The Pur Req will be created THROUGH the release of PROCESS order. Please let me know any exits are available for the same.
    regards

    Hi
    Check the following Exits and BADI for Pur Requisition
    Enhancement
    MEVME001                                WE default quantity calc. and over/ underdelivery tolerance
    MM06E001                                User exits for EDI inbound and outbound purchasing documents
    MM06E003                                Number range and document number
    MM06E004                                Control import data screens in purchase order
    MM06E005                                Customer fields in purchasing document
    MM06E007                                Change document for requisitions upon conversion into PO
    MM06E008                                Monitoring of contr. target value in case of release orders
    MM06E009                                Relevant texts for "Texts exist" indicator
    MM06E010                                Field selection for vendor address
    MM06E011                                Activate PReq Block
    MMAL0001                                ALE source list distribution: Outbound processing
    MMAL0002                                ALE source list distribution: Inbound processing
    MMAL0003                                ALE purcasing info record distribution: Outbound processing
    MMAL0004                                ALE purchasing info record distribution: Inbound processing
    MMDA0001                                Default delivery addresses
    MMFAB001                                User exit for generation of release order
    MRFLB001                                Control Items for Contract Release Order
    AMPL0001                                User subscreen for additional data on AMPL
    LMEDR001                                Enhancements to print program
    LMELA002                                Adopt batch no. from shipping notification when posting a GR
    LMELA010                                Inbound shipping notification: Transfer item data from IDOC
    LMEQR001                                User exit for source determination
    LMEXF001                                Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001                                Customer-Specific Source Determination in Retail
    M06B0001                                Role determination for purchase requisition release
    M06B0002                                Changes to comm. structure for purchase requisition release
    M06B0003                                Number range and document number
    MEQUERY1                                Enhancement to Document Overview ME21N/ME51N
    MELAB001                                Gen. forecast delivery schedules: Transfer schedule implem.
    MEFLD004                                Determine earliest delivery date f. check w. GR (only PO)
    MEETA001                                Define schedule line type (backlog, immed. req., preview)
    ME590001                                Grouping of requsitions for PO split in ME59
    M06E0005                                Role determination for release of purchasing documents
    M06E0004                                Changes to communication structure for release purch. doc.
    M06B0005                                Changes to comm. structure for overall release of requisn.
    M06B0004                                Number range and document number
    Business Add-in
    ME_PROCESS_REQ_CUST                     Enhancements for Processing Enjoy PReqs: Customer
    ME_PROCESS_REQ                          Enhancements for Processing Enjoy PReqs: Internal
    ME_PROCESS_PO_CUST                      Enhancements for Processing Enjoy Purchase Order: Customer
    ME_PROCESS_PO                           Enhancements for Processing Enjoy Purchase Order: Intern.
    ME_PROCESS_COMP                         Processing of Component Default Data at Time of GR: Custome
    ME_PO_SC_SRV                            BAdI: Service Tab Page for Subcontracting
    ME_PO_PRICING_CUST                      Enhancements to Price Determination: Customer
    ME_PO_PRICING                           Enhancements to Price Determination: Internal
    ME_INFOREC_SEND                         Capture/Send Purchase Info Record Changes - Internal Use
    ME_HOLD_PO                              Hold Enjoy Purchase Orders: Activation/Deactivation
    ME_GUI_PO_CUST                          Customer's Own Screens in Enjoy Purchase Order
    ME_FIELDSTATUS_STOCK                    FM Account Assignment Behavior for Stock PR/PO
    ME_DP_CLEARING                          Clearing (Offsetting) of Down Payments and Payment Requests
    ME_PURCHDOC_POSTED                      Purchasing Document Posted
    SMOD_MRFLB001                           Control Items for Contract Release Order
    EXTENSION_US_TAXES                      Extended Tax Calculation with Additional Data
    ARC_MM_EKKO_WRITE                       BAdI: Enhancement of Scope of Archiving (MM_EKKO)
    ARC_MM_EKKO_CHECK                       BAdI: Enhancement of Archivability Check (MM_EKKO)
    MM_EDI_DESADV_IN                        Supplementation of Delivery Interface from Purchase Order
    MM_DELIVERY_ADDR_SAP                    Determination of Delivery Address
    ME_WRF_STD_DNG                          PO Controlling Reminder: Extension to Standard Reminder
    ME_TRIGGER_ATP                          Triggers New ATP for Changes in EKKO, EKPO, EKPV
    ME_TRF_RULE_CUST_OFF                    BADI for Deactivation of Field T161V-REVFE
    ME_TAX_FROM_ADDRESS                     Tax jurisdiction code taken from address
    ME_REQ_POSTED                           Purchase Requisition Posted
    ME_REQ_OI_EXT                           Commitment Update in the Case of External Requisitions
    ME_RELEASE_CREATE                       BAdI: Release Creation for Sched.Agrmts with Release Docu.
    ME_DEFINE_CALCTYPE                      Control of Pricing Type: Additional Fields
    ME_CHANGE_OUTTAB                        Enrich ALV Output Table in Purchasing
    ME_CHANGE_CHARACTER                     Customer-Specific Characteristics for Product Allocation
    ME_CCP_DEL_DURATION                     Calc. of Delivery Duration in CCP Process (Not in Standard)
    ME_CCP_BESWK_AUTH_CH                    BAdI for authorization checks for procuring plant
    ME_CCP_ACTIVE_CHECK                     BAdI to check whether CCP process is active
    ME_BSART_DET                            Change document type for automatically generated POs
    ME_BAPI_PR_CREATE_02
    ME_BAPI_PR_CREATE_01
    ME_BAPI_PO_CREATE_02
    ME_BAPI_PO_CREATE_01
    ME_BADI_DISPLAY_DOC                     BAdI for Internal Control of Transaction to be Invoked
    ME_ACTV_CANCEL_PO                       BAdI for Activating the Cancel Function at Header Level
    MEGUI_LAYOUT                            BAdI for Enjoy Purchasing GUI
    ME_CHECK_ALL_ITEMS                      Run Through Items Again in the Event of Changes in EKKO
    ME_COMMTMNT_REQ_RE_C                    Check of Commitment Relevance of Purchase Requisitions
    ME_COMMTMNT_REQ_RELE                    Check of Commitment Relevance of Purchase Requisitions
    ME_COMMTMNT_PO_REL_C                    Check for Commitment-Relevance of Purchase Orders
    ME_COMMTMNT_PO_RELEV                    Check for Commitment-Relevance of Purchase Orders
    ME_COMMITMENT_STO_CH                    BadI for checking if commitments for STOs are active
    ME_COMMITMENT_RETURN                    Commitment for return item
    ME_CIP_REF_CHAR                         Enables Reference Characteristics in Purchasing
    ME_CIP_ALLOW_CHANGE                     Configuration in Purchasing: Changeability Control
    ME_CIN_MM06EFKO                         Copy PO data for use by Country version India
    ME_CIN_LEINRF2V                         BADI for LEINRF03 excise_invoice_details
    ME_CIN_LEINRF2R                         BADI for CIN India - Delivery charges
    ME_CHECK_SOURCES                        Additional Checks in Source Determination/Checking
    ME_CHECK_OA                             Check BAdI for Contracts
    Reward points if useful
    Regards
    Anji

  • Control account in JE

    Hi, everybody
    In SAP B1. i only can get customer in JE and control account which i set in Accounting Screen tab( BP screen).
    Now i want get other control accounts that i don't set in this screen, with me this is very important
    Can i use what query or the way . Can you help me! Thank you very much

    Tien Le,
    The Accounts that you see in the JE screen using the Tab key for GL or Control+Tab for BP are the only Accounts that can be used in a JE.  If you are talking about AR and AP control account, these cannot be posted directly through JE and will only be used when an AR or AP transaction happens.
    Suda

Maybe you are looking for

  • Slow access to local WebServer using Internet Sharing

    Hi, I have a MacPro with a WLAN. Sometimes I use internet sharing to access the internet with my iPhone. When using the "Browse the Web" feature of Goodreader to access some files on my MacPro it took very long until I get a directory listing on the

  • How to change Syntax group and physical path in SARA from unix to windows.

    Our customer migrate current current archiving server from Unix to windows How to change Syntax group and physical path in SARA from unix to windows.

  • Relocation error

    Hi, Does anyone know what is the possible cause of the following error when I run the application ? ld.so.1: ftexec: fatal: relocation error: file /MPS/forte3/userapp/funz ioni/cl0/FunzioniMQM.so: symbol MQCONN: referenced symbol not found in the fil

  • Materialize views logs

    hey gurus in my database we have some materialize views . and some of them are using clouse REFRESH COMPLETE and some are USING REFRESH FAST.my point of concern is " for a fast refresh we have to create mat. view logs".how can i check what are log ex

  • Unable to backup iPad/Update to 4.3

    My iPad will not update to iOS 4.3. I am getting an error message that says "ITunes could not back up the iPad '*' because an error occurred." The additional information is not particularly helpful. I am running iTunes 10.2.1. Actually this error mes