How to check if fnd_users already migrated to Non-Reversible Hash Password

Hi All
How does one check if fnd_users have already migrated to Non-Reversible Hash Password or not
(as described in FNDCPASS Utility New Feature: Enhance Security With Non-Reversible Hash Password [ID 457166.1] )
thanks in advance

Thanks for the update.
select * from V$OPTION where parameter = 'Oracle Database Vault';I believe this has nothing to do with password hashing.
Once the migration is done, the following should return ‘SHA’.
select fnd_web_sec.get_pwd_enc_mode from dual;Well, this is not documented anywhere (not even in eTRM) as the package body is wrapped.
Thanks,
Hussein

Similar Messages

  • How to check if nativemenu already exists?

    In my simple example below, everytime you click on the link to reload the page, a new nativemenu is created along with the one that was already there... Click the HOME-INDEX link multiple times and you will see multiple copies of same menu pop up along the top.
    How can I check to see if the menu already exists, so that it is NOT recreated everytime?
    Using Air 1.5 on Win XP Pro.
    Thanks
    INDEX.HTML FILE;
    <html>
    <head>
      <title>index.html example</title>
      <script type="text/javascript" src="includes/AIRAliases.js"></script>
      <script type="text/javascript" src="includes/AIRMenuBuilder.js"></script>
      <script type="text/javascript">
        var MainMenu = air.ui.Menu.createFromXML("source/MainMenu.xml");
        air.ui.Menu.setAsMenu(MainMenu);
      </script>
    </head>
    <body>
      <h1>index.html example</h1>
      <br>
      <a href="index.html">HOME-INDEX</a>
    </body>
    </html>
    SOURCE/MAINMENU.XML FILE:
    <?xml version="1.0" encoding="utf-8" ?>
    <root>
        <menuitem label="File">
            <menuitem label="Close" onSelect="doFileClose"/>
        </menuitem>
        <menuitem label="Help">
            <menuitem label="About" onSelect="doHelpAbout"/>
        </menuitem>
    </root>

    I have not been able to figure out how to determine if the meny already exists or not, but I did come across using this:
    var _MainMenu = air.ui.Menu.createFromXML("source/MainMenu.xml");
    air.ui.Menu.setAsMenu(_MainMenu, true); //2nd paramter is Overwrite=true
    instead of this:
    var _MainMenu = air.ui.Menu.createFromXML("source/MainMenu.xml");
    air.ui.Menu.setAsMenu(_MainMenu);//No second parameter specified, so assumes Overwrite=false
    Adding the 2nd 'true' parameter still causes the menu to be created everytime, but it will OVERWRITE the previous menu, so there will only ever be one instance of the menu.
    Depending on the size of the menu, it would probably be less cpu intensive to just use somekind of IF statement to determine if it already existed, but if that does not exist, then this is the only alternative I can find right now.
    Thanks

  • How to check if Message already exists in the queue and if message is processing currently

    Hi everyone
    I am new to Azure and worked on adding messages to the queue through workerrole1. Worker role 2 pulls them out from queue and processing them and de-queing them.
    Worker role1 runs method gets called after every 10 seconds and puts messages in queue
    CloudQueueMessage
    message = newCloudQueueMessage(oAzureWorker.WorkerInstanceOf
    + "_"+ oAzureWorker.AgentId.ToString()
    + "|"+ ExecutionId.ToString());
                                    queue.AddMessage(message);
    Worker role2 runs method gets called after every 10 seconds too and checks the queue like this
    foreach
    (CloudQueueMessagemessage
    inqueue.GetMessages(20,
    TimeSpan.FromMinutes(5)))
    // Process all (20) messages in less than 5 minutes, deleting each message after processing.
    // Process message
    queue.DeleteMessage(message);
    Following are my questions
    1) How do I check in worker role1 if the message is already in queue, Because I don't want to queue it back again if its not yet processed and is in the queue already
    2) How do I check in worker role1 if the message is currently processing. Because I don't want to queue it back again.
    3) How do I make sure that ALL the messages get processed in the order they are inserted. I know Queue is FIFO, but I know if the message gets delayed in processing another instance can pick it up, even if it gets picked up by another instance, I want to
    make sure that the order remains.
    Right now the instances of both these worker roles are 1, in the future when we increase them, I don't want them to queue the same messages multiple times or queue them if the message is already in process mode.

    Hi Sarah,
    I agree to the Frank's suggestion. Why you need to burden the worker role 1 to check if the message really sits on the queue or not? You can do this simply in your code before pushing it on queue instead querying queue.
    All you need to do on worker role 1 is - push the message on the queue and forget as the entire queue design in azure is designed from asynchronous processing.
    About worker role 2 - Use the GetMessage method which hides retrieved message's from other clients and hence makes sure that only one client is processing it at a time. If processing is successful - delete the message. if it is not - the message will be
    visible anyways after the mentioned time provided in the GetMessage method.
    I agree that when you will increase number of instances of your worker role 1 which might insert duplicates in the queue - in that case - you might need to introduce the shared entity (like database) and let all instances communicate through it to avoid
    the duplication of messages on queue. 
    Bhushan | http://www.passionatetechie.blogspot.com | http://twitter.com/BhushanGawale

  • How to check if file already exist in application server?

    Hi there,
    Does anyone know a quick way to check if a file has already exists in an application server?
    Thanks in advance.
    Cheers.

    Call the function PFL_CHECK_OS_FILE_EXISTENCE.
    Best regards Jack
    FUNCTION PFL_CHECK_OS_FILE_EXISTENCE.
    ""Lokale Schnittstelle:
    *"       IMPORTING
    *"              FULLY_QUALIFIED_FILENAME LIKE  TPFHT-PFFILE
    *"       EXPORTING
    *"              FILE_EXISTS LIKE  BTCH0000-CHAR1
      OPEN DATASET FULLY_QUALIFIED_FILENAME FOR INPUT.
      IF SY-SUBRC EQ 0.
         FILE_EXISTS = 'X'.
         CLOSE DATASET FULLY_QUALIFIED_FILENAME.
      ELSE.
         CLEAR FILE_EXISTS.
      ENDIF.
    ENDFUNCTION.

  • How to check whether NW2004s-Installation is unicode/non-unicode

    Hi,
    I have to check, whether our NW2004s-Installation (ERP 2005) is a unicode-installation or a non-unicode.
    How can I check it? - the sap-admin I can ask is on holiday.
    Thanks
    Wolfgang

    You can go to the Backend and click on System -> Status, and under SAP System Data you should be able to see Unicode System (Yes or No)...
    Hope this help!
    Regards
    Juan Reyes

  • How to check mail already read or not?

    Hi everyone
    I am developing an application using javamail api.
    I have no idea how to check mail is already read or answered or seen using javamail api.
    I need to fetch new mail every time. I used DELETE flag ,its working fine but it also delete mail permanently from inbox.
    I want to fetch new mail and already fetched mail is also reside in inbox. but not fetched next time.
    Pls help me.

    Either I'm not understanding you, or you're not understanding JavaMail.
    First, the POP3 protocol supports no permanent flags, as explained in
    http://java.sun.com/products/javamail/javadocs/com/sun/mail/pop3/package-summary.html
    You can set flags on messages, but they won't persist after you close the folder.
    If you set the DELETED flag and close the folder and expunged deleted messages,
    the messages are gone for good.
    That's not a JavaMail limitation, that's a POP3 protocol limitation.
    Again, as explained in the link above, to determine which messages are new you'll
    need to keep some state in your application about which messages you've seen
    and compare that state with the current state of the INBOX. You can use the POP3
    specific UIDL command to help with this.
    Does that help?

  • How to check unusable index

    Hi all
    I am getiing error
    Index ORVETL.NU_1_761 or some [sub]partitions of the index have been marked unusable
    How to check index which is unusable (Partition , non partition ALL)
    Pl help me

    I dont know the query it is user running when i got i will update
    alert log plz
    ORACLE Instance IDEARADB - Can not allocate log, archival required
    Sun Jun 20 13:54:03 2010
    Thread 1 cannot allocate new log, sequence 44150
    All online logs needed archiving
    Current log# 2 seq# 44149 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 13:54:08 2010
    Thread 1 advanced to log sequence 44150 (LGWR switch)
    Current log# 1 seq# 44150 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 13:56:47 2010
    Thread 1 advanced to log sequence 44151 (LGWR switch)
    Current log# 3 seq# 44151 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:00:34 2010
    Thread 1 advanced to log sequence 44152 (LGWR switch)
    Current log# 2 seq# 44152 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:06:55 2010
    Thread 1 advanced to log sequence 44153 (LGWR switch)
    Current log# 1 seq# 44153 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 14:09:31 2010
    Thread 1 advanced to log sequence 44154 (LGWR switch)
    Current log# 3 seq# 44154 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:12:07 2010
    Thread 1 advanced to log sequence 44155 (LGWR switch)
    Current log# 2 seq# 44155 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:14:30 2010
    Thread 1 advanced to log sequence 44156 (LGWR switch)
    Current log# 1 seq# 44156 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 14:17:09 2010
    Thread 1 advanced to log sequence 44157 (LGWR switch)
    Current log# 3 seq# 44157 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:19:42 2010
    Thread 1 advanced to log sequence 44158 (LGWR switch)
    Current log# 2 seq# 44158 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:22:19 2010
    Thread 1 advanced to log sequence 44159 (LGWR switch)
    Current log# 1 seq# 44159 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 14:24:45 2010
    Thread 1 advanced to log sequence 44160 (LGWR switch)
    Current log# 3 seq# 44160 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:27:15 2010
    Thread 1 advanced to log sequence 44161 (LGWR switch)
    Current log# 2 seq# 44161 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:29:45 2010
    Thread 1 advanced to log sequence 44162 (LGWR switch)
    Current log# 1 seq# 44162 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 14:32:21 2010
    Thread 1 advanced to log sequence 44163 (LGWR switch)
    Current log# 3 seq# 44163 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:34:58 2010
    Thread 1 advanced to log sequence 44164 (LGWR switch)
    Current log# 2 seq# 44164 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:37:35 2010
    Thread 1 advanced to log sequence 44165 (LGWR switch)
    Current log# 1 seq# 44165 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 14:40:08 2010
    Thread 1 advanced to log sequence 44166 (LGWR switch)
    Current log# 3 seq# 44166 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:43:52 2010
    Thread 1 advanced to log sequence 44167 (LGWR switch)
    Current log# 2 seq# 44167 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:50:46 2010
    Thread 1 advanced to log sequence 44168 (LGWR switch)
    Current log# 1 seq# 44168 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 14:51:47 2010
    Thread 1 advanced to log sequence 44169 (LGWR switch)
    Current log# 3 seq# 44169 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 14:53:05 2010
    Thread 1 advanced to log sequence 44170 (LGWR switch)
    Current log# 2 seq# 44170 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 14:56:59 2010
    Thread 1 advanced to log sequence 44171 (LGWR switch)
    Current log# 1 seq# 44171 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 15:07:42 2010
    Thread 1 advanced to log sequence 44172 (LGWR switch)
    Current log# 3 seq# 44172 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 15:17:31 2010
    Thread 1 advanced to log sequence 44173 (LGWR switch)
    Current log# 2 seq# 44173 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 15:24:32 2010
    Thread 1 advanced to log sequence 44174 (LGWR switch)
    Current log# 1 seq# 44174 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 15:32:49 2010
    Thread 1 advanced to log sequence 44175 (LGWR switch)
    Current log# 3 seq# 44175 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 15:41:28 2010
    Thread 1 advanced to log sequence 44176 (LGWR switch)
    Current log# 2 seq# 44176 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 15:45:28 2010
    Index ORVETL.NU_1_761 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 15:45:49 2010
    Index ORVETL.NU_2_761 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 15:48:24 2010
    Index ORVETL.NU_1_762 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 15:49:03 2010
    Index ORVETL.NU_2_762 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 15:51:11 2010
    Thread 1 advanced to log sequence 44177 (LGWR switch)
    Current log# 1 seq# 44177 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 16:01:10 2010
    Thread 1 advanced to log sequence 44178 (LGWR switch)
    Current log# 3 seq# 44178 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 16:06:20 2010
    Index ORVETL.NU_1_751 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 16:11:04 2010
    Thread 1 advanced to log sequence 44179 (LGWR switch)
    Current log# 2 seq# 44179 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 16:16:40 2010
    Index ORVETL.NU_1_753 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 16:17:54 2010
    Index ORVETL.NU_2_753 or some [sub]partitions of the index have been marked unusable
    Sun Jun 20 16:20:28 2010
    Thread 1 advanced to log sequence 44180 (LGWR switch)
    Current log# 1 seq# 44180 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 16:30:11 2010
    Thread 1 advanced to log sequence 44181 (LGWR switch)
    Current log# 3 seq# 44181 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 16:38:45 2010
    Thread 1 advanced to log sequence 44182 (LGWR switch)
    Current log# 2 seq# 44182 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 16:40:40 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 54067K exceeds notification threshold (51200K)
    Sun Jun 20 16:41:08 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 54016K exceeds notification threshold (51200K)
    Details in trace file /oracle/oracle/Oracle_10gr2_DB/admin/IDEARADB/udump/idearadb_ora_1081756.trc
    Sun Jun 20 16:41:17 2010
    Thread 1 advanced to log sequence 44183 (LGWR switch)
    Current log# 1 seq# 44183 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 16:41:32 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 54066K exceeds notification threshold (51200K)
    Details in trace file /oracle/oracle/Oracle_10gr2_DB/admin/IDEARADB/udump/idearadb_ora_1081756.trc
    Sun Jun 20 16:41:56 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 54015K exceeds notification threshold (51200K)
    Details in trace file /oracle/oracle/Oracle_10gr2_DB/admin/IDEARADB/udump/idearadb_ora_1081756.trc
    Sun Jun 20 16:49:45 2010
    Thread 1 advanced to log sequence 44184 (LGWR switch)
    Current log# 3 seq# 44184 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 16:58:01 2010
    Thread 1 advanced to log sequence 44185 (LGWR switch)
    Current log# 2 seq# 44185 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 17:00:15 2010
    Thread 1 advanced to log sequence 44186 (LGWR switch)
    Current log# 1 seq# 44186 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 17:02:37 2010
    Thread 1 advanced to log sequence 44187 (LGWR switch)
    Current log# 3 seq# 44187 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 17:05:13 2010
    Thread 1 advanced to log sequence 44188 (LGWR switch)
    Current log# 2 seq# 44188 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 17:07:37 2010
    Thread 1 advanced to log sequence 44189 (LGWR switch)
    Current log# 1 seq# 44189 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 17:13:36 2010
    Thread 1 advanced to log sequence 44190 (LGWR switch)
    Current log# 3 seq# 44190 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 17:19:16 2010
    Thread 1 advanced to log sequence 44191 (LGWR switch)
    Current log# 2 seq# 44191 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 17:25:15 2010
    Thread 1 advanced to log sequence 44192 (LGWR switch)
    Current log# 1 seq# 44192 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 17:32:18 2010
    Thread 1 advanced to log sequence 44193 (LGWR switch)
    Current log# 3 seq# 44193 mem# 0: +REDO_LOG/redo03.log
    Sun Jun 20 17:37:41 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 53686K exceeds notification threshold (51200K)
    Sun Jun 20 17:38:02 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 53898K exceeds notification threshold (51200K)
    Details in trace file /oracle/oracle/Oracle_10gr2_DB/admin/IDEARADB/udump/idearadb_ora_1241490.trc
    Sun Jun 20 17:38:21 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 54025K exceeds notification threshold (51200K)
    Details in trace file /oracle/oracle/Oracle_10gr2_DB/admin/IDEARADB/udump/idearadb_ora_1241490.trc
    Sun Jun 20 17:38:40 2010
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 54012K exceeds notification threshold (51200K)
    Details in trace file /oracle/oracle/Oracle_10gr2_DB/admin/IDEARADB/udump/idearadb_ora_1241490.trc
    Sun Jun 20 17:39:21 2010
    Thread 1 advanced to log sequence 44194 (LGWR switch)
    Current log# 2 seq# 44194 mem# 0: +REDO_LOG/redo02.log
    Sun Jun 20 17:45:28 2010
    Thread 1 advanced to log sequence 44195 (LGWR switch)
    Current log# 1 seq# 44195 mem# 0: +REDO_LOG/redo01.log
    Sun Jun 20 17:51:21 2010

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • How do I make my already existing check boxes "checkable" [so I can check and uncheck them on PDF Expert]

    How do I make my already existing check boxes on a (PDF Document) checkable - So I can check and uncheck them on PDF Expert or Annotate 101.
    I am using ADOBE Acrobat PRO with millions of options, but no easy "here is how to do the one thing you want to do" anywhere within reason.
    Please help me.
    Thank You

    Can you check and uncheck the boxes in Acrobat?

  • How to check if Cisco WSA is already blocking the malicious sites?

    How to check if Cisco WSA is already blocking the malicious sites? 

    Depends on what you mean, but in general what you did will not work.
    The usual intent of RMI is to have several processs running and all of them use one process as the repository.
    A static value is only visible in one VM instance thus it will not be visible in another process.
    So in that situation you could check if the the server socket that the RMI using is open. But just catching the exception, presuming that you catch the correct one, is also sufficient.

  • How do I get out of cs3 Illustrator's upgrade check? I already have a purchase serial number and there is no known, upgrade for CS3 for Illustrator. It has CS2.

    How do I get out of cs3 Illustrator's upgrade check? I already have a purchase serial number and there is no known, upgrade for CS3 for Illustrator. It has CS2.

    Questions:
    Is the app store looking to my hard drive for traces of aperture to determine whether it has been purchased or is it looking at some kind of purchase history within the app store?
    Is there anyway to wipe my hard drive clean of aperture files or wipe clean my app store purchase history so that i can start over?
    If none of this is possible, does anyone have a possible solution?
    If i were to redownload aperture (currently for free since it won't let me pay) when a subsequent update comes out (say it goes from version 3.2.2 to 3.2.3) can i then elect to buy aperture, pay the fee and will it appear as a purchased app and allow me to get upgrades going forward?  Would any data be compromised with this?
    1. Do you have a backup connected to your Mac that contains the app? If so, yes the MAS can detect that and believes that the app is installed.
    2. If the app no longer appears in the purchase history on the Purchased pane in the MAS, then it would seem that Apple has taken care of that.
    4. Updates, such as you describe are free. Upgrades are not. An upgrade is a new paid version of the app, such as v 3.0 to v 4.0.

  • How do I add an already built Shopping Cart  (PHP and MYSQL) application to a page in a Muse site?

    How do I add an already built Shopping Cart  (PHP and MYSQL) (Cartweaver 4) application to a page in a Muse site? Do I have to export the Muse site as Html to dreamweaver and them use the extension to bring the shooping cart in or can I do it directly in Muse?
    Message was edited by: mgv2048

    We have experimented with doing this with some good success. We have been working on adding Cartweaver to a Facebook page by essentially adding a Cartweaver store to Facebook in an iframe.  The "store" would be pages with just your basic product display, cart, and checkout functionality, with none of the "window dressing" - just use CSS to match the color and general look of the design it's being added to.
    The one problem with this for Facebook is when it comes time to check out toy have to leave Facebook and go to your server where an SSL is in place.  Fortunately in this situation this would not be the case, you can have an SSL installed to the root of your site and you'll be okay.
    This is an interesting project.  Give this a try and let me know how it goes and if you run into any snags, please make a post on the Cartweaver forums: http://forums.cartweaver.com - I'm really confident that this can work, and not only work, but work well.
    Looking forward to hearing how this goes, and being of what help we can.
    Lawrence Cramer - *Adobe Community Professional*
    http://www.Cartweaver.com
    PHP & ColdFusion Shopping Cart for Adobe Dreamweaver
    Stay updated:
    http://www.facebook.com/cartweaver
    http://www.twitter.com/cartweaver
    http://blog.cartweaver.com

  • How to check with table for cursor..?

    How to check with table for cursor..?
    Here I have Table temp_final_plan
    Here i want to update if already exit...below is the procedure....
    CREATE OR REPLACE PROCEDURE spu_final_profit_plan
    AS
    -- Constant declarations
      ln_errnum number := 0;
    -- Variable declarations
       ls_errmsg app_errors.err_msg%TYPE;
       ls_appmsg app_errors.app_msg%TYPE;
       ls_appid  app_errors.app_id%TYPE;
    -- Cursor declaration for final_update_el
    CURSOR cur_final_update_el IS
        select '910' ent,
               '9127316' center,
               post_acct,
               sum(avg_mtd_01) sum_avg_mtd_01,
               sum(avg_mtd_02) sum_avg_mtd_02,
               sum(avg_ytd_01) sum_avg_ytd_01,
               sum(avg_ytd_02) sum_avg_ytd_02
          from mon_act_cypy
         where rec_type = 'A'
           and sum_flag = 'D'
           and yr = '2008'
           and substr(ctr_or_hier, 1, 2) = 'el'
           and ent || sub_ent in
               (select ent || sub_ent
                  from ent_ref
                 where roll_ent || roll_sub_ent = '999100')
         group by post_acct
        having sum(avg_mtd_01) <> 0
            or sum(avg_mtd_02) <> 0
            or sum(avg_ytd_01) <> 0
            or sum(avg_ytd_02) <> 0;
    -- Cursor declaration for final_update
    CURSOR cur_final_update IS
        select b.plan_ent b_plan_ent,
               b.plan_ctr b_plan_ctr,
               a.post_acct a_post_acct,
               sum(a.avg_mtd_01) sum_avg_mtd_01,
               sum(a.avg_mtd_02) sum_avg_mtd_02,
               sum(a.avg_ytd_01) sum_ytd_mtd_01,
               sum(a.avg_ytd_02) sum_ytd_mtd_02
          from mon_act_cypy a,
               plan_unit_tbl b
         where a.ent || a.ctr_or_hier = b.ent || b.ctr_or_hier
           and a.rec_type = 'A'
           and a.sum_flag = 'D'
           and a.yr = '2008'
           and b.hier_tbl_num = '001'
           and a.ent || a.sub_ent in
               (select ent || sub_ent
                  from ent_ref
                 where roll_ent || roll_sub_ent = '999100')
         group by b.plan_ent, b.plan_ctr, a.post_acct
        having sum(a.avg_mtd_01) <> 0
            or sum(a.avg_mtd_02) <> 0
            or sum(a.avg_ytd_01) <> 0
            or sum(a.avg_ytd_02) <> 0;
    -- Begin the procedure body
       BEGIN
    -- Insert / Update final profit plan for final_update query using cursor
       FOR rec_final_update_el IN cur_final_update_el
       LOOP
       EXIT WHEN rec_final_update_el%NOTFOUND;
       IF rec_final_update_el. THEN
          UPDATE temp_final_plan
             SET sum_avg_mtd_01 = rec_final_update_el.sum_avg_mtd_01,
                 sum_avg_mtd_02 = rec_final_update_el.sum_avg_mtd_02,       
                 sum_avg_ytd_01 = rec_final_update_el.sum_avg_ytd_01,       
                 sum_avg_ytd_02 = rec_final_update_el.sum_avg_ytd_02,       
           WHERE ent = rec_final_update_el.ent
             AND center = rec_final_update_el.center
             AND post_acct = rec_final_update_el.post_acct;
       ELSE
          INSERT INTO temp_final_plan VALUES(rec_final_update_el.ent,
                                             rec_final_update_el.center,
                                             rec_final_update_el.post_acct,
                                             rec_final_update_el.sum_avg_mtd_01,
                                             rec_final_update_el.sum_avg_mtd_02,
                                             rec_final_update_el.sum_avg_ytd_01,
                                             rec_final_update_el.sum_avg_ytd_02);
       END IF;
       END LOOP;
    -- Insert / Update final profit plan for final_update query using cursor
       FOR rec_final_update IN cur_final_update
       LOOP
       EXIT WHEN rec_final_update%NOTFOUND;
       IF rec_final_update. THEN
          UPDATE temp_final_plan
             SET sum_avg_mtd_01 = rec_final_update.sum_avg_mtd_01,
                 sum_avg_mtd_02 = rec_final_update.sum_avg_mtd_02,       
                 sum_avg_ytd_01 = rec_final_update.sum_avg_ytd_01,       
                 sum_avg_ytd_02 = rec_final_update.sum_avg_ytd_02,       
           WHERE ent = rec_final_update.b_plan_ent
             AND center = rec_final_update.b_plan_ctr
             AND post_acct = rec_final_update.a_post_acct;
       ELSE
          INSERT INTO temp_final_plan VALUES(rec_final_update.b_plan_ent,
                                             rec_final_update.b_plan_ctr,
                                             rec_final_update.a_post_acct,
                                             rec_final_update.sum_avg_mtd_01,
                                             rec_final_update.sum_avg_mtd_02,
                                             rec_final_update.sum_avg_ytd_01,
                                             rec_final_update.sum_avg_ytd_02);
       END IF;
       END LOOP;
    -- EXCEPTION handling section
       EXCEPTION
    -- Fire OTHERS Exception case by default
       WHEN OTHERS THEN
    -- ROLL BACK Transaction, if any failure
       ROLLBACK;
       ln_errnum := SQLCODE;
       ls_errmsg := SUBSTR(SQLERRM, 1, 100);
    -- Log the ERRORS into APP_ERRORS table using SPU_LOG_ERRORS procedure
       spu_log_errors(ln_errnum, ls_errmsg, ls_appid, ls_appmsg);
    -- End of the stored procedure
    END spu_final_profit_plan;
    [\pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    I'm not sure what you mean by, 'How to check with table for cursor..?' but I'll offer a comment on your Code Snippet. I think you want to know how to check if a record exists so you know if you need to perform an INSERT or an UPDATE.
    Here is a snippet of your code. I'll put my comments in "Comment" style in your code.
    -- Insert / Update final profit plan for final_update query using cursor
       FOR rec_final_update_el IN cur_final_update_el
       LOOP
    /* There is no need to test for %NOTFOUND since you are using Cursor FOR Loop! 
    ** This construct automatically exits when the last record is processed. */
       EXIT WHEN rec_final_update_el%NOTFOUND;
    /* Is this where you would like to know how to Check if the record already exist??
    ** I asked this because, 'rec_final_update_el.' is not valid syntax.  Are you looking for
    ** an Cursor Attribute or Method you can check here? 
    ** I would suggest a Primary Key or Unique Index on ENT, CENTER, and POST_ACCT
    ** on the TEMP_FINAL_PLAN table. Then simply perform an INSERT and code an
    ** Exception to UPDATE when you get a DUP_VAL_ON_INDEX exception.  Otherwise,
    ** you will need to simply run an Implicit or Explicit Cursor to test if the row exists and
    ** use this return value to determine if you should INSERT or UPDATE.  */
       IF rec_final_update_el. THEN
          UPDATE temp_final_plan
             SET sum_avg_mtd_01 = rec_final_update_el.sum_avg_mtd_01,
                 sum_avg_mtd_02 = rec_final_update_el.sum_avg_mtd_02,       
                 sum_avg_ytd_01 = rec_final_update_el.sum_avg_ytd_01,       
                 sum_avg_ytd_02 = rec_final_update_el.sum_avg_ytd_02,       
           WHERE ent = rec_final_update_el.ent
             AND center = rec_final_update_el.center
             AND post_acct = rec_final_update_el.post_acct;
       ELSE
          INSERT INTO temp_final_plan VALUES(rec_final_update_el.ent,
                                             rec_final_update_el.center,
                                             rec_final_update_el.post_acct,
                                             rec_final_update_el.sum_avg_mtd_01,
                                             rec_final_update_el.sum_avg_mtd_02,
                                             rec_final_update_el.sum_avg_ytd_01,
                                             rec_final_update_el.sum_avg_ytd_02);
       END IF;
       END LOOP;I hope I've answered your question, but if I haven't please provide more details so we can better understand your request.
    Craig...

  • How to check  which column data differs from master table and archive table

    Hi All,
    i have two tables, table a (a1 number,a2 varchar2,a3 varchar2) and table b (b1 number,b2 varchar2,b3 varchar2).
    how to check the data in both the table are same( including all columns).
    data in a.a1 is same as b.b1 and a.a2 is same as b.b2 like that.
    if they not same , i need to know which field differs.
    Kindly Share ur ideas.

    887268 wrote:
    thanks Sven W. ,
    above reply clearly shows what my question is.
    one column must be primary key, based on that key i need to find out which are the fields having different data..
    im strugling with this, i tried the following already, but not able to get.
    select the columns from a MINUS select the columns from b.
    -- from this i can find whether the difference occurred or not.
    but i cant able to get which are the fields value changed.Good. Then you would match the rows using the PK column and need to compare the columns
    Instead of a MINUS + UNION ALL + MINUS we can now use a FULL OUTER JOIN
    It is a little task to write out all column names, but 40 columns can be handled.
    This statement would show you both tables with matching rows on the same line.
    select a.*, b.*
    from a
    FULL OUTER JOIN b on a.id = b.idNow filter/check for mismatches
    select case when a.col1 != b.col1 then 'COL1 value changed'
                    when a.col2 != b.col2 then 'COL2 value changed'
                    when a.col3 != b.col3 then 'COL3 value changed'
             end as compare_result
            ,a.*, b.*
    from a
    FULL OUTER JOIN b on a.id = b.id
    /* return only non matching columns */
    where (a.col1,a.col2,a.col3) != (b.col1,b.col2,b.col3) You might need to add nvls to take care of null values. Test this!
    Another way could be to group upon the primary key
    select *
    from (
      select id 
               ,count(distinct col1)-1 cnt_col1
               ,count(distinct col2)-1 cnt_col2
               ,count(distinct col3)-1 cnt_col3
       from
         select 'A' source, a.*
         from a
         UNION ALL
         select 'B' source, b.*
         from b)
       group by ID
    /* only records with differences */
    where 1 in (cnt_col1, cnt_col2, cnt_col3)
    ;The count columns will hold either 1 or 0. If it is 1 then this column has a difference.

  • How to check the report builder version from the rdf file

    Hi,
    I have a rdf file but I don't the developer using which version of report builder to develop the rdf file. So, does anyone knows how to check the rdf file is developed by which version of report builder?
    When I try to use the notepad to open the rdf file, it shows the string "ROS.60050". So, does it means that the rdf file is developed by Oracle report 6i?
    Besides, do anyone knows if Oracle report 6i are still offer from Oralce (as I know, the latest verison of oracle report is 11g). So, in case Oralce not offer oracle 6i and I need to buy oracle report 11g, do u know it is compatiable or I need to do the migration from 6i to 11g?
    Thanks!

    Hi,
    The ROS version you are seeing in the RDF file does not mean the version where that RDF was developed. I am not aware of a way to check this but something that may help is that when you try to open a RDF developed in a higher version
    of Reports with a lower version of Reports builder the following warning will be displayed
    Warning. Opening a report saved with a newer version of Reports Builder.
    Functionality may be lost. Continue?
    "You tried to open a report with a version of Reports Builder older than the version used to
    create the report. If the report uses functionality unavailable in the older version, that
    functionality will be eliminated from the report.
    Regarding Oracle Developer 6i. This version is not supported any more. Regarding how to upgrade Reports 6i to 11g and what to have in mind during the upgrade please review the following documentation.
    References
    http://docs.oracle.com/cd/E24269_01/doc.11120/e24478/toc.htm
    How To Migrate Forms and Reports From 6i and/or 9i To 11g? (Doc ID 1275515.1)
    Hope it helps.
    Regards, RZ

Maybe you are looking for

  • Active directory domain services stopped after removing routing and remote access role

    Hello everyone;; I am in deep trouble.. I did install routing and remote access and then  lost connection to the server remotely. Then I connected a monitor to the server and removed the role... then it asked me to restart the server . After logging

  • Child Query taking more time

    Dear Gurus/Masters/All, I request your valuble assistance in tuning one of my SQL. We are using oracle 10.2.04 version and OS is HP-UX 11.23(ia64) version In my production environment one SQL is taking more time to complete the task. According to EXP

  • F.13 clearing f-05

    Dear Experts, I want to prepare the training manual. Can anyone tell me how to use the t.codes f.13, f-05 step by step procedure.  Thanks Balu

  • I cant see what I just saved.

    I am saving scanned documents to a pdf file and I wanted to verify I had them right but I when I call them up I cant see them - all I get is a gray screen.  They will print out okay.  Any help? I am running Acrobat Adobe Reader 10.

  • I had trouble with my pc and now when I go to my library it shows all my music but it says the file cannot be found

    I had trouble with my pc it had an invalid drive. After I repaired it, I went to my Itunes library where everything was listed, but when I tried to play music I got a message the file could not be located. Can I just plug in my ipod and sync it with