How do I have a CR report based of Reconciled / UnReconciled

Hi
How do I get to add the Reconciled or Unreconciled option for my Crystal Report; I have created a Statement that shows all transactions for the BP and the current Ageing Values but I am wanting to add an option under my parameters where I can select Unreconciled and when viewing the Statement it will show me all the Unreconciled transactions for this BP (as this is already reflected under the Ageing fields I have).
I have been looking around for a table & field but have uncertainty on what to use; any ideas on how I may acheive this?
Regards
Kurt Walters

Hi All
Thanks very much for all your suggestions I will take them into consideration.
Gordon - I used your formula more closely but defined it under the Formula Fields > Reconcile using my Parameter:
IF {?Reconcile} = 'R' THEN
{JDT1.BalDueDeb} = {JDT1.BalDueCred}
ELSE IF {?Reconcile} = 'UR' THEN
{JDT1.BalDueDeb} 'not equal sign' {JDT1.BalDueCred}
This works when selecting Unreconciled option, I will be doing further testing and will let you all know.
Thanks very much for the help everyone, it is much appreciated.
Regards
Kurt Walters
Edited by: Kurt Walters on Nov 26, 2010 6:45 AM
Edited by: Kurt Walters on Nov 26, 2010 6:46 AM

Similar Messages

  • R12: How to filter Open Item Revaluation Report based on GL Date

    Hi,
    Anybody know how to filter Open Item Revaluation Report based on GL Date from and GL Date to in R12?
    Since we just upgraded from 11.5.10 to 12.1.3 and found we cannot filter those report for specific date. It shown all data included the old data from 8 years ago also.
    We need to run the report only for specific date only. Please share with me if anyone know about this.
    Thanks.

    Pl do not post duplicates - R12: How to filter Open Item Revaluation Report based on GL Date

  • How to display results of a report based on current year

    Hi,
    Please advice me for the following requirement.
    I have a report which is having sales results, which is having year column also. Report has to be displayed based on the current year. Now it is 2013. I should show current year results only i.e 2013.
    In 2014, i should show only 2014 results. How to achieve this at a report level.
    regards
    CK.

    Hi CK,
    You are having Data for 2014 also. If not means, you can use sql query select max(year) from period.
    So it will show the final maximum end of the year(2013) from database.
    You can use dashboard prompts too. in the prompt also you can have specific year or sql query
    http://mkashu.blogspot.com
    Regards,
    VG

  • How to select records from Interactive Reports based on checkboxes

    Referring to the link below
    http://apex.oracle.com/pls/otn/f?p=31517:95
    I want to select rows from the Interactve Report based on a checkbox. This demo page has 2 sections, one for classic report and other for interactive one. The classic report is able to select the whole records but the interactive report selects only the emp nos. I am looking for a functionality where I can select the whole record from the interactive report.
    Any pointers will be helpful.
    Thanks

    That is easy. You should just modify the query:
    DECLARE
       v_count   INTEGER := 0;
    BEGIN
       :p95_text_ir := NULL;
       FOR i IN 1 .. apex_application.g_f20.COUNT
       LOOP
          v_count := v_count + 1;
          FOR c IN (SELECT ename, job, mgr, sal, deptno
                      FROM emp
                     WHERE empno = apex_application.g_f20 (i))
          LOOP
             :p95_text_ir :=
                   :p95_text_ir
                || 'ID: '
                || c.empno
                || ' / '
                || 'Name: '
                || c.ename
                || ' / '
                || 'Job: '
                || c.job
                || ' / '
                || 'Manager: '
                || c.mgr
                || ' / '
                || 'Salary: '
                || c.sal
                || ' / '
                || 'Department: '
                || c.deptno
                || CHR (10);
          END LOOP;
       END LOOP;
       :p95_text_ir := :p95_text_ir || ' / Records selected: ' || v_count;
    END;Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • How can i have customer balance report at Ship to Party Level

    HI All
    My client want to have a report for  customer balances  at ship to party level
    For example for a customer ABC has 4 ship to party and they want to track Sales at each ship to party level for Customer ABC
    Regards
    Sandip

    Thanks Buddi,
    Partner function SB works the way we wanted it to.
    Regards

  • How to filter a report based on count?

    Here is my scenario: We would like to report activities on a server if there are multiple date in a month. Here is an example:
    Server Date Activity
    Server1 7/1/09 Hardware maintenance
    Server2 7/1/09 Hardware maintenance
    Server2 7/14/09 Software patching
    Server2 7/14/09 Server reboot
    Server3 7/5/09 Hardware maintenance
    Server3 7/5/09 Server reboot
    The report will show the following
    Server2 7/1/09 Hardware maintenance
    Server2 7/14/09 Software patching
    Server2 7/14/09 Server reboot
    Server1 and Server3 will not show up since there is only one date in July (even though there are two activities for Server3).
    I thought of using a report as a filter to a second report. In the first report, find a way to determine which server to report on. But how would I finter the 1st report based on count as the logic stated above?

    Hi Max
    Our requirement is to see all the activities for a server in a month ONLY IF there are activities on DIFFERENT dates. So using my example, server2 has activties on 7/1 and 7/14. Then we want to see all the activities for server2 in that month. Server3 has two activities but both activities are on the same date. So we don't want to see server3.
    Counting by server will not work because that will include server3 in my example.
    What I really want is to be able to count unique occurrences of dates per server in a month. And if this count is > 1, then this server will be in the report.
    I used a pivot table to count the unique occurrences of dates by server by month. So using my example, I have this result:
    Server1-July: 1
    Server2-July: 2
    Server3-July 1
    What I really want (conceptually) is to be able to filter this pivot table by the matrix column which is the count. I just couldn't figure out how to do that :). Then I thought I could use this report (with pivot table result) as a filter into another report.
    Hope you have some idea....:)
    Thanks

  • Report based on Procedure

    Hi All,
    I have a discoverer report based on a function, function is executed and insert the Data into Global Temporary table. When I try to execute the Function in one Discoverer TAB and Display the Data by SELECTING FROM Global Temporary table in another Discoverer TAB, Data is displayed but when I try to execute the function from same Discoverer TAB and try to select the data, it displayes no rows.
    Please let me know how to accomplish this in one discoverer sheet instead of TWOS..
    Thanks

    Hi All,
    I have a discoverer report based on a function, function is executed and insert the Data into Global Temporary table. When I try to execute the Function in one Discoverer TAB and Display the Data by SELECTING FROM Global Temporary table in another Discoverer TAB, Data is displayed but when I try to execute the function from same Discoverer TAB and try to select the data, it displayes no rows.
    Please let me know how to accomplish this in one discoverer sheet instead of TWOS..
    Thanks

  • 1 Conditional report based on 3 select lists/ 3 different select statements

    I have made 1 report based on the three select lists. The report is displayed in the center of the page. The user needs to fill them in order, the select lists are:
    Selectlist:
    1. P1_LOVPG - Null is allowed, but is only appearing at top with a label of Productgroup
    2. P1_LOVSG - Null is allowed, but is only appearing at top with a label of Subgroup
    3. P1_LOVMA - Null is allowed, but is only appearing at top with a label of Manufacturer
    LOVPG contains a distinct collect of the ProductGroups
    QUERY LOV = select distinct pg from X
    LOVSG contains a distinct collect of the SubGroups inside the selected PG.list
    QUERY LOV = select distinct sg from X where pg = :P1_LOVPG
    LOVMA contains a distinct collect of the Manufacturers inside the selected SG.lst
    QUERY LOV = select distinct ma from X where sg = :P_LOVSG
    Based on the the selected items the user would see the following:
    Table X
    PG SG MA ART
    A-----X----M---1
    A-----X----N---2
    A-----Y----M---3
    A-----X----M---4
    B-----X----M---5
    B-----Y----N---6
    B-----Z----O---7
    Seletion 1 PG = A -> selects PG A in select list result, User sees:
    Report A
    PG SG MA ART
    A-----X----M---1
    A-----X----N---2
    A-----Y----M---3
    A-----X----M---4
    Query would be: select * from X where PG = :P1_LOVPG
    Selection 2, user still sees the above, can only select from the SG select list NULL, X, Y. User needs to choose between X or Y value. He picks X, he sees:
    Report B
    PG SG MA ART
    A-----X----M---1
    A-----X----N---2
    A-----X----M---4
    Query would be: select * from X where PG = :P1_LOVPG and SG = :P_LOVSG
    Selection 3, user still sees selection 2 on his screen, can only select from the MA list bewteen NULL, M or N, user needs to choose between M or N. He picks M, he sees:
    Report C
    PG SG MA ART
    A-----X----M---1
    A-----X----M---4
    Query would be: select * from X where PG = :P1_LOVPG and SG = :P_LOVSG
    As you can see the query changes as the user goes deeper into the structure. It is a simple if then else system where the quey changes. How do I set this up in htmldb?
    (I've read something about Oracle's SQL and it's decode function, but can they be used with changing select statements?)

    are you sure your data meets the JOIN conditions?
    You can make a quick check.. only example...
    select single * from KONP into ls_konp
    where knumh = P_knumh.
    if sy-subrc eq 0.
    select * from from A905 into table lt_a905 where
         kappl in so_kappl
         and kschl in so_kschl
         and VKORG in so_vkorg
         and vtweg in so_vtweg
         and kondm in so_kondm
         and wkreg in so_wkreg
         and knumh = ls_konp-knumh.
    if sy-subrc eq 0.
    select * from A919 into table lt_a919
    for all entries in lt_a905
    where kappl = lt_a905-kappl
    and kschl = lt_905-kschl
    and knumh = lt_905-knumh.
    endif.
    endif.

  • Apex IR how to know which default alternative report was selected

    I'm using apex 4.1 and create a page with Interactive report with one default primary report and several default alternative report. when i selected one alternative report, how do i know which one is i picked up? it looks obvious to the user but my point is when the user switches to another page, or there are something should change based on the selected report, i want the user see the new page with-in the context of what have selected for that IR report. for example, i have a "summary" report based on year, so the alternative report will be year-2011, year-2012, etc, when user selected this year, 2012, on the same IR page, there is another report based on year 2012, when user selected 2011, that report should show 2011 report. is there anyway to do this? thanks in advance!

    Hello
    From your description, it seems that the message flow is as follows:
    ECC -> Sender proxy -> PI -> <unknown> Receiver adapter -> Legacy
    Run the scenario and use transaction sxmb_moni in ECC and PI to monitor the message. You will see the names of the Repository configuration objects here (Sender/Receiver Service, Name, Namespace etc).
    You can use the monitoring tools of the Runtime Workbench to track the message and find out what adapter is being used. Here you can use the Message Monitoring to track the message ID, check the Audit Log where you should be able to see the name of the adapter that is being used.
    Regards
    Mark

  • Web Analysis reports based on Planning application

    All,
    I have migrated planning application from dev to prod using LCM, planning version 11.1.1.2. everything has been migrated and working fine.
    Web Analysis reports, and Database connections are also migrated from DEV to PROD.
    User has uploaded some PLAN data for FY10 through smartview on PROD server, but unable to see the data using Database connection migrated from DEVL but he can see the data when he creates new database connection on PROD.
    both database connections are from same database but he cannot see any new data uploaded through smartview with old database connection and he have tons of reports based on old database connection.
    can I change database connection for old reports with new database connection or do I need to fix something on my planning side.
    Please provide some suggestions. I can give more info if required.
    Thanks
    Ravi S

    Hi,
    LCM will have created xml exports with the database connection information in them.
    If you open one of the xml database connection exports you will see something like
    <server-name>localhost</server-name>
    <application-name>PLANSAMP</application-name>
    <database-name>Consol</database-name>
    You would need to update the information such as the servername in the files then import them in again using LCM.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Reports based on Linked Universes in BOXI 3.0 do not work

    We have noticed that reports based on linked Universes do not work. We have imported our (BO) documents/Universes into the BOXI R2 environment, upgraded to BOXI 3.0 and now found this issue in InfoView which affects a lot of our reports, details as follows:
    When refreshing a (Deski) report in InfoView, get a dialogue box titled "Refreshing Data" with no error message;
    Click on OK, and it seems the report does not get refreshed;
    Click on Refresh again, this time get prompt dialogue box;
    Enter prompt, click on Run Query;
    Get another dialogue box titled "Prompts" with message "SetPrompts failed - click on OK;
    Click on a TAB in the report - get error message, title "Report" with message "The document instance is no longer available. Please reopen the document (Error:RFC 00421);
    Click on OK it throws you out of the report and takes you back to the document list;
    Try another report:
    Click on Refresh Data;
    Error message - title "Refreshing Data", message "Cannot load linked universes. (UNV0011) - click on OK;
    Help !!!!

    Hello Dahya,
    Please post this query to the [dedicated BusinessObjects Enterprise Administration|BI Platform; forum:
    That forum is monitored by qualified technicians and you will get a faster response there.
    Also, all BusinessObjects Enterprise Administration queries remain in one place and thus can be easily searched in one place.
    Thanks a lot,
    Falk

  • Report Based Total - when??

    Hi,
    sometimes I get the issue that when I put totals on groups in reports they are only correct when I have un-ticked 'report based total', but at other times, sometimes with the same source, it works fine....
    I have trawled the site on advice around report based totals, but can anyone give me a definitive rule for when 'report based total' will definitely work, and when it will definitely not work, and if there are any areas of grey between these where the 'safer' option is to un-tick report based total.
    My reason for the request is that I am putting together an answers guide which includes specific advice on our repository, and I would like to be able to give the advice, against each business area of whether to use 'rbt' or not.
    Finally am I correct that the only benefit to using report based total is one of speed?
    My version is 10.1.3.4
    Many thanks,
    Robert.

    Hi,
    This will be used for "Oracle BI Server will calculate the total based on the entire result set, before applying any filters to the measure columns".
    Refer:
    http://docs.oracle.com/cd/E14571_01/bi.1111/e10544/creatingviews.htm
    http://gerardnico.com/wiki/dat/obiee/11g
    http://gerardnico.com/wiki/dat/obiee/answer
    Thanks
    Deva
    Edited by: Devarasu on Dec 20, 2011 5:29 PM

  • Interactive Report Based On A Collection

    Hi guys
    Using Apex 3.2
    I have a classic report based on a collection, which works fine.
    I am now trying to create an interactive report based on the same query (collection), but no data is returned.
    I there anything special I need to do with an interactive report.
    Cheers
    Gus

    Go into Interactive Reports Actions Menu > Select Columns > Add all missing columns to right side and apply (Display In Report)
    OR
    Check interactive report attribute settings
    Thanks

  • Authorization for running report based on Remote Cube

    Hi ,
    I have created a report based on Remote cube in BI 7.0
    I have created a DTP with Direct access to load the Remote cube.
    While running the report based on Remote cube , I am getting error
    'You are not authorized for the DTP '
    The report is running only when I assign the '*' value  to the authorization objects for the role in which the report is stored:
    S_RS_DTP = * (For DTP)
    S_RS_TR = *   (For Transformation)
    S_RS_DS = * (For datasource)
    I want to restrict the values to the objects related to my report only rather than * which means ALL.
    Please help what values to assign for these authorization objects for the Role.
    Thanks.

    Hi,
    You need to make necessary settings in RSECADMIN for the Authorization Objects. The default values will be * . You have to customize them to suit your requirement.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/101fb4f5-eb7c-2c10-5daa-b479c47f0a14
    Regards,
    Suman

  • How to have rownum in a report based on a view

    How to use rownum in a report or tabular form?
    I wanted to number the rows in a report. The most obvious way would be just stick
    rownum in there. There is a view in a database1. It is merely select a,b,c from various
    things joined together and order by pkey1.
    Apex is in database2 so I have to create a view there across the link
    like:
    create or replace view SOME_VIEW as
    select * from OTHER_VIEW@SOMELINK
    alter view SOME_VIEW add constraint PK_SOME_VIEW
    PRIMARY KEY (pkey1)
    DISABLE NOVALIDATE;
    The problem is if I try to include rownum in the query in the report I always get:
    failed to parse SQL query:
    ORA-01446: cannot select ROWID from, or sample, a view with DISTINCT, GROUP BY, etc.
    There's no rowid, it knows that the primary key is Pkey1 so what is the problem?
    I know it's rownum that it hates. Maybe I can just number these things some other
    way. However it'd be good to figure out what it is griping about.
    Anyone know?
    Edited by: lake on Mar 12, 2011 9:36 AM

    thanks!
    Actually I made a mistake in testing. And it does work to do this:
    in database1:
    create or replace view VIEW1 as
    select
    rownum "SEQ", etc.
    in database2:
    create view VIEW2 as select * from VIEW1@mylink
    How I screwed up testing that I don't know. I was calling the column NUM before....
    this is good because you can create a report about the next so many of something, such as how many of
    the next batch of mailings have address problems? For that you need to know in what order it will be done and
    when to quit.
    But I'm sure I will use the report rownum thing also. thanks very much.

Maybe you are looking for

  • Can't add apps to my iTunes Library??

    Hey! OK, so I have a bunch of apps and music that is not in my iTunes because I bought them directly on my iPod. When I plugged my iPod into my computer I tried to take the apps off of my iPod and put them onto my iTunes but it won't let me:( How do

  • Hi. I can't open an e-book I've bought. The error message is E_LIC_ALREADY_FULFILLED_BY_ANOTHER_USER

    Hi. I can't open an e-book I've bought. first I've  managed to open it but without log-in ( Ihad forgotten my password), but, as i didn't manage to download the e-book on my e-reader, i've log-in, and tried to re-open it and the, it didn't open.The e

  • Itunes update on windows 8

    I updated itunes on my PC running on windows 8 as prompted to do so by my computer. I re booted both my computer and ipod. Now my computer will not recognize my ipod touch in itunes. Never had this problem before, only when I updated the itunes when

  • Combine routers into one network

    I have an O2 wireless router, an Airport Extreme and a Time Capsule in my house for Internet. Currently they are all connect via Ethernet but all broadcasting their own wifi networks. Is it possible to set up the O2 router (this is the one with the m

  • Text Rollover

    Dear Macromedia Helpers: I wanted to ask if there is any way for me to have a roll over message come up on a text link Besides the one that looks like a error message with the Yellow triangle? I know that when you do a image roll over there is a spac