OBIEE, the hidden fields on graphs

Hello

Can I put a hidden field in a chart?

(this option exists for the table)

I use a sort field, but I'm not as part of the data of the graph.

Thank you.

Yes you can.

Make the column hidden in the criteria tab and use it in your chart, just slide it into place as you want.

You just need to pay attention to the order of the columns if you want to sort by one hidden.

And you see it on the screen... it is hidden.

Tags: Business Intelligence

Similar Questions

  • Need a script to display the hidden field if number = 568845

    Hi all

    Using Acrobat Pro 9.1 on iMac with OS 10.6.8

    I am working on a form to fill out and need a script to display a hidden field when a button is clicked.

    I've set up a numeric field to type a number, and the hidden field is "text1".

    Now, I need a script to the button open only the hidden field, if the field number = 568845

    In this way the customer can fill in the code and then show and type in the field.

    Any help would be appreciated.

    Ron

    Given that you use it by a button, you can't use event.value because a button has no value, and in any case, you want to check the value of another field. So this place like your button MouseUp event (of course, you have to adapt the name of the text field...):

    If (this.getField("Text1").value == "568845") {this.getField ("Hidden_Field") .display = display.visible} else {this.getField('Hidden_Field').

    display = display.hidden}

  • Reset the hidden fields

    My form begins with a form of sub header with checkboxes. The user controls a box they need and its corresponding subform is displayed. Works fine, right? The problem comes when it comes to reset the fields. I hit the reset button and all data will be deleted, HOWEVER the hidden fields are always visible? How to reset it it ALL to look exactly as it is when you first open? Thank you

    You need to explicitly reset the values of the hidden fields. Go to the click event of the reset button, then set it to null in hidden fields. For example,.

    Form1.Page1.ResetButton1::click - (JavaScript, client)

    xfa.host.resetData ();

    TextField1.rawValue = null;

    Steve

  • cfformitem type = & quot; script & quot; : how to set the value of the hidden field?

    I have a simple test form that contains a cftree and some fields of seizure/hidden. Whenever a tree node is selected, I want to change the values of the fields of entry/hidden to some node is selected. Pretty simple, but I can not understand how to change the values of the hidden fields.

    Load the form, select "ItemA" and click on submit. Do not change the values of the hidden form fields. They are always "not defined". What is the correct syntax to change the value of the hidden field?


    The correct syntax is

    myForm.theID = 'theID = "+ valueString;

    Ken

  • Non-Null Validation step does not work with the hidden field?

    Hello

    I have a field that is a selection list.

    I have another field, which is also a selection list, but which is masked by the dynamic loading of the page Action (if the value of the first field is 'False').

    If the value of the 1st select list is 'True', the 2nd selection list appears and the user must select a value.

    I have created a "Item Not Null" Validation, because I need to force the users to select the value in the 2nd, select list.

    However, the Validation does not work! I guess it's because the 2nd selection list is hidden / display by dynamic action!

    The 2nd selection list is null to display the value 'NULL '.

    How can I solve it please?

    It has nothing to do with the dynamic Action.

    Try to delete "NULL" in the value of the Null display field. Just leave it blank.
    In this case, "specified element is NOT NULL" must be selected in the Validation.

  • The hidden fields and multiple responses

    Hello

    I have a form that consists of drop down lists and hidden fields, depending on the response to the drop-down list, then a hidden field appears. I am bad at work is how the code if a user answers Yes to the first drop-down list, this then invites a fall lower, who once answered will 3 more open fields.

    Example of

    Question 1 individual or company answer person of company

    Question 2 is a new client yes/no

    (if the user has answered no then this can encourage an another series of questions according to what the user has answered the question 1)

    For individual would ask the question

    Question require us proof of address

    For the company would ask the question

    Question require us registration of the company

    How can I hide the fields initially and show them only according to the combination of the answer.

    Any help would be appreciated

    Thank you

    I created a simple example for you. Note that the code that shows and hides is about the e eexit event of the DDLists. I put the parts of the evidence of address in a subform, and I have to hide the subform to hide all of its child components... I don't have to hide each component of the object of the evidence in the record. Also, the form must be saved under Dynamics for the presence changnes is taken into account.

    Hope that helps

    Paul

  • reset the hidden fields on the 'clear form '.

    I have a form that changes the values of some fields to display (or can define read-only) when different options are selected. I have provided a 'Clear form' button that executes a javascript script that resets the fields to their original state, but users have always been able to select clear 'form' in the menu, which bypasses the script and can leave the ├a respect State form.

    Is it possible to prevent that the 'Clear form' menu being selected, or override its function or run one of my functions when it does? I've never had a chance to find a solution, and this form should be reset properly in all conditions that a user can meet.

    Mark,

    How about something like this. Set up a hidden field that when allowed runs your Reset routine. I think that the last field that has been added is the last field to reset. You can initialize its value and call your Reset routine in its Validate event if its value is blank, and then reject the change, so it is not actually get deleted.

  • The hidden fields and deleted context

    I created a form with text fields that are visible or hidden depending on the selections that you made in the previous two menu drop-down lists. The user of the form has fields of different type based on their choice text. The problem I have is that I want only to preserve the content of the visible field and do want the contents of the visible field to be saved in the XML of the .csv file. In other words - if they make another choice in the drop-down lists to "activate" the different text fields - the text in the previously visible text fields would be deleted. I'm sure that logic has something to do with "If presence = hidden, then value = null", but I'm completely new scripting in LiveCycle and don't have no idea how to write this.

    I don't see a way to view a PDF file, but I inserted my code below.

    ----- form1.#subform[0].VariableLocation::exit: - (JavaScript, client) -----------------------------
    
    //Clear out the StaticLocation DropDown list
    StaticLocation.rawValue = "";
    StaticLocation.clearItems();
    
    
    switch (this.rawValue)
    {
    case "Top Center  ":
    StaticLocation.addItem("Lower Right");
    StaticLocation.addItem("None");
    break;
    
    case "Lower Right":
    StaticLocation.addItem("Top Center  ");
    StaticLocation.addItem("None");
    break;
    
    case "Top Center":
    StaticLocation.addItem("Lower Left");
    StaticLocation.addItem("None");
    break;
    
    case "Lower Left":
    StaticLocation.addItem("Top Center");
    StaticLocation.addItem("None");
    break;
    }
    
    
    
    //TextFields 1a-4a
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1a.presence = "visible"; 
    }
    else
    {
         TextField1a.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2a.presence = "visible"; 
    }
    else
    {
         TextField2a.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3a.presence = "visible"; 
    }
    else
    {
         TextField3a.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4a.presence = "visible"; 
    }
    else
    {
         TextField4a.presence = "hidden"; 
    }
    
    
    
    //TextFields 1b-4b
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1b.presence = "visible"; 
    }
    else
    {
         TextField1b.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2b.presence = "visible"; 
    }
    else
    {
         TextField2b.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3b.presence = "visible"; 
    }
    else
    {
         TextField3b.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4b.presence = "visible"; 
    }
    else
    {
         TextField4b.presence = "hidden"; 
    }
    
    
    
    
    
    //TextFields 1c-4c
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1c.presence = "visible"; 
    }
    else
    {
         TextField1c.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2c.presence = "visible"; 
    }
    else
    {
         TextField2c.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3c.presence = "visible"; 
    }
    else
    {
         TextField3c.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4c.presence = "visible"; 
    }
    else
    {
         TextField4c.presence = "hidden"; 
    }
    
    
    
    
    
    //TextFields 1d-4d
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1d.presence = "visible"; 
    }
    else
    {
         TextField1d.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2d.presence = "visible"; 
    }
    else
    {
         TextField2d.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3d.presence = "visible"; 
    }
    else
    {
         TextField3d.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4d.presence = "visible"; 
    }
    else
    {
         TextField4d.presence = "hidden"; 
    }
    
    
    
    
    //TextFields 1e-4e
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1e.presence = "visible"; 
    }
    else
    {
         TextField1e.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2e.presence = "visible"; 
    }
    else
    {
         TextField2e.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3e.presence = "visible"; 
    }
    else
    {
         TextField3e.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4e.presence = "visible"; 
    }
    else
    {
         TextField4e.presence = "hidden"; 
    }
    
    
    
    
    
    //TextFields 1f-4f
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1f.presence = "visible"; 
    }
    else
    {
         TextField1f.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2f.presence = "visible"; 
    }
    else
    {
         TextField2f.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3f.presence = "visible"; 
    }
    else
    {
         TextField3f.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4f.presence = "visible"; 
    }
    else
    {
         TextField4f.presence = "hidden"; 
    }
    
    
    
    
    
    
    //TextFields 1g-4g
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1g.presence = "visible"; 
    }
    else
    {
         TextField1g.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2g.presence = "visible"; 
    }
    else
    {
         TextField2g.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3g.presence = "visible"; 
    }
    else
    {
         TextField3g.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4g.presence = "visible"; 
    }
    else
    {
         TextField4g.presence = "hidden"; 
    }
    
    
    
    
    
    
    
    //TextFields 1h-4h
    
    
    if (this.rawValue == "Top Center")
    {
         TextField1h.presence = "visible"; 
    }
    else
    {
         TextField1h.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField2h.presence = "visible"; 
    }
    else
    {
         TextField2h.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField3h.presence = "visible"; 
    }
    else
    {
         TextField3h.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField4h.presence = "visible"; 
    }
    else
    {
         TextField4h.presence = "hidden"; 
    }
    
    
    
    
    //TextFields 1i-4i
    
    
    if (this.rawValue == "Top Center")
    {
         TextField2i.presence = "visible"; 
    }
    else
    {
         TextField2i.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Left")
    {
         TextField1i.presence = "visible"; 
    }
    else
    {
         TextField1i.presence = "hidden"; 
    }
    
    if (this.rawValue == "Top Center  ")
    {
         TextField4i.presence = "visible"; 
    }
    else
    {
         TextField4i.presence = "hidden"; 
    }
    
    if (this.rawValue == "Lower Right")
    {
         TextField3i.presence = "visible"; 
    }
    else
    {
         TextField3i.presence = "hidden"; 
    }
     
    
    

    .

    Yes

  • Help with the hidden field formula

    I have a table in the Acrobat document:

    1 box = data of registration of the user

    Box 2 = user registration data

    Box 3 = user registration data

    Box 4 = (box 1 * Box2 * Box3)

    Box 5 = the user's registration data

    Box (box 4 - box of 5) (6)

    The problem:

    During this table opens in the document all the fields must be blank for printing purposes.

    However, all fields are for a person to enter data, and then print to convenvience.

    What I need help on, creates a script that allows the box 4 and 6 box remain empty but also to fulfill their function and display a value of 0 if the service is validated as true.

    Example:

    Zone 1 = 2

    Area 2 = 2

    Zone 3 = 0

    Box 4 = (box 1 * Box2 * Box3) = 0

    Box 5 = 0

    Box 6 = (box 4 - box of 5) = 0

    Can someone help me with this? Let me know if other explanation or screenshots are needed.

    Thank you.

    You say that you only want to show a zero value in the computed fields if all entry fields are not empty, and the calculation result is zero? If so, a custom for the first calculation script could be something like:

    (function () {}

    Get the values of field as strings

    var v1 = getField("Box_1").valueAsString;

    var v2 = getField("Box_2").valueAsString;

    var v3 = getField("Box_3").valueAsString;

    If (v1 & v2 & v3) {}

    Perform the calculation

    Event.Value = v1 * v2 * v3;

    } else {}

    Event.Value = "";

    }

    })();

    The script for one another might be:

    (function () {}

    Get the values of field as strings

    var v1 = getField("Box_4").valueAsString;

    var v2 = getField("Box_5").valueAsString;

    If (v1 & v2) {}

    Perform the calculation

    Event.Value = v1 - + v2;

    } else {}

    Event.Value = "";

    }

    })();

  • Hidden fields are visible in the new instance of the subform.

    Hi all.

    I have the following problem:

    I have a subform with a check box and a text field.  When the box is checked, the text field is visible.  When it is disabled, it is hidden.

    I also have a button which adds another instance of the subform.  When I click and add another subform, the masked text field is visible in the new instance instead of stay hidden until the box is checked.  Also, when I add the new subform instance and select the check box, the hidden field becomes visible at first to the subform.

    Here is what I use to hide and show fields:

    If (this.) RawValue == 1)

    (form1.subform1.textfield1.presence = "visible");

    on the other

    (form1.subform1.textfield.presence = "hidden");

    The foregoing is in the initialize event and change.

    I would really appreciate help to learn how to keep each instance does not affect another, as well as the way to keep the field hidden in newly added instances of the subform.

    Thanks in advance.

    J

    Hello

    You can add the action to the checkbox for the workflow. To do this, you can right click on the checkbox under the hierarchy Panel and then click on 'Add Action '. Also if you want the field to be hiddedn in the new instance and then at design time, you must set the property of as hidden control.

    Steps to get the workflow.

    1. make a right click on the checkbox control--> click Actions--> add an Action

    2. select in the drop-down list. When the check box is cleared.

    3 set the visibility of the textfield to hidden.

    4 click Add new action as indicated below.

    5. select in the drop-down list. When the box is checked.

    6 set the visibility of the textfield visible.

    7. click OK to create the action and close the window of action.

    To set the TextField to select hidden textfield and open its property of the object. Set the value of the presence as hidden.

    ************

    Please download the https://acrobat.com/#d=hM8oyP3be4O3HRBt14CkYg sample file

  • Issue the hidden rich text field

    Hey all,.

    I am facing another issue, and this time it's the hidden form field. I've got the coldfusion, rich on one page text editor and when submitted to preview in another. However, in order to insert the record later I hide values initial form of hidden fields. All values are fine except for the rich text editor, as it gets out in its entirety and is not hidden at all.

    I guess that this behavior is caused by the text form and one of its closing entire field hidden tags.

    Any thoughts on how to store the rich text in the hidden field?

    see you soon,

    Simon

    Assume that the richText field is called myText. Then, in the action page, you can hide its content with

  • How to insert the current date in a hidden field?

    I have a form of update of personal information.  There is a field called 'dateupdated' that I would have on the form as a hiddent field that gets automatically the most recent date (now) in the table.

    No idea how I can configure the hiddden in the current date field?

    Thank you, Dennis

    Its good to know the TIMESTAMP data type.

    I do it in a different way.

    Add this code in the value of the hidden field date

  • Using OnChange or OnBlur for changes the value of a hidden field

    I have a need to update the value of a hidden field with the value from a menu of the list. I studied the OnBlur and OnChange JavaScript functions but can't find anything suitable. Here's the deal:

    If a user selects California on a list of State menu, I need to immediately update the value of a field hidden with the "California". (Both fields are on the same page) All this must occur BEFORE the user submits the page. Each time they choose the State from the menu to list the value of the hidden field must change.

    Can anyone offer any suggestions?

    Thank you!

    Well Yes, that did the trick for the hidden field. Thank you very much.

    I'll be able to also store this value in a session variable? (see previous post)

  • How to exclude the hidden item to update DML?

    I've analyzed why some date-fields insert triggers are trunc'ed in the database and found

    -pages that have DML, update and form with hidden fields will update the value of database with trunc (dt_field)

    Insert trigger:

    create or replace TRIGGER "TBLX_I_TRG" before insert on TBLX for each row begin
      if inserting then
               select TBLX_SEQ.nextval into :new.ID from sys.dual;
               select SYSDATE into :new.DB_CREATED_DT from sys.dual;
               select nvl(v('APP_USER'),USER) into :new.DB_CREATED_BY from sys.dual;
      end if;
    end;
    

    update trigger:

    create or replace TRIGGER "TBLX_U_TRG" before update on TBLX for each row begin 
      if updating then
        select SYSDATE into :new.DB_MODIFIED_DT from dual; 
        select nvl(v('APP_USER'),USER) into :new.DB_MODIFIED_BY from dual;
      end if;
    end;
    

    (- you are welcome to the flame triggers )

    Element on the page:

    ...

    DML:

    When the first insert values in db are as follows, in the format

    to_char(db_created_dt,'YYYY-MM-DD HH24:MI') as crdt
    

    And when the DML page is submitted that the hidden field truncates the value in P53_DB_CREATED_DT

    and the update of table stores the value truncated to the db_created_dt field.

    Is it simple and 'rapid' way to exclude fields to update DML, other than the removal of the element on the page?

    Paavo rgrds

    Hello

    you could use HH24:MI:SS AAAA-MM-JJ.

    But you use this element of the page at all? If you don't use it to view or perform calculations based on you can also simply delete. It is not necessary to have a page element, just because a table contains a column. Your relaxation will be automatically filled anyway.

    Concerning

    Patrick

  • password not received during the distribution field

    Hello world

    I created an evaluation form that has a password field (a field where the evaluator can enter a password without appearing on the screen). However, when I distribute the form (via my own server) information entered in the password field are collected in the _responses.pdf file. I need to be able to see what password has been entered to ensure that the evaluator is indeed one that has filled the form. (they will use public workstations, digitalID seems too much hassle for the evaluators).

    research online I found that there is a parameter "bExcludePasswd" if it is true in the custom of passwords get collected. I have no idea how where this parameter, and false.

    Is that what happens? Someone knows how to set this parameter to false? Does anyone have a better/more elegant solution?

    Thank you very much

    Prii

    I didn't read your original post quite closely. When a distributed form is submitted, it is saved, and this causes password fields to be converted. The validation script then causes the hidden field to plow. If you can change the following validation script to avoid this:

    Copy the password to the hidden field, if it is not empty

    If {(event.value)

    getField("password2").value = event.value;

    }

    Anyone who manages to get their hands on one of these forms filled in will be able to access the password in the field, so it cannot be considered secure, but it may be good enough for your application. Do not forget to reset the form using Acrobat before you go through the process to distribute the form, but it should invite you to do so.

