Form on a report - using a field with search button to run report

I am trying to do a very simple report with a custom search field on the top of the form. I am looking at Denes Kubicek's example of Search form on table. Page 68. I want to have a region with the fields to search on, a button and then a report with the data.
I am having problems getting the report to run with the data. Is there an easy step by step guide to do this somewhere? Is there a 'trick'? I setup the branches (created by my buttom), the items, the button, the 2 regions (form on table ) and my report. I don't need the process search_empno as i don't have any hidden fields.
Is there a step by step explanation of how to create the search field and have it call the report? It's wonderful to have the examples but i'm not sure what i am missing
thanks
angie

user629851 wrote:
Robert
Thank you very much. I just went through the report wizard and it didn't ask me which field to query on? I wonder if that is only in certain versions? :(There is a little select box: "Enable Search" on one of the wizard pages. It defaults to NO. Set it to YES and the columns to search on are shown.
i think it is the wizard-page just after you add the query for the report.

Similar Messages

  • JS error while using input fields with type=file on XP SP2

    Hi all,
    we found a new problem in applications which use input fields with type=file running in a browser on Microsoft Windows XP with SP2.
    A typical test layout might look like:
    <html>
      <head>
        <title>File-Upload</title>
      </head>
      <body>
        <form action="/cgi-bin/upload.pl" method=post
              enctype="multipart/form-data">
          <input type=file size=50 maxlength=100000 name="file"
                 accept="text/*"><br>
          <button onclick="document.forms[0].submit();">Send</button>
        </form>
      </body>
    </html>
    When you add a link without the fully qualified path (for example pic01.jpg instead of c:\pictures\pic01.jpg) and click on the 'Send' button, nothing happens and you get a Javascript error 'Access denied'.
    The solution can be found in the MS Knowledge Base article 892442:
    http://support.microsoft.com/default.aspx?scid=kb;en-us;892442
    We still investigate this issue and will inform you about the further proceeding.
    Regards,
    Rainer

    Hi Yepin Jin,
    I am facing the same issue did you solved it?
    Regards,
    Orlando Covault

  • How do you wrap the text on an input field with type="button"

    I want to put 2 lines of text on an input field.
    The button size is fixed at 75 and if there is more than 10 characters it truncates the text.
    The input field is defined as :
    <input type="button"
    value="CI<br>Discrepency"
    class="buttons75x75"
    onclick="javascript:callForm('ciDiscrepency');"/>
    If you can show me how, I would really appreciate it.
    -Gary

    Dug up the code I used to do this a while back:
    //The style sheet
      <style type="text/css">
        .buttonUp {
          border-style:outset;
          border-width:2px;
          width:3em;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
        .buttonDown {
          border-style:inset;
          border-width:2px;
          width:3em;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
    </style>
    //... Example buttons
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';"
                            onclick="alert('Clicked on Small One');">He</div>
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello</div>
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello World</div>
      <div class="buttonUp" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello<br/>World</div>
      <div class="buttonUp" style="width:5em;" onmousedown="this.className='buttonDown';"
                            onmouseup="this.className='buttonUp';">Hello World</div>You could put any javascript you want on the onclick event, so you would call the javascript you previously used to submit the form and set the input name. In this example I had all the buttons be a fixed width, if you leave out the width in the style sheet then the block will snap to fill the same width as the text inside it, much like normal buttons do. The difference is, with a fixed width then text wrapping occurs automatically (like in the 3rd button) while without a defined width the div will only display a second line when the line break is added. Note the the fixed width can be over-ruled by an inline style if needed (last sample).
    The website I pointed to before has a simpler solution (less javascript events needed). An implementation for his approach would be:
    //The style sheet
      <style type="text/css">
        .button {
          border-style:outset;
          border-width:2px;
          color:#000;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
          text-decoration:none;
          display:block;
        .button:active {
          border-style:inset;
          border-width:2px;
          color:#000;
          float:left;
          padding:2px;
          background-color:#ccc;
          text-align:center;
          text-decoration:none;
          display:block;
      </style>
    //... Example buttons
      <a class="button" href="#" onclick="this.blur();alert('Now you clicked linkey');return false;">Hello<br/>World</a>Same deal here with the fixed-width vs.fit-to-content. I add the 'return false;' to the list of the onclick commands so IE doesn't make the 'link clicked' noise and the URL doesn't go to thispage.html#.
    All these buttons work in FireFox 2, IE 7, and Safari 3 if they are running in STRICT mode. The button colors and borders don't precisely match FF and IE buttons, but they are close (although they aren't close at all to Safari buttons).

  • How do I change the text in a field with radio buttons or check box?

    Hi All:
    I have a form that has a list of things with check boxes (could be done with radio buttons) at the bottom. The client wants a single field at the top of the form that repeats the text next to the checkboxes. For example if a user checks the box next to the words "You did thing 1 wrong" the client wants "You did thing 1 wrong" to appear in this text box at the top of the form. If the user checks the box next to the words "You did thing 2 wrong" the client wants the words "You did thing 2 wrong" to appear in the magic box at the top of the page. There are 10 different check box options, so the box at the top would need to be able to have 10 different things in it.
    Client is not interested in a drop down menu. I asked.
    I am in a bit over my head here, so my question is twofold.
    1. Can you do this in Acrobat Pro 10 on a Mac?
    2. Can you supply me with code?
    Thanks in Advance,
    Amy W.

    Create a text field and make this script its custom calculation script :
         var a ="";
         if (this.getField("Check1").value == "Yes"){
         a="You did thing 1 wrong";
         event.value = a;
    Also, replace "Check1" with the name of your check box or radio button, and give it an export value of "Yes".

  • How to change the caption of a field with a button?

    I have serious trouble, don't know why, in order to change the caption of a field.
    I can't do it with a button as in any other way...dropdown list, ecc...
    Assumes that we have a button and "on click" i want to change the caption of a numeric or text field.
    form1.ppp.Button1::click - (FormCalc, client)
    NumericField1.caption.value.text.value = "whatever you want to set it to";
    TextField1.caption.value.text.value = "whatever you want to set it to";
    xfa.form.form1.ppp.NumericField1.rawValue = xfa.form.form1.ppp.NumericField1.rawValue + 1;
    The numerical value inside the numericalfield1 is increased each click...but the caption still the same.
    Why this happen?
    I check many threads on this forum and on google and i still find these samples...
    please help.
    Thank you

    Yes, it is. Also in preview i checked "dynamic XML". is it right?
    i try to download this sample while searching in the forum to solve my problem
    https://acrobat.com/#d=pxtis4z3OxCqWxajZwDS2Q
    i try to add to that form my code and it's work!! i can't undersand why...
    Below you can find my PDF...i can't understand why here the same code doesn't work
    http://www.hsc350.it/download/Untitled2.pdf
    Thank you again!

  • Books: Sorting PDF's / Using info fields with PDF's

    Since it is possible to manage PDF's in iTunes, I've been importing quite a few (well, just drag and drop). So far, I just changed the Name field to the title of the article or book, the Artist field to the authors name, and picked an appropriate genre.
    Since the info fields aren't really made for books and articles, I'm wondering which fields to use for publisher and series information.
    Anybody experimented with this already?

    You may try the VBScript in that discussion:
    http://forums.adobe.com/message/3796931#3796931
    If it works change your *.net script to that.
    If it not work try to get another one to test it on Acrobat X.
    Should be simple because VBS run's on every Win-PC.
    HTH,
    Reinhard

  • Exempt a field with a button?

    So I have a form I am working on, one of the parts is a subtotal, tax, total field. My total field is calculated using sum of subtotal and tax. My tax field is calculated using custom;
    var f = this.getField("subtotal");
    event.value = Math.round(f.value * 7.00) / 100;
    I want a button though that would disable the tax field. This way if I need to apply tax exempt I can press a button and the tax field is no longer automatically calculated and applied.
    Any help?

    It might make more sense to use a check box. The script could check to see if it's selected and calculate accordingly. Something like:
    (function () {
        // Get the subtotal value, as a number
        var v1 = +getField("subtotal").value;
        // Get the value of the "taxable" check box. If not selected, tax = 0
        var v2 = getField("taxable").value;
        // Calculate the tax
        event.value = v2 === "Off" ? 0 : Math.round(v1 * 7.00) / 100;

  • How do you clear an InputText field with a button click

    I am trying to create a calculator and I want to be able to use a "Clear" button that will reset all the values entered in several InputText fields and the total which is a label.     I can update and clear a label using the UpdateContext
    function, but this isn't working for an InputText field.   Can someone provide an example on how to clear one InputText field?

    Hello,
    To do this you need to do the following
    Add an "Input Text", select the inputText and click Express view (bottom right).
    Set the default value to
    textboxvalue
    without any quotes
    On the behaviour / OnVisible of screen you put the inputText on set for example the following
    UpdateContext({textboxvalue: "Enter text here"})
    You can now add several buttons on the screen that do something
    UpdateContext({textboxvalue: ""})
    or
    UpdateContext({textboxvalue: "Enter Text here"})
    Or you could chain it with another OnSelect that is going on on the screen and reset your textbox. You can then also add the value the user has entered in a collection too (see bottom example)
    Navigate(Screen2, ScreenTransition!Fade);UpdateContext({textboxvalue: "Enter Text here"})
    Collect(inputcollection,{userinput: InputText1!Text});Navigate(Screen2, ScreenTransition!Fade);UpdateContext({textboxvalue: "Enter Text here"})
    I believe this should point you in the right direction
    Regards
    StonyArc

  • Person search to metadata field with search REST API on SP2013 online

    Hi!
    I'm developing a sandbox solution to be deloyed on SharePoint 2013 online. This solution contains a web part for a custom functionality. I have a need to make a query against data in user profiles based on two custom metadata properties (mapped to termsets).
    Is it possible to create this kind of query by using search REST API (with javascript)? So I need all persons whos metadata field
    MyOwnTerms contains specific value(s) passed to search?
    I can get all users with /_api/search/query?querytext='*'&sourceid='B09A7990-05EA-4AF9-81EF-EDFAB16C4E31'very (if i set the rowlimit to very high) and the results contains my cystom field
    MyOwnTerms but there is too much of results to loop through just for filtering. I cannot reduce rowlimit because I need ALL the persons with certain metadata value in this field. Is there any way to make this work?
    .Ana

    I went through the same problem and yes it is possible. In my case, I created a Managed Properties specific to my site column metadata, and assign the value only the label of the column metadata for this managed property. So it returns only the value of
    the name and not the metadata ID | Name as the default. 
    So, just move on selectproperties the name of your managed metadata, so it returns the correct value.

  • Using MoviePlayer sample with two buttons and two movies

    I am using the MoviePlayer template and would like to have two buttons on the screen and play two different movies. I can't seem to figure it out as to how I would do this. I have created the two buttons in interface builder but can't figure out the routine in the myViewController.m page to code it. I am thinking I need to create a variable for the movie path that fits into the -(IBAction)playMovie1:(id)sender and (IBAction)playMovie2:(id)sender sections. Please HELP if you have suggestions. I am stumped and can't find anything on this!
    Thanks,
    Frank

    Are you trying to acquire from one camera at a time or switch between the two cameras in the same acquisition?
    If you simply want to use channel 1 instead of the default channel zero, then just add a constant to the IMAQ Configure Buffer VI in the LL Triggered Snap example to specify channel 1.
    If you want to alternate between the two cameras, then you could start with the LL Ring Scan Channels example. Add a Configure Trigger VI between the Configure Buffer loop and the Start and specify "Trigger Each Buffer". By default the example will set up an acquisition on all 4 channels, however you can change this to use only 2.
    The board does not support using different triggers for different channels.
    Regards,
    Brent R.
    Applications Engineer
    National Instrument
    s

  • New to Flash, create a flash form which is emailed using CGI script when submit button is pressed

    I'm trying to build a form in flash that is emailed using CGI
    script. I'm just lost and confused and I just can't seem to figure
    this out.
    This is the CGI coding for HTML and I just need to convert it
    to use in CS3:
    <form action="
    http://www.hostmonster.com/monstermail"
    enctype="multipart/form-data" method="POST">
    Name: <input type="text" name="Name"><br>
    Email: <input type="text" name="mailfrom"><br>
    Phone: <input type="text" name="Phone"><br>
    Service: <input type="text" name="Service"><br>
    <input type="hidden" name="sendtoemail"
    value="[email protected]"><br>
    <input type="submit" value="Send Email">
    </form>
    This is a link to what I'm working on:
    http://www.alternativesolutionsforyou.com/contact.htm

    OK, sorry....no more errors when I test the movie but when I
    test it live....nothing happens???? Here's the link again:
    http://www.alternativesolutionsforyou.com/contact.htm
    Code as it is:
    lv=new LoadVars();
    lv.Name=name.text;
    lv.mailfrom=email.text;
    lv.Phone=phone.text;
    lv.Service=service.text;
    lv.sendtoemail="[email protected]"
    yourSubmitButton.onPress=function(){
    lv.sendAndLoad("
    http://www.hostmonster.com/monstermail",lv,"POST");
    lv.onData=function(){
    // data successfully sent
    // this will execute if your cgi script returns something
    after executing
    I haven't adjusted what happens after you his the submit
    button yet.....just trying to get the email working.

  • Using Java Script With Item Button

    Hi All,
    please i want to know how can i call any java script function from an item button?
    i cannot find the "Action When Button Clicked" tab which is exist in a region button.
    Thanks in advance,
    Ola

    Hi,
    i am having a strange problem with java script
    i have defined the following commandlink in an af:table
    <af:commandLink
    text="lockUser"
    disabled="#{!bindings.lockUser.enabled}"
    id="cl1"
    partialTriggers="cl1"
    action="#{searchBean.lockUser}">
    <af:clientListener method="onlock1" type="click"/>
    </af:commandLink>
    I have defined the following java script function.
    <f:facet name="metaContainer">
    <af:resource type="javascript" >
    function onlock1(){
    if(confirm("Do you want to cancel")){return true;}
    else {
    return false;}
    </af:resource>
    </f:facet>
    when i click on the link, the dialog box appears asking if i want to cancel: when i press yes still the link action is activated. Kindly suggest where i am going wrong.
    the behaviour i need is to if cliked on yes then the link action does not activate and nothing happens. if i press any other button the link functionality should be activated and it should perform the locking functionality

  • Floating Fields with Designer ES2

    I just did an upgrade to Designer ES2.
    I created a new form with static textfields and floating textfields
    then i created a button that filles the floating field with a text using javascript.
    xfa.resolveNode("form1.#subform[0].Textfield1").rawValue
    = "it doen't work";
    But it doesn't work
    When i make the floating field visible, so i see the normally hidden field, the i see that the script works, but that te tekst doesn't show in my static textfield
    Anyone else with this problem?
    Can anyone tell me what i'm doing wrong?
    In the previous Designer ES it worked fine and opening those forms in ES2 still work
    But creating a new form with a floating text doesn't work

    I reinstalled Both Designer 8.x and ES2 several times, but i have the same problem with both versions.
    Now i only have Designer 8.x installed on my WinXP.
    i created a new empty form and add a static text field and a button.
    within that static textfield i insert a floating field.
    i add a Formcalc script to the click function of the button: Field.rawValue = "hello"
    i save it as a dynamic form.
    preview the form and when i click the button nothing happens
    Then i change the presence of the floating field to visible, so a normally hidden field is visible
    Now without changing anything i preview the document en click on the button
    Now i see the text in the field i just made visible, but still not in the static textfield where i inserted that floating field.

  • Merge Fields with Content Controls

    Hello everybody,
    we are using word templates to generate quotations in print form. This process worked fine using the old Technology (custom XML).
    Because a newer Version of Microsoft Office is now being used, the technology has been updated to the new one (content controls).
    Now we are facing one Problem. With the old Technology we used merge fields for formatting fields, e.g. to get rid of leading zeros. But it seems that the function of merge fields cannot be combined with a dynamic field which has been added to the document out of the SAP Data Panel.
    Has anybody an idea how we can use merge fields with this new technology?
    Best regards,
    Patrick Müller

    Hi Albert,
    The Demo program SAPRDEMO_MAILMERGE_INTERFACE you have found is correct for the issue you are facing. If you still have trouble with your program do let me know and i will write down the steps for you here.
    However, for the issue I have posted here, program does not work. I have tried writing a IF condition in the Mail Merge Template and to execute it but to my surprise it does not work. Neither SAP has provided any specific information related to Formula and calculations to be done in Mail Merge Template.
    Cheers,
    Kunjal

  • CUF fields with Simplified SC (SRM_701_SIMPLIFIED_SC)

    Hello guys,
    Does anymone know if it is possible to use CUF fields with the simplified SC ?
    The CUF fields are defined and work correctly with Wizard and extended SC, but I cannot find how to add them to the Simplified SC transaction.
    Thanks for the Help.
    Vadim

    Nobody uses this transaction ?

Maybe you are looking for

  • Windows Storage Server 2008 R2

    Hello, We have install Windows storage server 2008 R2 and now we received a request to install SP1 on the server. So can we install SP1 on Windows storage server 2008 R2? Server manufacture is- IBM Also please send the download/setup link. Thanks, Ra

  • Flash Player Crashes on Reconnect - Justin.tv

    Hey flash experts I often goto a website called Justin.tv I noticed a bug in the player code when you reconnect to the flash player that crashes your browser. It occurs when the video stream reconnects to the flash server and then the client connects

  • How to Load Employees Expenses in AP

    while creating the Ap Invoice Interface if we need to Load the employee expenses then how can we Load the employee expenses... Or need some info how to do it. any reference material if anybody can give or give me the solution plz. Thanks

  • Single Project Won't Load - Eternal Beach Ball - File too large?

    I had just finished putting in the last still image in a project in iMovie last night when all of a sudden, my whole computer crashed. Another friend had been working on the same project on my machine and had mentioned that occasionally iMovie would

  • Should i download adobe photoshop elements 10

    Good grief, this is like my 15th screen... My question is this, should I install Adobe Photoshop Elements 10 on my new mac book?  Will it cause problems?