EASY for the weekend question

Hello

Let's say I have a subform with five fields of text inside. I want to put a button on the form and when I click on the button, I want make all text fields five "protected". Is there a way to treat all text fields five as a single entity so that I have to write a single line of code to protect all?

Instead of saying textfield1.access = 'protected '; textfield2. Access = "protected"; textfield3. Access = "protected"; and so on...

I'd rather textfield_group.access = 'protected ';

'Groups' work like that or is there a better way to do it?

Thank you

Joe

If you wrap the five zones in a subform and set read only access subforms while setting will be created for all child objects of the subform.

Paul

Tags: Adobe LiveCycle

Similar Questions

  • Contact Toshiba for the weekend

    How can I contact Toshiba Australia weekend?
    My power adapter just caught fire and Ive called their support number (13-30-70) and the recorded message said to call back on Monday... I think it is a little too important to wait as long.

    I think Toshiba is directly wrong address. Contact nearest authorized service provider. They are responsible for the hardware support and exchange of material.

    Of course, if you call them at Sunday, I can imagine you w = must wait until Monday.

  • Any way to make it easier for the user to find dialog boxes?

    I tried searching this question for half an hour, but for LabVIEW, "dialog" is practically a stopword (too common).  Is it possible to change the border or background of a dialog box for a button or two buttons three buttons, so that we find on a wall crowded, which can cover two or three screens?

    The short answer is that you have no control over the dialogues of button 1 or 2 native. I think the key 3 is a VI vi.lib who you might Save as and then customize.

    The best way is to use a custom VI which plays the role of a dialog box. If he opens up endless possibilities for the color, size, positioning, guests, inputs and outputs...

    Also, I like your use of the word "vacuum" - it's a concept I meet all the time, but I didn't know there was a word for it.

  • The title of the TOC for the random question slides

    I want to create a quiz that randomly pulls a pool of questions.  I think I know how to do that (rightly), but when I do, the table of contents is only show (title "Slide") the name/title of the question slide to chance itself, which is not really give any useful information.  I wonder if there is a way to show rather the title of the question which is selected (and present) of the random question slide.  This, in my opinion, would be much more useful to users taking the quiz.  Is there a known way to get there?  Thank you!

    Capture.PNG

    Project files cannot be attached to these messages in the forum.

    Lilybiri has already answered your question.  The table of contents only shows the name of the random Question slide and can't give you the name of the slide of the random quiz question slide that is picked up from the Question pool when running dynamically.

    Essentially the Random Question slide is just a placeholder.

    However, I think that your idea of being able to have the selected slide display its name in the table of contents if you wish has some merit.  Then I suggest that you connect to an enhancement with Adobe for this request.  You never know...

  • SQL for the synchronous question of AIR vs. asynchronous

    Gidday guys

    I've implemented a SQLite database that will be processing up to 150 000 lines at the same time.  I use parametized queries, wrapped in a transaction, it should be fast enough. I use asynchronous methods.

    I put the motions and managed to get a static test of query in the database using the parameters.  Wahooo!

    However, now I did it dynamic to receive bulk data, I get the error:

    "Operation could not be performed SQLStatement.executing is true.

    I wonder if anyone can

    (a) suggest that synchronous may be a better option

    or

    (b) guide me as to what order the functions and event listeners would fix my follows established...

    THE PROCESS:

    -J' have a lot of file names in an array, that need to be tweaked before thrown into the database

    -J' set up the sql (leg work done earlier) connection, the query statement, and then start a transaction:

    insertStmt.sqlConnection = conn;

    insertStmt.text = "INSERT or IGNORE INTO tester3 VALUES (@col1, @col2);

    Conn.Begin ();

    -table is thrown into a function that starts an enterFrame iteration (if the display does not freeze), where I change the names of files, and put each file name twisted and other (also directed for the database) data in an object and deliver it to the function that prepares the data in the settings...

    prepareParameters ({col1:col1var, col2:col2var});})

    prepareParameters(row:Object):void

    {

    [insertStmt.parameters["@col1"] = row.col1;

    [insertStmt.parameters["@col2"] = row.col2;

    insertStmt.execute ();
    }

    -at the end of the loop table, call the transaction end function

    I think the problem is that the loop sends the next object to prepareParameters() until the database has finished executing the last insert statement.

    I tried to configure a listener for results to try to make Flash do not return to the loop until the listener received something, but I get the same error.

    My first thought was "Hey, shouldn't Flash wait until after insertStmt.execute ();" has finished before returning to the loop that calls its function? But maybe this happens in synchronous treatment?

    Thanks for your thoughts guys.

    Before I head to a few races a couple quick notes.

    If you just want a quick number of items affected in the database across all executions altogether (although SQLConnection is maintained), you can use this property:

    http://help.Adobe.com/en_US/FlashPlatform/reference/ActionScript/3/Flash/data/SQLConnectio #totalChanges n.html

    To be more practical, SQLResult can be used on a SQLStatement instance after it is over (after the RESULT event). If you do not want to use it (as in the example above) in the manager function, _runQuery. The SQLEvent sent to method (apart from the first _runQuery (null)) will contain a reference to the SQLStatement instance that has been run. You can see me access it explicitly to remove the handler from the success of it as follows:

    If (e)

    {

    SQLStatement (e.taget) .removeEventListener (SQLEvent.RESULT, _runQuery);

    }

    Which is simply check to see if I have a valid (non-null) event sent to the method and if yes I use it to remove the handler. I could use a weak reference in the event handler, but on devices, I would be extremely explicit in removing all memory that I absolutely is useless as soon as possible.

    That said, each SQLStatement has getResult() method:

    http://help.Adobe.com/en_US/FlashPlatform/reference/ActionScript/3/Flash/data/SQLStatement .html #getResult ()

    That method contains the method, you asked:

    http://help.Adobe.com/en_US/FlashPlatform/reference/ActionScript/3/Flash/data/SQLResult.ht ml #rowsAffected

    It's just the number of rows affected by your last statement (UPDATE, INSERT, DELETE,...). If you want to follow him through multiple SQLinstructions you could do a new class var to collect the results, if you do not use SQLConnection totalChanges I linked above:

    If (e)

    {

    get an official reference

    var insertStmt:SQLStatement = (e.target) SQLStatement;

    results of this execution

    var result: SQLResult = insertStmt.getResult ();

    draw some properties of an "INSERT" as you do

    trace ("Insert ID:" + result.lastInsertRowID + ", affected rows:" + result.rowsAffected);

    If you perform the UPDATE/DELETION there are .data with an array property

    all the results that you can browse, exhausted for example length of results

    (just treat it as type Array and iterate over it if you wish)

    trace ("result Total SQL statements:" + result.data.length);

    remove the listener

    insertStmt.removeEventListener (SQLEvent.RESULT, _runQuery);

    }

    Keep in mind, it's TO-achieve, not a total. This allows you to review the results of each "single" execute() that you are running. You can search for questions or to check the validity of the data, etc., on each function execute(). If you don't really care that then just check the _sqlConn.totalChanges for one number for everything that moved the database runs.

    Don't forget to close the connection of _sqlConn after all function execute() statements look the next time you run queries, it resets the totalChanges. Also on something like a DELETION * a SQLResult returned 0 results. It is mentioned in the documentation, read paragraph 3 on the addition of a 'WHERE 1 = 1' just to get results to fill:

    http://help.Adobe.com/en_US/FlashPlatform/reference/ActionScript/3/Flash/data/SQLResult.ht ml #rowsAffected

  • Reader Extensions that solve? (Sorry for the stupid question)

    I tried to understand what RE done, but my little brain is not up to it. Here's my situation:

    I have no server. I have a form created using LS which is distributed to 50 users using Acrobat Reader. These users will be complete the form, save it, possibly print and email the filled-inform.

    The form requires some sort of database containing the names and multiple addresses. The names are used to populate a drop-down list contained in a subform repeatable. Whenever a new instance of the subform is created, the drop-down list is populated with the list of names for the selection. Selecting a name causes the address information be completed automatically in the subform.

    My solution so far is to have an another repeatable subform (1 to n instances) that contains the name/address information. The administrator enters the name/address information (1 per instance of subform), and then save the form, and then automatically sends it to the end user. Whenever info name/address changes, a new version of the form is distributed: end user does never update this information.

    It would be useful to maintain the name/address info in a spreadsheet instead. This would facilitate the maintenance of data (copy, sort, etc.). My understanding is that I can not use a data connection in the excel worksheet because of rights on strictly local forms management. This interpretation is correct?

    I want to distribute the form and an excel worksheet in order to update the form and the data independently.

    It seems that RE can address this problem? Is this correct?

    Thanks to everyone for all the advice and information!

    Reader Extensions allows you to turn on player features based on form by form. By default the player would not have the feature in question. There are two versions of Reader Extensions. You use inside Acrobat will allow you to add the right to save a PDF file locally, add a digital signature, and add his comments. The Acrobat version also has a license that allows you to distribute the Reader Extended form will allow only a maximum of 500 users.

    The other version is a server based product and a module inside the LiveCycle server. It has all the features mentioned above as well as the ability to connect to sources external to the form (such as a database or a web service). It supports other extensions, but you did not mention those so I focused on those that you need.

    Note that you need only drive to extend the form once (before distributing it).

    So, to accomplish what you want, you will need the version of the server.

    Hope that helps

    Paul

  • A Adobe reader for the DC question: do not open any files

    Hi all!  I had Adobe reader forever and updated yesterday in DC. Now .pdfs are not opening email.

    Please help/direct.

    Thank you!

    Hi ibaby0102 ,

    Could you please if you get an error message when you try to open e-mail pdf files?

    Operating system how you have-Windows/Mac?

    Assuming you want to open the pdf in email attachment, please follow the steps given in this link: IMPOSSIBLE to OPEN PDF attachments IN E-mail

    Let us know the results.

    Thank you!

    Shivam

  • Sorry for the newbie question...

    Requirement:
    return all documents that does not contain the word "mango".

    Typed code:

    where contains (ts_files.doc_blob, 'not mango', 1) & gt; 0)

    -& gt; ts_files is the table that contains the files.
    -& gt; doc_blob is the blob field where the files are located.

    Returned the error ?  :| :

    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-20000: Oracle text error:
    DRG-50901: query analysis on line 1, column 2 text syntax error

    Can YOU help me, please?

    Mathew

    If you have other criteria to highlight "not mango", that might work. With a small number of lines, "% not mango" works. However, with a large number of lines with the various data, since most of these paintings, "% not mango" is likely to lead to an expansion of generic request error. Alternatives are to use "contains (...)" = 0 "or"not (contains...). > 0". It will be always use the domain index, but avoid the problem with the wildcard character to extend to too many terms. Please see the demo below.

    SCOTT@orcl_11g> CREATE TABLE ts_files (doc_blob VARCHAR2(60))
      2  /
    
    Table created.
    
    SCOTT@orcl_11g> INSERT INTO ts_files VALUES ('apple')
      2  /
    
    1 row created.
    
    SCOTT@orcl_11g> INSERT INTO ts_files
      2  SELECT 'mango ' || object_name FROM all_objects
      3  /
    
    68584 rows created.
    
    SCOTT@orcl_11g> CREATE INDEX your_index ON ts_files (doc_blob)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  /
    
    Index created.
    
    SCOTT@orcl_11g> EXEC DBMS_STATS.GATHER_TABLE_STATS (USER, 'TS_FILES')
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11g> SET AUTOTRACE ON EXPLAIN
    SCOTT@orcl_11g> SELECT * FROM ts_files
      2  WHERE  CONTAINS (ts_files.doc_blob, '% not mango', 1) > 0
      3  /
    SELECT * FROM ts_files
    *
    ERROR at line 1:
    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    
    SCOTT@orcl_11g> SELECT * FROM ts_files
      2  WHERE  CONTAINS (ts_files.doc_blob, 'mango', 1) = 0
      3  /
    
    DOC_BLOB
    ------------------------------------------------------------
    apple
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 1960511866
    
    ------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    ------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |            | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TS_FILES   | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |*  2 |   DOMAIN INDEX              | YOUR_INDEX |       |       | 10781   (0)| 00:02:10 |
    ------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("CTXSYS"."CONTAINS"("TS_FILES"."DOC_BLOB",'mango',1)=0)
    
    SCOTT@orcl_11g> SELECT * FROM ts_files
      2  WHERE  NOT CONTAINS (ts_files.doc_blob, 'mango', 1) > 0
      3  /
    
    DOC_BLOB
    ------------------------------------------------------------
    apple
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 1960511866
    
    ------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    ------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |            | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TS_FILES   | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |*  2 |   DOMAIN INDEX              | YOUR_INDEX |       |       | 10781   (0)| 00:02:10 |
    ------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("CTXSYS"."CONTAINS"("TS_FILES"."DOC_BLOB",'mango',1)<=0)
    
    SCOTT@orcl_11g> 
    
  • Question for the experts: SVG vs GIF

    Hello everyone

    Lets say I have a website that is filled with a variety of simple and complex, smooth white icons. These icons will be resized in muse where necessary, sometimes they will be with reduced opacity. The site is heavy on Parallax scrolling and fading (opacity) and most - if not all - of the icons will use one or two scroll effects.

    Exporting since illustrator GIFs are sometimes smaller in size than the SVG.

    The target audience is supposed to be decent and updated computers for example, IE 8 and below not relevant. Assume that all users have a browser able to handle SVG and parallax.

    What is better or easier for the browser? SVG of GIFs? even if the size of the GIFs is reduced?

    renders SVG quite complex (several anchor points) 'harder' than the GIF?

    No reason to prefer not SVG except for worms backward compatibility with older browsers/machines?

    What would be the best practice here?

    Any discussion/advice greatly appreciated.

    Jorge Vallejo

    First, GIF should be avoided in favour of PNG: a well optimized PNG is always smaller in file size and also offers several options of quality (for example more than 256 colors which allows to GIF). The problem is that Adobe products cannot achieve this without jumping through a LOT of hoops. More information below.

    This is a bitmap - SVG performance comparison:

    (1) SVG files should be drawn & rendered in the browser. This means that the xml data must be read, interpreted and displays - which is much slower than a bitmap. A png must still be uncompressed, which does not take a lot of processing power. Make an SVG, it is much slower (incomparably slower depending on the complexity).

    (2) bitmaps are usually hardware accelerated (via the GPU), a number of operations of svg is not. For example, I believe that css transforms for SVG is not hardware accelerated and so very slow animate with this method.

    (3) some old browsers have trouble made a lot of individual objects of SVG. For example, only in March 2014 this problem was solved in Firefox.

    (4) svg performance depends heavily on the specific browser as well. Take this test:

    http://jsperf.com/D3-SVG-opacity

    It runs faster on opera and IE 11 on my system! Firefox is terribly slow.

    (5) the SVG rendering is much slower on mobile platforms. Unless very simple, convert png files.

    Now, regarding your files: a size to 500Ko SVG is a LOT - and then you mention that you will have more files SVG from less then 100 KB up to more than 200 KB. My question would be what kind of chart, they will be on your page: background graphics, icons,...?

    In addition, SVG images produced by the Illustrator can (should) be optimized. A good tool for this is SVGO: svg/svgo · GitHub a Visual version can be downloaded at svgo/svg-gui · GitHub

    A few items must read:

    http://CSS-tricks.com/using-SVG/

    http://jaydenseric.com/blog/how-to-optimize-SVG

    http://kylefoster.me/SVG-slides/#/

    If you do a lot of animation, and there are a lot of other things happening in a page, then PNG is the way to go. SVG is preferable for icons and graphics simple logo. Developers of games using Flash always convert all their vector files into bitmaps for much better in Flash!

    Now to my second point: Adobe Save for Web function is catastrophic for the optimization of png. Yes, there are Photoshop techniques to improve optimization of PNG images, but it takes a lot of effort:

    http://www.smashingmagazine.com/2009/07/15/clever-PNG-optimization-techniques/

    PNG Optimization Guide: more intelligent Techniques - Smashing Magazine

    And even after all that work, again, you cannot export a PNG image with a color palette limited with total transparency in Photoshop or Illustrator. It is important for the size of files: especially Muse Web sites tend to be so inflated that they take a lot of time to load up - and there's really no reason for this if you optimize your graphics properly.

    To optimize PNG files, use the quantifier of color:

    Color quantization

    I can't live without this small tool (freeware) - you have to start up your mac in Windows mode just to use CQ to optimize your png files. It supports automatically optimize your png files, reducing to a minimum - compared with the standard backup of Photoshop for the Web disaster, files are at least 50% smaller file size or more. And it includes a very simple to use quality mask brush that allows areas of control/fix which can be annoying when the reduction of the number of colors.

    That said, it really depends on the type of chart, that you intend to put at your disposal. Could you post some examples?

  • Workflow for the level of volume reduction and speech

    I'm working on the audio for my feature film of 2 hours. I don't have the option for ADR and I have many problems with the hum of the air conditioning and other noises, so I need to put in place the best workflow. I get conflicting information when I search the workflow. What is the best method of workflow. Should I first correct the volume of speech levels, volume and then match noise reduction and its carrier or vice versa. Also, when should I apply a multiband equalizer to remove 60 hz buzz and cut the upper and lower frequencies.

    I use this blog as a guideline, but still a little uncertain. Improve the Production of Film Post workflow. BlogBlog VashiVisuals

    Very new to audio editing, so any help would be greatly appreciated. Thank you!

    It is not an answer quite right, but I'll tell you what I think about it, at least. You should ask yourself at least one big question before starting, and then perhaps things might become a bit clearer! And it is really good to have a plan.

    The big question is this you're going to deal with everything that's been saved, or just taken you use? If you do the first, it will increase your workload a little, if it's like most of the shoots. Personally, I don't want to reduce the amount of treatment, so I'd be more inclined to limit what needs treatment, if possible.

    Then I would go to reduce the noise basis first and also use the filter to reduce or eliminate hope that the buzz of 60 Hz. If the a/c noise is constant, this should only unravel. Do not touch the LF or HF cut again - this is an EQ option, not a clean one. I'd do the NR in addition to a passage, using different parameters of the FFT and not taking too much out in a go - we found that it always works better. When you are finished, other sounds that you want to delete will be more obvious and therefore easier for the sound mover identify if you need to go this route. When, and only when you have done this, you need to adjust the levels, and when you've done that you can change the EQ so that it can seem like you want. Roll-off Yes the PMQS by all means, but be careful with the HF - you will need may not go very far with that at all.

    In general, the reason to go to the NR, and is first of all that it does what it is much easier to deal with - simply because that remains will be clearer.

  • Force evaluation of the rules for the non-existent entities and unknown attributes...

    Hi all

    I have another issue potentially easy for the gurus of the OPA in this forum - there must be a simple explanation to this question but I'm just not see it.

    The problem that I am having with several of my rules, it's that the conclusion is not evaluated due to the non-existent entity instances or unknown entity attributes. As an example of the first scenario, I have a rule that checks for the existence of an instance of an entity with a type and status. The conclusion is evaluated as if there is at least an instance of this entity, otherwise, the conclusion remains unknown.

    Similarly, I wrote an equation to annualize all its (financial) obligations in a case, where the frequency of the obligation can be weekly, fortnightly, monthly, etc.. I created an attribute for each type of frequency, which are then added to the equation. The issue in this example, is that the equation does not conclude if there is not a value for each attribute in the equation. For example, if:

    assign 1 = A + B + C

    where A = 1, B = 2 and C is unknown, does not examine the attribute from 1 to 3, but will remain unknown. Logically, I expect that the lack of a digital defaults to 0, and rather unknown attribute value, but this is not the case.

    I looked at the 'Certain and known operator rule examples' help topic to try to understand how assign a value to an unknown attribute, but the example at the bottom of the topic page does not provide a sufficient explanation as to how the logic:

    point of the total team = team 1 round points + points of the round 2 team + team of turn 3 points

    the team of the round 1 points = 0 if
    Round 1 team points (such as recorded by the team) is unknown

    the team from round 2 points = 0 if
    etc.

    It seems from the example that there are 2 attributes used to the same variable: [team of the Tower, 1 points] and [team of the round 1 points (such as recorded by the team)]. It is not clear to me how the original equation can be concluded if the values are stored in the alternate attribute [points of the round 1 team (such as recorded by the team)] etc.

    I have also considered using fragments of rule by the help topic "Prove an attribute using multiple rules", while I could use two equations separated to set the value of an attribute according to the circumstances, that is to say:

    assign 1 = A + B + C

    1 = 0 if attribute
    attribute 1 is unknown

    This attempt results in a logic loop error, probably because I am trying to set the value of an attribute based on the same attribute value.

    Any help will be greatly appreciated!
    Philippe

    Hi Philippe,.

    I suggest the following way to solve this problem, although there are other ways too.
    You can use a table of rules for it.

    Open a Working Document, and then press 'Alt + Z' created a rules table.

    Use the following rule: -.
    Keep the text in bold in the left-hand column and the text in italics as a condition for the title in the right column. Use a correct indentation during the compilation of the rules.

    -------------------------------------------
    Attribute 1
    -------------------------------------------
    *0*     any
    A is unknown or

    Uncertain East
    and
    any
    B is unknown or
    B is uncertain
    and
    any
    C is unknown or
    C is uncertain
    ----------------------------------------------
    Has any     
    B is unknown or
    B is uncertain
    and
    any
    C is unknown or
    C is uncertain
    ----------------------------------------------
    A + B C is unknown or     
    C is uncertain
    -----------------------------------------------
    A+B+C in the opposite case     

    Thank you
    Sofiane

  • Game for the ICM script step

    Hi all

    I'm new to company of the IPCC and I'm doing some scripts in ICM. I'm doing a step 'play' function in ICM sript. I just haven't found how correctly everything good (step by step, preference in ICM must correspond to what in IVR). For now I'm stuck with a bunch of 'quick read' IVR scripts and it's surely is not the way. :)

    Pointers where to look?

    Thank you! Sorry for the newbie question.

    Ervins

    You can pass the quick name in a variable of a generic IVR script that takes the variable playing the guest. I did it in the field, and I use this method to test the script and listen to the guests. The only downside is you must use a node SET in ICM to set the prompt name and then an EXTERNALLY RUN SCRIPT however acquire you the ability to actually play any of what IVR prompt and have only a manuscript of IVR to implement this. You can also implement a design to pass multiple variables if you had an IVR script that could interpret several variables and playing several guests.

  • More space required for the automatic signature column after the email

    I believe there should be more space for the automatic signature after the email because it is easy for the receiver to know all the details of the sender for example name, designation, company name, address of the company, business logo, fixed line telephone amendments and our mobile phones and even the site.

    Other e-mail accounts provide more space for this purpose.
    Thank you
    Gill

    And what e-mail program you use?

    The GIS is part of the msg, is not an addition to a msg

  • Discover the licensing Question (Interesting)

    Hi all

    Can any body give me the information about VMware View of deliverance for the following questions

    IFIS, I take a Vmware view package for 400 workstations, I get the free server ESX and vCenter server. I need to know if I can use all the most characteristic of vSphere with it, like HA, DRS, etc.?

    The ESX servers that I receive with a view can install windows to view host connection server and vCenter Server server?

    and if I buy a company ESX plus server other than the view free, ESX servers can I add this ESX Server with the server vCenter which came free with view?

    Quikly help search

    Yes, you get vsphere Enterprise FEATURES in the set of the view.

  • SQL query for the date picker

    Page reports there are two 2 day points of selector (a datefrom and dateto a) as well as a text field with AutoComplete element

    When the page load query is called

    SELECT
    "COL1",.
    "COL2",.
    "COL3",.
    the "table".
    WHERE MYDATES BETWEEN: DATEFROM AND: DATETO

    Which returns no records as no dates have been set.

    How can I modify this search in the clause WHERE on the date element is called only when the dates are chosen, and by default, all the records are displayed.

    The other related issue is when I chose a from and to date and research when I return in the view page of report after consulting other pages in the application of the apex, the form fields are always met, how can I delete the session down for these fields when the user leaves the page?

    I hope that all makes sense?
    To_date('01.01.2100', 'dd.mm.yyyy')
    

    will give erroneous results on 02.01.2100 :D

    A solution (perhaps there's a cleaner...):

    WHERE
    ((:DATEFROM IS NOT NULL AND mydates >= :DATEFROM) OR :DATEFROM IS NULL)
    AND
    ((:DATETO IS NOT NULL AND mydates <= :DATETO) OR :DATETO IS NULL)
    

    You can change the message "No data found" by changing the attribute of report "when no. found data Message."

    EDIT: And for the 2nd question, Alex is right, but also be aware that Firefox retains the values of form element when the page refreshes, you must change the Security page 'Form Auto Complete' to 'Disabled' attribute if you do not want to keep the form element values.

    Published by: Yann39 on June 27, 2012 06:30

Maybe you are looking for

  • Network.http.Accept - encoding maintains the reset and won't lock

    After gmail and a few other sites Google has stopped working, the fix was to open everything: config and change the above setting by default. This has worked, but whenever I have quit and re - open firefox, it goes back to the option "user set" rathe

  • Toshiba Satellite Pro 2100 - display driver resolution - help!

    My laptop screen is 15 inches and resolution 1024 x 768. He worked always good. Until I installed Windows XP SRV 2 once again. Now, the screen only works with 969 x 768 pixels. Without the ability to use the whole poster resolution. So I downloaded a

  • Why not remove files from a SD card?

    Why did I get this message when I try to delete the files from my card SD of GoPro? I'm going on a trip and I need to erase this SD card. Any help please?

  • Tecra M3 flashing graphic problem

    I have a M3 Tecrea that comes with having a clean install / Win XP Pro with all the drivers on the Toshiba site. It is running BIOS 1.5 with Nvidia GeForce GE TE 6200 with 71.36 driver version new fom the Toshiba site. When initially, I tried to inst

  • Login stuck to the launch of gray progress wheel

    Two days ago, I stopped my Macbook Pro mid-2012 after a few applications have frozen. I was not running at the time, only Itunes, Firefox and Adobe Illustrator. Things, I normally open and rarely have problems with. Unfortunately the spinning beachba