Maybe you are looking for

  • Power WT310 - 10 c on AC only

    Hi allI have problem with battery I guess, the Tablet powers on only when connected to the charger, windows indicates that 74% of battery and load but it remains at the same level, when I unplug charger turns off, tabletWhich tablet is off and charge

  • Satellite L350 - upgrade memory 107

    Please can someone help provide a certain insight or details on the options of upgrade memory for a Satellite L350 - 107 laptop According to the Toshiba records, this unit can only be upgraded to a maximum of 2 GB of RAM - there are web sites that wa

  • How can I have Windows 8 and Windows XP on a computer at the same time?

    Now, the computer is Windows XP. My ICT SBA require to use windows XP for better compatibility. How can I have 2 types of windows on 1 computer? A few months ago I installed Windows 8 client Preview of XP and I deleted the WIndows XP. Now, I have two

  • Windows XP Professional Service Pack 3 CD need to install new hardware

    I have attached an external sound/recording card interface to my laptop. Windows tried to add material in asking me to insert the CD supplied with the recording interface. Yes, I did. Then he said that he needed the "Windows XP Professional Service P

  • Error - "one of the usb devices attached to this computer has malfunctioned and windows does not recognize it

    Original title: USB device not recognized / dysfunction "Unrecognized USB device".One of the USB devices attached to this computer has malfunctioned and Windows does not recognize it. Help for this problem, click this message. » This is what I get AF