How do I align a flex field segment using personalizations?

This is my first attempt at an OAF form personalization.  I added three DFF segments (read only) to the requisition headers portion of the iProcurement requisitions form.  I'll do my best here to try and show what has happened, I hope this will maintain the formatting.  So column on the left side of the form looks like this:
                  Description:   This is a test
                  Created by:    Me
               Creation Date:   03-DEC-2013
Confirming Order: Yes
Capital Expense: No
                     Deliver to:   Test
So, you can see that the two flexfield segments, Confirming Order and Capital Expense are way over to the left and not aligning with the rest of the fields.   I'm wondering if someone can tell me how to get those to line up with the rest of the form fields.  I have the same issue with a third flexfield segment n the right side of the form.  The other fields in the column are Message Styled Text.  And if I add a field that is of that type it will line up.   Although, when using that type of field or the flex field, I have to set the CSS style, it doesn't automatically inherit it as I thought it would.  I did a view source to see what it was on the other fields then filled that in for the CSS Class for the field I had created.  So, I must be missing something else here for these not to line up.  Any guidance is appreciated.  Thanks.

I just found this note: 
DFF Segments Are Not Aligning Correctly When Added Through Personalizations (Doc ID 1594546.1)
It sounds like it isn't possible, unless someone knows of a workaround.

