Payments Query

Hi, I have just joined Creative Cloud a month ago.  And a payment is due for today, for some reason the payment did not go of to "insufficient funds" just after I recieved it I transferred money form my other account so that there is enough for the payment.
I realise that it is not the end of the day yet. But I want to make sure that you will send that payment through again.  I do not want my order canceled due to an innocent mistake.  Please let me know who I should contact or what I should do if you cannot help me.
And by the way, Adobe South Africa's website is totaly broken and their helpline is unavailable. There realtime chat functionality is also not working so Adobe SA you suck!    
Jeanne

Hi JeanneCurrie
Payment will be automatically attempted again and you will continue to have access to your subscription while this is done.
I'm sorry you were unable to contact us via Phone or Chat.  Did you use the options on this page - http://helpx.adobe.com/africa/contact.html?product=creative-cloud&topic=billing-account-an d-adobe-id
Thanks
Bev

Similar Messages

  • Incoming payment  Query Help

    Due Date
    Invoice amount
    Receipt Number
    Payment Date
    Paid amount.
    For all Receipt I tried to link Invoice. RCT2 ORCT and OITR and ITR1 table to get all invoices and receipt including reconciled one. but my  query is not linking reconciled invoices
    Please help me to fix this issue.

    Dear Poonam,
    Have you check this query or not?
    Give a try to this query....
    Select * from (SELECT distinct T2.[CardCode],
    T2.[CardName], T2.[DocNum] [Invoice#], T2.[DocDate],
    T2.[DocDueDate], T2.[DocTotal], T0.[ReconDate] [Paid Date],
    T0.[Total] [Paid Amount],
    (Select distinct T5.DocNum from
    ORCT T5 inner join ITR1 T6 on T5.DocEntry = T6.SrcObjAbs and
    T6.SrcObjTyp = '24' where T6.ReconNum = T0.ReconNum) [Payment Num]
    FROM [dbo].[OITR]  T0 INNER JOIN ITR1 T1 ON T0.ReconNum = T1.ReconNum
    inner join OINV T2 on T1.[SrcObjAbs] = T2.DocEntry
    and T1.SrcObjTyp = 13) A
    Where A.[Payment Num] is not null
    Let me know the feedback....
    Regards,
    Bala

  • AP Outgoing Payment Query with Crystal Report

    Hi Experts, I'm trying to make query for AP Outgoing Payment followings. However, I couldn't get result of Outgoing Payment Number, TrsfrSum, CashSum, CheckSum. Is anyone could advise for this matter? Thanks,
    SELECT
    T0.DocDate as 'Posting Date',
    T0.DocNum as 'AP Invoice Number',
    T0.CardName as 'Supplier Name',
    T0.DocDate as 'Payment Date',
    T1.DocNum as 'Outgoing Payment Number ',
    T0.DocTotal as 'AP Invoice Total',
    (T0.[DocTotal] - T0.[PaidToDate]) as 'AP Sum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END AS 'TrsfrSum',
    CASE
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CashSum
    END AS 'CashSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CheckSum
    END AS 'CheckSum',
    CASE
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CreditSum
    END AS 'CreditSum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END  'Paid To Date',
    T2.CheckNum as 'Cheque Number'
    FROM OPOR T0
    LEFT JOIN OVPM T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN VPM1 T2 ON T1.DocNum = T2.DocNum
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    UNION ALL
    SELECT
    T0.DocDate as 'Posting Date',
    T0.DocNum as 'AP Invoice Number',
    T0.CardName as 'Supplier Name',
    T0.DocDate as 'Payment Date',
    T1.DocNum as 'Outgoing Payment Number ',
    T0.DocTotal * -1 as 'AP Invoice Total',
    T0.PaidToDate * -1 as 'AP Sum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END AS 'TrsfrSum',
    CASE
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CashSum
    END AS 'CashSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CheckSum
    END AS 'CheckSum',
    CASE
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CreditSum
    END AS 'CreditSum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END  'Paid To Date',
    T2.CheckNum as 'Cheque Number'
    FROM ORPC T0
    LEFT JOIN OVPM T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN VPM1 T2 ON T1.DocNum = T2.DocNum
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    ORDER BY 'CreditSum', 'CheckSum', 'CashSum', 'TrsfrSum', 'AP Sum'

    Hi Stephan,
    Try:
    SELECT
    T0.DocDate as 'Posting Date',
    'AP Invoice' as 'Type',
    T0.DocNum as 'AP Number',
    T0.CardName as 'Supplier Name',
    T0.DocDate as 'Payment Date',
    T1.DocNum as 'Outgoing Payment Number ',
    T0.DocTotal as 'AP Invoice/CR Total',
    (T0.DocTotal - T0.PaidToDate) as 'AP Sum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END AS 'TrsfrSum',
    CASE
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CashSum
    END AS 'CashSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CheckSum
    END AS 'CheckSum',
    CASE
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CreditSum
    END AS 'CreditSum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END 'Paid To Date',
    T2.CheckNum as 'Cheque Number'
    FROM OPCH T0
    LEFT JOIN OVPM T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN VPM1 T2 ON T1.DocNum = T2.DocNum
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    UNION ALL
    SELECT
    T0.DocDate as 'Posting Date',
    'AP Credit Memo',
    T0.DocNum as 'AP Number',
    T0.CardName as 'Supplier Name',
    T0.DocDate as 'Payment Date',
    T1.DocNum as 'Outgoing Payment Number ',
    T0.DocTotal * -1 ,
    T0.PaidToDate * -1 as 'AP Sum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END AS 'TrsfrSum',
    CASE
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CashSum
    END AS 'CashSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CheckSum
    END AS 'CheckSum',
    CASE
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CreditSum
    END AS 'CreditSum',
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END 'Paid To Date',
    T2.CheckNum as 'Cheque Number'
    FROM ORPC T0
    LEFT JOIN OVPM T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN VPM1 T2 ON T1.DocNum = T2.DocNum
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    ORDER BY 'CreditSum', 'CheckSum', 'CashSum', 'TrsfrSum', 'AP Sum'
    Thanks,
    Gordon

  • Daily Payment Query

    Hi Experts,
    I have got query to see daily cheque payment history which only related prior date's invoice from today.
    However, I am stuck to get right result when there are multiple seperate payment history for same customer.
    I appreciate for any helps in advance.
    SELECT
    'Cheque',
    T0.DocDate as 'Posting Date',
    T0.DocNum as 'AR Invoice Number',
    T0.CardName,
    T1.DocDate as 'Payment Date',
    T1.DocNum as 'Incoming Payment Number ',
    T0.DocTotal as 'AR Invoice Total',
    (T0.DocTotal - T0.PaidToDate) as 'AR Sum',
    CASE
    WHEN T0.ObjType = 13 THEN 'ARIV'
    WHEN T0.ObjType = 14 THEN 'ARCR'
    ELSE 'N/A'
    END AS 'Doc Type',
    CASE
    WHEN T1.Series = 12 THEN 'IPAY'
    WHEN T1.Series = 15 THEN 'OPAY'
    ELSE 'N/A'
    END AS 'Doc Series',
    T0.ObjType,
    T1.Series,
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T1.TrsfrSum
    ELSE T1.TrsfrSum
    END AS 'TrsfrSum',
    CASE
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CashSum
    END AS 'CashSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    WHEN T1.CheckSum < T0.DocTotal THEN T1.CheckSum
    ELSE T1.CheckSum
    END AS 'CheckSum',
    CASE
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CreditSum
    END AS 'CreditSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    WHEN T1.CheckSum < T0.DocTotal THEN T1.CheckSum
    ELSE T1.CheckSum
    END AS  'Paid To Date',
    T2.CheckNum as 'Cheque Number'
    FROM OINV T0
    LEFT JOIN ORCT T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN RCT1 T2 ON T1.DocNum = T2.DocNum
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    WHERE T1.CheckSum>0 AND DateDiff(D,T1.DocDate,GetDate()) = 0 AND DateDiff(D,T0.DocDate,GetDate()) > 0

    Hi,
    Check this whether this is what you require :
    SELECT
    'Cheque',
    T0.DocDate as 'Posting Date',
    T0.DocNum as 'AR Invoice Number',
    T0.CardName,
    T1.DocDate as 'Payment Date',
    T1.DocNum as 'Incoming Payment Number ',
    T0.DocTotal as 'AR Invoice Total',
    (T0.DocTotal - T0.PaidToDate) as 'AR Sum',
    CASE
    WHEN T0.ObjType = 13 THEN 'ARIV'
    WHEN T0.ObjType = 14 THEN 'ARCR'
    ELSE 'N/A'
    END AS 'Doc Type',
    CASE
    WHEN T1.Series = 12 THEN 'IPAY'
    WHEN T1.Series = 15 THEN 'OPAY'
    ELSE 'N/A'
    END AS 'Doc Series',
    T0.ObjType,
    T1.Series,
    CASE
    WHEN T1.TrsfrSum > T0.DocTotal THEN T1.TrsfrSum
    ELSE T1.TrsfrSum
    END AS 'TrsfrSum',
    CASE
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CashSum
    END AS 'CashSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    WHEN T1.CheckSum < T0.DocTotal THEN T1.CheckSum
    ELSE T1.CheckSum
    END AS 'CheckSum',
    CASE
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.CreditSum
    END AS 'CreditSum',
    CASE
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    WHEN T1.CheckSum < T0.DocTotal THEN T1.CheckSum
    ELSE T1.CheckSum
    END AS  'Paid To Date',
    T2.CheckNum as 'Cheque Number'
    FROM OINV T0
    LEFT JOIN ORCT T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN RCT1 T2 ON T1.DocNum = T2.DocNum
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    WHERE T1.CheckSum >0
    AND DateDiff(DD,T1.DocDate,GetDate()) >= 0
    ORDER BY t0.docnum
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Pending Incoming Payments Query

    I'm new in this Forum.
    My problem is to get the same information from "Banking -> Incoming Payments -> Incoming Payments (Documents for Payment)" in a query.
    I tried to know these tables through "Debug Information" but in these case I couldn't obtain them.
    Does anyone know which tables I need to retrieve these information from?
    Any reply will be welcome. Thanks a lot.

    Hi Josep,
    I think the table you are after is RCT2. The table structure for Incoming Payments is as follows:
    ORCT - Incoming Payment (header)
    RCT1 - Checks
    RCT2 - Invoices
    RCT3 - Credit Vouchers
    RCT4 - Account List
    RCT5 - Receipt VAT adjustment
    RCT6 - Withholding Tax
    RCT7 - Document Tax Amount
    If you have access to the SDK then this includes the database schema amongst the help files (in later versions of the SDK this can accessed through the SDK Help Center).
    Hope this helps,
    Owen

  • Outgoing payment query

    Hello everybody,
    Is there any way to calculate the duedate of a check I want to create in outgoing payment object according to some a/p invoices that had marked in the outgoing payment.
    I want to calculate duadate of three a/p invoices. every invoice has a diferent total value and different duedate.
    I tried to create a FMS with a UDF , but I don't know how to get the marked records from VPM2 before the outgoing payment is saved.
    Thank you all,
    Joseph

    Hi Joseph,
                   you can try this query and see if you get the desired result. Let me know.
    select T0.DocNum, T0.DocDate, T0.CardCode, T0.CardName, T1.CheckNum,T1.DueDate 'Check due date', T1.CheckSum, T1.BankCode + ' ' + T1.Branch + ' ' + T1.AcctNum Account
    from ovpm T0 inner join vpm1 T1 on T1.DocNum = T0.DocEntry
    inner join jdt1 T2 on T2.TransId = T0.TransId
    inner join dsc1 T3 on T3.BankCode = T1.BankCode and T3.Branch = T1.Branch and T3.Account = T1.AcctNum
    where T0.Canceled = 'N'
    and T2.Ref3Line = T1.CheckNum
    and T2.ExtrMatch = 0
    and T2.Account = T3.GLAccount
    order by T0.DocNum, T1.CheckNum
                   however, this query will get you a list of all the outgoing payments done!!
    Best Regards,
    Joseph Antony

  • Outgoing Payment Query with GL Name for all payment means

    Hi all
    Thanks a lot for the earlier help of Nagarajan! 
    I managed to improve this Query now the only problem is the Bank Transfer Bank account name does not appear on the same line as the Bank transfer amount.
    Please help to test execute on your Demo Database and let me know the correction.
    DECLARE @REPORTBY AS NVARCHAR(1)  
    /* SELECT FROM [dbo].[OFPR] T0 */    
    /* WHERE */ DECLARE @DATEFROM datetime   
    SET @DATEFROM =/* T0.F_RefDate */'[%0]'    
    /* SELECT FROM [dbo].[OFPR] T1 */    
    /* WHERE */ DECLARE @DATETO datetime    
    SET @DATETO=/* T1.T_RefDate */'[%1]'    
    SET @DATEFROM = '20140101'  
    SET @DATETO = '20140131'  
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
      /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.AcctName, T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T4.AcctName, T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct, T6.AcctName, T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.AcctName, T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on T5.AcctCode = t3.creditacct left join OACT T6 on t0.CashAcct = t6.AcctCode 
    WHERE T0.DocType = 'C'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO   
    UNION ALL   
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [PAY-TO NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
      /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.AcctName, T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T4.AcctName, T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct, T6.AcctName, T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName  [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.AcctName, T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on T5.AcctCode = t3.creditacct left join OACT T6 on t0.CashAcct = t6.AcctCode 
    WHERE T0.DocType = 'S'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO   
    UNION ALL  
    SELECT  ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr 
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
      /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.AcctName, T2.Currency
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T4.AcctName, T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct, T6.AcctName, T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName  [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.AcctName, T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc 
      , CASE T0.DOCTYPE WHEN 'A' THEN 0 ELSE T0.NoDocSum END [PMNT ON ACC.]
      , CASE T0.DOCTYPE WHEN 'A' THEN 0 ELSE T0.NoDocSumFC END [PMNT ON ACC. (FC)] 
      , T0.DocRate [Payment Rate]
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on T5.AcctCode = t3.creditacct left join OACT T6 on t0.CashAcct = t6.AcctCode 
    WHERE T0.DocType = 'A'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO

    Hi,
    Please post your discussion without mentioning member name.
    Try this:
    DECLARE @REPORTBY AS NVARCHAR(1)  
    /* SELECT FROM [dbo].[OFPR] T0 */    
    /* WHERE */ DECLARE @DATEFROM datetime   
    SET @DATEFROM =/* T0.F_RefDate */'[%0]'    
    /* SELECT FROM [dbo].[OFPR] T1 */    
    /* WHERE */ DECLARE @DATETO datetime    
    SET @DATETO=/* T1.T_RefDate */'[%1]'    
    SET @DATEFROM = '20140101'  
    SET @DATETO = '20140131'  
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
         /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.[AcctName], T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct,T6.[AcctName],T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct,T4.[AcctName], T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.[AcctName],T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum  left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on  T5.AcctCode = t3.creditacct left join  OACT T6 on t0.CashAcct = t6.AcctCode
    WHERE T0.DocType = 'C'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO 
    union all
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
         /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.[AcctName], T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct,T6.[AcctName], T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct,T4.[AcctName], T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.[AcctName],T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum  left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on  T5.AcctCode = t3.creditacct left join  OACT T6 on t0.CashAcct = t6.AcctCode
    WHERE T0.DocType = 'S'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO 
    union all
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
         /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.[AcctName], T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T6.[AcctName], T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct,T4.[AcctName], T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.[AcctName],T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum  left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on  T5.AcctCode = t3.creditacct left join  OACT T6 on t0.CashAcct = t6.AcctCode
    WHERE T0.DocType = 'A'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO 
    Thanks & Regards,
    Nagarajan

  • Outgoing payment query assistance.

    Hi experts,
    Can you please assist me with a query that addresses my request.
    My request is, during the outgoing payment process in the payment means we choose a G/L account.
    I want the query to show the G/L account code and it's corresponding name whether check or cash or bank transfer.
    Please this query is urgent and I need help.
    Regards
    Justice

    Hi Justice,
    I am not able to Understand Correct Requirement but Please check below Query which will give you All Modes of Account and Account Name. Please check below
    SELECT T0.[DocNum], T0.[DocDate], T1.[CheckAct] AS Check_Account, T2.[AcctName] AS Check_Account_Name, T0.[CashAcct] AS Cash_Account, T3.[AcctName] AS Cash_Account_Name, T0.[TrsfrAcct] AS Transfer_Account, T4.[AcctName] AS Transfer_Account_Name FROM OVPM T0  LEFT JOIN VPM1 T1 ON T0.[DocEntry] = T1.[DocNum] LEFT JOIN OACT T2 ON T1.[CheckAct] = T2.[AcctCode] LEFT JOIN OACT T3 ON T0.[CashAcct] = T3.[AcctCode] LEFT JOIN OACT T4 ON T0.[TrsfrAcct] = T4.[AcctCode]
    Hope this help
    Regards:::::
    Atul Chakraborty

  • Down Payments Query

    Client  has done a down payment
    Issued a purchase Order to a supplier
    supplier has invoiced in advanced in delivering the goods
    Supplier has invoiced 2 invoices for one purchase  order
    Client has made 1st payment using AP down payment invoice.
    They have taken part delivery of goods.
    Client want to enter into stock.
    Purchase Order is still open
    Can client do goods receipt based on purchase order ?
    How does the down payment fit into the accounting equation. ?
    Edited by: Darpal Thiarha on Apr 18, 2008 12:09 PM

    Hi Derpal,
    Please mention, whether the down payment was based on the purchase order? If yes, then client must have processed the A/P down payment invoice. Or if the A/P downpayment invoice is not based on the PO then the amount is paid on account. Now first of all go to A/P Invoice and for the particular vendor copy the data from PO (for the first case when the downpayment is based on a PO) you would found the button Totalo down payment. Click this button and make adjustments from the downpayment. (for the second case when the downpayment is not based on a PO) you would found in the document footer of A/P invoice a field name "Paid/Credited", here would be that amount which is paid on account and document total will be after netting-off this creditted amount.
    Regards,
    /Siddiq

  • Down payment query

    hi,
    Do down payment requests entered through FBA1 (Transaction type-A, Special GL indicater-F) show up in FBL5N report?
    I have one credit item of $1000 showing as open item in FBL5N.
    And if I go in BSID table it shows two open itemsof $1000, one credit (which i am able to view in FBL5n) and other debit entered through FBA1.
    In Aged Trial Balance report, it is setting off both line itmes and giving total as zero for that particular customer
    User wants to know if there is open item in FBL5N then why it is not showing in Aged Trial Balance.. but in reality it is setting off which I was able to view when I debugged the report.
    Actually it the DP request should not set off the amount, but it is doing for one custoerm and not doing for other...
    Can anybody help

    Hi Dave,
    The thing I have 2 customers one is X and other Y. The initaial down payment was made by them. Now user has entered dp request for both customer and both appears as open in FBL5N.
    Now if I go to Aged trial balance report, in X customer it shows intial dp payment as open which it should show and in Y customer the dp is getting set off against the dp request (i found by debugging the report)which it should as it show open item in the Aged trial balance report.
    Do you have any idea about this
    thanks

  • PLD in payments query

    Hello All,
    Could any one please help me how to get project code & Profit center code on PLD for Outgoing payment Account type.
    SAP B1 2007 B PL08
    Thanks in advance,

    project code - In header level use table OVPM - PrjCode,Row level VPM4 - Project
    Profit Centre - Row level VPM4 - Dimension/OcrCode

  • Auto Pay Program : Down payment query

    Hello Friends,
    Requesting your please help and could you please tell me,
    if Auto payment Program can access Vendors Down Payments requests & generate a payment (as per request) accordingly.

    Hai,
    In FBZP t.code First step All comp codes in that u can maintain Spl G/L Indic.
    Regards
    Madhu I

  • Sales order and incoming payment query

    Hi experts,
                     I jus need a query that contains sales order doc num, date, cust name item description doc total and how much he paid towards the document and what is the balance due....pls help me...
    regards,
    Vignesh.R

    Hi Vignesh.......
    Are you using AR Downpayment based on Sales Order?
    If yes then try this.....
    SELECT T0.[DocNum], T0.[DocDate], T0.[CardName], T0.[DocTotal], T0.[DpmAppl] FROM ORDR T0
    Regards,
    Rahul

  • Payment query

    Hi I've recently signed up with BT after moving home, all great so far except the date of the first direct debit is the 15th so due around the 23rd. As I've just moved I simply don't have the funds in my account until I get paid which is the last Friday of every month, if you go by the 14 day rule that the automated message says then that means the cut off point is before I get paid and such risk being 'cut of' then having to pay to be put 'back on'.
    Is there any way to sort this out so my payments are coming out on a more consistent date and that a note is put on my account regarding this first month. I've skint myself out moving and don't want to be getting my 'copybook' blotted in the first month with you guys!?
    Thanks.

    Welcome to this forum.
    This is a customer to customer forum only, where forum members, who are only BT customers, can help each other with BT Retail products and services.
    Anything you post here does not go to BT. Although the forum is moderated by BT, not all posts are read.
    If you would like to try Live Chat they should be able to help you.
    The only other option is monthly payment plan, where you can alter the payment date.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Advance Payment query

    Dear Experts
    We got a scenario as folllows:
    There are 10 orders billed for customer. The customer is paying for 5 orders & the same is booked in accounting.
    Now the customer is paying in advance for the new special order & not for the remaining 5 orders.
    When we place a new order how the credit check will treat this order?
    will the system consume the amount for remaining 5 orders & then take the special order? or how it will happen?
    Thanks
    J

    Hai,
    The advance money received for the new order can be booked by FI against the New order number itself, so the remaining 5 pending order will remain the same, as far as credit check is concern, if the credit limit is exceeding while creating the new order then the order will not be saved.
    Regards,
    Sudhir

Maybe you are looking for

  • ITunes freezes when I plug my ipod in

    This problem started when iTunes said it couldn't sync some of the songs to my ipod.  I think it said my ipod was corrupt or something like that so I tried to restore it.  It froze after the restore, so I unplugged the iPod.  It works when it's not p

  • Why is my macbook pro suddenly runs slow on mac os X 10.6.7?

    Hello..i'm using Macbook Pro running on Intel Core 2 Duo 2.4 Ghz with 4 Gb of memory on Mac Os X 10.6.7. I have sufficient amount of harddisk and have already clear my cache and run disk repair. However my laptop still runs slow. It happens suddenly

  • AD to OID sinchronization stops after migration to new AD

    Hi, we have Oracle Internet Directory (Oracle directory manager v. 10.2.2.2.0) running on Windows Server 2003 sp2 with Oracle AS (v. 10.1.2.2.0), connected using LDAP to AD domain controller on Windows Server 2003 sp2 for a few years now. So far so g

  • PC Suite wont backup !! 6680

    Have just upgraded my 6680 to the latest firmware. Using PC suite, no problems at all. However when I went to backup to restore my original settings it said that it had not completed and to do it again, now when I click the backup icon it ignores me

  • How to restart Webdynpro abap application

    Hi  All, We have defined one linktoAction  UI Element to restart the application , but we are not clear to what code we should write to get this functionility in action Handler Method  Please help us as this is very urgent requirment for us...... Poi