Adding the expression in Item under UI Property

HI:
I was trying to create a Item in a region editing parameters in the create Action properties.
I can not edit or add the expression parameters because the
elipse icon did not bring the window to give name and
write the expression for the parameter
I use 10.1.3 JDeveloper
Can you please help
Thank you
Ali

Hi Ali,
Sorry, little confusing. Can you please re explain.
Abdul Wahid

Similar Messages

  • How to find the quantity of items under WIP job and under PO?

    Hi,
    How can I find the quantity of the Items that are under:
    1. WIP Jobs that are not yet completed?
    2. PO that are not yet received?
    Kindly help me. If you have proper query for it, let me know.
    Regards,
    KM

    select  e1.empno,
            e1.ename,
            e2.direct_managed_employee_count
      from  emp e1,
             select  mgr,
                     count(*) direct_managed_employee_count
               from  emp
               group by mgr
            ) e2
      where e2.mgr = e1.empno
         EMPNO ENAME      DIRECT_MANAGED_EMPLOYEE_COUNT
          7566 JONES                                  2
          7698 BLAKE                                  5
          7782 CLARK                                  1
          7788 SCOTT                                  1
          7839 KING                                   3
          7902 FORD                                   1
    6 rows selected.
    SQL> SY.

  • Can't find "Endnote Citation" in the INSERT menu item

    I wanted to insert a citation or bibliography in my report using Pages but I can't find the feature in Pages to do this.  From the help, it stated going to INSERT then select "Endnote Citation" but in my Pages, under the INSERT menu item, I can't find "Endnote Citation". 
    I am using Macbook Air 2010, and Pages 09.  Please help.
    8irons

    Apple includes download links to some very useful documentation with each of the iWork '09 applications. You'll find it in the Help menu. Each User Guide is a searchable PDF document packed with useful information on using the application.
    On page 52 of the Pages '09 User Guide, the topic of Footnotes and Endnoted is discussed:
    Adding and Editing Footnotes and Endnotes
    In a word processing document, you can add special marks (numbers or symbols)
    that link to notes at the bottom of a page (footnotes) or at the end of a document or
    section (endnotes).
    You can’t mix footnotes and endnotes in a document, but you can convert notes from
    one type to the other.
    (emphasis added)
    The Footnotes menu item in the Insert menu serves to insert markers for either type of note.
    Regards,
    Barry

  • Link to inbox on express work item dialog box

    Hi Friends,
    Is there a way to delete the link to inbox from express message dialog box, for some express work items?
    Any input is much appreciated
    Thanks
    Vijay

    Thank you all.
    Well, we are using fax attachment to Journal entries(JE) which is subject to approval. If a user deletes the attachment from JE I'm sending the express work item to refax the supporting documents so that it can be sent back for approval.
    The problem here is, If the user deletes the attacment from FBV2, he gets the express message, goes to inbox, executes the work item to fax the supporting document which gets attached to JE and JE goes for approval. Once it is approved It gets posted in the background. If the user, who deleted the attachment remains in the inbox when JE is approved he is technically blocking the JE and hence posting is failing.
    I can change the work item priority and send a normal work item and a mail to his outlook regarding the deletion and need for refaxing. But business wants express message to refax.
    Hope this will help you sugest some solution.
    Thanks
    Vijay

  • Bridge CS4 - I can no longer find the InDesign Batch feature under tools

    I see Photoshop and Illustrator but no InDesign. Did it moved or get renamed? It was working fine in CS3.

    The only menu item under the InDesign menu in CS3 was the Contact Sheet for InDesign script.
    Adobe discontinued that for CS4.
    I have a CS4 version for sale on my website, if you're interested. I kept the price down; but, I can't give that much time without making at least something. www.creativescripting.net
    Bob

  • How to cancel the event in Item Adding and display javascript message and prevent the page from redirecting to the SharePoint Error Page?

    How to cancel the event in Item Adding without going to the SharePoint Error Page?
    Prevent duplicate item in a SharePoint List
    The following Event Handler code will prevent users from creating duplicate value in "Title" field.
    ItemAdding Event Handler
    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    if (properties.ListTitle.Equals("My List"))
    try
    using(SPSite thisSite = new SPSite(properties.WebUrl))
    SPWeb thisWeb = thisSite.OpenWeb();
    SPList list = thisWeb.Lists[properties.ListId];
    SPQuery query = new SPQuery();
    query.Query = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + properties.AfterProperties["Title"] + "</Value></Eq></Where>";
    SPListItemCollection listItem = list.GetItems(query);
    if (listItem.Count > 0)
    properties.Cancel = true;
    properties.ErrorMessage = "Item with this Name already exists. Please create a unique Name.";
    catch (Exception ex)
    PortalLog.LogString("Error occured in event ItemAdding(SPItemEventProperties properties)() @ AAA.BBB.PreventDuplicateItem class. Exception Message:" + ex.Message.ToString());
    throw new SPException("An error occured while processing the My List Feature. Please contact your Portal Administrator");
    Feature.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Feature Id="1c2100ca-bad5-41f5-9707-7bf4edc08383"
    Title="Prevents Duplicate Item"
    Description="Prevents duplicate Name in the "My List" List"
    Version="12.0.0.0"
    Hidden="FALSE"
    Scope="Web"
    DefaultResourceFile="core"
    xmlns="http://schemas.microsoft.com/sharepoint/">
    <ElementManifests>
    <ElementManifest Location="elements.xml"/>
    </ElementManifests>
    </Feature>
    Element.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="100">
    <Receiver>
    <Name>AddingEventHandler</Name>
    <Type>ItemAdding</Type>
    <SequenceNumber>10000</SequenceNumber>
    <Assembly>AAA.BBB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8003cf0cbff32406</Assembly>
    <Class>AAA.BBB.PreventDuplicateItem</Class>
    <Data></Data>
    <Filter></Filter>
    </Receiver>
    </Receivers>
    </Elements>
    Below link explains adding the list events.
    http://www.dotnetspark.com/kb/1369-step-by-step-guide-to-list-events-handling.aspx
    Reference link:
    http://msdn.microsoft.com/en-us/library/ms437502(v=office.12).aspx
    http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspx
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Recommended way for binding the list event handler to the list instance is through feature receivers.
    You need to create a feature file like the below sample
    <?xmlversion="1.0"encoding="utf-8"?>
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="{20FF80BB-83D9-41bc-8FFA-E589067AF783}"
    Title="Installs MyFeatureReceiver"
    Description="Installs MyFeatureReceiver" Hidden="False" Version="1.0.0.0" Scope="Site"
    ReceiverClass="ClassLibrary1.MyFeatureReceiver"
    ReceiverAssembly="ClassLibrary1, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=6c5894e55cb0f391">
    </Feature>For registering/binding the list event handler to the list instance, use the below sample codeusing System;
    using Microsoft.SharePoint;
    namespace ClassLibrary1
        public class MyFeatureReceiver: SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite siteCollection = properties.Feature.Parent as SPSite;
                SPWeb site = siteCollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                SPEventReceiverDefinition rd = list.EventReceivers.Add();
                rd.Name = "My Event Receiver";
                rd.Class = "ClassLibrary1.MyListEventReceiver1";
                rd.Assembly = "ClassLibrary1, Version=1.0.0.0, Culture=neutral,
                    PublicKeyToken=6c5894e55cb0f391";
                rd.Data = "My Event Receiver data";
                rd.Type = SPEventReceiverType.FieldAdding;
                rd.Update();
            public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
                SPSite sitecollection = properties.Feature.Parent as SPSite;
                SPWeb site = sitecollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                foreach (SPEventReceiverDefinition rd in list.EventReceivers)
                    if (rd.Name == "My Event Receiver")
                        rd.Delete();
            public override void FeatureInstalled(SPFeatureReceiverProperties properties)
            public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    }Reference link: http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspxOther ways of registering the list event handlers to the List instance are through code, stsadm commands and content types.
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

  • When logging in into yahoo mail after typing in password Firefox is adding something, login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    When logging in into yahoo mail after typing in password Firefox is adding something, probably remembered password and login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

  • Visual Studio 2012 SharePoint Project Error : The partial project item type does not have a value for this property

    Hi,
    I am getting this error from visual studio 2012 whenever i try to create the following project types:
    - Workflow Custom activity
    - Web parts
    The error is as mentioned below
    "The partial project item type does not have a value for this property"
    Due to this the when I add above type of items in my project, they show a red cross icon against them.
    Please let me know If have you any solution?

    Hi
    I had same issue. Below is the solution
    Installing
    "Visual Studio 2012 Update 3" usually solves this problem. (You can download it through microsoft's official site at
    "http://www.microsoft.com/en-in/download/details.aspx?id=39305")
    Hansraj Rathva

  • I upgraded to mountain lion a week ago and now on startup of my macbook pro, microsoft excel and word start up automatically and then crash? very strange can anyone please help? I have checked the login items under users and groups and there is nothing.

    I upgraded to mountain lion a week ago and now on startup of my macbook pro, microsoft excel and word start up automatically and then crash? very strange can anyone please help? I have checked the login items under users and groups and there is nothing.

    Are you using the Office for Mac 2011 version, as you need to do?  The Office for Mac 2004 is Not at all compatible with Mountain Lion, and the 2008 version has been noted to have some problems running with ML.
    Hope this helps

  • My MacBook Air is not being listed under the My Products tab after adding the Apple Care Protection Plan

    I purchased my MacBook Air from US in December 2013, my company paid for it, so it got listed under their account earlier. So I asked them to remove it from there account and then I added it back to my profile in January 2014. Then it was listed under My Products tab in the My Support Profile page. Later I bought Apple Care Protection Plan for this MBA, and registered that plan with my MBA's serial number and soon after that, MBA vanished from My Products. I thought it might take some time for it to get listed back again after adding the protection plan, but it didn't appeared for quite a long time and so now I am opening this support ticket.
    Now whenever I try to add my MBA again by clicking Register New Product, I am getting "According to our records, this serial number is registered to another Apple ID. If you have more than one Apple ID, log in to My Support Profile with that Apple ID to see your other registered products. Not sure if you have another Apple ID?" How can I get my MBA back into my profile?

    AppleCare does not cover accidental damage, but try taking it to an Apple Store and see what they say!

  • Updated to the 7 version.  Under contacts there is no option for adding Notes.  How do you get it back?

    I updated to the 7 version.  When you add a contact now, you no longer have the option for adding notes.   Also all the apps I purchased are  no longer on my desktop. The apps are shown under settings but I do not see where you can add them to the desktop.

    I see notes under "add instant message" when you are setting up a new contact. Notes appears between "add instant message" and  "add field" .  Perhaps you didn't scroll down far enough.  This is on my iPhone 4 so I don't know about other phones. 

  • Retrive all the items under one folder

    Hi,
    I am new to ContentArea API's in 9ias.
    I am looking for Sepecific API's to retrive all the Items
    under one folder.
    thanks
    sha

    I'd love to know that API also. I have resorted to accessing the tables containing that information.
    wwv_corners contains an entry for each folder. wwv_things contains an entry for each folder item. You can join the two tables as
    wwv_corners.id = wwv_things.cornerid
    You could do something like:
    select folders.name, items.id
    from portal30.wwv_corners folders
    ,portal30.wwv_things items
    where folders.id = items.cornerid
    and folders.id = 99999;
    (where 99999 is the folder id.)
    Mike Kleiman

  • Adding ZoomIn functionality to the Gantt menu Items

    Hi
    We have a requirement of adding ZoomIn/ZoomOut as MenuItem in Gantt.
    As ZoomIn/ ZoomOut is an implicit functionality of Gantt.Is there any way to do this?

    You can add a custom menu with zoom-in/zoom-out menu-items to Gantt's menubar. In the action listener of the new menu-item, you can update the scale attribute of the major/minor dvt:timeAxis to the new zoom level, and ppr gantt.
    This approach will not work in the older versions, but should work in the latest production release out on the OTN.

  • I'm trying to extend the range of an Airport Extreme 802.11g by adding an Airport Express 802.11n. I set the Express up to join the existing network, but it does not make any difference in the range of the network. What's wrong?

    I'm trying to extend the range of an Airport Extreme 802.11g by adding an Airport Express 802.11n. I set the Express up to join the existing network, but it does not make any difference in the range of the network. What's wrong?

    Let me see if I can help you with the basic WDS configuration steps:
    Note: To help facilitate the setup, temporarily connect the AXn directly to the AEBS LAN port using an Ethernet cable. Once the setup is complete, you can move the AXn to the desired location. For all configuration steps you will be using the AirPort Utility. Before starting, be sure to jot down the AppleIDs for both base stations.
    802.11g AirPort Extreme Base Station (AEBS) Configuration
    AirPort Utility > Select the AEBS > Manual Setup > Wireless tab
    Wireless Mode: Participate in a WDS network
    Manual Setup > WDS tab
    WDS Mode: WDS main
    Allow wireless clients (checked)
    WDS Remotes: <enter the AppleID for the AXn here>
    Click on Update and allow the base station to restart.
    802.11n AirPort Express Base Station (AXn) Configuration
    AirPort Utility > Select the AXn > Manual Setup > Wireless tab
    Wireless Mode: Participate in a WDS network (Note: You may have to hold down the Option (Mac) or Control (PC) key to see this option in the list.)
    Manual Setup > WDS tab
    WDS Mode: WDS remote
    Allow wireless clients (checked)
    WDS Main: <enter the AppleID for the AEBS here>
    Click on Update and allow the base station to restart.

  • Is it possible to Delete items under the Save As button in BW Web Pages?

    Currently the ability to Delete items under the Save As button in BW Web Pages is not allowed. Is it an SAP supplied functionality?
    Do you khow how this can be done? thanks in advance.

    Hi Lin,
    when you click save as button, it will save bookmarks in KM folders for BEx Portfolio, My Portfolio, My favorites
    you can delete items in corrosponding iViews, i.e. execute BEx portfolio iView and manage book marks
    srinivas