Similar Messages

  • How to attach a Key Flex Field to Descriptive Flex Field

    Hello,
    I would like to know how to attach a Key Flex Field to Descriptive Flex Field(when I click my DFF, I should see my accounting KFF values) using forms personalizations in 11.5.10. It would be great if someone could help me.
    Thanks,
    SJ

    I'm not sure what you mean by referring to forms personalization. If your requirement is simply to be able to enter an accounting KFF via a DFF then you need to attach a value set of type 'Special' to your DFF segment. These are much trickier to get right than other value set types so I would suggest some careful reading of the flexug and also taking a look at some of the seeded value sets of this type.

  • How to create Rules with Flex Field mapping in the bpm worklist

    I Have created a flex field label and was able to map to the flex field attributes .
    But when i try to create a rules , I don't see the label or the flex attributes in the task payload .
    Can someone please help is understanding how to create Rules with Flex Field mapping in the bpm worklist .
    Even I am also searching for any scripts which will take the flex fields prompts and can directly create a label in the bpm worklist .
    Any pointers or suggestion is highly appreciated .

    Hi,
    SE38 -> Enter program
    Select Variants button and display. In the next screen, enter a variant name, (If not existing , press Create to create new one), else click on Change.
    Now the selection screen will display with a button "Variant Attributes" at the top.
    Click on that button.
    In the next screen, go to the selection variable column of the date field. Press F4 or drop down and select 'D' for date maintenance.
    In the column "Name of Variable (Input Only Using F4)" press F4 or drop down, select whichever kind of date calculation you want and save the variant.
    Now whenever you run the prgrm with this variant, date will be displayed by default.
    Regards,
    Subramanian

  • Hide Flex field column by personalization

    Hi,
    In Personal Information page I want to hide the coulmn Work Fax (Phone Numbers)
    which is coming from a flex field.
    (N) - iRecruitment External Site Visitor
    click on the link : Manage My Account
    Personal Information tab.

    Hiding DFF Segments should be possible using 'Segment List' property. Follow the instructions given in dev guide on how to use this property and let us know the results.
    If you leave the Segment List property empty, all segments render. The value you specify for this property must use the following format:
    Global Data Elements|[global segment1]|[global segment2]||...||Context1|[segment1 for context1]|[segment2 for context1]||...||Context2|....
    Segments within a certain context are separated by a single pipe, "|", while data from a different context is separated by a double pipe, "||".

  • How to left align the signature field of dynamic pdf

    Hi,
    I am working on dynamic (interactive) pdf and using Adobe LiveCycle Designer (Adobe Acrobat 9 Pro). My problem is that I cannot align left the signature field of my pdf. I can align left, right and center for textboxs and cannot just do that for signature field. When I couldn't do that from GUI I went to XML code for signature and tried this:
                       <para hAlign="left"/>  but it still didn't work. Ideally it should have worked.
    I would really appreciate if you could help me.
    Regards,
    Kiran

    Use skinning. Use the following skin selector:
    af|panelFormLayout::label-cell {text-align: left; }If you want to apply it only on particular panelFormLayout, then set a custom styleClass on the given <af:panelFormLayout> tag (for example, <af:panelFormLayout styleClass="MyStyleClass" ... >) and use a styleClass-dependent skin selector:
    af|panelFormLayout.MyStyleClass::label-cell {text-align: left; }Adding a custom skin is easy. If you do not know how, see this topic in the documentation: 20.2 Applying Custom Skins to Applications
    Dimitar

  • How To render content tree flex parent asset using search state tag

    i m creating asset in flex parent and  and i placed this  in a tree tab. i want to get the attribute value inside level2 in content tree.
              For eg:
              1.product
                   2.cctv
                        -480cam    
                         -520 cam
                   2.standalone
                        -hseries
                        -pioneer
    Now i want to get the values of (480,520)if i render cctv...same way retreive attribute value (hseries,pioneert) if i use standalone
                   how this possible using searchstate tag please anyone know help me.This is my code.....
    <searchstate:create name="pro22" op="and"/>
    <searchstate:addstandardconstraint name="pro22" attribute="AssetAttrl2" immediateonly="true" typename="HF_Attribute_A"/>
    <assetset:setsearchedassets name="pro33" assettypes="HF_Product_P" constraint="pro22" fixedlist="true"/>
    <assetset:getassetlist name="pro33" listvarname="imagelist11" list="listout" />
    <ics:if condition='<%= ics.GetList("imagelist11") !=null && ics.GetList("imagelist11").hasData()%>'>
    <ics:then>
    <ics:listloop listname="imagelist11">
    <ics:listget fieldname="assetid" listname="imagelist11" output="imag22"/>
    <render:calltemplate tname="HF_3rdlevelProductPage" c="HF_Product_P" cid='<%=ics.GetVar("imag22") %>' ></render:calltemplate><br/>
    </ics:listloop>
    </ics:then>
    </ics:if>

    WCS flex asset model supports a concept called "inheritance". This means, all the attribute values at parent level can be accessed at child level.  You can use this to search all the Product_C assets using an attribute at parent level.
    <listobject:create name="lo" columns="value" />
    <listobject:addrow name="lo">
    <listobject:argument name="value" value="cctv"/>
    </listobject:addrow>
    <listobject:tolist name="lo" listvarname="matchlist"/>
    <searchstate:create name="pro22" op="and"/>
    <searchstate:addstandardconstraint name="pro22" attribute="AssetAttrl2" list="matchlist" typename="HF_Attribute_A"/>
    <assetset:setsearchedassets name="pro33" assettypes="HF_Product_C" constraint="pro22" fixedlist="true"/>
    The above serach state gives you all the products matching CCTV.
    Hope this helps
    Ravi G

  • How to make a people picker field editable using Javascript

    Hi All,
    I wrote an javascript which populates current loggedin user name on to an people picker, which is working fine,
       But its making the people picker field as readonly, i want this field to be editable so that i can add more users with the current loggedin user name already populated in the newform.aspx
    below is the script what i have written
    <script src="/_catalogs/masterpage/MashreqMasterpage/scripts/jquery-1.5.1.min"></script><script type="text/javascript" src="/_catalogs/masterpage/MashreqMasterpage/scripts/jquery.SPServices-0.7.1a.min.js"></script><script
    type="text/javascript">
     $(document).ready(function() {
         var user= $().SPServices.SPGetCurrentUser({fieldName: "Title"});
          $("div[title='Name']").text(user);
    </script>
    please help, thanks in advance

    Hi,
    Please modify your code a bit as below, it won’t make the people picker control read only after setting a value:
    var controlName = "MyPersonField";
    // Select the People Picker DIV
    var ppDiv = $("[id$='ClientPeoplePicker'][title='" + controlName + "']");
    // find the <input> under pp DIV
    var ppEditor = ppDiv.find("[title='" + controlName + "']");
    // Get the instance of the People Picker from the Dictionary
    var spPP = SPClientPeoplePicker.SPClientPeoplePickerDict[ppDiv[0].id];
    ppEditor.val(user);
    spPP.AddUnresolvedUserFromEditor(true);
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to update flex field data on a human task?

    After entering a human task and assigning the data how do you then update flex field data whilst the task is still assigned. I'm using the task services to communicate with the task and applying filters based on the flex field data.
    I want to update the data when actions take place on the task e.g. suspend, aquire, release.
    Any ideas?

    You can fetch the task , change the flex attribute value and update the task. Find below the steps we do for updating one of the TextAttribute
    Task completeTask =  // get the task using task query service
    completeTask.getSystemMessageAttributes().setTextAttribute2(updatedfolderName);
    completeTask = // update the task using "updateTask" method

  • Flex fields in default BPM view 11.1.1.3.0

    Hi
    I Jdeveloper 11.1.1.3.0 I have created a SOA composite with a BPEL flow containing a Human task. In this task I have added data fields (flex fields) which I'm able to show in the Oracle BPM worklist using the Adminstration menu option and adding the flex fields.
    I'm able to create a private view with these new flex fields now showing as column in the BPM worklist.
    But when trying to define these filels in the public views they do not show up in the definition page as available/selected columns. I cannot find anywhere in the documentation where it says that flex fields only can be used in private BPM worklist views. So how do I add a flex field to a public view?
    I do not want all my BPM worklist users to have to create private views themself. I want the new flex fields to be shown in the default worklist columns for all my users by default. Can this be done?
    Best regards
    Johnny

    It this true - that no one can help here???

  • Oracle apps R12.1.3 Key Flex fields not retrieving Data Automatically

    Dear All,
    I have developed a custom form with 10G forms in R12.1.3 version,
    i have attached the Stock Locator Flex field to one of the column i am able to attach the KFF but no values are returning in that ,
    it always says no exsisting combination
    Pls find below how i am calling the Flex field
    FND_KEY_FLEX.DEFINE(
    block => 'TNV_DEMO_SO_SERIAL_INFO_V',
    Field => 'LOCATOR_KFF_ID',
    Description => 'LOCATOR_KFF_DESC',
    ID => 'LOCATOR_ID',
    autopick => 'Y',
    Appl_short_name => 'INV',
    Code => 'MTLL',
    Num => '101',DISPLAYABLE => 'ALL',
    VRULE => '\\nSUMMARY_FLAG\\nI\\nAPPL=INV;NAME =INV_VRULE_POSTING\\nN',
    VALIDATE=>'FULL',
    QBE_IN=>'Y',
    DERIVE_ALWAYS=>'Y',
    updateable => '');
    Pls suggest.

    yes i have used template.fmb only , and am using FND_KEY_FLEX.DEFINE as i mentioned earlier ,
    i have not given any where clause -- should we give any where clause to retrieve the data into the combinations(LOV)?It depends on what values you want to retrieve.
    i mean my requirement is if i give % and press tab all the valid combinations should be displayed.
    its showing no entries found.Did you review 420787.1 referenced above?
    Thanks,
    Hussein

  • How do you keep display only fields from being inserted into tables?

    Morning I have a problem where I am displaying a couple fields on a screen and they are tring to insert in to a table.
    I am running Apex 4.1 on 11Gr2, i am building a set of screens, on the first one the user inputs a subject ID, that branchs to a second screen that uses the subject id to do a lookup for a couple fields for display. there are a couple field the user feels in and a row is inserted in to a differnet table. But Apex is tring to insert the lookup fields in to the second table when I really only need the subject ID.
    How can I tell Apex which fields to use in the insert and which not to try to uses. I see in the debug it is getting all the screen fields in the inserty statement.
    Thanks

    In the insert process, take the cols out which you don't want to insert, say,
    insert into tbl (col1, col2, ....) value (p1, p2, ...)
    =>
    insert into tbl (col1, col5, ....) values (p1, p5, ...)

  • BPM11g Migrating Flex Fields

    Does anyone have any experience migrating flex fields in 11g? There is some documentation here in section 20.6:
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10226/hwf_mang.htm
    The issue is when exporting the fields the documentation states:
    You must export attribute labels before you export flex field mappings.
    To export attribute labels, use the following values in the migration.properties file:
    objectType = TASK_PAYLOAD_FLEX_FIELD_MAPPING
    migrateAttributeLabel = true
    To export flex field mappings, use the following values in the migration.properties file:
    objectType = TASK_PAYLOAD_FLEX_FIELD_MAPPING
    migrateAttributeLabel = false
    When I do this it does not seem to work correctly. When I set the migrateAttributeLabel = true the export_labels.xml file contains the labels for the Protected Flex fields that are set up in the Business Process Workspace under the Admin tab. When migrateAttributeLabel = false the export_labels.xml contains the labels for the Public Flex Fields. The mappings never seem to be exported.
    Any insight would be appreciated.
    Thanks,
    Bill

    It seems I found solution.
    After extending weblogic domain with Oracle BPM Suite protected flex fields appers and become usable.

  • How to hide or lock toolbar fileds by using script

    Hi experts,
    Could you please let me know how to lock or hide toolbar fields by using script.
    Thanks,
    Pavan

    Hi Pavan,
    I dont think its possible using scripting because I don't find any APIs for toolbars.
    However, you can achieve this using toolbar customization.
    You can use the following config :
    Customization Type: Business Object
    Target Class ID: Contract Document (2002)
    Target Toolbar ID:system.toolbar.document.doccommon.contractdocument.contractdocumentactions.actions
    Overrides:
    Hidden  -- Yes 
    Let us know if you are looking for something else.
    Thanks
    Devesh

  • Error While validation segments of Key flex fields in OAF Programmatically

    I have requirement to validation particular segments of Key Flex fields.
    I tried to handle it as below, But I am facing one issue and not able to fix. Please help me as soon as possible.
    public void processFormRequest( OAPageContext paramOAPageContex, OAWebBean paramOAWebBean)
              if(Function_name.equalsIgnoreCase("NWC_TICKET_REQ_HR_SIT_SS"))
              /* OAMessageTextInputBean TicketClass=(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex23");
               OAMessageTextInputBean CompanyShare=(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex16");
               OAMessageTextInputBean TSO=(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex14");
               OAMessageTextInputBean Flight_Reservation =(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex13");
            //   OAMessageDateFieldBean  Traveldate=(OAMessageDateFieldBean)key.findChildRecursive("HrSitKeyFlex11");
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+TicketClass.toString()+":"+TicketClass.getAttributeMap() +" ,"+TicketClass.getValue(paramOAPageContext)+",",1);
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+CompanyShare.toString()+":"+CompanyShare.getAttributeMap() +" ,"+CompanyShare.getValue(paramOAPageContext)+",",1);
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+Flight_Reservation.toString()+":"+Flight_Reservation.getAttributeMap() +" ,"+Flight_Reservation.getValue(paramOAPageContext)+",",1);
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+TSO.toString()+":"+TSO.getAttributeMap() +" ,"+TSO.getValue(paramOAPageContext)+",",1);
                 if(TicketClass.getValue(paramOAPageContext)!=null || CompanyShare.getValue(paramOAPageContext)!=null || TSO.getValue(paramOAPageContext)!=null)
                      throw new OAException("TravelServiceOrder , p_flight_no ,p_ticket_class,p_ticket_amount can not be left Blank. Please enter value");
    Now after first validation I could see the below error:
    Error
    Program error: Please inform your support representative that: FLEXFIELDS SERVER-SIDE VALIDATION package reports error: call_userval() exception: ORA-06508: PL/SQL: could not find program unit being called
    Please suggest me how can I avoid this. This is taking place only during validation. Its urgent for code fix.

    Hi Helios,
    We are using R12.0.6 and db is 10.2.0.3, Linux OS.
    I have checked this Doc ID, which contains following:(below is my checking please)
    Solution
    1. Follow the Note.877352.1 instructions carefully;
    2. Apply the patch 8626820:R12.JG.A;
    3. For packages OKL_... and ICX_ ... please now follow Note.754340.1;
    4. For the FV_... and FUN_.... please follow Note.758497.1;
    5. For the GR_MIGRATE_TO_12 now follow the Note.733646.1;
    (for note's step 5 about patch 6997324 open an SR with Support if you require a password)
    6. Finally, to drop the view called ICX_PO_VENDOR_SITES_V, just execute in a SQL*plus (user APPS) session: drop view ICX_PO_VENDOR_SITES_V;
    My Checking: (I have checked the file version mentioned in below patches also, having same versions of already applied patches)
    1: I have check the patch# 8348599 mentioned in 877352.1 not already applied, so should I apply it?
    2: I have check the patch# 8626820 mentioned in step#2 not already applied, so should I apply it?
    3: I have check the doc id 754340.1 which containg the following patches:
    - 7641584 -------> Already appled
    - 8201911 -------> Already Not appled ----------> Should apply this?
    - 7659470 -------> Already appled
    - 6708042 -------> Already appled
    - 7662017 -------> Already appled
    4: I have check the doc id 758497.1 which containg the following patches already appled:
    - 7376249 -------> Already appled
    - 7372270 -------> Already appled
    - 7372268 -------> Already appled
    5: I have check the patch# 6997324 mentioned in step#5 already applied.
    6: I have checked this view ( ICX_PO_VENDOR_SITES_V) is not exist. what should I do?
    Thanks,
    fazijee

  • How to create a Tip for a field in a Descriptive Flex Field in Self Service

    How to create a Tip for a field in a Descriptive Flex Field in Self Service ?
    Example :
    For Address
    Each Address Line should have one Tip.
    What should I do ?
    Thanks,
    John

    Hi John,
    It seems you have created Address Location DFF in self service in OA Framework.....
    I have created a Address Location flex in OA Framework . It dipslays the segments properly but i dont want to display the segments if they dont have any value.
    I only want to display segments with values . The segments with null values should not display at all...
    i.e , if Address Line 2 value is null , it should not display Address Line 2..
    If you have done this, pls let me know how to go abt it.
    Thanks in Advance,
    Tanveer

Maybe you are looking for

  • My Safari homepage is hijacked by One Search, how can I get rid of it?

    Has anyone had the same problem as this? My Homepage keeps defaulting to a search page called, 'One Search' and I cannot get rid of it. I reset my homepage only for it to be bypassed and One Search to appear overtime I open the browser. Also if I cli

  • Process Order against Sales order

    Hi guys How to create Process order against Sales order... In Disc mfg by using co08 we create Production order against sales order like wise i want to create Process order.. Regards, Srihari.

  • Enq: TX - row lock contention in forms 10g sequency number generation

    Iam Getting the Deadlock issue in oracle formdeveloper 10g database is 11g Acutually in our small Hospital organization using different forms generating entrying labrequest form finally save time one sequency number will generated i have give procedu

  • Setting up a dual boot system with OS 9 and OS 10

    I am currently running OS 9.2 on the G4 and want to run OS 10.4 as a dual boot system. Can I go as far as 10.4 with dual boot? Is there any more to it than partitioning the system drive in two and installing the two OS's on the two partitions?

  • Binding error

    I have a bindable XML variable "Store" and am binding to an element in mxml using {Store.Address} All works as expected, but I'm getting a warning : "Data binding will not be able to detect changes to XMLList Address, need an XML instance". Is there