Inforecord standart report with valid on

hi all,
I am looking for a report which displays the "Valid on" data of Info-record.
I tried the ME1M transaction but the information is not displayed.
Thanks
Pierre

valid on
or
valid from?
if a condition is valid from Sept 1st to Sept 30.
then it is valid on 01.09. ; 02.09; 03.09; 04.09............28.09; 29.09; 30.09;
Which valid on date shall be taken?

Similar Messages

  • Is there a way to create SQL Dev reports with validated binds?

    Is there a way to create SQL Dev reports with validated binds similar to the way user defined extensions can have <prompts> with a <value> that is a SQL statement returning a list of possible values?
    This sure would make select appropriate values for binds in reports easier and less error prone.

    Maybe a forum search on "Windows registry" would turn up some useful things. You're not the first to ask this. You might save yourself and everyone else some time if you'd simply do that.

  • Issue with Validation for some report parameters

    Hello,
    I have a report with 2 parameters : Start_Date and End_Date. And a Validation (Function returning Error Text) with "Error message display location" = Inline Notification.
    Now, in case I have end_date less than start_date (OR some other conditions, that should be checked on server side), I display the inline error (which works fine)
    The problem is that the report still displays having as parameters those wrong "start_date" and "end_date", and I would like the report not be displayed at all in this case.
    I could use conditional display for the report (using the same validation function), after moving parameters in another region, but I don't really like (calling twice Validation function, etc ...)
    Any other idea ?
    Ussing Apex 2.2 right now.
    Thank you.

    You can add a pseudo items start_date1 and end_date1. And a procedure that will run After Submit. You report have to address to this new item. In this case if validation is fired your pseudo parameters will not changed.
    Best Regards, Kostya Proskudin

  • How to create a report with dynamic columns

    Hi all,
    I am using Apex 4.0 with Oracle 10g
    I am creating a report and I need to display columns dynamically based on the item values.
    example:
    I have a table employee with columns name, designation, sal
    In the report page i have a select list with designations and when I select a designation from the select list,
    I need to display the names of the employees horizontally,
    like each name as a new column in the report with that particular designation. and same has to continue when I select different designations.
    Can some one help me how we can do that.
    I appreciate your answer
    Thanks,
    Rik

    Essentially you want to write a pl/sql function which returns a varchar2 string. The contents of the string must be a valid sql statement.
    Once you have done this, you need to add a report region as type sql report and you will have the option of writing it as a query or as a function returning query. Choose function returning query and enter in the function call.
    Note your function must be valid, and must be executable by your apex parsing schema.
    example:
    create or replace
    function test_report(   p1_tablename       in varchar2)
    return varchar2
    is
    v_query varchar2(4000);
    begin
    v_query  :=
    'SELECT * from '||p_tablename;
    return v_query;
    end test_report;Edited by: Keith Jamieson on Aug 15, 2011 4:50 PM

  • Report with Checkbox

    I am trying to follow the example shown at the below link but it is not working. I am modifying some of the code since I am using version 1.6. Any ideas as to what I may be doing wrong. The checkbox appears and I can select and deselect items but I cannot get P6_HOLDER to hold any of the values of the selected items. Thanks!
    http://apex-smb.blogspot.com/2009/01/apex-report-with-checkboxes-advanced.html
    First I created a page item called P6_HOLDER.
    Next I created a report region (sequence 40) with the below code.
    select htmldb_item.checkbox (1, dev_obj_id, 'onchange="spCheckChange(this);"',
    :P6_HOLDER, ':') checkbox, dev_id, dev_obj_desc from edm_dev_obj where
    dev_id = :P6_TEMP_DEV_ID
    **I then created a html region (sequence 1) with the below code**
    <SCRIPT src="http://www.google.com/jsapi"></SCRIPT>
    <SCRIPT>
    // Load jQuery
    google.load("jquery", "1.2.6", {uncompressed:true});
    function spCheckChange(pThis){
    var get = new htmldb_Get(null,$v('pFlowId'),'APPLICATION_PROCESS=CHECKBOX_CHANGE',$v('pFlowStepId'));
    get.addParam('f01',pThis.value); //Value that was checked
    get.addParam('f02',pThis.checked ? 'Y':'N'); // Checked Flag
    gReturn = get.get();
    $f('checkListDisp').innerHTML=gReturn;
    </SCRIPT>
    CHECKBOX List:
    <DIV id=checkListDisp>&P6_HOLDER.</DIV>
    I then created an application process on Demand called CHECKBOX_CHANGE with the below code
    DECLARE
    v_item_val NUMBER := htmldb_application.g_f01;
    v_checked_flag VARCHAR2 (1) := htmldb_application.g_f02;
    BEGIN
    IF v_checked_flag = 'Y' THEN
    -- Add to the list
    IF :P6_HOLDER IS NULL THEN
    :P6_HOLDER := ':' || v_item_val || ':';
    ELSE
    :P6_HOLDER := :P6_HOLDER || v_item_val || ':';
    END IF;
    ELSE
    -- Remove from the list
    :P6_HOLDER := REPLACE (:P6_HOLDER, ':' || v_item_val || ':', ':');
    END IF;
    -- Just for testing
    HTP.p (:P6_HOLDER);
    END;

    Hi
    Create a page level validation (fucntion returning boolean) and write code similar to following
    DECLARE
    v_count NUMBER := 0;
    BEGIN
    FOR i IN 1..APEX_APPLICATION.G_F01.COUNT LOOP
    IF APEX_APPLICATION.G_F01(i) IS NOT NULL THEN
    v_count := v_count + 1;
    END IF;
    END LOOP;
    IF v_count = 0 THEN
    RETURN TRUE;
    ELSE
    RETURN FALSE;
    END IF;
    END;I take it your report query is similar to following
    select apex_item.checkbox(1,"PK_CLMN") Tick, col2, col3 FROM tbl_nameCheers,
    Hari

  • Error on running reports with filters/security

    Post Author: mishel
    CA Forum: Publishing
    Hi,    I am trying to run a report with filters/security defined via Business View.  When I run the report as administrator, I am able to view successfully.  However, when I login as test/dummy account which filters my parameters, I am getting such error - "A request was cancelled.  The necessary security privileges could not be verified.  This indicates a problem with the security server."  Appreciate all the help I can get.Thank you,Michelle

    Hi onizga,
    According to your description that you are migrating SSRS 2008 R2 reports to SSRS 2012 SP2, after migration you got some error like “The Uri string is too long” which only occurred when accessing the drill-through actions, right?
    Usually, the issue can be caused when you try to pass some parameters that cause the URL length to exceed 65,520 characters for a Microsoft SQL Server 2012 Reporting Services (SSRS 2012), you cannot render the report, and you may receive the following error
    message:
    The value of parameter 'param' is not valid. (rsInvalidParameter).Invalid URI: The Uri string is too long.
    This is an known issue and already have the hotfix SQL Server 2012 Service Pack1 Cumulative Update 9 (CU9) as you know, you can try to reinstall this hotfix to fixed this issue:
    http://support.microsoft.com/kb/2916827 .Any issue after applying the update, please post it on the following thread or you can submit an feedback:
    http://connect.microsoft.com/SQLServer/feedback/details/788964/ssrs-2012-invalid-uri-the-uri-string-is-too-long 
    Similar threads for your reference:
    SSRS - The value of parameter 'param' is
    not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long.
    Microsoft.ReportingServices.Diagnostics.Utilities.InvalidParameterException:
    The value of parameter 'pSetOfScopes' is not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long
    If you still have any question, please feel free to ask
    Regards
    Vicky Liu
    If you have any feedback on our support, please click here

  • Report with XML as input !

    Hello,
    I am hv been trying to create a simple report with an XML input but by the end of it, it doesnt give any data on the report.
    I tried it with XML + SQL input, it gave me a blank report and when I tried with a pure SQL input it did give data in the report. I enabled the trace option but couldnt get to the core of the problem.
    My XML & XSD file are all valid, they are auto-generated.
    The report doesnt give any error either.
    Any clue what the problem could be ??
    Regards,
    Madhu.

    Post Author: ashdbo
    CA Forum: Data Connectivity and SQL
    I think it can be done by looking at Crystal Report XI.BUTHow can I do this programatically in Java ?  Thanks,Ashok

  • Report with two pages

    hi all
    I am designing a report which has two pages , i completed first page, i need to insert second page
    how to design report with two pages
    Thanks in advance
    Krish

    Hi,
    Usually,any report automatically adjusts its page numbers as per the quantity of data that needs to be displayed.However, if your specific requirement is to show certain data on one page and the remaining on another then you can simply insert a group on a valid field.
    Following is some information from the Crystal Reports Online Help menu:
    New Page After:
    - When the End of Section check box is selected, the program inserts a page break after the section.
    - The Page Header and Page Footer appear on each page.
    - Use New Page After in the Group footer section to print each group on a separate page.
    May be, if this is not what you are looking for then please elaborate on the report design/data

  • Report with multiple queries

    Hi All,
    I need to develop a report with 5 big queries.. and i need to union these queries based on the parameters passed but we cannot use if condition in the report sql qurey.Also tried to use lexical parameter in the after paraform trigger but it didn't accept lexical parameter as tablename in the query..
    for ex: select * from &w1 is not working.......... (say w1 is lexical parameter)
    please help
    thanx in advance.

    select * from &w1Infact, you can do so, but you have to make sure, that w1 has a valid table-name as default-value. Also, the column-name have to match in all the tables, or you have to alias. And lastly, i strongly suggest not to use SELECT *, but list all the desired columns separately.

  • Publish a Report with a title by OracleAs Reports Services

    Hi folks,
    I use the OracleAs Reports Services to publish my reports (10g version),
    the problem is that the title output is always like this: http://mywebserver/myservletpath/rwservlet/getjobid[id]?server=repsrvr.
    Is there a way to publish this report with a title on the web browser like 'MyReport'.
    Thanks.

    Hello,
    If you have access to Metalink, you can use the RDF provided in the note :
    Note.382952.1 RDF to Debug REP-1401 when using Oraclebarcode.jar
    else, have you set the env. var. DISLAY ?
    It is no more mandatory to set it for Reports but it must be set if you want to use
    oraclebarcode.jar :
    Set REPORTS_DEFAULT_DISPLAY to NO and initialize DISPLAY with the address of a valid "X Display Server"
    Regards

  • Template - issue with validity area - check on multiple usages at once

    Hi all
    One customer requirement Iu2019m trying to solve, and I donu2019t find a solution, is the following:
    <b>When we have two or more validity areas in the generation variant, we want to check on both at the same time in order to get the data on the SDS.</b>
    <b>Is this possible or not and, in case it is possible, can someone explain me how to do this?</b>
    Thanks in advance. 
    Two examples.
    In the generation variant we have validity areas:
    A.     REGION                SE 
                         USE_CAT             IND
    B.     REGION                NO
                         USE_CAT             IND
    C.     REGION                NO
                         USE_CAT             FER
    In the specification data of one VAT we have several instances. The usages added to these instances are:
    1.     REGION                SE
                         USE_CAT             IND
    2.     REGION                SE
                          USE_CAT             FER
    3.     REGION                NO
                         USE_CAT             IND
    When I use generation variant A, I only want to see instance 1 on the SDS.
    When I use generation variant B, I only want to see instance 3 on the SDS.
    When I use generation variant C, I donu2019t want to see any instances on the SDS.
    I donu2019t find how to solve this.
    When I donu2019t use a repeating group type G for validity area, using generation variant A, I get instances 1 and 2. Using generation variant B or C I get instance 3 on the SDS.
    When I use a repeating group type G for validity area USE_CAT, using generation variant A or B, I get instances 1 and 3. Using generation variant C I get instance 2 on the SDS.
    Similar with the exclude check put.
    In the generation variant we have validity areas:
    D.     REGION                SE 
                         USE_CAT             IND       
    E.     REGION                NO
                           USE_CAT             FER
    In the specification data of one VAT we have several instances. The usages added to these instances are:
    4.     REGION                SE
                         USE_CAT             IND        excl
    5.     REGION                REG_EU
                          REGION                SE           excl
                          USE_CAT             FER
    6.     REGION                NO
                          USE_CAT             IND
    When I use generation variant D, I donu2019t want to see an instance on the SDS.
    When I use generation variant E, I donu2019t want to see an instance on the SDS
    I donu2019t find how to solve this.
    When I donu2019t use a repeating group G for validity area USE_CAT, using generation variant D, I get instance 4 on the SDS. Using generation variant E I gent instance 6 on the SDS.
    When I use a repeating group G for validity area USE_CAT, using generation variant D, I get instance 6 on the SDS. Using generation variant E, I get instance 5 on the SDS.
    Kind regards,
    Luk

    Hello Luk
    You wrote: When I understand the documentation of the validity area's correct, options subset, superset, 1:1, ... always reflect to the relation of the entry in the generation variant and the usage that is maintained one on the data.
    This is exactly how the link is done between data in EH&S and the data which show up in WWI document (please exclude the topic of G group at the moment; this is special). Therefore the validity area entered in GenVar is the "Leading" validity area.
    Regarding you questions some "basic" work is needed. May be this help you to find new options to solve your issue:
    SAP EH&S uses the "validity area type" and the "validity area". Common used are the validity types:
    REGION
    DGREGION
    PLANT
    It seems that you have created a new validity area type USE_CAT with validity areas wich you have defined by your own.
    I will give you only an overview about the "normal" use of REGION. In this case the validity area is normally a 1:1 relation to a country (defintion is done via customizing). A "special" validity area is REG_WORLD (please refer to SAP docu). REG_WOLRD contains automatically (without further doing) all other validity areas of type REGION. Now it is always possible to generate new "fictive" validity areas. E.g. you Could define the validity area "NAFTA" which would have a link to the countries: US, MX etc. These validiyta areas can be used in data maintenance and in the GenVar as well.
    As I have no knowlede how you have defined the USE_CAT"  validity areas I can not provide you hints. But I would like to provide further hints in using the "Excl." Flag of usage of the VAT
    Example: if you use Rating 1 in combination with REG_WORLD, DE excluded and the GenVar has the leading validity area DE this value is not used in WWI report. But if the genVar would have the leading validity area BE it would be used.
    Please check really carefully the topic of "subset, superset, 1:1,.." because this is the "key" issue if or if not a VAT will show up in WWI.
    Now back to your next question:
    when on the data a validity area is excluded and the same validity area is present in the generation variant, data should not be displayed even when there is a positive match prasent as well. (e.g. positive match on region, negative match on use category).
    Now as explained above: if in VAT level a validity area is excluded but the same validity area is used as leading Validity area in WWI report the value will not show up. The same should be true if you have used "G groups" with discrete validity areas
    Next question:
    when you defined the data as relevant for region EU and use category industrial, data should only be displayed when the generation variant contains both a region related to EU AND this industrial use.
    Here I would need more information. The GenVar contains by default only one leading validity area. Therefore any further "logic" must be applied by using "G Group" in the template and now things get "worse" in some sense.
    If I remember correct the following should be true:
    If you have used properly the G Group with "Use_CAT" in your WWI document this should work:
    You have defined the VAT as : Rating + DE + IND. Now in a special section of your WWI report you have used the G Group. By using this the value should be printed but not a parallel VAT value with Rating + DE + FER.
    If you have used this logic in your whole template I really salute because the WWI template is in my opinion very complex to understand and the logic how to retrieve the data from EH&S into the WWI report is complex too and the length of the report should have increased by at least 20 % or something like that
    Now you have mentioned a further option you are using:
    "Currently we solve this by creating multiple characteristics (use category specific) and selecting only on validity area region based on the generation variant."
    If I underdstood your explanation correct you have done the following:
    If necessary you have entered a further characteristic in the Class called "use CAT" which must have values. Then using the "if else etc." logic of WWI you select only those VATs into the WWI report which does have the correct "Use Cat".
    Once again:hard work which you have done. In my opinion you should go on with this approach. In doing so you have implemented an "and" logic. Only if the Value does have DE and the UseCat (in characteristic) Is e.g. FER the value will be printed.
    It is complex yes but the "G Group" is much complexer
    Natural solution of demands like this is using further ratings to select the data properly. It seems to be you have excluded this option.
    With best regards
    C.B.
    Edited by: Christoph Bergemann on Sep 4, 2011 5:50 PM
    Edited by: Christoph Bergemann on Sep 4, 2011 5:54 PM

  • Report with continuation pages that have a different layout?

    Is there a good way to build a master-detail report where the detail records continue on pages with different layout after the first page?
    Take e.g. the invoice report example in Oracle Reports Building Reports, part V, chapter 33 and modify it so that only the first page shows the invoice header information and has the full invoice form as a background image; the subsequent pages have a different background image and show only continuing line items that may have even slightly different horizontal field locations. How would you make the line items "flow" to the continuation page(s)?
    I tried building a report with the first page as the header section and the continuation pages as the main section, both with a repeating frame sourced from the same details group but can't figure out how to make the details actually continue on the continuation page and not just start from the beginning...

    Hi,
    You both need to using AIM valid name or both using Jabber based IDs like FaceBook or GoogleTalk  (oor Yahoo if you must)
    Apple's @mac.com and @me.com are Valid AIM names as well as regular AIM names.
    Jabber IDs are gained from non centralised servers and there are thousands of Public and private servers issuing IDs
    Google Mail with "Talk" enabled on your Accounts settings or a FaceBook account with "Chat" enabled are valid Jabber IDs
    Jabber IDs are rarely emails (Google is an exception).
    However they follow the email format which means the AIM Buddy list will "accept" them format wise
    (the same is true to some extent the other way round)
    9:54 PM      Monday; August 13, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • SLCM STANDART REPORTS

    Hi,
    is any standart report available in SAP-SLcM like, registered students, re-registered students, new students, faculty-student based, student-payment etc?
    Is any tcode available in SLcM to reach all SLcM reports like MB00 for MM reports?
    or to prepare queries for these kind of reports, which table(s) shoulld I use?
    any help would be appreciated.

    Ls,
    Within SAP SLcM you have several standard reports (transactional and via Query builder) available (some examples: PIQWAITLMOVE - Waitlist Administration, PIQCOURSEDETAIL - Course Demand Report , PIQGRADING_FILE - Calculate Performance Indexes , PIQ_ISR_MONITOR - Application Overview, SQ01 (look for cm), etc.).
    What SAP SLcM also provides are standard BW extractors which are very interesting if you have BW in place.
    Please check the following link:
    Reporting in Student Lifecycle Management with SAP BI and Business Objects [original link is broken]
    Br,
    Rob

  • Timesheets report with Admin task

    Hi,
      I am developing a report for validation of resource time sheet, I want to include Administration tasks with dates as well. Any references or tips would be appreciated
    Regards, Syed Faizan ur Rehman, CBPM®,PRINCE2®, MCTS

    Hi Syed,
    If you are willing to use the OLAP Cubes, you'll find 3 cubes dedicated to timesheet including administrative lines.
    Otherwise the [dbo.MSP_TimesheetLine_UserView] contains all timesheet information including non project work.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Open report with "Save as" and "Open with" dialogue

    Hi,
    I'm using jasper reports within my application. I manage to open them in a new window but in that case the url containing JasperServer username and password is shown. I would like to open the report without showing the url.
    I tryed using a database procedure (http://sqlcur.blogspot.com/2009/02/jasperreports-in-apex.html) but all I get is a alert window saying "file does not begin with ' pdf-'". Couldn't see what is the problem (I used the same procedure as Ino has in his example) so I thought of another way. Is it possible, when someone clicks a button to open a report, to open that report with a "Save as" and "Open with" pop up window?
    The javascript function that I use:
    <script language="JavaScript" type="text/javascript">
    function openLAPopUpJasper(url){
    w = open(url,"winLov","toolbar=false,menubar=false,location=false,resizable=yes, //scrollbars=yes,status=yes,fullscreen=true");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>
    Thanks in advance!
    Edited by: Josip on Oct 29, 2009 2:55 AM

    Anyone?

Maybe you are looking for