Maybe you are looking for

  • My itunes will not recognize my ipod shuffle after installing Mcafee

    My itunes will not recognize my Ipod shuffle, I have tried almost everything Itunes has suggested including uninstalling and installing Itunes.  I am at a loss, the computer recognizes the ipod and assigns a drive to it.  When I click on the drive th

  • Install Arch from 2007.05 "base" iso or the "current" iso?

    My old Arch install (0.7.2, upgraded in Nov. 06) may be broken, and I'm thinking of doing a fresh install of 2007.05.  For the old install, I'd followed the recommended procedure of installing just the base system from the CD iso image, then installe

  • Revision number for Header material in Production order.

    I have maintained Revision number in material mster  for Header material in Production order and also for components. 1)Revision number for Header material in Production order is not appearing in AFKO table against production order. 2)Revision number

  • Josso not able authenticate against sun directory configuration

    I trying configure josso-1.5 and jboss 4.x to sun directory server. I getting error in the screen: Invalid Authentication Information It works against openldap Please let me know, i need do any special configuration for sun directory server console l

  • Inserting Multiple Rows into a Table

    I am having problems insert multiple rows. I am using Table1.Row1.instanceManger.addInstance(1). I try adding another line using Table1.Row2.Cell2.value.#text= "TEST" and I get an error acessor is unknown. I assume this is an index issue. Can someone