Find a component in TaskFlow Region

Hi All,
Jdev version : 11.1.1.6
I found lot of code to find a component,Using FacesContext, Events etc...
But in my case its not working.
Scenario:
Home.jspx
<f:view>
<af:document id="d1" title="Create Proposal">
<af:form id="f1">
<af:region value="#{bindings.taskflowdefinition1.regionModel}" id="r1" />
</af:form>
</af:document>
</f:view>
* taskFlowId="/WEB-INF/uw-createProposal-task-flow.xml#task-flow-definition"
Takflow Pages:
Page1.jsff
<af:pageTemplate viewId="/Template/CreateProposalTemplate.jspx" id="pt1" >
<f:facet name ="header">
</f:facet>
<f:facet name="body">
<af:commandButton >
<af:showPopupBehaviour popupid="parentPopup">
</af:commandButton>
<af:table id="tb1" >
</af:table>
<af:popup id="parentPopup">
<af:commandButton >
<af:showPopupBehaviour popupid="childPopup">
</af:commandButton>
</af:popup>
<af:popup id="childPopup">
<af:commandButton actionListener="{AddInsuranceListener.execute}" />
</af:popup>
</f:facet>
</af:pageTemplate>
AddInsuranceListener.java
execute()
RichRegion a_richRegion = (RichRegion) a_facesContext.getViewRoot().findComponent("*r1*");
RichPageTemplate a_richTemplate = (RichPageTemplate) a_richRegion.findComponent("*pt1*");
RichTable a_richTable = (RichTable) a_richTemplate.findComponent("*tb1*");
sop("table"+a_richTable) // output: RichTable id = tb1
I can able to find the Table (tb1) from the child popup action event. But i need region id,pageTemplate id.
Any other alternate way is there to avoid find region and pageTemplate.
UIComponet root = FacesContext.getCurrentInstance.getViewRoot();
root.findComponet("tb1"); // this is also not working
Am I following the correct path.Please suggest how to achieve it? also provide some documents to follow.
Kindly revert if any clarifications need.
Thanks
-Mohanraj

Hi,
the command button is in the page fragment, so you can perform a relative search. In your actionListener you receive the actionEvent object to start from
RichCommandButton button = (RichCommandButton) actionEvent.getUIComponent();
RichPopup popup = button.getParent();
RichTable table = (RichTable) popup.findComponent("tb1");
...You would only use absolute searches when the search is initiated from the parent page. Otherwise you search relative
Frank

