The length of UUID key is invalid

I am trying to use the new oracle service registry but when i register a service through the business service control and try to create a datacontrol for it in JDeveloper i get the following error:
DCA-40002: The WSDL document is invalid due to the following reason: java.io.IOException: org.systinet.uddi.InvalidParameterException: The length of UUID key is invalid
Some of the installed sample services are working fine but when i try to register and use my own services i always get this error in JDeveloper.
Has anybody succeeded in generating data controls from jdeveloper for service registry entries?
Kind Regards,
Andre Jochems

I've had a similar problem when trying to create a ws stub. Could this error message be misleading and the real issue is that the xsd referenced in the wsdl was not found ?
(just a thought)

Similar Messages

  • Changing the length of a key field in a table

    Hi,
    I want to increase the length of the field from 2 to 4 in a standard SAP table and deliver it to the customers. This field is a key field in table. This field from this table is also used in view and view clusters.
    What is the implication of changing the length to the customers. The customers would have already data in this field and they should not loose any data. Will the existing data for customers remain at length 2 or do they have to do some conversion?
    Regards,
    Srini.
    Edited by: Srinivasa Raghavachar on Feb 7, 2008 12:45 PM

    hi,
    The database table can be adjusted to the changed definition in the ABAP Dictionary in three different
    ways:
    By deleting the database table and creating it again. The table on the database is deleted, the inactive
    table is activated in the ABAP Dictionary, and the table is created again on the database. Data
    existing in the table is lost.
    By changing the database catalog (ALTER TABLE). The definition of the table on the database is
    simply changed. Existing data is retained. However, indexes on the table might have to be built again.
    By converting the table. This is the most time-consuming way to adjust a structure.
    If the table does not contain any data, it is deleted in the database and created again with its new
    structure. If data exists in the table, there is an attempt to adjust the structure with ALTER TABLE. If the
    database system used is not able to do so, the structure is adjusted by converting the table.
    Field 1     Field 2,    Field 3
    NUMC,6  CHAR 8    CHAR, 60
    Field 1    Field 2       Field 3
    NUMC,6 CHAR, 8     CHAR,30
    The following example shows the steps necessary during conversion.
    Starting situation: Table TAB was changed in the ABAP Dictionary. The length of field 3 was reduced
    from 60 to 30 places.
    The ABAP Dictionary therefore has an active (field 3 has a length of 60 places) and an inactive (field 3
    still has 30 places) version of the table.
    The active version of the table was created in the database, which means that field 3 currently has 60
    places in the database. A secondary index with the ID A11, which was also created in the database, is
    defined for the table in the ABAP Dictionary.
    The table already contains data.
    Step 1: The table is locked against further structure changes. If the conversion terminates due to an
    error, the table remains locked. This lock mechanism prevents further structure changes from being
    made before the conversion has been completed correctly. Data could be lost in such a case.
    Step 2: The table in the database is renamed. All the indexes on the table are deleted. The name of the
    new (temporary) table is defined by the prefix QCM and the table name. The name of the temporary
    Step 3: The inactive version of the table is activated in the ABAP Dictionary. The table is created on the
    database with its new structure and with the primary index. The structure of the database table is the
    same as the structure in the ABAP Dictinary after this step. The database table, however, does not
    contain any data.
    The system also tries to set a database lock for the table being converted. If the lock is set, application
    programs cannot write to the table during the conversion.
    The conversion is continued, however, even if the database lock cannot be set. In such a case
    application programs can write to the table. Since in such a case not all of the data might have been
    loaded back into the table, the table data might be inconsistent.
    You should therefore always make sure that no applications access the table being converted
    during the conversion process.
    Step 4: The data is loaded back from the temporary table (QCM table) to the new table (with MOVECORRESPONDING).
    The data exists in the database table and in the temporary table after this step.
    When you reduce the size of fields, for example, the extra places are truncated when you reload the
    data.
    Since the data exists in both the original table and temporary table during the conversion, the storage
    requirements increase during the process. You should therefore verify that sufficient space is available in
    the corresponding tablespace before converting large tables.
    There is a database commit after 16 MB when you copy the data from the QCM table to the original
    table. A conversion process therefore needs 16 MB resources in the rollback segment. The existing
    database lock is released with the Commit and then requested again before the next data area to be
    converted is edited.
    When you reduce the size of keys, only one record can be reloaded if there are several records whose
    key cannot be distinguished. It is not possible to say which record this will be. In such a case you should
    clean up the data of the table before converting.
    Step 5: The secondary indexes defined in the ABAP Dictionary for the table are created again.
    Step 6: The temporary table (QCM table) is deleted.
    Step 7: The lock set at the beginning of the conversion is deleted.
    If the conversion terminates, the table remains locked and a restart log is written.
    Caution: The data of a table is not consistent during conversion. Programs therefore should not access
    the table during conversion. Otherwise a program could for example use incorrect data when reading the
    table since not all the records were copied back from the temporary table. Conversions therefore
    should not run during production! You must at least deactivate all the applications that use tables to
    be converted.
    You must clean up terminated conversions. Programs that access the table might otherwise run
    incorrectly. In this case you must find out why the conversion terminated (for example overflow of the
    corresponding tablespace) and correct it. Then continue the terminated conversion.
    Since the data exists in both the original table and temporary table during conversion, the storage
    requirements increase during conversion. If the tablespace overflows when you reload the data from the
    temporary table, the conversion will terminate. In this case you must extend the tablespace and start the
    conversion in the database utility again.
    If you shorten the key of a table (for example when you remove or shorten the field length of key fields),
    you cannot distinguish between the new keys of existing records of the table. When you reload the data
    from the temporary table, only one of these records can be loaded back into the table. It is not possible
    to say which record this will be. If you want to copy certain records, you have to clean up the table
    before the conversion.
    During a conversion, the data is copied back to the database table from the temporary table with the
    ABAP statement MOVE-CORRESPONDING. Therefore only those type changes that can be executed
    with MOVE-CORRESPONDING are allowed. All other type changes cause the conversion to be
    terminated when the data is loaded back into the original table. In this case you have to recreate the old
    state prior to conversion. Using database tools, you have to delete the table, rename the QCM table to
    its old name, reconstruct the runtime object (in the database utility), set the table structure in the
    Dictionary back to its old state and then activate the table.
    If a conversion terminates, the lock entry for the table set in the first step is retained. The table can no
    longer be edited with the maintenance tools of the ABAP Dictionary (Transaction SE11).
    A terminated conversion can be analyzed with the database utility (Transaction SE14) and then
    resumed. The database utility provides an analysis tool with which you can find the cause of the error
    and the current state of all the tables involved in the conversion.
    You can usually find the precise reason for termination in the object log. If the object log does not
    provide any information about the cause of the error, you have to analyze the syslog or the short dumps.
    If there is a terminated conversion, two options are displayed as pushbuttons in the database utility:
    After correcting the error, you can resume the conversion where it terminated with the Continue
    adjustment option.
    There is also the Unlock table option. This option only deletes the existing lock entry for the table .
    You should never choose Unlock table for a terminated conversion if the data only exists in the
    temporary table, i.e. if the conversion terminated in steps 3 or 4. table for table TAB is therefore QCMTAB.
    Hope this is helpful,Do reward.

  • License key is invalid or has expired

    I am trying to add a user via the CMC and receive the following error:
    There was an error while writing data back to the server: Your license key is invalid or has expired. If you received a temporary license key by purchasing another BusinessObjects product, you must register BusinessObjects Enterprise to receive your permanent license key.
    This is a new installation and I am trying to create my first user.  I am brand new to Crystal Reports server and any assistance would be greatly appreciated.

    David,
    customercareamericas @ businessobjects.com  (no spaces) should be able to assist you with acquiring a new keycode.  Once received, remove the old one and enter in the new one.  Please be sure to specify the product version you have deployed.
    Tony

  • "Your license key is invalid or has expired" error (Purchased License)

    Hello -
    We have just installed CR Server XI R2 and have purchased a valid license.  The installation accepted the license key during the install and also allowed me to register this license key at the end of the install and sent me my registration number.  After finish the install and following the installation guides - all of the services come up in Central Configuration Manager - but when clicking the Enable/Disable Servers icon and trying to enable 1 or all of the servers there (final step in the install guide) I get the following:
    Your license key is invalid or has expired.  If you received a temporary license key by purchasin another BusinessObjects product, you must register BusinessObjectsEnterprise to receive your permanent license key.
    Again, this is not a temp license, but a full Crystal Reports Server XI R2 5 Cal keycode, purchased through CDW.
    When we were awaiting the full license to come, we attempted to install and run the trial version of CR Server XI R2 and continually received this same error with that install.  I have removed the package completely and re-installed multiple times but each time get this same error at the final step.
    Any help would be great, we've tried reaching out to the Customer Email Support for BO and phone number since Monday and finally yesterday we were told we had to come to this forum to get assistance.
    Thanks in advance.

    Hello Jeremy,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Is there any restriction on the length of all Primary keys in a table

    Hi all,
    Is there any restriction on the length of all Primary keys in a data base table?
    i have some 10 fields as primary key in a DB table and length exceeds 120 and getting a warning.
    Please let me know will there be any problems in future with respect to the same?
    With regards,
    Sumanth

    Well actually there are constraints like
    Total of internal lengths of all primary key columns        1024 Bytes
    Number of primary key columns per table                     512
    For other information about SAP database please refer to http://sapdb.org/sap_db_features.htm  
    Thanks & Regards,
    Vivek Gaur
    Alwayz in high spirits

  • How to find programatically the length of a private key?

    Hello,
    I generate a keystore and a private key in it with the command:
    keytool -genkey -v -alias myPrivKey -keyalg RSA -keysize 4096I then can access the private key with the following code:
    KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
    InputStream is = new FileInputStream("/path/to/keystore", keyStorePassword);
    ks.load(is);
    KeyStore.PasswordProtection protParam = new KeyStore.PasswordProtection(privKeyPassword);
    KeyStore.PrivateKeyEntry privKeyEntry = (KeyStore.PrivateKeyEntry)ks.getEntry("myPrivKey", protParam);
    PrivateKey privKey = privKeyEntry.getPrivateKey();How can I get the length of the private key using the PrivateKey privKey object in my code? In this case I know it is 4096, but how can I find the lengths of arbitrary rsa private keys?
    Thank you very much for your answers in advance.
    Regards
    Rambius

    RSAPrivateKey privKey = (RSAPrivateKey)privKeyEntry.getPrivateKey();
    BigInteger modulus = privKey.getModulus();
    int length = modulus.bitLength(); // See the Javadoc for details

  • I just bought iWorks Serial Number Key over the internet. When I use the key, iWorks tells me the key is invalid!! Please help. (I bought this iWorks from someone in Singapore. I am using it in Malaysia)

    I just bought iWorks Serial Number Key over the internet. When I use the key, iWorks keep telling me the key is invalid!! Please help. (I bought this iWorks from someone in Singapore. I am using it in Malaysia.). Thanks

    Downloaded the Trial version. It still says the serial number key is invalid. On the iWork page where I am suppose to enter the serial number key, the "Go Back" button is always BOLD, but the "Continue" button remains GREY all the time. The "Continue" button remains grey even after I have completed the key entry. I have to type the "Return" key on my keyboard to force enter the key. The message I get is still "Invalid key".
    I have called Apple. The first person helped by asking me to delete certain items in some Folders and it still did not work. I was then connected to a senior person, but I heard over the recording that there were 15 persons waiting on the line. I had to end the call because the wait will take too long.

  • Install Windows 2008 R2 KMS Key Error "0xC004F050 The software licensing service reported that the product key is invalid"

    My KMS server is running on Windows Server 2012 R2 and activated by Server 2012 KMS Key. 
    I would like to use the KMS server to activate many Windows 2008 R2 server, however, Error message "0xC004F050 The software licensing service reported that the product key is invalid" is appear when adding Windows Server 2008R2 KMS Key. The Windows
    Server 2008 R2 KMS key is confirmed and validated by Microsoft Telephone service.
    Command used:
    slmgr /ipk <Windows Server 2008 R2 KMS Key>
    Anyone can help? thanks.  

    Hi Samson,
    Based on my research, we need to choose associated KMS key based on the highest product being deployed in the product grouping hierarchy.
    To choose the right Volume License key, please refer to this article:
    How to Choose the Right Volume License Key for Windows
    Please type the cmd "slmgr /dlv" on KMS Host and check if it has been activated successfully.
    After configure KMS host, By default these KMS client computers will query DNS and locate your KMS host and activate 
    KMS Client Setup Keys 
    To reset computers to be KMS clients type the following at elevated command prompt: 
    Slmgr.vbs /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx 
    Where xxxxx-xxxxx-xxxxx-xxxxx-xxxxx is the generic VL key from the following link. 
    https://technet.microsoft.com/en-us/library/jj612867.aspx
    For more detailed information to activate KMS client, please refer to the article below:
    Installing KMS Hosts
    Configuring KMS Clients
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • CRMv1.2 Enter this License key is invalid or does not match the organization name?

    Hi All,
    Thanks for your support in advance.
    This is Ashok. We purchased CRM v1.2 from the third party. They have provided us the CRM CD's(5) with product key. The problem is when im trying to install CRM server in windows 2003 server its asking for organizations name and License Key. So I have entered
    my company name as the organization name and entered the product key as a License Key. After click on the add button its giving an error i.e., "Enter this License key is invalid or it does not match the organization name. Verify your license key and organization
    name".
    Kindly suggest me the best solution to resolve this issue.
    Waiting for your valuable suggestions.
    Thanks,
    Ashok M.

    Hi Ashok,
    We have a specific forum for discussing CRM:
    https://social.microsoft.com/Forums/en-US/home?forum=crm
    However from the description it is a license related question. In this situation it is more recommended to contact the support directly:
    Here is the support page for Microsoft Dynamics:
    http://www.microsoft.com/dynamics/en/asia/contact-support.aspx
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • CS6  the serial key is invalid. Any ideas?

    I have been using CS6 for months and yesterday I went to open photoshop and I got a message that serial key is invalid and I needed to login, I exited the message only now to have a trial version open. Everytime I go to login into chat it tells me the 24 hr 7day week chat line is closed.

    Error "The serial number is not valid for this product" | Creative Suite

  • Invalid Image Path - No image found at the path referenced under key "CFBundleIconFiles": iTunesArtwork

    hi
    Please tell me the answer for below message,
                        Invalid Image Path - No image found at the path referenced under key
            "CFBundleIconFiles": iTunesArtwork.
    M.Muthukumar

    I resolved removing the iTunesArtwork from the Icons array in the plist.
    The organizer doesn't show the app icon anymore, but now the upload process works and my app is in the
    Waiting For Review
    status.
    Hope this helps
    Agostino Cinelli

  • How do I extend the length of time my iphone rings before voicemail cuts in? If I need to use a password, how do I access that on my iphone? I'm a new user.

    HELP!! My voicemail cuts in after just 15 seconds of ringing, which is rarely long enough for me to answer it. How do I increase the length of time it rings? Can I choose not to have voicemail at all, so my phone can just continue ringing until I answer?
    If I need to enter a voicemail password or key, can you tell me step by step because I can't see how to do anything except retrieve and delete voicemail msgs. I'm on O2-UK, if that makes any difference at all. Thank you

    If my response has been either helpful or correct, could you indicate that marking which it is in order that others searching for a similar solution can find find this easily.
    FYI, it's considered bad forum etiquette to ask for points.

  • Is it possible to change the length of a note in the score editor?

    I thought I saw somewhere that it was now possible to adjust the length of a note in the score editor graphically, i.e. by clicking on the note and somehow adjust its length directly to change it from 1/4 note to 1/8 (for example).
    I don't want to do this by going over to the "Length" dialog on the left because I hate having to switch from thinking in terms of music notation and then having to think (temporarily) in MIDI ticks per beat, etc.
    I must admit that I'm finding it extremely frustrating to simply enter music into Logic in a score....I thought this was supposed to be one of its strengths but it seems to be providing amazing capabilities at the expense of ease of use for beginners.

    dhjdhj wrote:
    I thought I saw somewhere that it was now possible to adjust the length of a note in the score editor graphically, i.e. by clicking on the note and somehow adjust its length directly to change it from 1/4 note to 1/8 (for example).
    greetings dh... are you into Key Commands? There are two which will help you do the above in a trice:
    • Nudge Region/Event Length Right by SMPTE Frame
    • Nudge Region/Event Length Left by SMPTE Frame
    I set mine to the simple letter o and n
    - I click on a note and press o repeatedly.. it grows and grows longer and longer
    – I click on a note and press n repeatedly.. it shrinks and shrinks shorter and shorter
    All by little increments
    If you keep a Piano Roll window open while you do this, you can see the length do this exactly
    man, it is VERY quick and handy for changing the length of notes
    It really helps to have a view of the midi Piano Roll to cross check the exact length and position of the notes.
    Check out the Key Commands:
    • Set Next Higher division
    • Set Next lower division
    These change the note value in the transport bar near the time signature. Your time signature may be 4/4 but the "grid" on which the notes are appear in the Piano Roll could be displayed in quarter, 8th or 16th notes. If you experiment with these commands, then you can match the note lengths easily to the grid display visually (with the above nudge length commands)
    Also - you may like to experiment with the following 3 KEY Key Commands:
    1 • Nudge Region/Event Position Right by Nudge Value
    2 • Nudge Region/Event Position Left by Nudge Value
    This will move your selected notes forward in time or back in time according to the
    value that is set in the Transport bar - say it is 16ths .. then each press of the key will move the notes a 16th
    or if the value is 8th notes, then each press of the key forward or backwards will move the selected notes forward or back by this amount
    ... amazingly useful when you are taking a whole phrase and pasting it somewhere else, or if say you started to write a phrase in the Score Editor and you started on the wrong beat.. then you just Nudge back and forth
    3 • Set Nudge Value to Division
    .. this will in a trice change change the Nudge Value to whatever Note division value is set in the Transport bar
    HTH and forgive me if I have given you too much information
    ..problem is I spent too much time in the Transport Bar in Los Angeles last year drinking with the iSchwartz and other Logic reprobrates... you should join us some time

  • I keep getting an error message when trying to connect to sync on my Android saying the user name and password are invalid.

    I am using Firefox 4.0 Beta 7 on both my Android as well as my laptop. I am trying to set up the sync feature and keep getting the error message on my Android saying that the username or password are invalid. I have tried uninstalling and reinstalling, I have tried changing my password. I continue to get this error message.

    Can you try again with Firefox 4.0b8 (desktop) and 4.0b3 (Android)? We have changed the way that Sync setup works, and it no longer requires entering the password and sync key by hand.
    For details, see: http://blog.mozilla.com/services/2010/12/22/easy-setup-for-firefox-sync/

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

