Dynamic Date Display

Hi everyone,
We got a report using two dates as a query filter (getting records between date_1 and date_2). Now we'd like to display the two dates in the report, for example, include it in the title part to indicate which period we are looking at. Thought something like free standing cell would work but couldn't find a way to extract the dates in query filter.
I wonder if there is any way I could achieve that? Thank you very much!
Regards,
Russo

hi
try to use function
=UserResponse()
for eg =UserResponse("date_1") it will display which date you had selected at the run time of the webi
Note
=UserResponse("provide a exact prompt text")
as per above example
=UserResponse("Enter Fiscal year:")

Similar Messages

  • Dynamic date display as a heading in module pool

    Dynamic date display as a heading in module pool from a ztable
    the ZTABLE contain the date from which the date value is to be printed as a heading like
    "BILLING FOR THE MONTH OF MAY 2010 WILL BE CLOSED ON 26/05/2010"
    thanks,
    Sree

    Hi Sreekanth,
    Simply follow below steps:
    1. Create a Input/Output field in screen layout.
    2. Double click on it and 'Attributes' window will get opened.
    3. Give a 'Name' to it (Ex: Text) and under 'Display' tab, tick 2D display and As label on left
    4. Save and Activate.
    5. In PBO, use below code,
    MODULE status_2000 OUTPUT.
      SET PF-STATUS 'DEMO'.        " PF status
      DATA: l_f_date TYPE sy-datum.
      SELECT SINGLE zdate FROM ztable  INTO l_f_date.         " Select Date from ur ZTABLE
      text = 'BILLING FOR THE MONTH OF MAY 2010 WILL BE CLOSED ON'.
      CONCATENATE text l_f_date INTO text SEPARATED BY spce.
    ENDMODULE.                 " STATUS_2000  OUTPUT
    6. In TOP include,
    DATA:  TEXT type string.     " Same name given to  Input/Output field in screen layout.
    7. Save & Activate.
    Thanks..

  • Error in Dynamic Data display using Visual Design in ADF Richclient Demo

    Hi,
    I am using JDeveloper Studio Edition Version 11.1.1.1.0 with build Build JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407
    I have found a reference to this ADF faces richclient demo on the following link:
    http://jdevadf.oracle.com/adf-richclient-demo/faces/visualDesigns/index.jspx?_afrLoop=2181068810216756#%2FvisualDesigns%2Fdashboard.jspx%40
    I downloaded the WAR file and deployed in the server and running smoothly. But when I added, for example, EmployeesView1, by drag and drop from datacontrol,
    on one of the panels (.jsff page) and ran the application. Now its throwing an exception like:
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'bindings' resolved to null
    Can any guru shed the light on this and help me out?
    Looking forward to any replies.
    Thanks in advance.
    Yadava Rao

    Hi,
    My faces project is having the following libraries under WEB-INF/lib folder:
    adflogginghandler-JDEVADF_MAIN_GENERIC_070917.1906.4699.jar
    adf-richclient-api-11-r1-SNAPSHOT.jar
    adf-richclient-impl-11-r1-SNAPSHOT.jar
    adfsharebase-JDEVADF_MAIN_GENERIC_070917.1906.4699.jar
    adfshare-JDEVADF_MAIN_GENERIC_070917.1906.4699.jar
    commons-beanutils-1.6.jar
    commons-lang-2.1.jar
    dms-11.1.1.jar
    indexer-080909.1801.375.jar
    jsf-facelets-1.1.11.jar
    trinidad-api-1.2.11.1-SNAPSHOT.jar
    trinidad-api-1.2.11.1-SNAPSHOT-sources.jar
    trinidad-impl-1.2.11.1-SNAPSHOT.jar
    xercesImpl-2.6.2.jar
    xmlparserv2-11.1.1.JM7_4119.jar
    Apart from this, my model project contains the following libraries (shows in Project Properties):
    ADF Model Runtime
    BC4J Oracle Domains
    BC4J Runtime
    BC4J Security
    BC4J Tester
    MDS Runtime
    MDS Runtime Dependencies
    Oracle JDBC
    So, please suggest me if something is missing apart from these.
    Appreciate your help or a soultion to get the data from databse in jsff page of dashboard visual design in adf-richclient-demo.
    Thanks

  • HTMLDB - Forms and Reports dynamic data display - can it be done ?

    Hi,
    Can HTMLDB do the following :-
    Forms
    I want to create a standard input form, but depending on the user depends on what input fields they can enter can you make the none relevant fields invisable or not enterable ?
    Reports
    I have a standard report and want to make certain columns invisable (not displayed) depending on the current htmldb user ?
    Is this possible
    Thanks in anticipation
    Simon.

    Hi,
    Download the pdf from http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b16373.pdf, it has very fruitful information about conditional column display. You can find in pdf using keywords Controling When colunm displays.
    Thanks & Best Regards,
    M.Ahmar Arshi

  • Displaying dynamic data on load

    Hello,
    Being a newb, I am trying to figure all this out. I am trying to figure out how to make my dynamic data display. I am close but it still is not working the way it needs to. As you can see in the code I am trying to create a dynamic radio group, to load data when the page loads, but as it is it loads one radio button with a lable of "[object Operation]" and it should be creating 6 radio buttons. You can also see where I have commented out a button, now, if I uncomment it and run the page, pressing the button will populate the radio controls. What I need to do is get it so that when the page loads the data will load without having to press a button. This is taken from examples on the web and modifying to fit my needs. TIA.
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" width="554" height="400">
    <mx:Script>
          <![CDATA[
                import mx.controls.Alert;
                import mx.rpc.events.FaultEvent;
                import mx.rpc.Fault;
                import mx.rpc.events.ResultEvent;
                import mx.controls.RadioButton;
                private function result(evt:ResultEvent):void { 
                      productsRepeater.dataProvider = evt.result;
                private function fault(evt:FaultEvent):void {
                      Alert.show(evt.fault.message);                
          ]]>
    </mx:Script>
    <mx:RemoteObject id="mycfc" destination="ColdFusion" showBusyCursor="true" source="flexdemo.src.DemoCFC" result="result(event)" fault="fault(event)">
    </mx:RemoteObject>    
           <!--  <mx:Button label="Button" click="mycfc.GetData()"/> -->
          <mx:HRule/>
          <mx:Repeater id="productsRepeater" dataProvider="{mycfc}">
          <mx:RadioButton id="buttonsArray"
              label="{productsRepeater.currentItem.affiliatetype}"
              data="{productsRepeater.currentItem}"/>
        </mx:Repeater>
    </mx:Application>

    You are getting close to having this correct - there just needs to be a few changes.
    First, the reason that you are getting the [Operation operation] is that you have the dataProvider for the repeater bound to the RemoteObject.  In this case, what you want to do is bind it to the data the RemoteObject returns.  For this example, the first thing you need to do is create a variable that will serve as the dataProvider.  For example, if you have an ArrayCollection (not sure what format your data will be in), our <mx:Script> block would change to be as follows:
    <mx:Script>
          <![CDATA[
                import mx.controls.Alert;
                import mx.rpc.events.FaultEvent;
                import mx.rpc.Fault;
                import mx.rpc.events.ResultEvent;
                import mx.controls.RadioButton;
                [Bindable]
                public var returnedData:ArrayCollection;
                private function result(evt:ResultEvent):void { 
                   // This assumes that an array is being returned by the service
                   // You first tell Flex that this is an array and then use that to create a new ArrayCollection
                   returnedData = new ArrayCollection( evt.result as Array ); 
                   returnedData = evt.result;
                private function fault(evt:FaultEvent):void {
                      Alert.show(evt.fault.message);                
          ]]>
    </mx:Script>
    With that in place, you can now bind the repeater to the correct data.
    <mx:Repeater id="productsRepeater" dataProvider="{ returnedData }">
    Finally, if you want this to happen when the application loads, you need to listen for the creationComplete method of the application.  When this event is dispatched, you want to tell your remote object to go and grab the data.  Now your opening <mx:Application> tag will look like this:
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" width="554" height="400" creationComplete="mycfc.getData()">
    With those items in place, it should work.

  • How to display dynamic datas and double datas (chart)

    Hi all !
    I would like to display dynamic datas and double datas by using charts.
    However, it doesn't work and I don't understand why.
    Can you help me to fix that ?
    Best regards,
    - John
    Attachments:
    double_dynamics_data.vi ‏54 KB

    Hi John,
    the sine looks like it should look with your VI!
    You convert the DDT to a scalar DBL. That conversion will only use the first sample of the generated sine waveform - usually this is always the same (offset) value when you generate full periods… Or to put it in a mathematical expression: sin(0°)+4 = 4!
    When you want to display waveform you should work with waveforms!
    Actually, I have used Dynamic data type in order to simulate an signal.
    Well, I also simulated a signal in my example VI. I didn't use any ExpressVI to do so…
    In a few weeks, I will receive a sensor. I will use in LabView 'DAQ Assistant' whose the ouput is a Dynamic Data.
    Nobody forces you to use the DAQAssistent ExpressVI. There are nice DAQmx functions available and LabVIEW comes with a lot of ready-to-use example VIs…
    That's why, I used in first place, the 'Simulate signal'. So I think I should keep Dynamic Data Type
    I do think you don't need to use the DDT. I think it's better to understand what is going on in your VI. And I think the DDT will be no help for you…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to call javascript function with dynamic data in display tag

    Hi,
    Iam new to pagination concept. Iam using display tag to display rows in jsp by strtus.
    I have a problem when calling the javascript function using ahref in attribute in display tag.
    <bean:define name="form1" property="EditDetails.List" id="ListDisplay"/>
    <display:table name="pageScope.ListDisplay" cellpadding="0" cellspacing="1" pagesize="10" partialList="false" size="listSize" requestURI="">
    <display:column property="poNo" href='javascript:searchEditDetails("./submitOrder.do? actionID=getMISLoadEdit&poNumberSel=<%=((com.po.bean.EditDetails)poListDisplay).getNo()%>&statusIdSelected=<%=((com.po.bean.EditDetails)ListDisplay).getStatusId()%>")'
    title="Number"/>                         
    <display:column property="strDate"title="Date" />
    <display:column property="orderValue"title="Order Value(INR)"/>
    <display:column property="stringRequestedDeliveryDate"title="Suggested Delivery Date"/>
    <display:column property="statusDescription" title="Status" />
    </display:table>
    The above code display the data in row format is working fine when I click the No It thow javascript error and its not redirecting to the other page.
    When I try this with ordinary struts its working fine the code is:
    <logic:iterate id="polist" name="Form1" property="EditDetails.List" indexId="i" type="com.bean.EditDetails">
    <tr>
    <td ><a href="javascript:searchEditDetails("./submitOrder.do?actionID=getMISLoadEdit&NumberSel=<%=((com.bean.EditDetails)polist).getNo()%>&statusIdSelected=<%=((com.bean.EditDetails)polist).getStatusId()%>")"><html:hidden name="polist" property="No" write="true" /></a>     </td>
    <td><html:hidden name="polist" property="strDate" write="true" /></td>
    <td><html:hidden name="polist" property="orderValue" write="true" /></td>
    <td><html:hidden name="polist" property="stringRequestedDeliveryDate" write="true" />     </td>
    <td><html:hidden name="polist" property="statusDescription" write="true" /></td>
    </tr>
    </logic:iterate>
    Please help me how to call javascript with dynamic data.
    Thanks in advance

    The ADF Mobile Container Utilities API may be used from JavaScript or Java.
    Application Container APIs - 11g Release 2 (11.1.2.4.0)

  • Displaying dynamic data on every page of standard text

    Hi All,
    I m using standard text (created in SO10) in smartform . I want to display dynamic data on the top of every page of standard text.
    Displaying the dynamic data is not the problem, but how would i know where is page finished(or started) as Preview in SO10 may not look the same as smartform output.
    I dont want to do this manually by adjusting the size of window. Is there any other way to do the same??
    Vanita.

    Try to create a text in your SF and write the dynamic data.
    To know in which page use &SFSY-PAGE&
    this system fields may also be helpful for dynamic text on each page
    &SFSY-COPYCOUNT0&   "COPY COUNTER( 0 = ORIGINAL, 1 = 1st COPY)
    &SFSY-COPYCOUNT&   "COPY COUNTER( 1 = ORIGINAL,  2 = 1st COPY)
    Still you can called DYNAMIC text through your standard text.. but place your conditions.
    Regards,
    SaiRam
    Message was edited by:
            Sai Ram Reddy Neelapu
    Message was edited by:
            Sai Ram Reddy Neelapu

  • Can't get a dynamic data type and wire (waveform double) to both display on a waveform graph

    Hi,
    I'm teaching myself LabVIEW. I wish to delay a wave form and display it with the non delayed wave form. I used a delay from the examples. The output of the delay is wire (waveform double). The Simulate signal output is dynamic data. My conversion from wire (waveform double) to dynamic does not display on the waveform graph. The VI is attached. Can anyone offer any comment.
    Solved!
    Go to Solution.
    Attachments:
    Three input graph.vi ‏92 KB

    It is displaying just fine.  The display is hidden behind the display of the second signal. Expand the Plot Legend to show all three plots. Then toggle the plot visible property of the second and third plots.
    Lynn

  • Can I display XY Graph data as Dynamic Data?

    Hi all,
    I have an application that treats XY Data, i.e. data with the X axis
    gaps not constant (because the trigger is external and it has the
    interval not constant), and I would like to use some of the utilities
    related to Dynamic Data. I don't know if that's possible but I suspect
    that Dynamic Data must have constant X axis gaps. Can anyone confirm
    that point? Or the possibility of transforming that data? How could I
    do that?

    If you already have the data as two separate arrays (an x array, and a y array), then just use the XY Graph and a bundle node to plot it. If you want to use the Dynamic Data type that was introduced in LV 7, then just use the To DDT conversion bullet. You can also use an interpolate routine to "shift" the x values around, but it doesn't sound like you want to do that.
    J

  • XML Publisher - Dynamic Data Columns Issue

    Hi,
    I am creating a amortization report where I need to show the amortization schedule for unearned revenue. Customers have signed different years of contract and I need to show the amount as per their remaining contract months. So if there are 2 month remaining in the contract then I should show the data for 2 months only and if there are 10 months then I should display 10 months. If we run the report for both customers then it should display two lines in report. For first customer the data should be only for 2 months and for second row(customer) there should be data for next 10 months. These months should be columns in the report(like excel columns, not rows). I need to display all months in columns instead of rows.
    I have acheived that using Dynamic Data Columns as mentioned in the user guide. Everything is working fine except following issues -
    1. How to create page level total?_
    I have created page total in my template using <?add-page-total:TOTUREV;'UREV'?> and displaying using <?show-page-total:TOTUREV?> but when I run the report in excel format these page total do not display. These columns are static columns not dynamic.
    If I run the report in pdf format then the static column total is displayed correctly.
    2. When I run the report in excel format then report run fine and it shows all the columns properly but if I run the report in pdf format then the dynamic column are not displayed in their own columns, all the columns are overwriting each other in a single columns itself, its not expanding.
    3. How do I get the total for the dynamic columns?_
    I need to display the page level total for the dynamic columns also, how do I do that?
    4. When I run the report in excel format the 2 decimal places of the numbers are gone(it works fine in pdf output), like 12.50 becomes 12.5 and 14.00 becomes 14. I need to maintain those 2 decimal places. I have tried using <fo:bidi-override direction="ltr" unicode-bidi="bidi-override"><?format-number:CVALUE;'999999D99'?></fo:bidi-override> but this does not solve my problem completely. It shows the values correctly in excel but then I am not able to do any calculation on those columns, looks like it converts them to text values.
    Any help is really appreicated. Please let me know if you need the xml template and data file.
    Regards
    Hitesh

    Hi Hitesh,
    Can you please upload your RTF and XML template file? I will try to spend sometime on this issue.
    Cheers
    Sachin

  • SUB Totals within a Dynamic Data Column

    Has anyone ever calculated SUB Totals in a Layout with a Dynamic Data Column?
        The TOTAL for all data is expressed on the Data Column tab of the Layout as C(1):C(1) - 0FISCPER / Posting Period is the Dynamic Characteristic.  When the system actually displays the 12 columns of data for the Year, the formula for TOTAL is also adjusted - no problem here.  But the user also wants SUB Totals, by Quarter, within the Year.
        Any insight or suggections are appreciated !
    Thanks,
    Lyle

    Hello,
    use variables Q1, ..., Q4 for the quarters and create
    data colums as follows
    1 Q1 dynamic = X
    2 Total C(1)
    3 Q2 dynamic = X
    4 Total C(3)
    5 Q3 dynamic = X
    6 Total C(5)
    7 Q4 dynamic = X
    8 Total C(7)
    9 Year Total C(2)C(4)C(6)+C(8)
    Regards,
    Gregor

  • Exporting Dynamic data to a formatted excel-readable array

    Hi all,
    I am trying to export some data into an excel sheet (csv) by creating a new file in which the data is stored. With the current set up that i have, i keep on running into the following problems:
    1. After every iteration in a single run, a dialogue box pops up and asks me  where to save the data, after i have already specified a file name
    2. The data format in the excel file is not what i wasnt. The data is all displayed as one string while i would like it to store the data in different columns.
    Some background: In the section of the vi that i have attached, i use 2 DAQ assistants. The first is used to obtain the initial voltage value at the 2 piezos which is then fed into the rest of the vi, this needs to be done just once, at the beginning of the vi run. The second DAQ asst is used to monitor and save the voltage as it is gradually increased and applied to the piezos.
    A picture of the section of the vi im having trouble with is attached, along with the entire vi.
    I would appreciate any help you can give me on these problems.
    Thanks!
    Attachments:
    errorvi.JPG ‏50 KB
    Coordinate Writing V2.vi ‏166 KB

    I Cant run your vi at the moment but from what i can see.
    - use the file open vi from the file I/O pallette rather than the Express file open VI you have and supply it with a proper path, not a string.
    - I prefer to use .csv (Commas Seperated) instead of tab seperated as i find it easier to read in a string indicator or similar and is just as easy to open in excell.
    - How many Samples is your 2nd Express DAQ function doing?  If it is multiple you will need to seperate the samples by comma also (or average them out etc).
    - I rarely use dynamic data but i think you would be best to extract the actual data values out from the data type at least to get you up and running (It is coerced at the moment and may not be doing what you expect it to do).
    craigc
    Message Edited by craigc on 05-19-2009 03:24 AM
    LabVIEW 2012

  • Dynamic Date selection inactive

    Hi,
    I am not able to give dynamic date selection in a variant. (D: Dynamic date calculation).The traffic light is displayed in red and there is no options such as
    current date etc. is there any need to do some settings to get these options.

    Hi,
    have a look at the below link..  ( they have mentioned the steps of customer exit variable fassigning for reporting agent)
    https://websmp110.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700003598422003E
    Regards,
    Siva.

  • Plot dynamic data with time stamp

    Hi All
    I would like to create a plot of dynamic data, (Voltage readings taken with an In 6008) versus time.
    When the loop starts taking voltage data I would to plot the data versus elapsed time. Voltage versus time elapsed. I have read many examples and tried for many hours to get this to work.
    Please help!
    Mike

    Hi Mike,
    Are you using a Waveform Chart? A chart will continuously plot the data versus time as it is acquired. Try right clicking on the x-axis and selecting Properties>> Display Format. Here you can change the way time is displayed on the x-axis. You can also adjust the way the data is displayed by right clicking and going to Properties>>Appearance>>Update Mode.
    I hope that helps! If not, can you indicate what specifically you have set up in your code and how the result is different from the plot you would prefer to create.
    Thanks,
    Matt
    Product Owner - NI Community
    National Instruments

Maybe you are looking for