Can't update an Application Item value

Hi
In my application i have to Know the logged in user's role and group, that's why i created 2 Application Item
APP_USER_ROLE
APP_USER_GROUPE
I have a LOV that return two values separated by a ";". the first one is the user's role and the second is the user's group
I defined an "On demand process" this process is called when the LOV value change
that's the code
*<script>*
*/* This method stores the value of source items into the session*
*function setSession() {*
var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=V_DUMMY',&APP_PAGE_ID.);
gReturn = get.get();
var itemValues = $v('P1_USERS_ROLES').toString();
var itemList= itemValues.split(';');
get.add('APP_USER_ROLE',itemList[0]);
get.add('APP_USER_GROUPE_Y', itemList[0]);
alert ($v('APP_USER_ROLE'));
get = null;
*</script>*
the Alert Message display an empty messagebox!
i tried another methode
i copied the result to a textfield in the form P1_X and P1_Y
*$s('P_X', itemList[1]);*
*$s('P_y', itemList[1]);*
get.add('APP_USER_ROLE',itemList[0]);
get.add('APP_USER_GROUPE_Y', itemList[1]);
always the same empty message box
Details
i'm using
Oracle Applcation Express 4.1 under Oracle 11g R2 database
OS: RedHat Enterprise Linux 4.1
Client
OS: Windows 7 professional X64
Browser Mozilla Firefox 10.0.2
Chrome 17.0.963.56 m
Internet Explorer 9
Edited by: user482143 on 3 mars 2012 07:19

Michael Sullivan wrote:
From time to time, I cannot drag a newer version of a program to the Apps folder. Recently it was Toast 9 and iSquint.
With Toast at least, you should uninstall the previous version first. You can do this by moving it into a subfolder, marked, say StaleToast and you will be prompted for a password to move it.
When I recently updated Toast, that is what I did and I simply got the usual password request.
I do not keep Toast directly in the Application folder, but in a subfolder named Toast. Not sure if this is why I don'[t experience your problem.
If I attempt to I get a message saying I do not have permission.
I am an administrator.
My work around is to delete the App (I have to put in a password to do that) then drag it to Apps.
As I noted, for Toast, this is the way since the App has system hooks and must be uninstalled properly.
Can I fix this for good?
I don't think it's broken, IMO.
Most apps that hook into the system files require a password to remove them for obvious reasons.

Similar Messages

  • PAGE RADIO BUTTONS and APPLICATION ITEM VALUE

    I have several pages that use same radio button group that permits filtering the report query (of course on each page, it is a page level radio button item).
    I created an application item value to hold the last used value of a radio button item.
    On login, I would like the application item value set to a default value.
    For a given page using the recurring radio button group item,
    I would like the radio button item value set to the application item value on entry into a page.
    I would like the report to use the application item value on entry to a page.
    I would like the application item value be updated anytime the page level radio button item value is changed, so that when you move to another page,
    the next radio button group and report can use the last selected radio group button value.
    I am trying to use a variety of solutions in COMPUTATION and CONDITIONAL COMPUTATION... to include use of set_session_state procedure, and I am not getting desired result, partial success, but not complete.
    Can you have a computation item that is only for initialization of the report and radio button group on page entry?
    And a separate computation item that senses user selection of another radio button, updating the report, and updating the application level item?
    Help requested. Thank you.
    Would be nice to have application level objects, like radio button groups.

    Created Page 0
    Created an HTML region in COLUMN 2 and SEQUENCE 10.
    Selected under region CONDITION:
    Current Page is contained within Expression 1 as comma delimited list of pages
    in the EXPRESSION 1 provided the requested comma delimited list of pages that I wished the HTML region to appear.
    Created the radio button group item P0_RADIO and assigned to Page0 HTML region.
    Selected under item CONDITION:
    Current Page is contained within Expression 1 as comma delimited list of pages
    in the EXPRESSION 1 provided the requested comma delimited list of pages that I wished theradio button group to appear.
    In SHARED COMPONENTS I created an APPLICATION COMPUTATION
    In the computation I created a PL/SQL function to initialize the radio group
    BEGIN
    IF :P0_RADIO IS NULL THEN
    RETURN 'A_ALL';
    ELSE
    RETURN :P0_RADIO;
    END IF;
    END;
    'A_ALL' being the default value for :P0_RADIO
    Radio group appears on the desired pages, is initialized to the desired default value, and works properly on each page.

  • Update existing list item value in sharepoint using web service code

    I have the below code which I am trying to run for updating the list item value. "Settings" is the list name and the item in this list is having index of 1.
    Main()
            ListsSoapClient client = new ListsSoapClient();           
            client.ClientCredentials.Windows.ClientCredential = System.Net.CredentialCache.DefaultNetworkCredentials;
            client.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
            string strListName = "Settings";          
            client.Open();          
            XElement listData = client.GetList(strListName);  
            string listID = listData.Attribute("ID").Value;
            string version = listData.Attribute("Version").Value;
            // string version = listData.Attribute("View").Value; Doesnt work
            // Method 1 : Make the call to SharePoint
            var listItems = client.GetListItems(strListName, null, null, null, null, null, null);
            List<XElement> results = listItems.Descendants().ToList();
            XElement updateItem = results[1];
            updateItem.SetAttributeValue("ows_Value", "value to update");
            client.UpdateListItems(strListName, updateItem); //Didnt work
            // Method 2 : Make the call to SharePoint
            string strBatch = "<Method ID='1' Cmd='Update'>" +
                            "<Field Name='ID'>1</Field>" +
                            "<Field Name='Title'>" + "999" + "</Field></Method>";
            XmlDocument xmlDoc = new System.Xml.XmlDocument();
            System.Xml.XmlElement elBatch = xmlDoc.CreateElement("Batch");
            //elBatch.SetAttribute("OnError","Continue"); //Not mandatory ?
            //elBatch.SetAttribute("ListVersion","1"); //Not mandatory ?
            //elBatch.SetAttribute("ViewName", "00F85842-35AD-4AED-8DF7-0F903FB850BE"); is it mandatory ?
            elBatch.InnerXml = strBatch;
            client.UpdateListItems(strListName, XmlElementToXelement(elBatch)); //doesnt work
            client.Close();
       public static XElement XmlElementToXelement(XmlElement e)
            return XElement.Parse(e.OuterXml);
    How do we get the ViewName value of the list using code ? why is it not mandatory in Method 2. At the end of the method1 i am getting the below exception.How do I fix this ?
     Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.

    you can get view name using below links:
    http://stackoverflow.com/questions/14857811/sharepoint-web-services-getlistitems-view-name
    http://www.a2zmenu.com/Blogs/SharePoint/Get-selected-view-name-of-a-SharePoint-List.aspx
    you can use SPList.getview method.

  • Contract Release value is not updated with Limit item value

    We have SRM 4.0 with ECS scenario.
    Contract are created in SRM and replicated to ERP.
    If we create PO with Service line and Limit line using contract in both of these line items, contract Release value is getting updated only with Service line item value.
    But the contract Total value is the addition of Service and Limit value of PO.
    Why Contract Release value is not getting updated with Limit item value. Please help as early as possible.

    Hi Sandeep
    Yes. there are various reasons .upon your contract incorrect status and linkage not establised / or more attachment in SRM GOA.
    what type of contract are you using? GOA or CCTR
    If it is GOA - which version of SRM and service pack ?are you in ?
    If it is a GOA , BLAREL idoc might failed to post the release value in the SRM .
    How contracts are created material / mat group ?
    to fix or understand the issue, you need to recreate the issue.
    what is the ERROR in BLAREL in SRM idoc monitoring ?

  • How to create a view in sql workshop depending on an application item value

    Hello,
    How coud I create a view in SQL worshop based on an application item value? For example select id, name
    from gg_provider
    where user = ' || :USER
    So basically each user would have it's own view. But it does not work like that. I think when I use :USER then the database takes database user not the user logged in to apex application. How would be possible to use application user to create the view?
    Thank you very much.

    Instead of
    :APP_USER
    use
    v('APP_USER')
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • TS1702 I can't update my applications. Always appeared cannot connect to the iTunes store

    I can't update my applications. Always appeared cannot connect to the iTunes store

    I had the same issue all i had to do was go into settings > general > cellular > itunes > ON  then go back to the first settings > iTunes & App Stores > Use Cellular Data > ON
    i had 5 days of trying to fix this with no help from apple, i also dont have wifi at home, but found if i went out could use wifi to access itunes, so went home and played with my phone and YAY FINALLY FIXED!
    Hope this helps everyone and maybe apple will let everyone know that after the update some phones automaticly switch cellular use off, i tried everything from changing the date forward to factory restoring my phone none of which fixed it
    GOODLUCK!

  • Can we update the Category attribute values of a file

    Can we update the Category attibute values of a file with out checkout the file?
    I have set the version configuration to folder and try to update the category attribute values of a file under that folder,
    It is asking to checkout the file before modifying the category attibute values.
    Is it required to checkout the file before modifying the category attribute values of that file?
    Is there any way to update the category attribute values without checkout the file?
    Please help on this

    One of the ways i can think of is using Batch Loader script for large number of files. Mention such files in Batch Loader script, and it will update category and all meta-data required in terms of next revision.
    In case number of files are less manual checkout and check-in will help.

  • How to pass Application Item value in Javascript function.

    Hi,
    I have the following javascript in the HTML Form Element Attributes properties
    I am on Page1 and passing P1_DEPT_NO page item value. This is working perferctly fine and I am able to get the exact value of the page item
    onchange="javascript:function1($x('P1_DEPT_NO').value);"I am on Page1 and passing Application Item G_DEPT_NO value.
    The problem here is, I am not getting the Application item value inside the javascript function.
    I tried using alert(); and it's giving me value as undefined
    onchange="javascript:function1($x('G_DEPT_NO').value);"Just want to know, how to pass the Application Item value in Javascript.
    Thanks,
    Deepak

    Deepak,
    I am not an expert at Javascript, but the suggestin I made was because javascript is a case-sensitive language.. and therefore onChange is not the same as onchange.
    Not quite sure if that is causing the problem.
    Application items are not associated with a page and therefore have no user interface properties.
    Therefore, as mentioned in another post, the rendering would not work for application items.
    If it is for a single item, used only in this page, you could create a hidden page item and use it fo your purpose
    If you still want to look at application items and AJAX, This page contains examples of using AJAX to solve problems like the one you mentioned.
    http://www.oracle.com/technology/obe/hol08/apexweb20/ajax_otn.htm#t1b
    Thanks,
    Rajesh.

  • I can't update my application manager.

    I have a one year commitment with Adobe and I can't update my application manager to download another program that I need. How can I solve this problem? Any ideas would be greatly appreciated.

    Which operating system are you on? Which program are you trying to download and is it listed in AAM? I ask because Premiere Pro and After Effects only run on 64-bit systems and Lightroom will not run on Windows XP.
    If you are on a 64-bit system running Windows 7 or Mac OS X 10.6.8 or greater than here are the steps to re-install AAM.
    Run the Adobe Cleaner Tool and remove the Creative Cloud Installer part of the Adobe Application Manager (AAM). I have posted the steps here with screen shots:
    Mac OS X: http://forums.adobe.com/message/4726312#4726312#4726312#4726312
    Windows: http://forums.adobe.com/message/4726414#4726414#4726414
    Then download and install AAM again using this link http://www.adobe.com/applicationmanagerpatch/index.html.
    You should then be able to download and install the program you need.

  • I changed my Apple account and still can't update my applications

    I changed my apple id and can't update my applications as my old apple ID is still appear once I'm trying to update it

    Your apps are actually tagged with whatever ID you used when you first downloaded them.  That ID will be the only one that can update the app because it is the one that "purchased" the app.  You can always reset the password for the old ID using iforgot.apple.com if needed.
    Free apps can also be deleted and then downloaded using the new ID if you won't lose too much data.  Downloading the app again using the new ID will add the app to the purchase history of your new ID so you can update it using that password from now on.

  • I can not update my applications. It says - "there were problems downloading purchased.."

    I can not update my applications. It says - "there were problems downloading purchased.."

    Hey Kqd6910babies!
    i have an article for you here that can help you troubleshoot this issue with updating your iOS device:
    iOS: Troubleshooting update and restore issues
    http://support.apple.com/kb/ts1275
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • I can't update my applications

    I can't update my applications even though I already put in my Apple ID. What should I do?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • AjaxRequest not assigning Application Item value

    Hello,
    I have an application item called DESTINATION_PAGE and a page item called P63_NEXT_PAGE. I have an Application process that does the following:
    declare
    begin
    select get_page(:PLATFORM) into :DESTINATION_PAGE from dual;
    htp.p(:DESTINATION_PAGE);
    end;
    This is my AjaxRequest in P63 Header:
    function getPage(platformID){
    var ajaxRequest = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=GET_PAGE', 0);
                             ajaxRequest.add('PLATFORM', platformID);
                             ajaxRequest.add('APPLICATION_ID', $("#P63_APPLICATION_ID").val());
                             ajaxResult = ajaxRequest.get();
    $("#P63_NEXT_PAGE").val(ajaxResult);
    alert($("#P63_NEXT_PAGE").val());
    $("#DESTINATION_PAGE").val(ajaxResult);
    alert(&DESTINATION_PAGE.);
    From my above 2 alerts, the page item (P63_NEXT_PAGE) gets the correct page number of 14, but the application item (DESTINATION_PAGE) still has the old page number of 63! Please help, this is really frustrating because I need to use the Application Item in a URL request. I've tried using $s('DESTINATION_PAGE',ajaxResult) as well as additional functions, but my Application Item still is not updating correctly.
    Thanks in Advance!
    Johnny

    Hello Jarola,
    I have tried using the SET_SESSION_STATE, but the problem is I need to grab a new value from a select list prior to assigning value to the Application Item. Here is my new DA that I created to set session state. The problem is that P63_PLATFORM_ID still has the old value at this point which is why I thought I had to use an AjaxRequest:
    declare
    page_no number;
    BEGIN
    select get_page(:P63_PLATFORM_ID) into page_no from dual;
    APEX_UTIL.SET_SESSION_STATE('DESTINATION_PAGE',page_no);
    END;
    Any idea how I can get the new value in P63_PLATFORM_ID prior to running the above PL/SQL DA?
    Thanks,
    Johnny

  • Can we catch the dynamic item value in Apex?

    Hi All,
    In my application i am using SELECT_LIST_FROM_QUERY_XL Function. The select list will be populated based on some product group id.
    Some times the list will be 2 or 5 based on prgr id. Now how to catch the dynamic list item name. Is it possible?
    Thanks,
    Anoo..

    Not directly. You can have two items and then dynamically switch between those two items. This can lead to other issues of cause. For example if the item value should be stored in the database, you have to decide which item to store and how to do that.
    The field type itself should not be changed. There are a lot of other things that depend on that. Possible ? Yes. Advisable? No. Check the page source text to see the difference between a select item and a normal text field. Then think if you want to set all this dynamically.
    Maybe a popup list would be better suited?
    One more point: In my experience adding too many dynamic stuff onto a page will not improve the user experience, but will decrease it. So you should carefully consider if this is something. Dynamic actions are great, but they are not always the best tool for the job.

  • Need help in use of application item - value to be changed dynamically

    HI ,
    i have created a application item and i want to change the value of the application item when user link the URL link
    for eg- I have two link -
    htp.p('<tr><td>AABB<td>');
    (a href="f?p=&APP_ID.:6:&SESSION..:F129_DB_NM:XXXXX">page 1)
    htp.p('</a></td>');
    (a href="f?p=&APP_ID.:6:&SESSION..:F129_DB_NM:YYYY">page 2);
    htp.p('</a></td>');
    If user click first link then i want the value of application item shuld chnage to XXXXX and it pass the same to page 1.
    and vice versa.There is no if condition in this.
    Please let me know on this.What i need to do in this more.
    Edited by: 946963 on Oct 22, 2012 4:06 AM

    946963 wrote:
    thanks for this .I have links with me its working fine.
    Problem is that it is not chnaging the value of application item .
    When i click on first link then i want to pass value XXXX for applicationitem for page 1 and value YYYY for page 2.This same value i have to pass further to page 3.
    How can i do this Please let me know on this.Have you opened the link that I gave in my prev post??
    //change your code to look like this
    //notice the colons before your application item
    htp.p('<tr><td>AABB<td>');
    (a href="f?p=&APP_ID.:6:&SESSION..::::F129_DB_NM:XXXXX">page 1)
    htp.p('</td>');
    (a href="f?p=&APP_ID.:6:&SESSION..::::F129_DB_NM:YYYY">page 2);
    htp.p('</td>');

Maybe you are looking for

  • Windows Deployment Services and Surface Pro 2

    The issue I am seeing is when trying load the Windows Boot Manager, before selecting a boot image. The boot manager is loading in the lower 1/4 of the screen. It will not move past this loading screen and seeing how it is not displaying correctly, I

  • Slow execution, flickering graphics, and too many threads, oh my!

    i wrote a little game called Aim, Fire! just to screw around. its immense complexity involves shooting little targets that fly across the screen. you can see it at http://www.brianmaissy.com/applets/aimfire i made a class representing a target that p

  • Core dump on OCI call

    We are getting the following core dump on an OCI call .... fde12fe0 kpucHTDelete (f872ac, f68380, 0, 31, 203d203a, f7c684) + 9c fddae464 kpursetstmttext (f872ac, f871c8, 8, fdd9fa84, d49c40, fe449a64) + 9c fddae61c kpurclientparse (f872ac, f7cc7c, f6

  • Constant Crashing

    A while back I upgraded my wife's old AGP Graphics G4 to OS X Tiger (from 9.2.2). It runs, but the system freezes up a lot more than it should. Sometimes she ends up freezing up dozens of times a day. What I'm wondering is whether it would be likely

  • Is there any tool for developing Postscript code ?

    Hi Friends, Is there any tool for developing Postscript code ? (or) Is there any IDE for Postscript ? (or) Thanks & Regards, Navaneeth Sivappan