Prompt i want to display as From Date & To Date - as a lastmodified date

Hi All,
i want to displayed as a from date and to date from the column name as lastmodified date in the prompt. in the prompt i selected the between option it is displayed as a between and not as a from date - to date.
From Date(prompt button as calender)----------To Date
Thanks
Chandra

Hi,
can u pls look into the below link
http://docs.oracle.com/cd/E10415_01/doc/bi.1013/e12188/T421739T524310.htm

Similar Messages

  • Want to display results from database pagewise ?

    I have 500 records in the sql server 2000 then i query and retrieve them in a resultsets. and then i want to display 10 records per page having the facility to navigate to the Previous and Next Record also going to first and the last record.
    like we are using when we navigate from this forum
    FIRST PREVIOUS 1 2 3 4 5 6 7 8 9 10 NEXT LAST
    secondly if their is a possiblity their should be a search page to to specific page like this
    Go To this Page (Textfield)
    third thing when i am on first record the it shouldnt show PREVIOUS button and when it is in the last it should not show NEXT.
    this thing should be done by Using JSP , Servelets and Beans...
    and PLEASE DONT SAY THAT IT HAS ALREADY BEEN ASK IF SO TELL ME THE LINK BECAUSE I CANT FIND ANYWHERE IN THE FORUM SO PLEASE TRY TO PROVIDE THE SOURCODE OR ATLEAST A REFERENCE FOR IT.

    for your task there is nice keyword in MySQL:
    LIMIT [offset,] rows
    maybe MSSQL has something similar...
    though i haven't seen such a keyword in oracle nor postgre... nor mssql (but i haven't looked for it from there...)
    one way would be to skip first X results in resultset... in PyML i have used method .skip(count) for skiping count rows, but i'm not sure that in java there is equivalent for that, so you might have to just call ResultSet.next() for count times, and then ten more times to get desired data for your page.

  • I want to prevent users from saving a PDF form with the data filled in

    I am using Adobe Acrobat X Pro to create a fillable PDF form.  When I open my form in Acrobat Reader XI, it says right at the top "You can save data typed into this form."  I have NOT saved it as Reader Extended PDF. This is a form that will be emailed to recipients or available to download from our website as a PDF so they can fill it out on their office computer, print with the data filled, and then fax or snail mail to us. (No online or email submissions.)  We do not want them to accidentally save confidential information on the form that will be visible to the next user when they close it, or to Save As and keep the filled form.
    I know there are still ways to do it if someone really wants to, like printing it to PDF or using a PDF software other than Reader, but these are not folks who would have time or intention to do such a thing.  99% of them will be using some version of Reader, probably a much older one than mine.  Thank you for any advice!

    Thank you Gilad and George for trying. I just discovered both of you have replied to this issue here - http://forums.adobe.com/message/5881211#5881211 - which is my exact same situation; I am also a regional health care agency trying to provide forms for health care providers! (It's a small world.) I just didn't find this thread the first time I searched for answers.  I will investigate the JavaScript reset Form statement. Thanks!

  • Display images from a SQL database

    I want to display images from a SQL database. The images are in a table under a specific column and are stored as a link to the image. How would I display the images from the column in LabVIEW?
    I'm using LabVIEW 2013 version 13 and SQL Server 2012
    Paul Power
    I have not lost my mind, it's backed up on a disk somewhere

    Hi PauldePaor,
    I hope you are well.
    Once you have pulled the data from the database into LabVIEW in a string form (or path), you can simply use the Read BMP File (Or jpg, png depending on the file type) VI.
    More information can be found here:
    http://digital.ni.com/public.nsf/allkb/02971A30F5D8FC6986256A0A004F11A0
    Kind Regards,
    Aidan H
    Applications Engineer
    National Instruments UK & Ireland

  • Is TRex required to display content from Content Server in the Portal?

    Hi all gurus!
    A short question: do you have to have TRex (or any other search/index engine) when you want to display content from a SAP Content Server in the portal? Or does the content server has its own search/index engine?
    Best regards
    Benny Lange

    Hi,
    Sap content server can be added in the portal as an KM repository. So configuration is needed. But when finished you can open and look at the content server like they are normal KM folders. TREX on the other hand is advisable in order to have the means to quickly find something in your content server. Otherwise it is like any other stupid file structure. lots of files and lots of folders.
    Depending on you portal version you need to install a bussiness pack for document managment to get the content server visable in KM
    Greetz

  • Want remote display

    Dear friends
    i have two sun blade-100 systems in diffrent rooms i want to see the display of the other systems user's activity like " i want to see the netscape brousing of other system's user"
    remotely from my system

    I think you need to be more clear in your question. Do you want to display applications from a remote SUN box locally on your terminal? That can be done easily.
    1. On your local box give permission to display applications via the "xhost" command.
    % xhost <IP address of remote server> (or hostname)
    or
    % xhost +
    (to allow any server to display their apps on your local machine. Less secure...but maybe you don't care)
    2. Login to remote box and point the DISPLAY variable back to your local machine. Thus
    % export DISPLAY=10.124.8.100:0
    (if your local box was 10.124.8.100) and assuming you are using the bash shell.
    3. On remote box, start a GUI app, e.g. Netscape or xterm...should be on your local machine now.
    Easy. If your local box is a PC, you need 3rd party application, like "exceed" to be running.
    However, if you want to "snoop" on users of these 2 boxes in different rooms, that's a different ball game. You need to be more clear on your question :)
    Patrick/

  • Ref Cursors / throwing data into a Ref Cursor as data is fetched

    I was wondering if anyone has executed an SQL statement and as each row is being fetched back from an SQL, doing some data checks and processing to see if the row is valid to return or not, based on the values being fetched in an SQL.
    For example, I'm taking an SQL statement and trying to do some tuning. I have an Exists clause in the Where statement that has a nested sub-query with some parameters passed in. I am attempting to move that statement to a function call in a package (which is called in the SELECT statement). As I fetch each row back, I want to check some values that are Selected and if the values are met, then, I want to execute the function to see if the data exists. If it does exist, then, I want the fetched row returned in the Ref Cursor. If the criteria is met and the row doesn't exist in the function call, then, I don't want the fetched row to return.
    Right now, the data has to be thrown to REF Cursor because it's being outputted to the Java application as a Result Set.
    I've found many statements where you can take a SELECT statement and throw the Results in the Ref Cursor. But, I want to go a step further and before I throw each row in the Ref Cursor, I want to some processing to see if I put the Fetched Row in the Ref Cursor.
    If someone has a better idea to accomplish this, I'm all ears. Like I say, I'm doing this method only for the sake of doing some database tuning and I think this will speed things up. Having the EXISTS clause works and it runs fast from an End-user standpoint but, when it processes on the database with the nested subquery, it is slow.
    Here's an example of something that might be a problem (Notice the nested subquery). I moved the nested subquery to a function call written on the database package and make the call to the procedure/package in the SELECT statement. As I process each row, I want to check some values prior having the function call execute. If it meet some criteria, then the record is Ok to fetch and display in the Ref Cursor. If it does not meet the criteria and goes through the function and doesn't return data, then, I don't want the Fetched row from the main query to return the data.:
    SELECT EMPNO,
    FIRST_NAME,
    LAST_NAME
    FROM EMP E,
    DEPT D
    WHERE E.DEPTNO = D.DEPTNO
    AND EXISTS (SELECT 'X'
    FROM MANAGER M
    WHERE M.MANAGER_ID = E.MANAGER_ID
    AND MANAGER_TYPE IN (SELECT MANAGER_TYPE
    FROM MANAGER_LOOKUP ML WHERE ML.MANAGER_TYPE = M.MANAGER_TYPE))
    Any help or ideas of other things to try is appreciated. Keep in mind that I am returning this data to the Java application so, throwing the data to a Ref Cursor in the PL/SQL is the ideal method.
    Chris

    Ref cursors are not required nor desirable when writing java database application. Cursors are mentioned only once in the JDBC documentation reference guide, in the section "Memory Leaks and Running Out of Cursors".
    In a word cursors are just plain ridiculous, and in fact I never used them in my 15+ years of application development practice:
    http://vadimtropashko.wordpress.com/cursors/

  • Want to display a date in column heading.

    Hi all,
    Will be thankful, if anyone can tell me how to solve one of the issue i am facing in webi variable display.
    In universe, i am creating one prompt for date and user will enter the desired date, and with respect to that date, the previous date and previous month last working date will come. In my Webi report , i have 3 dates and one measure(Quantity) with other dimensions like Product and Subproduct. 
    I have one cross table in which in want to show the 3 dates as Column heading, Product as row heading and Quantity(measure) in the table body. I have one more dimension as Area... which i want to show in horizontal way, for each Area, i want to show prompted date, previous date and previous month last date. I have created 3 variables.... 
    1. Current date = Max(date) In Report
    2. Previous date = Min(date) In Report
    3. Previous Month last day = (date) where (Rank = 2) ForEach(date)
    By this way, I am able to show Current date and  Previous Month last day in column heading, but not Previous day. Will appreciate if anyone can help me on the issue. let me know if any other information is required.
    Thanks
    Archit Sarwal

    Hi,
    The previous date is the previous business day, it can be dynamic. And previous month's last day is last business day, it can also be dynamic. And Previous daye can also be previous month's last business day in one of the scenerio.
    Actually i am using 3 filters with prompts (common prompt) in universe side. User will enter the date and corrosponding previous business day and previous month's last business day will come. 3 filters are:
    1. Current_Day = @prompt('Enter Date(YYYYMMDD)','A',,Mono,Free,Persistent)
    2. Previous_Day = (SELECT TOP 1 Date from [TableName] where Date < @prompt('Enter Date(YYYYMMDD)','A',,Mono,Free,Persistent) Order By Date Desc)
    3. Prior_Month last Day = (SELECT TOP 1 Date from [TableName] T where Month(T.Date) = Month(DateAdd(mm,-1,@prompt('Enter Date(YYYYMMDD)','A',,Mono,Free,Persistent))) Order By T.Date Desc)
    Dates are coming correct from Universe.  In Webi, i have created variables...
    CurrentDate = max([Date]) In Report
    LastDate = Min([Date]) In Report
    PriorDate = [(Date]) where ([Rank]=2) ForEach ([Date])
    I have calculated Rank for Date, and Rank 2 shows the Prior Date. Also, i have Entity, and want to show these dates for each entity along with 2 -3 more columns that depends on these 3 dates values. I am attaching the screenshot for the sample.
    Thanks
    Archit Sarwal

  • Historical data in r/3 wants to display in bw

    Hi
    i have some coundition types which i merge in new coundition types,now i want to generate a report so on the basis of coundition type i can see the cummulated fright rates
    can anybody let me know for new coundition type i can do this no problem but what about the coundition types which are old one and mapped to new one how i'm able to get historical master data to be displayed in bw
    thanks
    rubane

    i need to to pull data in bw from r/3 for frieght rates
    example for rate is from source to dest(in rows) and on the basis of this we have counditon types(in columns) which we will put in coloums and on the base of those cound type we will get cummulated value of master data rate.
    like
    source  dest   rate(based on coundition types)
    now in r/3 some coundition type  are changed to new ones or we can say merged to new ones, now my question for new one i can pull no problem but what i'll do for the historical master data like coundition type in 2006 are diff and 2007 is diff
    but they mapped in each othe
    thx
    rubane

  • I have only a single texbox.i want to display names , date,priortiy in the same textbox when i typed @ names should be display names like when u type comment in facebook for particular person it will display name. when i type ! date should be display and

    i have only a single texbox.i want to display<big style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe
    UI', Arial, sans-serif;line-height:normal;"> names , date,priortiy </big>in the same textbox <big
    style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe UI', Arial, sans-serif;line-height:normal;">when i typed @ names should be display names</big> like
    when u type comment in facebook for particular person it will display name. when i type ! date should be display and when i type * priority should be display in same textbox like
    example <big style="margin:0px;padding:0px;border:0px;color:#111111;font-family:'Segoe UI', Arial, sans-serif;line-height:normal;">@
    names !today date or tomorrow date etc * priority high,low ,medium etc</big>

    This is my first time posting here, so I'm sorry, I re-read my post several times and honestly did think I provided enough information, but you're right, it wasn't the right kind. So please (continue to) bear with me, I'm really not trying to be ignorant. I honestly assumed the issue was something I was doing wrong in Bridge, nothing to do with my computer specs.
    I am using a late-2008 Macbook, running Yosemite 10.1.1 (screenshot below)
    On the Mac I am using Bridge CC 6.1.1.115 and Photoshop CC 2014 (2014.2.1 release, 20141014.r.257 x64)
    Here is a link to the System Info from Photoshop on the Mac
    Here is a screenshot of my System Overview on the Mac
    Here is a screenshot of my Photoshop performance preferences on the Mac
    I am also using a Dell desktop with Windows 8, running Photoshop CC 2014 (2014.2.1 release, 20141014.r.257 x32) and Bridge CC 6.1.0.116 x32 (on a separate CC account with separate files that I don't try to sync or anything)
    Here is a link to the System Info from Photoshop on the Windows computer.
    Here is a screenshot of the system overview on the Windows
    Here is a screenshot of my Photoshop Performance preferences on the Windows computer
    I work with jpg, psd, ai, svg, and pdf files. Most of my stacks are three different file types of the same image, usually jpg, psd/ai, and pdf.
    I have not recieved any error messages
    I am not having issues opening raw files, I am not having printing issues, I have listed the troubleshooting steps I have taken.
    Is there any information you need that I missed? I'm trying not to be a dingus, but I'll have to ask you to be patient with me in the meantime. I haven't ever looked up half the hardware/software details that were suggested and I don't know how to off the top of my head, so I provided what I already knew how to

  • RDL report(2008).Want to display different number of rows from second page onwards than the first page.

    I have used pagination to display the report data.I have used page break.I want to display 10 records on first page and from second page onwards I want to display 25 records on all remaining pages.
    I followed this link to show 25 records for all page. "http://www.sqlchick.com/entries/2010/9/11/displaying-fixed-number-of-rows-per-ssrs-report-page.html". Now suggest me how display 10 records only on first page having 25 from second page onwards.

    Hi mukesh_harkhani,
    According to your description, you want to insert page break for different number of rows, display 10 rows on the first page and 25 rows on the following pages. After testing the issue in my SQL Server Reporting Services 2008 environment, we can use the
    method below to achieve your requirement:
    In your scenario, right-click the group which contains the expression: =CEILING(RowNumber(Nothing)/25) to open the Group Properties dialog box.
    Modify the original expression to the following in the Group on textbox:
    =Floor((RowNumber(Nothing)+14)/25)
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to show regions markers in Google maps based on longitude and latitude. on-click of region marker i want to display all the country locations based on the region from share point list?

    Hello every one,
    In My requirement i am having  some regions with longitude and latitude in one SharePoint list. in another SharePoint list i am having the country values with longitude and latitude and region as look up field.  I want to display all the region
    markers in Google maps. on click of any region marker i want to zoom in the map to region level and i need to display all the country markers in Google maps under the region. can any body help me on this requirement.
    Thanks in advance,
    Venu.

    Not sure about Google Maps but this is fairly easy to do with Bing Maps. I've used Bing Maps with SharePoint lists fairly regularly. Here are some blog posts:
    http://blogs.bing.com/maps/2013/03/26/connecting-a-sharepoint-list-to-bing-maps/
    http://blogs.bing.com/maps/2013/03/07/geocoding-a-sharepoint-list-item/
    Once you have your sharepoint list connected to Bing Maps you can easily filter the list data based on the selected country if you have a country column in your list. If you want to take things a bit further an create a much cooler user experience you can
    also use the Bing Maps GeoData API to get the country boundaries and show them on the map as polygons. These could be color coded based on some metric, or set up as the clickable area on the map rather than a pushpin. Here is a blog post on how to use the
    GeoData API with the JavaScript Bing Maps control:
    http://blogs.bing.com/maps/2013/06/25/retrieving-boundaries-from-the-bing-spatial-data-services-preview/
    http://rbrundritt.wordpress.com

  • Want to display data in receipt form in Smartforms

    Hi friends,
        I want to display data in receipt form in smartforms....Format is given below:
        Name : [fieldname1]
      number : [fieldname2]        country code : [fieldname3]
    n so on....It should display 1 record on one page and so on.......how can i go about it....
    Regards,
    Vijaya

    Hi Vijaya,
    First, you need to design the lay-out for your pages.
    Say for example in your case you take a window XYZ (variable type) to print:-
    Name : fieldname1
    number : fieldname2 country code : fieldname3
    Now you have some amount of data for this detail.
    Say you print this data in a table.
    After the last node for printing data, insert a command line under the last node (in main area of the table control).
    And on the next page use the same MAIN window (or use next page of PAGE1 as PAGE1).
    In other way, if you are printing a single record on a page.
    Then this can be done by simply taking a loop statement in the main window of the page followed by text-fields (from internal_table into work_area).
    Under the loop statement, in these text-fields you can simply print your data (using the work area) :-
    Detail 1 : &wa-field_name&
    and so on....
    After the last detail (node), insert a command line and write 'NEW-PAGE'.
    This will break your control on to next page and eventually one records will be printed on a single page.
    Hope this solves your problem.
    Thanks & Regards.
    Tarun Gambhir.

  • My AppleTV 2 when I want to play media from iTunes 10.5 and my AppleTV also has up to date firmware Keeps dropping my "Home Sharing" connection while all other media sources YouTube,Netflix...etc still work?

    My AppleTV 2 when I want to play media from my WinVistaPC 64bit iTunes 10.5 and my AppleTV also has up to date firmware when trying to play media from the "Computer" tab on the AppleTV my  PC and all of the media be it music ,movies or podcasts it tries to load  the spinning thing on the middle of the screen never loads then my PC disappears from the AppleTV and says "From your computer in iTunes login to Home Sharing with your AppleID " so I do that and IT STARTS WORKING! BUT! then after the media finishes playing it regresses back to the same problem and I have reinstalled iTunes and it doesnt resolve anything it says under the advanced tab of iTunes 10.5 that "Home Sharing is ON!" and I have to click "Turn off Home Sharing" then re enter my password again and restart the entire process only to have it let me play 1 media file of any Apple formatted files once it ends its back to the drawing board? Thankyou in advance for any knowledge you may share
    Samuel

    My AppleTV 2 when I want to play media from my WinVistaPC 64bit iTunes 10.5 and my AppleTV also has up to date firmware when trying to play media from the "Computer" tab on the AppleTV my  PC and all of the media be it music ,movies or podcasts it tries to load  the spinning thing on the middle of the screen never loads then my PC disappears from the AppleTV and says "From your computer in iTunes login to Home Sharing with your AppleID " so I do that and IT STARTS WORKING! BUT! then after the media finishes playing it regresses back to the same problem and I have reinstalled iTunes and it doesnt resolve anything it says under the advanced tab of iTunes 10.5 that "Home Sharing is ON!" and I have to click "Turn off Home Sharing" then re enter my password again and restart the entire process only to have it let me play 1 media file of any Apple formatted files once it ends its back to the drawing board? Thankyou in advance for any knowledge you may share
    Samuel

  • Hi, I am using USB 8476s to communicat​e to a slave unit in LIN network using LabVIEW7.1​. Can anyone tell me how i can send a header file plus 1 byte of data to the slave in a LIN network. or how do i use ldf file. i want to read responses from the slave

    Hi,   I am using USB 8476s to communicate to a slave unit in LIN network. Can anyone tell me how i can send a header frame plus 1 byte of data to the slave in a LIN network. or how do I communictae with slave using LabVIEW7.1.
    I want to read responses from the slave. When i tried with labview exapmle programs or even using MAX also, while doing some switching action in my slave, i am getting response as Device inactive with timestamp but there is no data format. 
    And I have Lin Description File. Can you suggest me how to use ldf file.
    I am at customer place and It would be great help from you if you can suggest me at the earliest. Thank you

    you may use the LDF Starter Kit to use LDF informations in your application
    http://joule.ni.com/nidu/cds/view/p/id/665/lang/en

Maybe you are looking for