How to organize columns in the form

Hello
I want to see real-> FY09 configuration-> seven in a single column and forecasts FY09-> Oct in another column. I used to know how to do this, but forgot how. I can't find the button that will allow me to have different column groups. Someone can help me.

Hello

I consider you talk about asymmetric columns, have a read of:-http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/frameset.htm?ch06s03s14.html

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • organize images in the form of grid

    Hello

    How to organize images in the form of grid as a form of the matrix 2 x 2.

    any solution please.

    Kind regards

    Hari

    Thinnker,

    I'm not sure I understand what you're trying to do, but I have modified what I could from your code to make it work without changing the structure so that it become unrecognizable to you.

    I've replaced your IMAQ control with control of 2D image, because I have not installed IMAQ. This VI works as expected and load your file of jpg files in the table of the photo.

    If you work with IMAQ, note that your images will be loaded all into the same reference IMAQ because you create only one (called untitled), so with each image you load, you override the earlier. You must move the IMAQ Create function in the loop For and generate a new reference for each image you want to load (each requires a unique string for its name).

  • How to organize LabelField to the center of the screen

    How to organize LabelField to the center of the screen or arrange them in HorizontalManager? Thks

    you do this by setting the label field on FIELD_HCENTER style

    New LabelField ("Chain of etiquette", FIELD_HCENTER)

  • I'm trying to sign several documents and I have my saved signature under "fill & sign" the organization that generated the forms highlighted the signature lines and when I try to put my signature, it is pushed outside the signature.

    I'm trying to sign several documents and I have my saved signature under "fill & sign" the organization that generated the forms highlighted the signature lines and when I try to put my signature, it is pushed outside the signature.

    Hi katepell,

    You can simply drag the signature to the desired place by holding it with the mouse.

    Thank you

    Abhishek

  • Comparison of column in the form of table II

    Hello

    At the APEX 4.1 I am doing something similar to this thread: in table form: compare two fields in column where I need to do a validation on two columns in tabular form. It works for both columns are columns of text box, but I can't make it work when comparing to a single column to display. For validation, I have defined it as an "Expression of PL/SQL" and my expression is: CURRENT_VALUE >: PREV_VALUE where CURRENT_VALUE is a column of text box that accepts user input and PREV_VALUE is only one display column.

    Regardless of the absorbed power, the row is updated without any errors raised; He seems to treat the single display value in the vacuum and made the comparison with an empty value. The only solution I could find was to make the comparison in a update trigger on and will raise an error if validation fails; but the result is not as nice as the built in features of validation of the APEX.

    No indication on how to make it work using the validation of the APEX is greatly appreciated.

    Thank you!

    Only column display are for display only and are not saved in the session when you send, so that you can't access with pl/sql.

    So either do the validation in javascript/jQuery or, and it is best if you ask me, make a text field and set to read-only.

  • How to remove columns from table form of process

    Hello

    I have a form of process UD_FN_USR. I have created a userid long type column and later the requirement has changed and I need to change the type of chain. I am able to remove the column from console design but in the table, the left column while I coulnt create the column with the same name as the type string, its tellling leaves the same name of column with a different data type in the current version or earlier versions.can someone please tell me how do to solve this problem

    You need to remove since the end of the database as suggested Sunny.

    ALTER TABLE DROP COLUMN UD_ABCD_UID UD_ABCD

  • Only read the column in the form of planning

    Hi gurus,

    I want to do a red column in planning webform. How can I achieve this? If I give read access to this column for a user and assume that it is a computed column, the calculation is done for the user? To calculate a cell in the form, is that he needed centimeters to write to the user?

    Kind regards

    Hello

    Say you want to have Jan, Feb in your columns, but you want to make read-only Feb, that's what it takes

    In the columns/line under the column dimension tab

    Select period in the drop-down list, enter Jan as a member.

    Now click on add a column

    Enter Feb for the Member, click read-only.

    Ok?

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to remove columns from the table on the master 1-0?

    I have an array of 96 columns with strings. I also have the array of int 96-elemets (mask) with 1 and 0.

    What I want to do is to is to remove (or hide - but I read that it is not possible) all the columns with index corresponding to 0 in the mask table.

    example:

    columns in the table

    1 2 3 4 5

    mask

    0 1 0 0 1

    I want to remove the columns 1, 3 and 4 and leave only 2 and 5 in my table.

    How can I do?

    If I create loop for with i as the index of the column, when I do DeleteTableColumns() columns number decreases, and I get an error of range out of

    Or do I have an option to hide the unnecessary columns (not set their width to 1, it's very ugly-looking)?

    Please help me (())

    Hello rovnyart!

    1. removal of columns in the table:

    I suspect that the reason why you get the out-of-range error is due to fact that in your loop, you delete the columns in the table, you'll eventually end up by referring to a column that no longer exists, because the other columns before it have been deleted. While you remove each column of your table in the loop for example, the column index number will move, because you deleted the other columns in front of her.

    To resolve this, even if you delete a column in your loop, make sure that you take also into account that the index of the column is moved because of the removed columns.

    2 hide columns in table:

    You can use the ATTR_COLUMN_VISIBLE attribute to hide columns in the table:

    http://forums.NI.com/T5/LabWindows-CVI-idea-exchange/add-attr-column-visible-attribute-for-table-Col...

    http://zone.NI.com/reference/en-XX/help/370051Y-01/CVI/uiref/cviattrcolumnvisible_column/

    3 alternatives:

    Note that another alternative would also use a tree instead, control as the tree control also supports the hidable columns:

    http://forums.NI.com/T5/LabWindows-CVI/table-hide-column/TD-p/569773

    Best regards!

    -Johannes

  • Remote column in the form of Bulletin Board on db update

    Hi all

    my need is to update the date and user modified folder. Nothing new.

    I use to work with trigger on a local database as in this example:

    CREATE OR REPLACE TRIGGER "MY_LOCAL_TABLE_T2"
    BEFORE
    insert or update on "MY_LOCAL_TABLE"
    for each row
    begin
    if (:new.CREATED is null)
    then
    :new.CREATED := sysdate;
    end if;
    if (:new.CREATED_BY is null)
    then
    :new.CREATED_BY := nvl(v('APP_USER'),user);
    end if;
    :new.UPDATED := sysdate;
    :new.UPDATED_BY := nvl(v('APP_USER'),user);
    end;
    

    I'm doing the same thing, but I use Apex with a tabular presentation based on a vision of a remote table.

    When I try to compile the trigger this error:

    PLS-00201: identifier 'V' must be declared.

    Another way to do the same thing directly in the Apex solution or suggestion will be appreciated.

    Thank you all.

    Request Express 4.1.1.00.23

    Self-funded, thanks

    trying to create the trigger with your suggestion the error PLS-00201: identifier ' APEX_UTIL. GET_SESSION_STATE' must be declared is triggered.

    I think because of the BD Remote where I have my tables "not see" apex db with func and procs.

    I found this solution which can be reused for different sub tabular form using jQuery:

    -in the form of tables, there are 2 columns I want to update the date of LAST_UPD and LAST_UPD_BY varchar

    -set LAST_UPD like this:

    - Number / Date Format : DD-MM-YYYY HH24:MI:SS

    - Attributes of the element : audit = "date".

    - Default : sysdate

    -set LAST_UPD_BY like this:

    - Attributes of the element : audit = "user".

    - Default : v ('APP_USER')

    -Page - JavaScript

    $( document ).ready(function() {
        $("input[id*='f0']").change(function() {
            idAuditDate = $("input[audit='date']").attr('id').substr(0,4) + $(this).attr('id').substr(4);
            idAuditUser = $("input[audit='user']").attr('id').substr(0,4) + $(this).attr('id').substr(4);
            var d = new Date,
            dformat = [d.getDate(),
                                    d.getMonth(),
                                    d.getFullYear()].join('-')+' '+
                                    [d.getHours(),
                                    d.getMinutes(),
                                    d.getSeconds()].join(':');
            $("input[id="+idAuditDate+"]").attr('value',dformat);
            $("input[id="+idAuditUser+"]").attr('value','&APP_USER.');
        });
    });
    

    Hope this helps.

    Thank you

  • How to stop scrolling in the forms to fill out?

    Can someone please please please tell me if I can stop the form to have a scroll bar?  When I create the form from scratch, it happens, but when I create from a template, is not.  I want to create from scratch but do not know how the section of form to fill out to keep getting more content is added without a scroll bar.

    Hi melissab58588649,

    Could if it you please let me know which version of Acrobat you are using.

    You may double click on a specific form field and must open "properties > Options tab '."

    Then, check 'option of scrolling long text' and 'Multiline' options to allow to type as many characters as you want.

    Let me know if you wish for the same options or something.

    Kind regards

    Ana Maria

  • How warns we filled out the forms to be saved?

    Hi all

    I recently received the task of drafting a few forms.

    The idea is to provide blank forms for our intranet users. In this way the blank forms must be registered locally, filled and printed (with full content) according to the needs. The important point is that users should not be able to save the completed forms to content. I work with Acrobat Pro XI and would like an easy solution that works for this purpose (either by preventing the filled data to be saved in the first place, or at least the form layout white whenever the registered document is open).

    Almost all the issues on the web with PDF and forms dealing with the reverse (for example, how to save filled forms), but my problem is that vice versa.

    Thanks for any help

    If they are not using XI then you have no problem because in earlier versions, it was only possible to save a completed form if it was first activated in Acrobat. If you select no it can not save it.

    And Yes, don't disable JS neutralizes your code.

    If it is a major issue for you then maybe PDF forms are not the right choice, no.

  • Master-detail-shape; Hide/show columns in the form of details according to the column

    Hello

    I have a form master detail. In the long form, I have the columns:
    ID, MASTER_ID_FK, PC_SOURCE, A_C1, A_C2, A_C3, B_C1, B_C2, B_C3

    The PC_SOURCE of the column must be a LOV with values
    NULL VALUE
    A
    B

    So if I choose or enter a master record the detailed form appears and I can enter one or more detail records.

    PC_SOURCE is the first column.
    If I choose one, the columns B_C1, B_C2, B_C3 should disappear as there should be no possible entry.
    If I have B, A_C1, A_C3, A_C2 columsn should disappear as there should be no possible entry.

    Is this possible?

    I tried a bit of my own, but without success. I tried to put in the first column (lov SOURCE PC) in the attributes of the element a javascript call like onChange = "do_Refresh('#PC_SOURCE#'); »

    The javascript funktion do_Refresh tries to grab the value of the column and the value of a hidden item P1_SOURCE as document.getElementById('P1_SOURCE').value = v_source;

    But this does not work, because there is not the value of the recovered column.
    And probably can´t work because of more lines of a detail.

    Thank you and best regards,
    Matthias

    Hello

    The html code of your detailed form will be an array of the elements of entry with names f01, f02, etc.. The columns of the key of the fields are normally hidden, so your PC_SOURCE column will probably use the name f03. A_C1 column name will be f04 etc.

    Once you have the input names for your columns, you can create a dynamic action (DA) to hide the items you want.

    You want the DA to fire when any element PC_SOURCE is changed if you want when to be:
    Event: change
    Selection type: jQuery Selector
    jQuery Selector: input [name = "f03"]
    Condition: no strings attached

    The action is to hide an element in the same line, if the changed item is a value. The action must therefore:
    Action: Run the JavaScript Code
    Fires when the event is: true
    Code: if(this.triggeringElement.value=="A") {$x_Hide ('f04_' + this.triggeringElement.id.split ('_') [1])}

    You then need a lot of real actions for each item that you want to hide.

    Rod West

  • How to set background of the form?

    Hello
    I want to put an image for a background form
    How can I do?
    I used and the Image on the form and to put my buttons and text elements, but all the elements are passed under the image and only push buttons appeared on this
    What should I do?

    I use Oracle form builder 6i

    Thanks for the attention

    Hello

    When you import the image into the form, loses its clarity.

    We use in our forms.

    Kind regards

    Manu.

  • How to organize files on the hard drive? (Not in collection). Lightroom 6, Macintosh

    In Lightroom-6 I want to start to organize photos on the hard drive ("issues").

    (At a later stage, I want to import photos from years back as well).

    I want to organize in "Years" and "month".

    from pictures of the year 2004: I want to create a folder named '2004' in this '2004' - folder I want to create subfolders 12 (months) appointed etcetera 2004-01, 2004-02, 2004-03, 2004-04. (01 = January, 02 = February 03 = March, etc.).

    It should look like this:

    2004

    > 2004-01

    > 2004-02

    > 2004-03

    > 2004-04

    > 2004-05

    etcetera.

    In the LR - app, I think that I am not able to create folders on the hard disk. I created folders in the "masters of Lightroom" - folder, but he won't show as expected in the LR - under 'Files' app after you start Lightroom.

    Before you begin to move the photos to the new folders created, I want to assure you the LR - app can still find later.

    Anyone got a good method or perhaps a statement-link? Other advice most welcome as well.

    Thank you!

    Arnie

    The import dialog box may create the calendar folder based upon import photos that are organized differently in the existing folders. Use the MOVE or COPY option. The instructions are here (see section 5): https://helpx.adobe.com/lightroom/help/import-photos-video-catalog.html

    In addition to the above, you can also organize using keywords.

  • How to add text in the form to a text object

    CS5, Actionscript

    Hi all

    After posting a post very specific about the content of text in XMLElements, I realized that the problem was not at all specific to XMLElements. Therefore, I would point out that more general question:

    For a text object if I add more content, which includes text properties such as 'underline' and 'crossed', how can I do without the latest being automatically applied to the following property values to be appended.

    For example, I found that if I wrote something like this:

    < code >

    PointInsertion = text.insertionPoints.item(-1);

    insertionPoint.contents = "cat";

    insertionPoint.underline = true;

    PointInsertion = text.insertionPoints.item(-1);

    insertionPoint.contents = "dog";

    < code >

    then the 'Cat' and 'Dog' words are underlined, although only Cat is marked for underlined.

    How can I make only "Cat" has pointed out, and 'Dog' not underlined?

    TIA,

    mlavie

    So, your best bet is probably something like this:

    var myProps = {underline:false};
    insertionPoint   = text.insertionPoints.item(-1);
    insertionPoint.underline = true;
    insertionPoint.contents  = "Cat";
    insertionPoint = text.insertionPoints.item(-1);
    insertionPoint.properties = myProps;
    insertionPoint.contents  = "Dog";
    

    Set all of the properties in the myProps you want to be default values...

Maybe you are looking for