Set Data Reporting policy?

In the latest ARD Manual (v2.2), on p. 85, it states "To set a client data reporting policy", ... choose "manage > set reporting policy".
I'm using ard 3.5.1, and I do not have this option in my Manage menu, nor can I find it anywhere else.
Can someone help me locate it?

Sorry.  The link given to me by another in this forum:
http://support.apple.com/manuals/#appleremotedesktop
first link is v2.2.  I thought the most recent would show up at the top...
I should have looked at the bottom 

Similar Messages

  • As of Date reporting

    What is the best way to implement "As of Date" reports using oracle discoverer?
    Herer is what we need to do:
    First get the Policy data based "As of Date" entered by user and then use this data in conjunction with other tables to get a report.
    Thanks

    I was able to perform AS of Date reporting by using the analytic functions - Lag or Lead. Essentially they retrieve the next(Lead) or previous (Lag) column's value in the table based on your parameters set in within the function. That way you can have a date the record is current and the date next record becomes current( the next activity date) - which is in essence the 'end' date. This allows you to build a between statement and use the date parm from the end user. Note: this assumes for a given record of data you have the 'activity date' - for which it became active.
    You would build a between statement that looks like this:
    <As of Date Parm - entered by user via prompt> BETWEEN Activity Date and <Lead Activity Date function> .. Note you will want to build a calculation with the Lead function syntax and use that calculation itself in the between statement..
    As far as Syntax goes - here is an example - but if you are not familar with windowing functions - you should up on them...
    (Lead(SGRSACT_ACTC_CODE) OVER (PARTITION BY SGRSACT_PIDM,SGRSACT_TERM_CODE ORDER BY SGRSACT_PIDM,SGRSACT_TERM_CODE,SGRSACT_ACTC_CODE))
    OBX

  • Dynamically Set date not changing in schedule Job

    Hi,
    I have created a report with "Order Date" as one of the parameters on the selection screen. I have created a variant, say 'X' , to set this date parameter dynamiccaly as "Current date - 31 days".
    I have scheduled this program to run in background with the 'X' variant daily at certain time.
    Now, for the day on which I created this job , the Order Date is set to correct date . For ex if I am scheduling the job tdy it will be set to 06/10/08. However, for next day , that is tom this date is not getting changed. i.e Tommorrow again Order date is 06/10/08 but it should have been 07/10/08.
    So basically this dynamically set date is not chaning in the scheduled job.
    Any idea why this is happening and what is the corrective measure for this.
    Thanks!

    There is an INITIALIZATION event in the program.......
    Do the processing your date in that event only....
    for ex....
    select-options: date for order-date.
    INITIALIZATION.
    date-low = sy-datum or wat ever.
    Thanks
    Saurabh

  • Crystal Report Viewer 11.5 Java SDK - How to set sub report parameter value

    Good day!
    I have a report with 3 sub-reports in the detail section. Main report has two parameters and each sub-report has one parameter in turn. We have our own JSP to receive parameter values from the user. I am using the following code to do the parameter value setting later into the report. Parameter value setting works for main report, but not for the sub-report.
    I get an Error, for the first sub-report, from the viewer saying:
    The parameter 'parametername' does not allow null values
    On this article: [article link|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap%28bd1lbizjptawmq==%29/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313337333233323331%7D.do]
    It says to set the report name of the parameter field to the name of the sub report. On this aspect, assuming this tip/solution works, I would like to read the names of the sub-reports and their parameter names. I do not want to hard-code them into our application.
    Here is my current code:
    sdk.occa.report.data.Fields parameterFields = new Fields();
    I have a HashMap of <parameterName, parameterValue>
    Iterate through the map
    report.data.ParameterField aParameterField = new ParameterField();
    aParameterField.setReportName(""); //main report
    report.data.Values theValues = new Values();
    ParameterFieldDiscreteValue aParameterFieldDiscreteValue = new ParameterFieldDiscreteValue();
    aParameterFieldDiscreteValue.setValue (aValue);
    theValues.add(aParameterFieldDiscreteValue);
    aParameterField.setName(parameterName)
    aParameterField.setCurrentValues(theValues);
    parameterFields.add(aParameterField);
    viewer.setParameterFields(parameterFields);
    Please look at the line:
    aParameterField.setReportName(""); //main report
    Here's where I would like to say
    if (parameter is subreport's parameter) then setReportName(subreport name);
    Thx

    It was little difficult to navigate down the objects to find the sub reports and their parameters. I am attaching the code:
    May be there are other ways to do the same.
    public String getReportNameForParameter (String parameterName, ReportClientDocument reportClientDoc)
            String result = "";
            boolean found = false;
            try {
                SubreportController src = reportClientDoc.getSubreportController();
                DataDefController ddc = reportClientDoc.getDataDefController();
                IDataDefinition idd = ddc.getDataDefinition();
                Fields fs = idd.getParameterFields();
                Iterator fiter = fs.iterator();
                while (fiter.hasNext()) {
                    IField ifld = (IField) fiter.next();
                    if (parameterName.equals(ifld.getName())) {
                        found = true;
                    //System.out.println ("\t Field Name/Description/HeadingText: " + ifld.getName() + "/" + ifld.getDescription() + "/" + ifld.getHeadingText());
                if (!found) {
                    IStrings reportNames = src.getSubreportNames();
                    //System.out.println ("  Sub Reports If Any ...");
                    if (reportNames != null) {
                        Iterator iter = reportNames.iterator();
                        while (iter.hasNext()) {
                            String repName = (String) iter.next();
                            //System.out.println ("\t Sub Report Name " + repName);
                            ISubreportClientDocument srcd = src.getSubreport(repName);
                            ddc = srcd.getDataDefController();
                            idd = ddc.getDataDefinition();
                            fs = idd.getParameterFields();
                            fiter = fs.iterator();
                            while (fiter.hasNext()) {
                                IField ifld = (IField) fiter.next();
                                if (parameterName.equals(ifld.getName())) {
                                    result = repName;
                                    break;
                                //System.out.println ("\t\t Field Name/Description/HeadingText: " + ifld.getName() + "/" + ifld.getDescription() + "/" + ifld.getHeadingText());
            //System.out.println ("********************************************************** ");
            catch (Exception exc) {
                System.out.println ("Error/Exception while trying to find the report name for parameter [" + parameterName + "]");
                System.out.println ("*******************************************************************************************");
                exc.printStackTrace();
            return result;

  • Payment Due Date Report

    Hi All,
    Our client requirment is T_code control for due date payment every day and follow the track of payment on time.
    Is there any T code for daily due date report.
    Please up

    Hi Jai,
    You can use this report S_ALR_87012084 - Open Items - Vendor Due Date Forecast to forecast on a daily basis amount due for payment. However this report displays only item which are due for payment, items which are overdue would not be displayed in this report.
    This report allows you to enter 2 sets of dates say due with 1 day and due within 30 Days and rest would be displayed due over 30 days.
    Regards,
    Sanjay

  • Stored Procedure With Multiple Result Sets As Report Source : Crosspost

    Hello Everyone,
    I have an issue where i have created a stored procedure that returns multiple result sets
    /* Input param = @SalesOrderID */
    SELECT * FROM Orders TB1
      INNER JOIN OrderDetails TB2 ON  TB1.ID = TB2.ID
    WHERE TB1.OrderID = @SalesOrderID
    SELECT * FROM Addresses
      WHERE Addresses.OrderID = @SalesOrderID AND Addresses.AddressType = 'Shipping'
    SELECT * FROM Addresses
      WHERE Addresses.OrderID = @SalesOrderID AND Addresses.AddressType = 'Billing'
    This is just a quick sample, the actual procedure is a lot more complex but this illustrates the theory.
    When I set the report source in Crystal X to the stored procedure it is only allowing me to add rows from the first result set.
    Is there any way to get around this issue?
    The reason that I would prefer to use a stored procedure to get all the data is simply performance. Without using one big stored procedure I would have to run at least 6 sub reports which is not acceptable because the number of sub reports could grow exponentially depending on the number of items for a particular sales order.
    Any ideas or input would be greatly appreciated.
    TIA
        - Adam
    P.S
    Sorry for the cross post, I originally posted this question [here|/community [original link is broken];
    but was informed that it might be the wrong forum
    Edited by: Adam Harris on Jul 30, 2008 9:44 PM

    Adam, apologies for the redirect, but it is better to have .NET posts in one place. That way anyone can search the forum for answers. (and I do not have the rights to move posts).
    Anyhow, as long as the report is created, you should be able to pass the datasets as:
    crReportDocument.Database.Tables(0).SetDataSource(dataSet.Tables("NAME_OF_TABLE"))
    Of course alternatively, (not sure if this is possible in your environment) you could create a multi-table ADO .NET dataset and pass that to the report.
    Ludek

  • SETS IN REPORT PAINTER

    I have a question. I defined in a set several accounts and in the data base or table may be posible not to have all the accounts I defined within the set.
    If I dont have any account in the table defined within the set.....
    How do I do to show these several accounts with no information in Report Painter??
    THANKS.

    There is one indicator - 'form printout' under report layout -> rows which allows you to print all rows irrespective of whether record exists in database or not.
    See below help of this indicator:
    Form printout
    With form printout, you can print a list exactly as it is defined by the row sets.
    This means that each set entry creates a corresponding entry in the report output, irrespective of whether a suitable database record is found. The system no longer breaks down intervals in row sets. They are treated as if they have a suppress indicator.
    Without form printout, the system would only print rows for which a relevant database record is found. In addition, intervals without a suppress indicator would be broken down into the respective single values.
    If the form printout indicator is set, the Report Writer internally creates data records with zero values and processes these as normal database records. This means that runtime will increase accordingly. This extra time needed is displayed in the report statistics.
    Example
    The row set contains the accounts 1000, 1001, 1002 and the account interval 1010 to 1030. During selection, database records were found for the accounts 1000, 1002, 1010 and 1015.
    The following reports are output:
    With form printout:                                                                               
    Amount
    Account 1000
    100.00
    Account 1001
    0.00
    Account 1002
    200.00
           |Accnts 1010-1030 |   700.00 | <- Caution: Interval is not
                                                                                    |  Total          |  1000.00                                  |             broken down
    Without form printout:                                                                               
    Amount
    Account 1000
    100.00
    <- Note: Account 1001 is missing
    Account 1002
    200.00
    Account 1010
    300.00
    <- Caution: Interval is
    Account                                                                                1015
    400.00
    <-          broken down
    Total
    1000.00

  • Setting Isolate Report/Page sections and Isolate Group sections using SDK

    Hi all,
    Has anyone exported the report to CSV format, by setting Isolate Report/Page sections and Isolate Group sections programmatically. If so, to which object should i set, and what are the methods to do
    this ? The CSV exported report contains lots of these sections, along with the actual data, so i am
    trying to suppress these other data in the exported file.
    I am using BOE SDK.
    cheers
    Nithy

    Hi Nithy,
    RAS SDKs may help you to achive your task.
    I would suggest you to see setGroupSectionsOption and setReportSectionsOption of CharacterSeparatedValuesExportFormatOptions class given in RAS APIs.
    Anu

  • New set for Report Writer

    Hello,
    I am new to the Report Writer.  My understanding is that Report Writer makes use of pre-defined sets of financial objects.  My user wants to create new report group in Report Writer and add some new data which are currently in Z-table. Is this possible? Do we create a new set based on Z-table and then incorporate it in the new report?
    Please advise,
    Thanks
    Galina

    Hi Galina,
    No were SAP released document Z tables is support for report writer.
    moreever SAP recomonded to create reports by using report writer / painter for specific Tables only not for all standared tables.
    as i know not possible to use Z tables for report writer.
    still your business want A table data report, you can able to develop through ABAPer help.
    Refer: http://www.virtuosollc.com/PDF/Get_Reporter.pdf
    Regards,
    Viswa

  • Flexible Employee Data report

    Hi,
    I'm trying to use flexible employee data report and in the output,
    the report is showing the text of the fields, like Employee subgroup text instead of the codes we've given.
    Is there any way of having the report generate the codes instead of the text? Pls let me know.
    Thank you,
    R S

    Hi
    I am not sure whether we can make changes in the standard reports setting.  I hope you can use SAP Infoset Query to solve your issue.
    Please follow the following steps for creating a simple report
    FIRST STEP
    SQ03
    Create user group
    SAVE
    SQ02
    Create Infoset
    ZHCM_PD
    Now select the required infotypes from the screen given
    Then generate the infoset
    Go back to infoset screen and you can see your infoset appearing in the initial screen
    Now assign the infoset to the particular user group using role/user group assignment and Save
    SQ01
    Select Infoset Query
    Open the ZHCM_PD and the following screen will be displayed showing the selection and output screen
    ********When you select output screen, the same will be displayed down.  Just select one field and right click and select Only value**************
    Select the required infotypes selection and output field and give the hit list to see the number of documents present
    To see the output click on output screen
    Please note that when you create the reports, you can select the output either by Only Value/Only Text/ value and text.
    I hope this will resolve your issue.
    Regards
    Santhosh.S

  • Setting the retention Policy to recovery window.

    We are using Netbackup as a our third party tool for corporate backups and have used brbackup with backint on Windows for many years with great success.We would like to incorporate RMAN incremental backups for our backup strategy. Currently our retention policies through netbackup are:
    Backup              Retention
    Daily Online        2 weeks.
    Weekly Online     4 weeks.
    Monthly Online   12 months.
    Redologs            4 weeks.
    We would like to continue to retain the monthly backup. Other than setting the retention policy window to 365, how could we do this???? We would like to avoid growing a huge control file.
    Regards
    Scott

    Hello Scott,
    > We would like to avoid growing a huge control file.
    Ok nice approach, but the (RMAN) data in the control file is reused after the value of the init parameter CONTROL_FILE_RECORD_KEEP_TIME. (has nothing todo with the retention policy)
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams029.htm#CHDDBCDB
    > Other than setting the retention policy window to 365, how could we do this????
    You can use the KEEP clause with the command BACKUP or CHANGE.
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta035.htm#i97063
    Regards
    Stefan

  • How to set NLS character set for report 9i servlet output?

    Hi,
    I am running a Reports 9i report. My problem is that the output HTML file is UTF8 encoded while ALL my 9iASR2 registry setting are set to EEISO8859P2. When I issued the http://&lt;host:port&gt;/reports/rwservlet/showenv?server=servername command it returned that the NLS setting is UTF8.
    Can somebody please help me, how to set this environment variable for the report servlet to EE..P1? Thank you in advance.
    Regards,
    Tamas Szecsy

    Dmitry,
    recently I got this from Oracle support. :-(. Currently when I set the Windows 2000 local and default local to Hungarian and the charset to EE..P2 then I get Central-European encoded charset. I think you will have to experience around to get correct result (if it is possible at all).
    +++++++++++++++++++++++++++++++++++++++++++++++++++++
    This is bug Number 2472932 NLS:RWSERVLET SETS INVALID CHARSET AT THE HTTP HEADER
    marked as fixed in 9.0.2.2 . unfortunately this bug is not published so I will not be able to sent you the bug as a whole but here is problem description in bug:
    iAS9.0.2.0.1 (Reports9.0.2.0.1) on Solaris2.8
    Running rdf with rwservlet sends the invalid charset at the http header.
    Say ias is up with LANG=C, http header for the rwservlet
    is always sent as "iso-8859-1" regardless of rwserver's NLS_CHARACTERSET.
    This is the TCP/IP packet for the GET /reports/rwservlet?report=xxx&....
    HTTP/1.1 200 OK Date: Sat, 20 Jul 2002 01:15:37 GMT Cache-Cont
    rol: private Content-Language: en Server: Oracle9iAS/9.0.2 Ora
    cle HTTP Server Oracle9iAS-Web-Cache/9.0.2.0.0 (N) Content-Leng
    th: 6908 Content-Type: text/html; charset=ISO-8859-1 Set-Cooki
    In this example, to produce a html with other charset than
    iso-8859-1,usually the outputted html has the charset information at
    meta tag by setting "Before Report Value" property in rdf.
    However charset in meta tag is less priority than http header, browser
    such as IE6 or Netscape7 firstly displays the page in iso-8859-1.
    Hence the characters other than iso8859p1 gets garbage.
    To workaround it with IE6/NS7, set proper encoding manually.
    ('View'-'Encoding' for IE 'View'-'Character coding' for NS7 )
    However, NS4.7 does not have workaround for it.
    Besides, starting opmn in LANG=ja, the rwservlet's http header becomes
    Shift_JIS!!. Thus rwserver seems to set the http header based on the
    LANG on Solaris.
    To fix these issues,
    - The http header for rwservlet shold be based on the nls_characterset
    for the rwserver.
    This is no problem for reprots jsp run.

  • Set Date & Time Automatically

    I have an Airport Extreme tied to a cable modem. I also have an Airport Express setup using WDS (remote base station). On both the Exteme and the Express I have checked "Set Data & Time Automatically" and selected "time.apple.com".
    The Extreme finally has the correct date and time. (And I assume year.) However, the Express keeps loggin this error; "No address for NTP server time.apple.com." (I am using the "AirPort Management Utility" to view the logs for each Airport.)
    I tried typing in the raw ip address for time.apple.com but it didn't change anything. Other then this minor issue both Airports are working fine.
    What am I doing wrong?
      Mac OS X (10.3.9)  

    Your setup is similar to mine but my Express is in Client Mode not WDS. Here are some of the log entries I see. After it powers up the time is wrong and it reports the same as you of "No address for NTP server time.apple.com." but after a short time it does!
    Dec 31 17:00:00 Severity: 5 Joined BSS [my AEBS-MAC address]
    Dec 31 17:00:01 Severity: 5 Initialized (firmware 6.3).
    Dec 31 17:00:11 Severity: 3 No address for NTP server time.apple.com.
    Dec 31 17:00:11 Severity: 5 Internet configuration leased (host 10.0.0.5/24 gateway 10.0.0.1 dns1 [my DNS servers] lease 1080).
    Jan 11 06:24:04 Severity: 5 Clock synchronized to network time server time.apple.com (adjusted +1136985823 seconds)
    Jan 11 06:27:31 Severity: 5 Disconnected from network.
    Jan 11 06:27:41 Severity: 5 Joined BSS [my AEBS-MAC address]
    Jan 11 06:27:49 Severity: 5 Internet configuration leased (host 10.0.0.5/24 gateway 10.0.0.1 dns1 [my DNS servers] lease 1080).

  • T5SSCXSSSERVICES - Set Data Tracking for Individual Self-Services

    Hi,
    We have a requirement for BI Report to fetch data from table :T5SSCXSSSERVICES
    The above table could be filled with data when we perform any activities in ESS and MSS.
    I wanted to know what are all required configuration to get data in to the table T5SSCXSSSERVICES
    I understand below mentioned configuration are required:
    IMG Node 1: Activate Data Tracking for All Self-Services
    IMG Node2: Set Data Tracking for Individual Self-Services
    Is it required to activate Business FunctionS et - HR Administartive Servcices?
    Guide me with more inputs,
    Regards
    Ramanathan

    Hi Ramanathan,
    I am facing the same doubt now, are you able to share your experience on how to populate  T5SSCXSSSERVICES ? Appreciate that, and thank you in advance.
    Regards
    Kir Chern

  • Setting a report as a background

    Hi ALL
             Please give me the clear steps how to set a report to run as background with variants using sm36 and sm37 (if possible with example)
    By
    Prashanth

    You can use SM36 and use the "Job Wizard" to define a background job in simple step by step procedure
    Or
    Goto SM37 and specify a job name.
    Next specify the ABAP Program Name of the report you want to execute under Job Step.
    Then click on "Extended Job Selection" and goto the Period Tab.
    There select "Only Periodic Jobs" and then specify the frequency of execution based on Months, Weeks, Days, Hours or Minutes.
    2)you can execute the report in background in SM37 , there are two options , one is as said using f9 or you can make SY-BATCH eq 'X'.
    if x run the report or exit from the program.
    so this way you can execute the report in background and check the spool in sm37
    In order to restrict the user to run it only in background , you can as well check for SY-BATCH condition.
    The other way is try to remove "execute in foreground" option from the menu and this can be done with the function module .
    Do reward points if useful and close the thread if the doubt is cleared
    data: begin of int_exc occurs 0,
    code like sy-ucomm,
    end of int_exc.
    data wf_repid .
    initialization.
    clear int_exc.
    int_exc-code = 'ONLI'.
    append int_exc.
    int_exc-code = 'PRIN'.
    append int_exc.
    move: sy-repid to wf_repid .
    call function 'RS_SET_SELSCREEN_STATUS'
    exporting
    p_status = '%_00'
    p_program = 'wf_repid'
    tables
    p_exclude = int_exc
    Hope this helps,

Maybe you are looking for

  • Setting dynamic WHERE clause in VO

    Hi all, I am using JDev 11.1.2.2.0. Example Scenario : In my application, In the first page, I am choosing a location value. In the second page I have a model based VO. The where clause of the query has to be set dynamically, based on the location wh

  • What Certificate store is used for machine certificates

    I have a requirement to have windows 7/8 users connect to the company network using VPN & IKEv2. I have a RH Linux 7 firewall/authentication server that the windows clients will connect to via a vpn. I have generated a self-signed Certificate Authori

  • How to reset an auto filter in a BEX report.

    Hi experts! When executing a BEX report, some variables which are set up for selection (it can be filled with any value) can not be changed for some users, but normally is possible for all. We would like to reset the values fixed for that users from

  • Changing my computer name after registration

    Guys, I do need help please. I got my macbook Air & I made the registration on imac. Now I need to change my computer name & I can not do it! Can anyone help me please. Thx

  • ICM AW error installing tomcat for Reskilling tool

    Wondering if anyone has seen this before.  I am installing some new AW/HDS for a client and keep running into the same error.  When i choose to enable the re-skilling tool, the system is having trouble creating the service account for tomcat and inst