Similar Messages

  • Found initalFocusId setting for a component in Taskflow region .jsff

    Hello All,
    I found a way to set initialFocus on a component that is in a .jsff page fragment and which is used in a .jspx page as a Taskflow based region
    To implement the initialfocus
    <li>need to run the page</li>
    <li>view the page source and get the component id after it loads which looks like r1:0:it1 this helps in identifying the path of the component from inside the taskflow region</li>
    <li>now set the id r1:0:it1 in the jspx af:document initialFocusId="r1:0:it1"</li>
    <li>set the property of the component in .jsff as clientComponent="true"</li>
    voila!!! this works great
    let me know if anyone needs more info or a sample workspace .. happy to share :)
    Thanks,
    Tej

    Hi,
    the command button is in the page fragment, so you can perform a relative search. In your actionListener you receive the actionEvent object to start from
    RichCommandButton button = (RichCommandButton) actionEvent.getUIComponent();
    RichPopup popup = button.getParent();
    RichTable table = (RichTable) popup.findComponent("tb1");
    ...You would only use absolute searches when the search is initiated from the parent page. Otherwise you search relative
    Frank

  • Finding a component inside jsf fragment using javascript in adf

    Hello all,
    I am using jdeveloper 11.1.1.5.
    I want to find a component inside my jsf frgament using javascript.
    Like inside jspx page I was able to find the component using
    AdfPage.PAGE.findComponentByAbsoluteId("ID");
    Now my requirement is I have a jsf fragment and I want to find component inside jsf frgament using javascript.
    How can I find the component?
    Please suggest
    Thanks
    Edited by: Navin K on Dec 21, 2011 4:24 PM

    Hi all..
    I am using Jdeveloper 11.1.2.1.0
    The code i used is given below. When i run this i always getting the message (ie region not found) in the else case of java script.
    How can i solve this. How can i take the region r1 in the javascript..
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:document title="Index.jsf" id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:pageTemplate viewId="/AssetTrackingTemplate.jsf" id="pt1">
    <f:facet name="top"/>
    <f:facet name="first">
    <af:panelAccordion id="pa1">
    <af:showDetailItem text="Master Details" id="sdi1">
    <af:spacer width="10" height="10" id="s3"/>
    <af:commandLink text="Home" id="cl8" inlineStyle="font-size:small; font-weight:bold;">
    <af:setActionListener from="/WEB-INF/task-flow-Home.xml#task-flow-Home"
    to="#{pageFlowScope.dynRegionBean.taskFlowId}"/>
    </af:commandLink>
    <af:spacer width="10" height="10" id="s1"/>
    <af:tree value="#{bindings.GenTopMenu1.treeModel}" var="node"
    selectionListener="#{bindings.GenTopMenu1.treeModel.makeCurrent}"
    rowSelection="single" id="t1">
    <f:facet name="nodeStamp">
    <af:group id="g1">
    <af:outputText value="#{node.Description}" id="ot2"
    rendered="#{node.MenuType==1}"/>
    <af:commandLink text="#{node.Description}" id="cl1"
    rendered="#{node.MenuType==2}" partialSubmit="true"
    immediate="false"
    actionListener="#{pageFlowScope.dynRegionBean.launchTaskFlow}">
    <f:attribute name="Definition" value="#{node.Definition}"/>
    </af:commandLink>
    </af:group>
    </f:facet>
    </af:tree>
    </af:showDetailItem>
    </af:panelAccordion>
    </f:facet>
    <f:facet name="middle">
    <af:region value="#{bindings.dynamicRegion1.regionModel}" id="r1"/>
    </f:facet>
    <f:facet name="end"/>
    <f:facet name="copyright">
    <af:outputText value="All Rights Reserved By Innovation ITC" id="ot1"
    inlineStyle="text-align:center; color:inherit;"/>
    </f:facet>
    </af:pageTemplate>
    </af:form>
    <f:facet name="metaContainer">
    <af:resource type="javascript">
    function customHandler(event) {
    var region=AdfPage.PAGE.findComponentByAbsoluteId("r1");
    if(region!=null)
    alert("Region Found");
    var exportCmd = region.findComponent("cb1");
    var actionEvent = new AdfActionEvent(exportCmd);
    actionEvent.forceFullSubmit();
    actionEvent.noResponseExpected();
    actionEvent.queue();
    else {
    alert("Region Not Found")
    </af:resource>
    </f:facet>
    </af:document>
    </f:view>
    Thanks,
    gtg.
    Edited by: gtg on 08-Feb-2012 00:14

  • Need help in finding mpeg2 component number to unlock key so I can burn a dvd?

    Need help in finding mpeg2 component number to unlock key so I can burn dvd?? I have premiere elements 3.0
    Thanks,
    sylvia

    Sylvia,
    I cannot comment on PrE 3, as I did not start until PrE 4. With the latter, when one went to use one of the modules, they were automatically "registered." Based on comments in the Help file, I asked pretty much this same question, back then. All was done automatically, in PrE 4.
    Maybe those, familiar with PrE 3, can be of help to you.
    Good luck,
    Hunt

  • Proxy error-  unable to find software component version for namespace-

    Hi all,
    I need  help  regarding proxy. 
    I am using SAP standard package for one integration  PI 7.0 to SRM. 
    Here we need to use the datatype enhancement for adding some fields.  So I create one extension_datatype  in the datatype enhancement and add the fields . 
    ( I am using Inbount interface, where I am adding the new fields in  PI)
    Now when I go to SRM system and  Run SPROXY system  to regenerate the Proxy.  So that It can reload the New fields.
    Then it reloads and We activate the same. 
    Now at one place when I clicked the data type enhancement object  its giving the error  that  unable to find software component version for namespace" . I did not understand  why  its giving the error.  I added the new fields in the existing  running datatype enhancement.   and reload the reproxy. 
    I have one more datatype enhancement object in the same software component and in the same name space but its not giving the error. 
    Please  help ,  how to resolve it asap. 
    regards
    ram

    1.the datatype enhancement object may not be activated in the same software component .
    for this try these -
    after creating your data types and designing part. First close all the developement objects windows.
    then click on your sw component which you have created and activate it very first.
    then you will be able to activate all other objects
    or when you start activating your data types a new window with list of the objects which you want to activate opens
    in this new window you can see your sw component as the very last object select it first and activate it
    2. update the cache in both system
    i think these 2 reasons.u try it.

  • Find underlying component type

    Hi, I have a structure which has few components. Is it possible to find the component type of the components?
    Also is it possible to determine whether the component type is a table-type or a structure?

    Hi Arun,
      You can try out with the help of a join on the tables DD02L and DD03L. In the DD02L, you would be having the tables and it table category (i.e., the type of the component you require INTTAB represents it as a structure and TRANSP represents transparent table.)
    For example, if u have an include structure in a table, first hit the DD02L table and know whether it is a table or structure and then hit the table DD03L to know what are the include structures it is having. In this way, you can play around with it.
    Please don't forget to reward points if the answer is helpful

  • Taskflow region doesnt fully stretch inside a panel tab.

    Hello All,
    I have a main page which has below structure.
    --panelsplitter - horizontal
    --facet:first
    --facet:second
    --panelTabbed
    --showdetailItem
    Under the showdetail item I dragged and dropped a taskflow as a region.
    The taskflow(jsff) structure is as follows:
    --af:panelStretchLayout
    --center
    --panelCollection
    --Table
    Problem: The table of the taskflow region doesnt fully occupy the tab region and shows a vertical and horizontal bar.How can the table in the region set to use the entire tab.
    Thanks,
    --John.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Where does the panelStretchLayout go exactly?
    Just to make sure, all I need is a table in a tab which would fully occupy the tab.How can that be designed.
    Once again Thanks for all the help everyone.
    --John.                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • To find application component of Program

    Hi all
    which table has the application component of the program name...
    i found one way that
    I/P                               Table              output
    obj_name                    TADIR     DEVCLASS
    (program name) 
    DEVCLASS                 TDEVC       COMPONENT
    FCTR_ID
    (TDEVC-COMPONENT)  DF14L     PS_POSID(Appl.Comp Name)
    I don't know whether it's correct way......
    Kindly suggest me about finding Application component name of the program name.
    Thanks In Advance.

    Dear Joe,
    I would appreciate if you could the procedure you were following. Were you trying to find it using a table entry?
    There are two ways I know depending on weather you know the package of the program. Application Component of a program is generally defined in the Package of that particular program.
    > One is from the Attribute of the Program
    >>Go to --> Attribute --> Package(Double Click) --> Application Component.
    > Second one is if you know the package.
    >> Open se21 --> Enter Package name --> you will get the "Application Component" in the Attribute tab.
    Best Regards,
    Rajesh
    Please reward points if found helpful.

  • Cannot find Installed Component

    Hi,
    Can anyone tell me why I cannot find the component I
    installed from Extension Manager. I checked the Windows menu as
    stated from the Extension Manager after I installed and restarted
    Adobe Flash but I find nothing.
    From Extension Manager: I was told the component can be found
    in Windows >> Components ... >> ... as below:
    UI ACCESS:
    After the installation of the component, you can find Web
    menu component in the menu of the Components Panel in Flash.
    (Select Windows > Components panel > FreeWebMenus.com
    > Name of the menu).
    Thanks and regards,
    /.. Waynacle

    I found the solution in this thread:
    Proc/c++

  • How to load the destination url of af:goLink   component to a REGION?

    Hi,
    I've a tree in which every node is <af:goLink> component. How to load the destination url of <af:goLink> component to a REGION? Can anyone please tell me whether it is possible or not?
    Thanks
    -Sukumar

    Hi,
    Thanks for the reply. I have looked at the blog.
    But my scenario is little bit different. I'm not trying to load a JSF fragment page or a JSF page or a html page. I'm trying to load a url page which is not related to the applicaton. Eg: I'm trying to load "www.my.oracle.com" web page in the region. So I must use a <af:goLink> component. Please correct me if i have misunderstood the concepts".
    Thanks
    Sukumar

  • Cant see PC's in finder shared component

    Hi, Im totally new to the mac world. i have a wireless network, 3 PC's and one mac. i wish to work mainly from the mac and have all other computers as servers in the finder shared component. the problem is that i can connect to the PC only manually. i wanna see them all under shared in the finder window. what should i do?
    ive search this database but couldn't find the specific solution to my problem.
    Thanks
    Shay

    Without really knowing your network i'll try to help.
    Basically you need to have a shared folder on the PC's and know their IP adress's. You then use OS X's Go to Server command and type in the IP of the PC machine. The Shared folder should then be displayed.

  • How to find a component inside region at the bean level

    Hi,
    Am using JDEV 11.1.2.0.0 . As per requirement developing a sample to use keyboard shortcut .. Registered the keys combination in the js and added the respective client and server listeners. My requirement goes as follows..
    1. Have a .jspx page called -> HotKeys.jspx.
    2. In the .jspx page have a region called DepartmentTF -> Department.jsff that in turn holds the navigation buttons.
    First -> Ctrl + F
    Next -> Ctrl + N
    3.Having running the page , when i give Ctrl + N , it should identify the Next button and trigger the respective code..
    But the issue is how do i found the Next button component at bean level...
    Thanks and Regards,
    Vinitha G

    Hi,
    if the JSFF is always shown in the region, then you could access the button with the knowledge of the path it sits in
    1. find the regions
    RichRegion _region = uiViewRoot.findComponent("regionId");
    2.
    _region.findComponent("idOfNextButton");
    If you need this to be more dynamic, have a read here:
    http://www.oracle.com/technetwork/developer-tools/adf/downloads/58-optimizedadffacescomponentsearch-175858.pdf
    Frank

  • How to close PopUp (from taskflow region)???

    Can someone, please, explain how to solve this use-case:
    I have PopUp in which I put a region (in which is a small TaskFlow consiting of 2 JSFFs). I want to have Cancel and OK buttons in both JSFFs in TaskFlow. How to close PopUp from within TaskFlow ??? I saw the TaskFlow Return component in ADF TaskFlow diagram components (in palette) but haven't found any help/documentation on it. Or, should I use Return listener on command button used to rise popup (but, still, how to close popup from taskflow?)?
    Any help would be great!
    Thanks in advance,
    Marko

    mimarko,
    Regions/Taskflows are meant to be isolated reusable components. They are not meant to
    have knowledge of their parent or container. That said, code contained with in a region should not attempt to reach out an modify the parent. Regions can fire contextual events that can be handled by a listener declared in the parent pages pageDef. However, attempting to close a popup from a context listener would be bad practice. The easiest fixt is to put the popup in the taskflow for your region. That will create a reusable popup that you can use through out your application.
    --Ric                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Using AdfPage.PAGE.findComponent to find a popUp in a region

    Adf11g
    Hello
    I have a task flow in a region on a page - the region is named regionTrans.
    The main page in the taskflow has a popUp in the jsp:root - the popUp is named popTrans
    As I need to do a CreateInsert() before displaying the popUp I'm displaying the popUp using the following code :
        public static void showPopup(String popupId) {
           FacesContext context = getFacesContext();
           ExtendedRenderKitService extRenderKitSrvc =
                    Service.getRenderKitService(context, ExtendedRenderKitService.class);
           extRenderKitSrvc.addScript(context,
                                           "AdfPage.PAGE.findComponent('" + popupId + "').show();");
            }   In order to show the popUp in the region when the user clicks a button I have to use "regionTrans:0:popTrans" for the popupId.
    "regionTrans:0:popTrans" was found be looking at the source of the generated page.
    What I don't understand is what the "0" represents in the "regionTrans:0:popTrans"
    Can anybody explain ?
    Regards
    Paul

    Hi
    Here's where the region is defined in the main page :
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:c="http://java.sun.com/jsp/jstl/core">
      <c:set var="viewcontrollerBundle"
             value="#{adfBundle['ch.mit.trac.view.resourceBundle.ViewControllerBundle']}"/>
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" title="TRAC v#{bindings.Version.inputValue}">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:decorativeBox theme="light" topHeight="30px" id="db1">
              <f:facet name="center">
                <af:region value="#{bindings.transaction1.regionModel}"
                           id="regionTrans"/>
              </f:facet>
              <f:facet name="top">
                <af:panelGroupLayout layout="scroll"
                                     xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                     id="pgl1">
                  <af:menuBar id="mb1">And here's the entire jsff
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:c="http://java.sun.com/jsp/jstl/core">
      <c:set var="viewcontrollerBundle"
             value="#{adfBundle['ch.mit.trac.view.resourceBundle.ViewControllerBundle']}"/>
      <af:panelStretchLayout id="psl1" topHeight="42px" visible="true"
                             inlineStyle="width:1367px; height:851px;">
        <f:facet name="center">
          <af:panelStretchLayout id="psl2" topHeight="29px" bottomHeight="49px">
            <f:facet name="bottom">
              <af:panelGroupLayout layout="horizontal"
                                   xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                   id="pgl5">
                <af:separator id="s3"/>
                <af:outputText value="Warnings : 5" id="ot2"/>
                <af:commandButton actionListener="#{bindings.Rollback.execute}"
                                  text="Rollback"
                                  disabled="#{!bindings.Rollback.enabled}"
                                  immediate="true" id="cb5">
                  <af:resetActionListener/>
                </af:commandButton>
                <af:commandButton actionListener="#{bindings.Commit.execute}"
                                  text="Commit"
                                  disabled="#{!bindings.Commit.enabled}" id="cb4"/>
              </af:panelGroupLayout>
            </f:facet>
            <f:facet name="center">
              <af:panelSplitter id="ps1" splitterPosition="690">
                <f:facet name="first">
                  <af:panelGroupLayout layout="scroll"
                                       xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                       id="pgl3">
                    <af:panelHeader text="#{viewcontrollerBundle.BUY}" id="ph1">
                      <f:facet name="context">
                        <af:inputComboboxListOfValues popupTitle="Search and Result Dialog"
                                                      id="inputComboboxListOfValues1"/>
                      </f:facet>
                      <f:facet name="menuBar"/>
                      <f:facet name="toolbar">
                        <af:commandToolbarButton text="#{viewcontrollerBundle.NEW}"
                                                 id="ctb1"/>
                      </f:facet>
                      <f:facet name="legend"/>
                      <f:facet name="info"/>
                    </af:panelHeader>
                  </af:panelGroupLayout>
                </f:facet>
                <f:facet name="second">
                  <af:panelHeader text="#{viewcontrollerBundle.SELL}"
                                  id="panelHeader1">
                    <f:facet name="context">
                      <af:inputComboboxListOfValues popupTitle="Search and Result Dialog"
                                                    id="inputComboboxListOfValues2"/>
                    </f:facet>
                    <f:facet name="menuBar"/>
                    <f:facet name="toolbar">
                      <af:commandToolbarButton text="#{viewcontrollerBundle.NEW}"
                                               id="commandToolbarButton1"/>
                    </f:facet>
                    <f:facet name="legend"/>
                    <f:facet name="info"/>
                  </af:panelHeader>
                </f:facet>
              </af:panelSplitter>
            </f:facet>
            <f:facet name="top">
              <af:panelGroupLayout layout="scroll"
                                   xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                   id="pgl4">
                <af:outputText value="outputText1" id="ot1"/>
                <af:separator id="s2"/>
              </af:panelGroupLayout>
            </f:facet>
          </af:panelStretchLayout>
        </f:facet>
        <f:facet name="top">
          <af:panelGroupLayout layout="horizontal"
                               xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                               id="pgl2">
            <af:selectOneChoice value="#{bindings.UserPositionView.inputValue}"
                                required="#{bindings.UserPositionView.hints.mandatory}"
                                shortDesc="#{bindings.UserPositionView.hints.tooltip}"
                                id="soc1" autoSubmit="true">
              <f:selectItems value="#{bindings.UserPositionView.items}" id="si1"/>
            </af:selectOneChoice>
            <af:spacer width="10" height="10" id="s1"/>
            <af:selectOneChoice value="#{bindings.SttTransactionViewViaPosition.inputValue}"
                                shortDesc="#{bindings.SttTransactionViewViaPosition.hints.tooltip}"
                                id="soc2" partialTriggers="soc1">
              <f:selectItems value="#{bindings.SttTransactionViewViaPosition.items}"
                             id="si2"/>
            </af:selectOneChoice>
            <af:commandToolbarButton text="#{viewcontrollerBundle.PREVIOUS}"
                                     id="cb2"
                                     actionListener="#{bindings.Previous.execute}"
                                     disabled="#{!bindings.Previous.enabled}"
                                     partialSubmit="true"/>
            <af:commandToolbarButton text="#{viewcontrollerBundle.NEXT}" id="cb1"
                                     actionListener="#{bindings.Next.execute}"
                                     disabled="#{!bindings.Next.enabled}"
                                     partialSubmit="true"/>
            <af:spacer width="10" height="10" id="s4"/>
            <af:commandToolbarButton id="commandToolbarButton2"
                                     text="#{viewcontrollerBundle.NEW}"
                                     actionListener="#{transactionBean.newTransactionOnClick}"/>
            <af:spacer width="25" height="10" id="spacer1"/>
            <af:commandToolbarButton text="#{viewcontrollerBundle.LIMIT}"
                                     id="ctb2"/>
            <af:commandToolbarButton text="#{viewcontrollerBundle.WARNINGS}"
                                     id="ctb3"/>
            <af:commandToolbarButton text="#{viewcontrollerBundle.INFORMATION}"
                                     id="ctb4"/>
            <af:commandToolbarButton text="#{viewcontrollerBundle.DOCUMENTS}"
                                     id="ctb5"/>
            <af:commandToolbarButton text="#{viewcontrollerBundle.TRANS_REP}"
                                     id="ctb6"/>
          </af:panelGroupLayout>
        </f:facet>
      </af:panelStretchLayout>
      <af:popup id="popTrans">
        <af:panelWindow id="pw1" title="#{viewcontrollerBundle.TRANSACTION}">
          <af:panelFormLayout id="pfl1" labelAlignment="top">
            <af:inputText value="#{bindings.TransactionId.inputValue}"
                          label="#{bindings.TransactionId.hints.label}"
                          required="#{bindings.TransactionId.hints.mandatory}"
                          columns="#{bindings.TransactionId.hints.displayWidth}"
                          maximumLength="#{bindings.TransactionId.hints.precision}"
                          shortDesc="#{bindings.TransactionId.hints.tooltip}"
                          id="it2">
              <f:validator binding="#{bindings.TransactionId.validator}"/>
            </af:inputText>
            <af:inputText value="#{bindings.Designation.inputValue}"
                          label="#{bindings.Designation.hints.label}"
                          required="#{bindings.Designation.hints.mandatory}"
                          columns="#{bindings.Designation.hints.displayWidth}"
                          maximumLength="#{bindings.Designation.hints.precision}"
                          shortDesc="#{bindings.Designation.hints.tooltip}"
                          id="it1">
              <f:validator binding="#{bindings.Designation.validator}"/>
            </af:inputText>
            <f:facet name="footer">
              <af:commandButton text="#{viewcontrollerBundle.OK}" id="cb3"/>
            </f:facet>
          </af:panelFormLayout>
        </af:panelWindow>
      </af:popup>
    </jsp:root>If there's too much or too little info let me know
    Regards
    Paul

  • Finding Data of a Particular region

    Hi,
    How do we find the data present of a particular region say "X" in the datatarget for which data of say 4 regions is loaded. I know only the object I need to find the Data targets also in which the particular region data is present.
    I need to delete the data of particular region from datatargets can someone let me know how this could be done.
    Regards,
    Vicky

    Hi vicky,
    you can delete particular records from a dataprovider. Right-click on your data provider (infocube), choose 'manage' option. goto the 'contents'  tab , you will be able to see the fields in the infocube.select the field you want , and click 'delete selection' option. In the next screen you can select the particular records you want to delete. After selecting the values, you can execute and delete the required records.
    Regards,
    Krishna.

Maybe you are looking for

  • I don't have an administrator password to Download the latest version of Adobe Flash Player 12.0.0.77

    I would like to keep FireFox as my browser at work. However the administration will not allow Adobe Flash Player 12.0.0.77 to be upgraded of allowed to run the install program. Why cannot FireFox just include the new Flash Player upgrades?

  • Sql script

    I am trying to create a partitioning script for my erg_kwh_log table and i have this table in many schemas, what i want is the before running the partitions command a pl/sql block should check whether the existing table is partitioned or not, so for

  • Indesign 3 colour swatches lost???

    Hi All, I have a problem in Indesign... When I close a document which uses colour swatches that I have created the colour swatches are removed from the 'swatches' tab I don't know how I can save the swatches for use in other documents, Any advice wou

  • Authorization and De-authorization for PC

    If I got rid of old PCs before de-authorizing itunes, what are options to add a new PC since I get error message that I am over 5 PC limit

  • SPS17 patch error

    during patching of my SAP J2EE engine to SP17, I get the following error: " 2008-12-02 dbs-Info:  $Id: //tc/DictionaryDatabase/645_VAL_REL/src/_dictionary_database_dbs/java/com/sap/dictionary/database/dbs/DbModificationManager.java#4 $ Dec 2, 2008 4: