Trial Balance report using FSG

hi,
cud any1 help me how to go about on showing trial balance of summary account and its child accounts..rowset i can take the account ranges........
beginning balance(i can show offset -1 PTD columnset) Cr (??) Dr (??) Current balance(PTD offset-0)
pls help me...thanks a lot n advance....

hi,
cud any1 help me how to go about on showing trial balance of summary account and its child accounts..rowset i can take the account ranges........
beginning balance(i can show offset -1 PTD columnset) Cr (??) Dr (??) Current balance(PTD offset-0)
pls help me...thanks a lot n advance....

Similar Messages

  • Accounts Payables Trial balance report error!!

    Can anybody help me to set right the following problem? it will be greatful if you sort it out.
    Completion Text:
    your concurrent request exited abnormally??
    Cause: The concurrent program for your request exited without calling standerd application object library exit routines or the process could have terminated by the operating system??
    The above error ocurred when i tried to run an accounts payables trial balance report.....
    thanks for ur suggestion.
    My Email ID : [email protected]

    Accounts Payable Trial Balance Report using APXRTB program to run the Accounts Payable Trail Balance report by Date and Sort by vendor.
    Hemant Shah
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sean Collard ([email protected]):
    Can anyone tell me what report (.rdf) the spawn program APXRTB (Accounts Payables Trial Balance Report)uses.
    Thanks <HR></BLOCKQUOTE>
    null

  • Accounts Payables Trial Balance Report

    Can anyone tell me what report (.rdf) the spawn program APXRTB (Accounts Payables Trial Balance Report)uses.
    Thanks

    Accounts Payable Trial Balance Report using APXRTB program to run the Accounts Payable Trail Balance report by Date and Sort by vendor.
    Hemant Shah
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Sean Collard ([email protected]):
    Can anyone tell me what report (.rdf) the spawn program APXRTB (Accounts Payables Trial Balance Report)uses.
    Thanks <HR></BLOCKQUOTE>
    null

  • AP Trial Balance Report Query

    Hi - We use the AP Trial Balance Report as a supporting schedule to reconcile our General Ledger AP Creditor Control Account against.
    Ordinarily we would use the total remaining amount at the end of the report (which has historically balanced to the GL).
    The value in the remaining amount column has always equalled the value in the amount column.
    However, during P12 when we have generated the report we have identified several transactions that have an amount appearing in the 'remaining amount' column but no corresponding entry in the 'amount' column.
    We're not sure what the 2 column represent and why this would be the case.
    Consequently by using the 'Remaining Amount' total and comparing it to the GL balance we are out by the amounts that are only appearing on one side of the AP Trial Balance.
    I've looked at the accounting postings on the AP for some of the particualr records and can see that there is a debit and credit posting to expenditure that net off and and also a debit and credit posting to the AP Creditor Control Account that also net off
    Can anyone provide us with an explantion please?

    Hi,
    Please check note:553484.1, there are some queries provided to check the TB data like queries to compare XLA and GL data.
    Hope it helps

  • Fault found with opening balances output on Trial Balance report

    When running the Trial Balance report and adding "Opening Balances" and taking the "OB from Start of Fiscal Year" option, the relevant opening balances are not shown from the closing balance of the prior period.
    All balance sheet accounts should always show a "brought forward" balance if one exists, whereas P&L Accounts should only carry balances forward over monthend boundaries, resetting at the point of a yearend. This is not the output provided by the report.
    This issue has been checked on numerous patch levels (including the beta release of 2007a SP01 by a support consultant) and returns the same problem.

    Hi Julian,
    I checked the functionality by myself and I have two findings:
    1) that the Trial balance displays in the opening balance balances for the P&L accounts from previous period.
    2) On the other side there is a functionality "Add closing balances" on the Trial balance selection criteria with option "Closing balances before Selected Period Only" which would adjust the presented opening balances for P&L accounts in point 1.
    Based on your description I understand that Global Support Center knows about the issue, so I think the point 2 could be used as temporary workaround till the system is corrected.
    Best Regards,
    Martin Slavik
    SAP Business One Solution Manager

  • G/L Account & Profit Centre Wise  Trial Balance Report

    Im working on a Client which is in 5 version and does not have the new GL account and document split.
    They require a  report where they could get the trial balance report (Gl accoun & profit centre).Standard report F.48 provides only Gl Account wise.
    Please suggest me on how i can start this develpomnet.As per my view i need to update a Z table with profit centre and Gl account Amounts and then in turn fetch the values to my report.
    Can the SDN experts help me on this,i would be very gratfull.

    hi,
    you can use these tables for trial balances g/l account wise.
    TABLES : glt0 ,
                   skat ,
                   t001 .

  • (11) TRIAL BALANCE REPORT에 PAID 된 INVOICE가 보이는 CASE

    제품 : FIN_AP
    작성날짜 : 2003-05-13
    TRIAL BALANCE REPORT에 PAID 된 INVOICE가 보이는 CASE
    ==============================================
    PURPOSE
    Applications 11.0.3 환경에서 AP의 Trial Balance Report 실행시 잘못 생성된 data가 보여지는 경우의 문제를 해결한다.
    Problem Description
    Paid 가 완전히 이루어져서 gl 로 까지 transfer 된 invoice가 trial balance report에 여전히 remaining 금액과 함께 나타나고 있다.
    이 때 Payament가 한번 void 되었다가 다시 reissue 된 경우이다.
    Workaround
    1. Aplist11.sql 이나 아래의 select 문으로 invoice 상태를 check한다.
    SELECT invoice_id, invoice_amount
    FROM ap_invoices_all
    WHERE invoice_num = <'problem invoice'>;
    2. Trial balance에 data가 어떻게 entry 되었는지 확인한다.
    SELECT *
    FROM ap_trial_balance
    WHERE invoice_id = <results from query #1>;
    3. Invoice 에 대한 payment 정보를 확인한다.
    SELECT invoice_id, invoice_payment_id, accounting_date, accrual_posted_flag,
    cash_posted_flag, posted_flag
    FROM ap_invoice_payments_all
    WHERE invoice_id = <results from query #1>;
    4. Payment에 대한 distribution line 정보를 확인한다.
    SELECT invoice_payment_id, payment_line_number, line_type_lookup_code,
    amount, base_amount
    FROM ap_payment_distributions_all
    WHERE invoice_payment_id = <invoice_payment_id returned in query #3>;
    일반적으로 void 되었다가 reissue 된 payment의 trial balance가 잘못된 경우는 ap_payment_distributions_all table에 data가 잘못 생성되었기 때문이다.
    위의 테이블에서 잘못 생성된 data를 correct 하거나 delete 한다음에
    patch 375496 을 이용하여 trial balance 를 rebuil 하는것이 workaround 이다.
    Solution Description
    $AP_TOP/patch/110/sql/apautopb.pls 의 버젼이 110.6 보다 낮은경우 이런 문제 예방을 위해 AP D patchset 이상을 적용한다.
    Reference Documents
    NOTE 106744.1

    maybe OP want to extract all numbers from his inbox using regular expressions?

  • Trial balance report - general question

    Hi,
    This is the first time that I am using the trial balance report (to compare it with a Discoverer report that was built for another purpose).
    If I am running a trial balance for the end of May, and an account has a payment due in June, then the account does not appear in the report.
    The user feels that it really should.
    Can someone explain to me the purpose of the trial balance, i.e. if the report is supposed to only show the balance of due invoices or of any invoice that is not fully paid?
    Thank you.
    Leah

    Hi John,
    First, let me explain that we have an aging report that was written and our user is comparing it with the trial balance report. This is how the whole thing began. There is too big a difference. Yesterday, our user suggested that we run the trial balance for May since there is too much activity happening now in June.
    I decided to run a trial balance for the first of February 2010 figuring that was plenty safe. One of the customers listed had 4 invoices in the report. One invoice that was missing, though, was an invoice from January 17, 2010 that was paid (GL date) March 28, 2010. (There are others like that). The question: should it have been listed or not? It was in the aging report which our user felt was correct.
    Being (I assume-maybe I am wrong) that the trial balance report was not written just for our company, I am assuming that it must be correct otherwise there would be complaints from all over. That is why I finally turned to the forum to try to get an understanding. If the trial balance is correct, then the user cannot compare the aging report with the trial balance. If it is not correct, then we must turn to Oracle.
    Is there some information that I should look for from the missing invoice that I gave as an example that would explain it not appearing in the report?
    Thank you.
    Leah
    I would just like to add that I just noticed that there is another invoice from January 17th that IS in the report. It is also paid on March 28th. The only difference between the two invoices that I see, is in the distributions. The one that is in the report has the amount split between ITEM and TAX while the one that is not in the report has the full amount as type ITEM. Both have Withholding Tax as 0.
    Sorry for these added comments. We had an electricity problem all day at work (I am at home right now) but someone suggested that the invoice that is missing might have had a creation date AFTER the first of February even though the invoice day was in January and that is why it does not appear. I will not be able to check it until I am at work tomorrow (which will be around 10:00GMT).
    Thanks.
    Edited by: user476771 on Jun 21, 2010 9:52 PM
    Edited by: user476771 on Jun 21, 2010 10:21 PM
    Edited by: user476771 on Jun 22, 2010 5:41 AM

  • R12(Payments)--Accounts Payable Trial Balance Report, Need Info.

    Hi All,
    We are trying to use the report Accounts Payable Trial Balance Report.
    This is an XML Report in R12 now and has 4 different RTF Templates.
    Can you please explain me how this report can be used in R12 and how does it selects the RTF template( from 4 different templates present) at run time.?
    Thanks,

    Hi,
    In 11i we use to have a parameter to give the report in Summary or Detail
    In R12 we have 4 options in templates to have Summary by Account, Summary by Supplier, Detail by Account and Detail by Supplier.
    Report will not select the template automatically. The user needs to select the template before submitting the report.
    Hope it helps
    Regards,
    Sridhar

  • GL Trial Balance Report Query with date Effectivity

    We have a requirement to show the GL Trial Balance report with Effective dates as Parameters.
    Current Analysis:
    The Journals get updated with corresponding CCID in GL_BALANCES table when the Journal is posted. GL_BALANCE is SOB specific, if the SOB has month as period then the balances in GL_BALANCES would get updated against the month(period).
    To overcome the period problem, we explored the option of using a View based on GL_JE_HEADERS and GL_JE_LINES for 'Posted' Journal Batches of a SOB. We are checking whether the GL_JE_HEADERS.default_effective_date lies between the :p_from_date and :p_to_date which is sent to the Report as a parameter. The above idea does not return expected data when the custom Trial Balance Report is run.
    Following is the Query we have written for it:
    SELECT cc.segment4 ACCOUNT, bal.code_combination_id,
    bal.begin_balance_dr
    + SUM (NVL (gljel.accounted_dr, 0)) opening_bal_dr,
    bal.begin_balance_cr
    + SUM (NVL (gljel.accounted_cr, 0)) opening_bal_cr,
    ffv.description,
    (SELECT SUM (NVL (gljel.accounted_dr, 0))
    FROM gl_je_headers gljeh,
    gl_je_lines gljel,
    gl_code_combinations gcc
    WHERE gljeh.default_effective_date BETWEEN :p_from_date
    AND :p_to_date
    AND gljeh.je_header_id = gljel.je_header_id
    AND gljel.code_combination_id = gcc.code_combination_id
    AND gljel.period_name = gljeh.period_name
    AND gljel.set_of_books_id = :p_set_of_books_id
    AND gljeh.status = 'P'
    AND gljel.status = 'P'
    AND gljeh.actual_flag = 'A'
    --AND gljel.code_combination_id =
    -- bal.code_combination_id
    AND gcc.segment4 = cc.segment4
    GROUP BY gcc.segment4) c_dr,
    (SELECT SUM (NVL (gljel.accounted_cr, 0))
    FROM gl_je_headers gljeh,
    gl_je_lines gljel,
    gl_code_combinations gcc
    WHERE gljeh.default_effective_date BETWEEN :p_from_date
    AND :p_to_date
    AND gljeh.je_header_id = gljel.je_header_id
    AND gljel.period_name = gljeh.period_name
    AND gljel.code_combination_id = gcc.code_combination_id
    AND gljel.set_of_books_id = :p_set_of_books_id
    AND gljeh.status = 'P'
    AND gljel.status = 'P'
    AND gljeh.actual_flag = 'A'
    AND gcc.segment4 = cc.segment4
    GROUP BY gcc.segment4) c_cr
    FROM gl_period_statuses per,
    gl_code_combinations cc,
    gl_balances bal,
    gl_je_headers gljeh,
    gl_je_lines gljel,
    fnd_flex_values_vl ffv,
    fnd_flex_value_sets ffvs
    WHERE cc.chart_of_accounts_id = :p_chart_of_accts_id
    AND bal.currency_code = :p_currency
    AND bal.actual_flag = 'A'
    AND bal.period_name = per.period_name
    AND cc.template_id IS NULL
    AND cc.code_combination_id = bal.code_combination_id
    AND per.set_of_books_id = :p_set_of_books_id
    AND per.application_id = 101
    AND :p_from_date BETWEEN per.start_date AND per.end_date
    AND gljeh.period_name = per.period_name
    AND gljeh.default_effective_date <= :p_from_date
    AND gljeh.je_header_id = gljel.je_header_id
    AND gljel.period_name = gljeh.period_name
    AND gljel.set_of_books_id = :p_set_of_books_id
    AND ffv.flex_value_set_id = ffvs.flex_value_set_id
    AND ffvs.flex_value_set_name = 'JSWEL_ACCOUNT'
    AND gljeh.status = 'P'
    AND gljel.status = 'P'
    AND cc.summary_flag = ffv.summary_flag
    AND cc.segment4 = ffv.flex_value
    AND gljeh.actual_flag = 'A'
    AND gljel.code_combination_id = bal.code_combination_id
    GROUP BY bal.begin_balance_dr,
    bal.begin_balance_cr,
    cc.segment4,
    ffv.description,
    bal.code_combination_id
    The problem is that not all expected columns are being queried. Kindly advise as appropriate.
    Note: I have also posted this thread on the Financials forum. Posting here to present the query to a larger audience with the expectation that my query would be answered.
    Thanks & Regards
    Sumit

    suggest to create customize TB report.

  • GL Trial Balance Report with Effective Dates as Parameters

    We have a requirement to show the GL Trial Balance report with Effective dates as Parameters.
    Current Analysis:
    The Journals get updated with corresponding CCID in GL_BALANCES table when the Journal is posted. GL_BALANCE is SOB specific, if the SOB has month as period then the balances in GL_BALANCES would get updated against the month(period).
    To overcome the period problem, we explored the option of using a View based on GL_JE_HEADERS and GL_JE_LINES for 'Posted' Journal Batches of a SOB. We are checking whether the GL_JE_HEADERS.default_effective_date lies between the :p_from_date and :p_to_date which is sent to the Report as a parameter. The above idea does not return expected data when the custom Trial Balance Report is run.
    Following is the Query being used:
    SELECT cc.segment4 ACCOUNT, bal.code_combination_id,
    bal.begin_balance_dr
    + SUM (NVL (gljel.accounted_dr, 0)) opening_bal_dr,
    bal.begin_balance_cr
    + SUM (NVL (gljel.accounted_cr, 0)) opening_bal_cr,
    ffv.description,
    (SELECT SUM (NVL (gljel.accounted_dr, 0))
    FROM gl_je_headers gljeh,
    gl_je_lines gljel,
    gl_code_combinations gcc
    WHERE gljeh.default_effective_date BETWEEN :p_from_date
    AND :p_to_date
    AND gljeh.je_header_id = gljel.je_header_id
    AND gljel.code_combination_id = gcc.code_combination_id
    AND gljel.period_name = gljeh.period_name
    AND gljel.set_of_books_id = :p_set_of_books_id
    AND gljeh.status = 'P'
    AND gljel.status = 'P'
    AND gljeh.actual_flag = 'A'
    --AND gljel.code_combination_id =
    -- bal.code_combination_id
    AND gcc.segment4 = cc.segment4
    GROUP BY gcc.segment4) c_dr,
    (SELECT SUM (NVL (gljel.accounted_cr, 0))
    FROM gl_je_headers gljeh,
    gl_je_lines gljel,
    gl_code_combinations gcc
    WHERE gljeh.default_effective_date BETWEEN :p_from_date
    AND :p_to_date
    AND gljeh.je_header_id = gljel.je_header_id
    AND gljel.period_name = gljeh.period_name
    AND gljel.code_combination_id = gcc.code_combination_id
    AND gljel.set_of_books_id = :p_set_of_books_id
    AND gljeh.status = 'P'
    AND gljel.status = 'P'
    AND gljeh.actual_flag = 'A'
    AND gcc.segment4 = cc.segment4
    GROUP BY gcc.segment4) c_cr
    FROM gl_period_statuses per,
    gl_code_combinations cc,
    gl_balances bal,
    gl_je_headers gljeh,
    gl_je_lines gljel,
    fnd_flex_values_vl ffv,
    fnd_flex_value_sets ffvs
    WHERE cc.chart_of_accounts_id = :p_chart_of_accts_id
    AND bal.currency_code = :p_currency
    AND bal.actual_flag = 'A'
    AND bal.period_name = per.period_name
    AND cc.template_id IS NULL
    AND cc.code_combination_id = bal.code_combination_id
    AND per.set_of_books_id = :p_set_of_books_id
    AND per.application_id = 101
    AND :p_from_date BETWEEN per.start_date AND per.end_date
    AND gljeh.period_name = per.period_name
    AND gljeh.default_effective_date <= :p_from_date
    AND gljeh.je_header_id = gljel.je_header_id
    AND gljel.period_name = gljeh.period_name
    AND gljel.set_of_books_id = :p_set_of_books_id
    AND ffv.flex_value_set_id = ffvs.flex_value_set_id
    AND ffvs.flex_value_set_name = 'JSWEL_ACCOUNT'
    AND gljeh.status = 'P'
    AND gljel.status = 'P'
    AND cc.summary_flag = ffv.summary_flag
    AND cc.segment4 = ffv.flex_value
    AND gljeh.actual_flag = 'A'
    AND gljel.code_combination_id = bal.code_combination_id
    GROUP BY bal.begin_balance_dr,
    bal.begin_balance_cr,
    cc.segment4,
    ffv.description,
    bal.code_combination_id
    Kindly suggest if I am missing anything. I am sure that the great guns here can help me out.
    Thanks
    Sumit

    suggest to create customize TB report.

  • Consolidation Trial Balance Report

    Hello.
    Where data for generated before the Consolidation Trial Balance Report? How they can be chosen from a database?

    Hi,
    Trial Balance Report is a report which contains the summary of all the account balances at a given date.
    It  is a financial summary,prepared primarily to test the accuracy of statements or results.
    Program for Trial Balance:
    <b>RFGLKR00</b>
    Tables Used in Trail Balance Report :
    <b>SKA1 - G/L Account Master (Chart of Accounts) </b>
    Regards,
    Padmam.

  • Trial balance report (132 char)

    what does this 132 char or 180 char mean.i know they are for width of the report but what is their function and why exactly they are used

    Hi,
    Trial Balance Report is a report which contains the summary of all the account balances at a given date.
    It  is a financial summary,prepared primarily to test the accuracy of statements or results.
    Program for Trial Balance:
    <b>RFGLKR00</b>
    Tables Used in Trail Balance Report :
    <b>SKA1 - G/L Account Master (Chart of Accounts) </b>
    Regards,
    Padmam.

  • TRIAL BALANCE REPORT(RFBILA00)

    Hi,
    I am working on Trial Balnce report. I copied the standard program RFBILA00 to the custom program. The report is displaying correctly. But in the Accumulated Other Comprehensive Income I need to add the amount that displays in the comprehensinve Income.
    I have Accumulated other comprehensive Income as 1,500,000.00-
    Comprehensive Income as 253,951.18-
    When the report displays these two incomes should be added and display at Accumulated Other Comprehensive Income.
    Please help me with this.This is a very urgent requirement.
    Helpul answers are rewarded.
    Thanks,
    Ramdeep

    Hi,
    Trial Balance Report is a report which contains the summary of all the account balances at a given date.
    It  is a financial summary,prepared primarily to test the accuracy of statements or results.
    Program for Trial Balance:
    <b>RFGLKR00</b>
    Tables Used in Trail Balance Report :
    <b>SKA1 - G/L Account Master (Chart of Accounts) </b>
    Regards,
    Padmam.

  • Trial Balance Report Tcodes

    Hi Experts,
    My user wants to know if SAP can generate a Trial Balance Report by G/L Accts, Cost Center and Profit Center. Please let me know the transaction codes.
    I also checked some like: F.01 (Financial Statements), or
    S_ALR_87012277, or S_ALR_87012279 or S_ALR_87012301 but the user wants to include the cost center and profit center. Are there any transaction codes to match these given tcodes?
    Thanks a lot!

    Hi
    Usually what Trial Balance means is the list of GL account balances.
    In this scenario, it seems that your user wants a list of balances per PC and CC.  For this you need to execute PC reports and CC reports. There are many standard reports available.
    My client also uses PC reports for monthly reporting.
    Rgds
    N W

Maybe you are looking for

  • B2B vs general submission to Apple

    I have a single edition for a product directed to construction engineers. It's a lot of technical information and not something most people would be interested in. It uses slides shows, a movie and one MSO. Apple rejected it saying to enough interact

  • Can someone pleas tell me about abap, java and xslt mappings

    Hi, can someone please tell me about abap, java and xslt mappings. Thanks, Bernard.

  • SQL (Injection) Vs Flat File TXT Vs XML (XPath Injection) For Database.

    I will have to deal with robust login sessions so I need some advice on what type of database and language I will use. PHP and MySQL is the choice but I hear that flat file TXT are more faster so I am thinking about Perl. Perl is very flexiple and ha

  • Oracle.apps.fnd.cp.util.RemoteFileException error

    Hi , All our custom xml reports are failing in one of our test instance. But it working fine in other instance including production. I am able to figure out why we are getting this error. I have crated a SR, but they say since all custom reports are

  • .......Clsoing a Form  Using " X " button

    Hi. May i know how can i disable the X window button at the right corner so that user cannot exit the window from that button. I want user to exit only from the exit button i provide to him, not any other button. i have tried to set CloseAllowed prop