Maybe you are looking for

  • Problem using CTXXPATH index

    Hi all, i'm using Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 on Windows. I created this table create table PERSISTENT_COMPOSITION   COMPOSITION_ID NUMBER(19) not null,   XML_CONTENT    SYS.XMLTYPE not null, )and filled it with more or

  • Is there an emulator for OS 9.2 that works on 10.4.11?

    Hello, I am running OSX 10.4.11 and I need to run a program that says it will only run on 9.2 or OSX in classic mode. I haven't just tried it yet, as I don't want to spend the money and then find out later I can't get it to work. I've been reading ab

  • T61, Vista Business: 42 updates always fail to install

    I am trying to update Vista Business that was preinstalled on my ThinkPad T61 (7659D22). I managed to install SP1, followed by a bunch of updates, then -- but only after several attempts -- SP2. Once I had installed SP2 and rebooted, it told me that

  • Moving the database to different mount point.

    Hi, I have R12 app tier on one server and 10gR2 database on separate server. I want to move the database files from /u01/oradata/PROD to /u02/oradata/PROD on the same server. I know how to do this for the database using alter database rename file ...

  • HCM Mass Process Start

    Hi All, I have a process Mass Pay Change which is getting displayed in both iviews - 'Start Process for an Employee' and 'Start Process for Multiple Employees'. It should always appear in 'Start Process for Multiple Employees'. It would be great if y