General Ledger Report [message #287332] |
Tue, 11 December 2007 23:50 |
tayyab_mbait22
Messages: 5 Registered: December 2007 Location: Pakistan
|
Junior Member |
|
|
Dear All,
i have a problem that how can i calculate opening balance and how can i calculate balance of previous balance + debit amount - credit amount.
i have attatched a Notepad file. which clear my question.
plz help me out i m in trouble..
thanks & regards
Tayyab
[Updated on: Wed, 12 December 2007 05:48] Report message to a moderator
|
|
|
|
Re: General Ledger Report [message #287481 is a reply to message #287335] |
Wed, 12 December 2007 06:23 |
skooman
Messages: 913 Registered: March 2005 Location: Netherlands
|
Senior Member |
|
|
What did you try so far to accomplish this?
Are we talking EBS/apps by the way? If not, please provide us with the table descriptions and preferably insert scripts to setup a test.
|
|
|
|
Re: General Ledger Report [message #287879 is a reply to message #287675] |
Thu, 13 December 2007 23:28 |
dude4084
Messages: 222 Registered: March 2005 Location: Mux
|
Senior Member |
|
|
So
you need that when you call report from a FORM, it should not show you the parameter form of reports.
If this is your requirement then
you can search on the following piece of code while calling reports
else
ignore my post.
DECLARE
pl_id ParamList;
BEGIN
Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
Add_Parameter(pl_id, 'DESTYPE', TEXT_PARAMETER, 'SCREEN');
--Add_Parameter(p, 'number_of_copies',TEXT_PARAMETER,'1');
RUN_PRODUCT (REPORTS,'r06_sing_prod_sal_hist.rep', ASYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
end;
/
|
|
|
|
Re: General Ledger Report [message #288093 is a reply to message #287332] |
Fri, 14 December 2007 15:15 |
dude4084
Messages: 222 Registered: March 2005 Location: Mux
|
Senior Member |
|
|
As you have not provided me the table and data, so i have worked on famous emp table.
Please consider sal as debit entry and comm as credit entry.
Download the attached file and see how the things work there to compute running total. You can remove the unwanted column from display.
(Note for Tayyab only: If you failed to understand the report then contact Sir Mushtaq or Sir Zubair)
-
Attachment: test.RDF
(Size: 60.00KB, Downloaded 1268 times)
|
|
|