Error with Intermedia Clipboard SP's creation

I need to upload text documents to my DB, but the Intermedia Clipboard maka the SP's with errors.
I think there is a proble with some object in the DB, help me Please!!!

I need to upload text documents to my DB, but the Intermedia Clipboard maka the SP's with errors.
I think there is a proble with some object in the DB, help me Please!!!

Similar Messages

  • Problem with InterMedia ClipBoard

    Hi
    i am trying to use the Code wizard to create the Get_object , put_object, insert_row procedures for inserting/updating BLOB data into oracle database
    However the code editior gives an error
    The code generated is as follows and the error is as follows
    I am not able to figure out why it should give an error at this location though.
    Please can some one help
    The code is as follows
    procedure INSERT_CONTENT_ROW
    in_ID in varchar2,
    in_AUTHOR in varchar2,
    in_CONTENT_NAME in varchar2,
    out_rowid out varchar2
    as
    begin
    insert into CONTENTS ( ID, AUTHOR, CONTENT_NAME, DOCS ) values ( in_ID, in_AUTHOR, in_CONTENT_NAME, .BLOB ( ) ) returning rowid into out_rowid;
    end;
    ----------The error generated in code Editior is as below----
    WM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
    Line: 10, Column: 105: PLS-00103: Encountered the symbol "." when expecting one of the following:
    ( - + mod not null others <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute cast trim forall
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string>
    The symbol "<an identifier>" was substituted for "." to continue.
    When I run the same code in SQL*Plus this is the error I get
    procedure INSERT_CONTENT_ROW
    ERROR at line 1:
    ORA-00900: invalid SQL statement
    Now i am new to Intermedia and the BLOB usage so could not figure out much
    I would also be gla if someone can refer me to some good reference material on the Intermedia standard procedures, functions and other developer related material.
    By the way, the config is as follows:
    oracle8.1.5/InterMedia Web agent/clipBoard, Win NT, Apache1.3.9
    Thank you
    -nandeep

    Hi
    When I try to generate procedures with code generator in Intermedia Clip Borad I get errors as listed against each of the procedure
    1. GET_CONTENT_DOC
    --to retrive documents from document column
    --which is a BLOB type column:
    --By the way the documents column name is DOCS in the database
    procedure GET_CONTENT_DOC
    ord_procedure_path in varchar2,
    http_if_modified_since in varchar2,
    http_status out varchar2,
    http_last_modified out varchar2,
    ord_content_type out varchar2,
    ord_content_length out number,
    ord_content_blob out blob
    as
    db_mod_date date;
    begin
    /* get the content, content type, last-modified date from the object. */
    select
    t.DOCS.GetContent(),
    t.DOCS.GetMimeType(),
    t.DOCS.GetUpdateTime()
    into
    ord_content_blob,
    ord_content_type,
    db_mod_date
    from CONTENTS t
    where
    t.ID = ord_procedure_path
    and rownum = 1;
    /* if we didn't know the content type, it's just bits */
    if ord_content_type is null
    then
    ord_content_type := '/x-unknown';
    end if;
    /* figure out the length */
    ord_content_length := dbms_lob.getlength( ord_content_blob );
    /* figure out the http status and last modified date */
    http_status := ordwebutl.cache_status(
    db_mod_date, http_if_modified_since, http_last_modified );
    end;
    ERROR is a s follows:
    WM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
    Line: 17, Column: 9: PLS-00201: identifier 'T.DOCS' must be declared
    Line: 16, Column: 5: PL/SQL: SQL Statement ignored
    2. PUT_CONTENT_DOC
    -- to insert a document
    procedure PUT_CONTENT_DOC
    ord_procedure_path in varchar2,
    http_status out varchar2,
    ord_content_blob out blob
    as
    begin
    /* set the blob to empty before we return a handle to it */
    /* and set the content type from the one passed in */
    update CONTENTS t
    set t.DOCS = .BLOB ( )
    where
    t.ID = ord_procedure_path
    and rownum = 1;
    /* now select the blob we're going to update */
    select t.DOCS.GetContent()
    into ord_content_blob
    from CONTENTS t
    where
    t.ID = ord_procedure_path
    and rownum = 1
    for update;
    /* return http status OK */
    http_status := 200;
    end;
    ERROR is as follows:
    MWM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
    Line: 13, Column: 18: PLS-00103: Encountered the symbol "." when expecting one of the following:
    ( - + mod null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current max min prior sql stddev sum variance execute
    cast trim forall
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string>
    The symbol "<an identifier>" was substituted for "." to continue.
    The INSERT_DOCUMENT got created thru SQL*Plus. However I have NOT changed the .BLOB to EMPTY_BLOB() and I am still not sure whether it will work and whether I have to change it empty_blob()( iguess technically I should )
    thank u
    -nandeep
    null

  • Plugin error with Intermedia

    Background:
    table with 8 text fields, 3 Intermedia fields (1 audio, 1 video, and 1 image) where binary data is stored in the table
    I have a JSP page that pulls the text data from the database.
    I have a servlet that pulls the audio and video data from the database.
    The JSP references the servlet via a link - If I right click on the link, and select "save as...", I can save the audio and video data to disk, and it runs fine. The problem is if I want to just click on the link and spawn the audio/video plugin (in my case Windows Media Player). I get the following error - "Cannot determine the device type from the given filename extension".
    Within the servlet, I set the responses content type to the mime type of the Intermedia object. I then open an output stream from the Intermedia object, and write the data out to the stream.
    Are there any other HTTP headers that I need to set to get the plugin to work properly? How can I get the data to show a filename instead of the long URL query string?
    Thanks.
    Troy

    Hi,
    I suspect the problem here is that the plugin is looking for a file extension to decide the type of media that is to be played. I've seen this problem with some plugins with the Netscape browser, but not (so far) with Microsoft's IE browser.
    Here's what I think happens in Netscape: the browser gets the response and decides which plugin to use based on the Content-Type (MIME type) header. It saves the content in a file in its cache, then passes the filename to the plugin. However, as the URL doesn't have a file name/extension, then the file name in the cache doesn't have an extension either. This means that a plugin that can handle multiple content types, but that doesn't parse the content to determine the type, doesn't know what to do. For example, the Windows Media Player doesn't parse the content, so it has to rely on the file extension to know how to play the content. However, the Quicktime plugin works fine with most media it handles because it parses the content to determine how to play it. In this situation, I've seen problems with .WAV and .AVI files.
    I'm less sure exactly how IE handles things, but I do know that it relies heavily on a combination of file extensions and parsing content to determine the MIME type heuristically. That is to say, IE knows about a whole bunch of 'signatures' at the beginning of content from which it can determine the content type. So even if it doesn't have a file extension, it can figure things out. I believe it also does some form of sanity checking between the file extension, if there is one, the content-type header, if there is one, and the content type that it determines itself using its own heuristic algorithms, but I don't remember the details. Of course, this approach can also cause problems. For example, even slightly older versions of IE don't recognize the format of some of the newer versions of, for example, Microsoft Word. (I ran into this one myself not so long ago.)
    In your case, I think there are a couple of options:
    [list=1]
    [*] Include a dummy file extension when you build the URL to fetch the audio or video data, or
    [*] Use a plugin that can determine the MIME type dynamically.
    [list]
    Option 1 is fairly simple and has the advantage that it'll always work, no matter what browser and/or set of plugins is being used. I suspect there are a bunch of ways to do this, but here are a couple of ideas:
    [list=1]
    [*] When building the URL, include a dummy query string parameter (use any name you like) that contains the extension. I don't understand exactly how this gets parsed (it may be that the plugin simply searches the entire URL for known/supported extensions), but the following should work:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet?pkey=pkeyvalue&paramname=extension<HR></BLOCKQUOTE>
    Eg:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet?pkey=forty2&foo=.avi<HR></BLOCKQUOTE>
    Of course, you might want to use something more reasonable :-)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet?pkey=forty2&ext=.avi<HR></BLOCKQUOTE>
    [*]I've not tried this myself, but you should be able to build a dummy file name and include it in the UTL after the servlet name. The servlet can then get the file name (by calling HttpServletRequest.getPathInfo), decode what it needs (ie, extract the key), then retrieve and deliver the data:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet/pkeyvalue.extension<HR></BLOCKQUOTE>
    Eg:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet/forty2.avi<HR></BLOCKQUOTE>
    This method has the advantage that it will provide a default file name for a Save-As operation.
    [list]
    Hope this helps,
    Simon
    null

  • Web dynpro project creation error with NWDS SP07

    I have NWDS 7.01 SP07 installed and when I am trying to create a webdynpro project, Local DC or otherwise. I get the following exception in the log. I am not able to create a web dynpro project. This problem has been replicated on other systems in windows environment.
    java.lang.NoClassDefFoundError: com/sap/ide/metamodel/webdynpro/WebDynproObject
    Any help regarding this release? We have to use SP07.

    This error is with NWDS standalone. No NWDI or server involved at the time of the error.
    Error happens at the time of creation of the web dynpro project. For both a DC project and standard web dynpro project. It seems to be a bug in NWDS 7.01 SPP07. I am wondering if there is a patch available.
    There are also errors opening up the empty web dynpro perspective.

  • Problem with the Clipboard after upgrade

    We had been using Intermedia, along with the Clipboard and WebAgent in Oracle 8.1.5. A few days ago we upgraded to 8.1.6 (I performed the Intermedia upgrade as well). Oracle is Installed on a Solaris 7 server.
    We installed everything into a new Oracle Home.
    The code we had written using the Intermedia procedures and packages still works but now the CLIPBOARD is not working. The ClipBoard and Web Agent are installed on an NT server running IIS
    Using the ClipBoard, when we we try to connect to the database we get the folliwng error:
    ORA-12564: TNS connect refused
    In the LISTENER.log on the server we see the following corresponding errors:
    26-APR-2000 09:18:16 * (CONNECT_DATA=(SID=cadv)(ORACLE_HOME=/u01/app/l1oradv/product/8.1.5)(SERVER=DEDICATED)(CID=(PROGRAM=C:\WINNT\System32\inetsrv\inetinfo.exe)(HOST=L10008016)(USER=IUSR_L10008016))) * (ADDRESS=(PROTOCOL=tcp)(HOST=172.27.
    125.68)(PORT=1206)) * establish * cadv * 1201
    TNS-01201: Listener cannot find executable /u01/app/l1oradv/product/8.1.5/bin/oracle for SID cadv
    The /u01 directory is the OLD Oracle home. I cannot figure out where the Clipboard is pulling that name from. I went through the tnsnames.ora on the client and the server and both point to the new Oracle home. I also went through the LISTENER.ora and there are no reference to the old Oracle home. On the NT Server where the Clipboard and Web Agent are installed I went through the wsc.cfg and everything looks good. There is no reference to the old Oracle home. I also verified the old listener is not running on the Solaris server.
    Where could this be buried? Everything else (DBA Studio, SQL*Plus worksheet) is working from the same NT Server running the Clipboard. I cannot find where the old Oracle home reference is coming from.
    Marilee

    Hi,
    The Clipboard uses the Web Agent to connect
    to the database, so it should be possible to
    track this down just using the web agent.
    The web agent itself is just a regular OCI
    client application - it doesn't do anything
    special when it comes to connecting to the
    database, it just uses the SERVICE attribute
    in the WSC.CFG file as a SQL*Net TNS service
    name in TNSNAMES.ORA. The first thing to try
    is to test the database agent being used by
    the clipboard from a browser. Eg:
    [URL=http://host/intermedia/<dbagent-NAME>/~test]http://host/intermedia/<dbagent-NAME>/~test[/URL] That should result in the same error message
    being logged by the listener and should also
    result in an error message being displayed
    on the browser window.
    To verify that the Web Agent is reading the
    correct TNSNAMES.ORA, you can create another
    database agent and include the entire
    connection string as the service name instead
    of using a TNS service name. This is probably
    best done by editing WSC.CFG, creating a new
    database agent by copying the existing one
    and replacing the service name with the
    connect string from TNSNAMES.ORA, making sure
    the string is all on 1 line. For example:
    [database_agent.sample-test]
    service = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = mypc)(PORT = 1521)) )(CONNECT_DATA = (SERVICE_NAME = orcl) ) )
    database_user = scott
    database_password = tiger
    authorized_request_class = retrieve
    authorized_sql_statements = procedures
    authorized_sql_procedures = *You can also verify the connection string
    using SQL/Plus. For example:
    sqlplus scott/tiger@"(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = mypc)(PORT = 1521)) )(CONNECT_DATA = (SERVICE_NAME = orcl) ) )"If the connection string works but the TNS
    service name doesn't, then I suspect that the
    web agent is looking at an old TNSNAMES.ORA
    file. If so, its because an old file exists
    in the PATH being used by IIS. Another
    possible, though much less likely problem is
    that there's an old OCI DLL and/or Oracle
    home in the PATH used by IIS.
    Simon

  • Announcing Oracle interMedia Clipboard release 2.0

    The Oracle interMedia team is pleased to announce the availability of
    the Oracle interMedia Clipboard release 2.0.
    Kits for release 2.0 can be found in the standard OTN location
    for Oracle interMedia Utility and Plugin Downloads. Look for the
    "Updated" image near the "Download the Kit..." text under the
    "interMedia Clipboard Utility..." heading.
    The latest README currently available is attached below.
    Please give the new Clipboard a try and let us know what you think!
    ====================================================================================
    interMedia Clipboard V2.0 README
    ====================================================================================
    Welcome to Oracle interMedia Clipboard Version 2.0. This provides
    a servlet and an Apache extension to mod_dav to manage interMedia
    content living in Oracle databases.
    With this kit one can build a customized and integrated content solution
    that supports the following:
    o A Clipboard servlet interface for uploading and downloading content from
    a user's schema in an Oracle database using Apache JServ.
    o Native HTTP access to interMedia content via Apache.
    o Native Apache support to lock, edit, read, and write interMedia
    content via WebDAV protocol.
    o Annotation engine for doing transparent metadata extraction
    of audio, video, or image content downloaded via the Servlet
    or WebDAV.
    o Mapping of content from arbitrary tables containing either LOBS,
    or interMedia objects for access by the Clipboard or by
    WebDAV clients such as Microsoft's WebFolders.
    With an installation you will be able to drag and drop a website
    of static content into an Oracle schema you own. You will also be able
    to serve the website out of Oracle and edit it using either the
    Clipboard servlet or standard WebDAV clients (e.g. WebFolders).
    You can also use the Clipboard to manage arbitrary URL hierarchies
    of content, not just websites. You will also be able to direct HTTP
    traffic to interMedia objects living in tables and schemas that have
    been already populated by other applications.
    See INSTALL in the top level directory of this kit for full
    installation instructions and software requirements.
    This kit has the following software requirements:
    o Apache (1.3.11 or 1.3.12 or 1.3.14)
    o mod_dav (1.0.2-1.3.6)
    o Apache JServ 1.1.2
    o Oracle 8.1.6 Client
    o Oracle Client access to an 8.1.6 or higher database
    Documentation and release notes are posted at our download site:
    http://technet.oracle.com/software/products/intermedia/software_index.htm
    Please use them as the primary reference of how to use this software
    and to do troubleshooting.
    Support is available via the interMedia Support email address:
    [email protected]
    Please specify "interMedia Clipboard V2.0" in the subject line.

    Minol,
    Yes, the oracle services are running, but I still get this error message.
    Thanks.....

  • JSPM Error with SAP-JEE component SP16

    Hi
    I am depolying a queue in JSPM SP16.1 for an ECC6 700 SR3 installed ABAP/Java system and it errors with the component SAP-JEE SP16 (installed level is SP14 as delivered in the SR3 kit)
    The log has the messages:
    Oct 8, 2008 1:49:57 PM   Warning: Caught CVersProxyAccessException while saving repository: CVersAccessException: Cannot access CVers due to missing or incorrect configuration.
    Additional error message is:
    com.sap.sdm.apiint.serverext.servertype.TargetServiceException: Cannot provide connect data for database target system "CONFIG_DB".
    Additional error message is:
    com.sap.sdm.serverext.servertype.dbsc.DatabaseConnectException: Creation of DataSource for database "WFQ" failed. (com.sap.sql.log.OpenSQLException: Error while accessing secure store: Encryption or decryption is not possible because the full version of the SAP Java Crypto Toolkit was not found (iaik_jce.jar is required, iaik_jce_export.jar is not sufficient) or the JCE Jurisdiction Policy Files don't allow the use of the "PbeWithSHAAnd3_KeyTripleDES_CBC" algorithm..)
    regards
    Michael

    Hi Philipp
    My version is 700 and the database is DB2/400 for IBM System i.
    The sapcrypto is treated differently on this platform, so I havent done anything with it as yet.
    I logged a message with SAP which has gone to the BC-JAS-SEC queue and the reply I received is below. Please let me know if this has helped you as I have not had the chance to get back to the system to try these steps :
    regards
    Michael.
    To do the further investigation, may I check info below with you:
    - are you able to read the content of the
    /sapbwtest/global/security/lib/tools/iaik_jce.jar file with jar
    - do you have the full strength JCE files installed for this JDK?
    See note: 739043
    - What user is used to connect to the Database from the java side in
    the secure store? check if the password is correct or the user
    is unlocked.
    Make sure the connection details in Secure Store are the correct ones
    you can check it in the config tool:
    the jdbc/pool/<SID>/Password and jdbc/pool/<SID>/User
    Edited by: Michael Power on Oct 15, 2008 8:52 PM

  • RC-50004: Fatal: Error occurred in ApplyDatabase: Control file creation fai

    Hi guys,
    I am cloning and EBS 12.1.3 from one server to another, and when Configuring the target system database server with ''perl adcfgclone.pl dbTier'', I am getting the following error:
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    MOS is saying that it is due to wrong permissions on the /var/tmp/.oracle directory and we should give it the following permissions:
    chmod 777 /var/tmp/.oracle
    After giving those permissions and rebooting the server , and running the perl adcfgclone.pl dbTier script, I am still having the same problem:
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    This is the contents of the ApplyDBTier log file (since the file exceed 30.000 characters, i am going to post the parts where the errors occur:
    [oratest@DLAERPSRV01 ERP_DLAERPSRV01]$ cat ApplyDBTier_05021530.log
    Started ApplyDBTier at Thu May 02 15:30:44 WAT 2013
    Version:
    ApplyDBTier.java : 120.6.12010000.3
    ApplyDBTier (prog) -1 true true true...
    # Calling ApplyDBTechStack...
    Executing runInstallDriver...
    Started unzipping files...
    Completed runInstallDriver.
    Executing home registration for s_db_oh...
    instantiate file:
    source : /u02/oratest/db/tech_st/11.1.0/appsutil/template/adouidb.pl
    dest : /u02/oratest/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    backup : /u02/oratest/db/tech_st/11.1.0/appsutil/clone/ouicli.pl to /u02/oratest/db/tech_st/11.1.0/appsutil/out/ouicli20.pl
    setting permissions: 700
    setting ownership: oratest:dba
    instantiate file:
    source : /u02/oratest/db/tech_st/11.1.0/appsutil/template/config_ux.tmp
    dest : /u02/oratest/db/tech_st/11.1.0/rdbms/lib/config.c
    backup : /u02/oratest/db/tech_st/11.1.0/rdbms/lib/config.c to /u02/oratest/db/tech_st/11.1.0/appsutil/out/config21.c
    setting permissions: 700
    setting ownership: oratest:dba
    instantiate file:
    source : /u02/oratest/db/tech_st/11.1.0/appsutil/template/adlnkoh.sh
    dest : /u02/oratest/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    backup : /u02/oratest/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh to /u02/oratest/db/tech_st/11.1.0/appsutil/out/adlnkoh20.sh
    setting permissions: 700
    setting ownership: oratest:dba
    Executing script in InstantiateFile:
    /u02/oratest/db/tech_st/11.1.0/perl/bin/perl -I /u02/oratest/db/tech_st/11.1.0/perl/lib/5.8.3 -I /u02/oratest/db/tech_st/11.1.0/perl/lib/site_perl/5.8.3 -I /u02/oratest/db/tech_st/11.1.0/appsutil/perl /u02/oratest/db/tech_st/11.1.0/appsutil/clone/ouicli.pl
    script returned:
    Beginning OUI CLI cloning for s_db_ohThu May 2 15:30:46 2013
    /u02/oratest/db/tech_st/11.1.0/appsutil/jre/bin/java -classpath /u02/oratest/db/tech_st/11.1.0/appsutil/java:/u02/oratest/db/tech_st/11.1.0/oui/jlib/OraInstaller.jar:/u02/oratest/db/tech_st/11.1.0/appsutil/java/xmlparserv2.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e /u02/oratest/db/tech_st/11.1.0/appsutil/ERP_DLAERPSRV01.xml -nolink -oaVar s_db_oh -homestub db -log /u02/oratest/db/tech_st/11.1.0/appsutil/log/ERP_DLAERPSRV01/ohclone.log
    Running OUI CLI home cloning from within OracleHomeCloner:
    /u02/oratest/db/tech_st/11.1.0/oui/bin/runInstaller -clone -silent -force -nolink -waitForCompletion -invPtrLoc /u02/oratest/db/tech_st/11.1.0/admin/oui/ERP_DLAERPSRV01/oraInst.loc ORACLE_HOME=/u02/oratest/db/tech_st/11.1.0 ORACLE_BASE=/u02/oratest/db/tech_st/11.1.0 ORACLE_HOME_NAME=ERP_DB__u02_oratest_db_tech_st_11_1_0 -J-Doracle.installer.noLink=true
    Finished OUI CLI cloning for s_db_oh with return code: 0Thu May 2 15:30:56 2013
    Executing script in InstantiateFile:
    /u02/oratest/db/tech_st/11.1.0/appsutil/clone/adlnkoh.sh
    script returned:
    adlnkoh.sh started at Thu May 2 15:30:56 WAT 2013
    Log file located at /u02/oratest/db/tech_st/11.1.0/appsutil/log/ERP_DLAERPSRV01/make_05021530.log
    Using make file "ins_emagent.mk" for linking SYSMAN utilities...
    Error while running adlnkoh.sh.
    return code = .16
    Please check logfile located at /u02/oratest/db/tech_st/11.1.0/appsutil/log/ERP_DLAERPSRV01/make_05021530.log
    .end std out.
    .end err out.
    Executing Technology Stack Configuration...
    Executing runAutoConfig...
    Deleting files of type INSTALL
    Checking for file: /u02/oratest/db/tech_st/11.1.0/network/admin/ERP_DLAERPSRV01/sqlnet.ora
    Processing driver file: /u02/oratest/db/tech_st/11.1.0/appsutil/template/addbtmpl.drv
    Checking for file: /u02/oratest/db/tech_st/11.1.0/appsutil/install/ERP_DLAERPSRV01/txkConfigDbOcm.pl
    File exists
    File deleted
    Checking for file: /u02/oratest/db/tech_st/11.1.0/dbs/initERP.ora
    File exists
    File deleted
    Checking for file: /u02/oratest/db/tech_st/11.1.0/network/admin/ERP_DLAERPSRV01/listener.ora
    File exists
    File deleted
    Checking for file: /u02/oratest/db/tech_st/11.1.0/network/admin/ERP_DLAERPSRV01/tnsnames.ora
    File exists
    File deleted
    Testing for RAC specific parameters before running autoconfig
    No RAC specific parameters were found, running with CVM
    Starting CVM in INSTE8_SETUP mode
    Using Context file : /u02/oratest/db/tech_st/11.1.0/appsutil/ERP_DLAERPSRV01.xml
    Attempting to create a back up of the Context file
    Created back up file of name :
    /u02/oratest/db/tech_st/11.1.0/appsutil/out/ERP_DLAERPSRV01/05021531/ERP_DLAERPSRV01.xml
    ===========================================================================
    Starting synchronization of file system Context file and its templates with those in the database
    Database connection : Failed
    OAM Context editing support feature: Unverified
    OAM Customization support feature : Unverified
    File system template : /u02/oratest/db/tech_st/11.1.0/appsutil/template/adxdbctx.tmp
    Checking for customizations to Context template
    Warning: Unable to connect to Database.
    If the system is OAM enabled, this may result in loss of customizations.
    Looking for custom template at : /u02/oratest/db/tech_st/11.1.0/appsutil/template/custom/adxdbctx.tmp
    Custom template : Not Available
    Customizations found : None
    File system Context file :/u02/oratest/db/tech_st/11.1.0/appsutil/ERP_DLAERPSRV01.xml
    Checking the Context file for possible updates from the Database
    Warning: Unable to connect to Database.
    If the system is OAM enabled, this may result in loss of customizations and the Context files in DataBase and in the file system may be unsynchronized
    ===========================================================================
    Starting Updates of Context file Thu May 02 15:31:44 WAT 2013
    found context version : 120.34.12010000.14
    available update version : 120.34.12010000.14
    No updates to apply
    Starting DB listener with command:
    /u02/oratest/db/tech_st/11.1.0/appsutil/scripts/ERP_DLAERPSRV01/addlnctl.sh start ERP
    Logfile: /u02/oratest/db/tech_st/11.1.0/appsutil/log/ERP_DLAERPSRV01/addlnctl.txt
    You are running addlnctl.sh version 120.1.12010000.4
    Starting listener process ERP ...
    LSNRCTL for Linux: Version 11.1.0.7.0 - Production on 02-MAY-2013 15:32:23
    Copyright (c) 1991, 2008, Oracle. All rights reserved.
    Starting /u02/oratest/db/tech_st/11.1.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.1.0.7.0 - Production
    System parameter file is /u02/oratest/db/tech_st/11.1.0/network/admin/ERP_DLAERPSRV01/listener.ora
    Log messages written to /u02/oratest/db/tech_st/11.1.0/admin/ERP_DLAERPSRV01/diag/tnslsnr/DLAERPSRV01/erp/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=DLAERPSRV01.camairco.local)(PORT=1523)))
    STATUS of the LISTENER
    Alias ERP
    Version TNSLSNR for Linux: Version 11.1.0.7.0 - Production
    Start Date 02-MAY-2013 15:32:23
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u02/oratest/db/tech_st/11.1.0/network/admin/ERP_DLAERPSRV01/listener.ora
    Listener Log File /u02/oratest/db/tech_st/11.1.0/admin/ERP_DLAERPSRV01/diag/tnslsnr/DLAERPSRV01/erp/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523)))
    Services Summary...
    Service "ERP" has 1 instance(s).
    Instance "ERP", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    addlnctl.sh: exiting with status 0
    addlnctl.sh: check the logfile /u02/oratest/db/tech_st/11.1.0/appsutil/log/ERP_DLAERPSRV01/addlnctl.txt for more information ...
    .end std out.
    .end err out.
    checking DB Connection...
    DEBUG: checkDBConnection in()
    ADX Database Utility
    getConnection() -->
    sDbHost : DLAERPSRV01
    sDbDomain : camairco.local
    sDbPort : 1523
    sDbSid : ERP
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@DLAERPSRV01.camairco.local:1523:ERP
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ERP)))
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ERP.camairco.local)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    DEBUG: checkDBConnection out()
    Skipping Profile Phase
    Skipping Apply Phase
    Executing CreateDB...
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : DLAERPSRV01
    sDbDomain : camairco.local
    sDbPort : 1523
    sDbSid : ERP
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@DLAERPSRV01.camairco.local:1523:ERP
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ERP)))
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ERP.camairco.local)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    adcrdb.sh started at Thu May 2 15:32:40 WAT 2013
    The environment settings are as follows ...
    ORACLE_HOME : /u02/oratest/db/tech_st/11.1.0
    ORACLE_SID : ERP
    TWO_TASK :
    PATH : /u02/oratest/db/tech_st/11.1.0/perl/bin:/u02/oratest/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/u02/oratest/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/u02/oratest/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/u02/oratest/db/tech_st/11.1.0/appsutil/clone/bin/../jre/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oratest/bin:.
    LD_LIBRARY_PATH : /u02/oratest/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/u02/oratest/db/tech_st/11.1.0/lib:/usr/dt/lib:/u02/oratest/db/tech_st/11.1.0/ctx/lib
    Executable : /u02/oratest/db/tech_st/11.1.0/bin/sqlplus
    The log information will be written to
    /u02/oratest/db/tech_st/11.1.0/appsutil/log/ERP_DLAERPSRV01/adcrdb_ERP.txt
    Creating the control file for ERP_DLAERPSRV01 database ...
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu May 2 15:32:40 2013
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to an idle instance.
    ORACLE instance shut down.
    Connected to an idle instance.
    ORA-27154: post/wait create failed
    ORA-27300: OS system dependent operation:semget failed with status: 22
    ORA-27301: OS failure message: Invalid argument
    ORA-27302: failure occurred at: sskgpbitsper
    CREATE CONTROLFILE REUSE SET DATABASE "ERP"
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter database open resetlogs
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter tablespace TEMP add tempfile '/u02/oratest/db/apps_st/data/temp01.dbf' REUSE
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    ALTER DATABASE RENAME GLOBAL_NAME TO "ERP.camairco.local"
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Connected to an idle instance.
    ORA-27154: post/wait create failed
    ORA-27300: OS system dependent operation:semget failed with status: 22
    ORA-27301: OS failure message: Invalid argument
    ORA-27302: failure occurred at: sskgpbitsper
    BEGIN dbms_backup_restore.zeroDbid(0); END;
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    ORACLE instance shut down.
    Connected to an idle instance.
    ORA-27154: post/wait create failed
    ORA-27300: OS system dependent operation:semget failed with status: 22
    ORA-27301: OS failure message: Invalid argument
    ORA-27302: failure occurred at: sskgpbitsper
    CREATE CONTROLFILE REUSE SET DATABASE "ERP"
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter database open resetlogs
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter tablespace TEMP add tempfile '/u02/oratest/db/apps_st/data/temp01.dbf' REUSE
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    ALTER DATABASE RENAME GLOBAL_NAME TO "ERP.camairco.local"
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    declare lib_ver varchar2(3);
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    ERROR:
    ORA-01012: not logged on
    Process ID: 0
    Session ID: 0 Serial number: 0
    Disconnected
    exit_code=1
    Checking for errors ...
    The database has not been successfully created. Shutting down the instance ...
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu May 2 15:32:42 2013
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to an idle instance.
    ORACLE instance shut down.
    Disconnected
    .end std out.
    .end err out.
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : DLAERPSRV01
    sDbDomain : camairco.local
    sDbPort : 1523
    sDbSid : ERP
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@DLAERPSRV01.camairco.local:1523:ERP
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ERP)))
    Exception occurred: java.sql.SQLRecoverableException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=DLAERPSRV01.camairco.local)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ERP.camairco.local)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    RC-00118: Error occurred during creation of database
    Raised by oracle.apps.ad.clone.ApplyDatabase
    StackTrace:
    java.lang.Exception: Control file creation failed
    at oracle.apps.ad.clone.ApplyDatabase.doConf(ApplyDatabase.java:635)
    at oracle.apps.ad.clone.ApplyDatabase.doApply(ApplyDatabase.java:473)
    at oracle.apps.ad.clone.ApplyDatabase.<init>(ApplyDatabase.java:366)
    at oracle.apps.ad.clone.ApplyDBTier.<init>(ApplyDBTier.java:110)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at oracle.apps.ad.clone.util.CloneProcessor.run(CloneProcessor.java:67)
    at java.lang.Thread.run(Unknown Source)
    [oratest@DLAERPSRV01 ERP_DLAERPSRV01]$
    Please guys, how can I solve this problem?

    @Hussain Sawwan
    Hi Hussain,
    After successfully configured the DbTier and AppsTier with their respective post clone scripts the appstier was automatically started at the end.
    But now, I can't seem to connect with my IE 9 and Firefow browsers.
    Link: http://dlaerpsrv01.camairco.local:8002/OA_HTML/
    Contents of the portpool.lst:
    ***** List of ports allocated based on port pool 2 *****
    Database Port : 1523 (EXT_PORT)
    RPC Port : 1628
    Web SSL Port : 4445
    ONS Local Port : 6102
    ONS Remote Port : 6202
    ONS Request Port : 6502
    Web Listener Port : 8002
    Active Web Port : 8002 (DUP_PORT)
    Forms Port : 9002
    Metrics Server Data Port : 9102
    Metrics Server Request Port : 9202
    JTF Fulfillment Server Port : 9302
    MSCA Server Port : 10212-10217
    MCSA Telnet Server Port : 10212,10214,10216 (DUP_PORT)
    MSCA Dispatcher Port : 10806
    Java Object Cache Port : 12347
    OC4J JMS Port Range for Oacore : 23010-23014
    OC4J JMS Port Range for Forms : 23510-23514
    OC4J JMS Port Range for Home : 24010-24014
    OC4J JMS Port Range for Oafm : 24510-24514
    OC4J JMS Port Range for Forms-c4ws : 26510-26514
    OC4J AJP Port Range for Oacore : 21510-21514
    OC4J AJP Port Range for Forms : 22010-22014
    OC4J AJP Port Range for Home : 22510-22514
    OC4J AJP Port Range for Oafm : 25010-25014
    OC4J AJP Port Range for Forms-c4ws : 26010-26014
    OC4J RMI Port Range for Oacore : 20010-20014
    OC4J RMI Port Range for Forms : 20510-20514
    OC4J RMI Port Range for Home : 21010-21014
    OC4J RMI Port Range for Oafm : 25510-25514
    OC4J RMI Port Range for Forms-c4ws : 27510-27514
    [root@DLAERPSRV01 appltest]#
    Entry in the /etc/hosts in my Win 7 Laptop:
    192.168.0.245 dlaerpsrv01.camairco.local dlaerpsrv01
    What could be the cause of this problem? It is unfortunate to reach at this point and not being able to connect.

  • Error occurs during Asset Master Record Creation.

    Hello SAP Gurus,
    The error occurs during asset master record creation.
    Our fiscal year variant is Z6 (July to June). The asset was acquired in June 15 (previous fiscal year) but was only set up on July 30 (this fiscal year) . When we put the depreciation start date as 15 June the error appeared. While saving the Asset master we are getting below error.
    We tried the same with Post Capitalization of Asset (ABNAN) there also we are getting same error.
    ERROR: - as below
    u2003
    SYST: *You cannot determine the period for rule 02 to 05.08.08 ( todayu2019s date )*
    *Message no. AA613*
    *Diagnosis*The system could not determine a depreciation period on 05.08.08 for period control 02 of the period control method of phase N1 of depreciation key INTERN-00001-0000.
    Procedure
    Maintain the assignment of the periods for the period control entered.
    Proceed
    If the period control you entered is a standard period control, you can assign the periods automatically.Proceed
    Please find enclosed attachment for clear description of the error.
    Please share your experiences regarding this subject.
    Thanking you in anticipation.
    Regards,
    Suresh.
    09986375966

    Hi,
    have you generated the period controls properly? If not, the error is raised correctly by the system.
    To generate period controls go to:
    IMG Asset Accounting -> Depreciation -> Valuation Methods -> Period Control -> Generate Period Controls    / or you can use OA84
    Regards,
    Markus

  • Problem with 661FM-L Running Content Creation

    I've been trying to run a session of Content Creation 2003 on this board all day. It continues to error out with the following error
    Winstone 2003 Timeout
    Please close the Premier application and then press OK.
    According to their web site it's a problem with the nVidia driver. However, the stated problem is two years old and the driver they recommend is badly outdated. I initially saw this error with the MSI MX4000 video card installed, then I removed that and now I'm running it with the embedded video only.
    Still getting the message.
    Any thoughts?
    Thanks,

    Update your DirectX to ver 9.0b through http://www.microsoft.com and update to the latest  nVidia Drivers for your Video card.

  • RC-50004: Fatal: Error occurred in ApplyDatabase:  Control file creation failed

    There's anyone ever get error like this?
    [oradev@ebs bin]$ ./adcfgclone.pl dbTier
    perl: warning: Setting locale failed.
    perl: warning: Please check that your locale settings:
      LANGUAGE = (unset),
      LC_ALL = (unset),
      LC_CTYPE = "UTF-8",
      LANG = "en_US.UTF-8"
        are supported and installed on your system.
    perl: warning: Falling back to the standard locale ("C").
                         Copyright (c) 2011 Oracle Corporation
                            Redwood Shores, California, USA
                            Oracle E-Business Suite Rapid Clone
                                     Version 12.2
                          adcfgclone Version 120.63.12020000.7.1202010.2
    Enter the APPS password :
    Running:
    /u01/DEV/11.2.0/appsutil/clone/bin/../jre/bin/java -Xmx600M -cp /u01/DEV/11.2.0/appsutil/clone/jlib/java:/u01/DEV/11.2.0/appsutil/clone/jlib/xmlparserv2.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/ojdbc5.jar oracle.apps.ad.context.CloneContext -e /u01/DEV/11.2.0/appsutil/clone/bin/../context/db/CTXORIG.xml -validate -pairsfile /tmp/adpairsfile_21933.lst -stage /u01/DEV/11.2.0/appsutil/clone  2> /tmp/adcfgclone_21933.err; echo $? > /tmp/adcfgclone_21933.res
    Log file located at /u01/DEV/11.2.0/appsutil/clone/bin/CloneContext_0329113348.log
    Provide the values required for creation of the new Database Context file.
    Target System Hostname (virtual or normal) [ebs] :
    Target Instance is RAC (y/n) [n] :
    Target System Database SID : DEV
    Target System Base Directory : /u01/DEV
    Target System utl_file_dir Directory List : usr/tmp
    RC-00213: Warning: The path specified must be the absolute path
    Target System utl_file_dir Directory List : /usr/tmp
    Number of DATA_TOP's on the Target System [1] :
    Target System DATA_TOP Directory 1 [/apps/DEV/data] : /u01/DEV/data
    Target System RDBMS ORACLE_HOME Directory [/u01/DEV/11.2.0] :
    Do you want to preserve the Display [null] (y/n)  : n
    Target System Display [ebs:0.0] :
    Do you want the target system to have the same port values as the source system (y/n) [y] ? : n
    Target System Port Pool [0-99] : 0
    Checking the port pool 0
    RC-50221: Warning: Port Pool 0 is not free. Please check logfile /u01/DEV/11.2.0/appsutil/clone/bin/CloneContext_0329113348.log for conflicts.
    Target System Port Pool [0-99] : 0
    Checking the port pool 0
    done: Port Pool 0 is free
    Report file located at /u01/DEV/11.2.0/appsutil/temp/portpool.lst
    Complete port information available at /u01/DEV/11.2.0/appsutil/temp/portpool.lst
    Creating the new Database Context file from :
      /u01/DEV/11.2.0/appsutil/template/adxdbctx.tmp
    The new database context file has been created :
      /u01/DEV/11.2.0/appsutil/DEV_ebs.xml
    Log file located at /u01/DEV/11.2.0/appsutil/clone/bin/CloneContext_0329113348.log
    Check Clone Context logfile /u01/DEV/11.2.0/appsutil/clone/bin/CloneContext_0329113348.log for details.
    Running Rapid Clone with command:
    Running:
    perl /u01/DEV/11.2.0/appsutil/clone/bin/adclone.pl java=/u01/DEV/11.2.0/appsutil/clone/bin/../jre mode=apply stage=/u01/DEV/11.2.0/appsutil/clone component=dbTier method=CUSTOM dbctxtg=/u01/DEV/11.2.0/appsutil/DEV_ebs.xml showProgress contextValidated=true
    perl: warning: Setting locale failed.
    perl: warning: Please check that your locale settings:
      LANGUAGE = (unset),
      LC_ALL = (unset),
      LC_CTYPE = "UTF-8",
      LANG = (unset)
        are supported and installed on your system.
    perl: warning: Falling back to the standard locale ("C").
    Beginning database tier Apply - Sun Mar 29 11:35:27 2015
    /u01/DEV/11.2.0/appsutil/clone/bin/../jre/bin/java -Xmx600M -DCONTEXT_VALIDATED=true  -Doracle.installer.oui_loc=/u01/DEV/11.2.0/oui -classpath /u01/DEV/11.2.0/appsutil/clone/jlib/xmlparserv2.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/ojdbc6.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/java:/u01/DEV/11.2.0/appsutil/clone/jlib/oui/OraInstaller.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/oui/ewt3.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/oui/share.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/oui/srvm.jar:/u01/DEV/11.2.0/appsutil/clone/jlib/ojmisc.jar   oracle.apps.ad.clone.ApplyDBTier -e /u01/DEV/11.2.0/appsutil/DEV_ebs.xml -stage /u01/DEV/11.2.0/appsutil/clone   -showProgress
    APPS Password : Log file located at /u01/DEV/11.2.0/appsutil/log/DEV_ebs/ApplyDBTier_03291135.log
      \     50% completed       RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    ERROR while running Apply...
    Sun Mar 29 11:46:03 2015
    ERROR: Failed to execute /u01/DEV/11.2.0/appsutil/clone/bin/adclone.pl
    Please check logfile.
    [oradev@ebs bin]$

    perl: warning: Setting locale failed.
    perl: warning: Please check that your locale settings:
      LANGUAGE = (unset),
      LC_ALL = (unset),
    LC_CTYPE = "UTF-8",
      LANG = (unset)
        are supported and installed on your system.
    perl: warning: Falling back to the standard locale ("C")
    Please check - $ env | grep LC
    If its set to LC_CTYPE = UTF-8 then unset or set it to blank value i.e. export LC_CTYPE = 
    Please see - ODA: oakcli command failed with perl: warning: Setting locale failed. (Doc ID 1526079.1)
    -Kj

  • ASN Reference document number is invalid error with SA

    Hi~
    We have ASN creation error with SA(Scheduling Agreement).
    Portal Menu : Delivery-Receipts and Requirements-Due List for purchasing document(Supplier)
    1. Select SA(Scheduling Agreement) line
    2. Click 'Create ASN '
    3. After enter ship from location, ASN number, Error occur
       "ASN ASN-1112, item 000001: Reference document number is invalid "
    When we execute with PO, there are no error.
    But with SA, there are always error.
    Bestregards,
    SKY

    Hi SKY
    Please make sure the external procurement releationship (SA) exists in the below transaction
    /n/sapapo/pwbsrc1 between source and destination locations. i.e shipfrom and ship to
    Also make sure that the external procurement relation ship is referenced in the transportation lane /n/sapapo/tl1
    Select your product -specific transportation lane- go to detail screen
    There you can find external procurement releationship, maintain the data
    Please enhance your master data acoringly. Afterwards you can select reference doc nomber as well as item number with the value help in the ASN creation screen. By that the reported error msg should not appear anymore.
    Or Switch off PURCH_REF_MANDATORY validation check
    i suggest you follow first method and complete the master data setup
    Best Regards
    Vinod

  • SMI: Error with PO confirmation

    Hi all,
    I'm implementin SMI scenario with SNC 5.1, I've created a RO from SMI Details (SNC web UI), I've published it and VendorGeneratedOrderConfirmation.XML was sent from SNC to ECC for PO creation.
    In ECC the PO is created but there is the following error with the incoming IDOC in ECC:
    Errors occurred confirming purchase order <purch. order number>
    Message no. WVMI215
    I've also checked the SAP note 202667, but it is not applicable in my case because I've ECC 6.0, but in any case I've checked and the form is alredy implemented.
    Why I have this problem?
    How can I solve it?
    Thank you in advance!

    Hello,
    In ECC  go to WVM7 (Transaction code) &  maintain:
    1) customer sold to party(your customer bp org created in SNC)
    2) plant
    3) vendor
    4) purchasing document type
    save above setting & reprocess failed idoc.
    Regards,
    Nikhil

  • Install RAC 11g2 : DBCA error with listener

    I get this error while create database with DBCA in RAC 11g2 installation.
    ORA-00119: invalid specification for system parameter REMOTE_LISTENER
    ORA-00132: syntax error or unresolved network name 'rac-scan.edu.vn:1521'
    My scan listener :
    [oracle@vm01 admin]$ srvctl config scan_listener
    SCAN Listener LISTENER_SCAN1 exists. Port: TCP:1521
    SCAN Listener LISTENER_SCAN2 exists. Port: TCP:1521
    [oracle@vm01 admin]$ srvctl status scan_listener
    SCAN Listener LISTENER_SCAN1 is enabled
    SCAN listener LISTENER_SCAN1 is running on node vm02
    SCAN Listener LISTENER_SCAN2 is enabled
    SCAN listener LISTENER_SCAN2 is running on node vm01
    [oracle@vm01 admin]$ srvctl status scan
    SCAN VIP scan1 is enabled
    SCAN VIP scan1 is running on node vm02
    SCAN VIP scan2 is enabled
    SCAN VIP scan2 is running on node vm01
    [oracle@vm01 admin]$ srvctl config scan
    SCAN name: rac-scan.edu.vn, Network: 1/10.10.10.0/255.255.255.0/eth2
    SCAN VIP name: scan1, IP: /rac-scan.edu.vn/10.10.10.250
    SCAN VIP name: scan2, IP: /rac-scan.edu.vn/10.10.10.251
    So thanks
    Chuong

    I've had a very similar problem with DBCA and creation of an 11.2.0.3 database and this ORA-00119:Invalid specification for system parameter REMOTE_LISTENER ORA-00132: syntax error or unresolved network name 'orapscan:1521'.
    The solution to my problem was that on the host (a production host) that I was trying to execute DBCA from if I did a 'tnsping orapscan' it did not resolve.
    On our development host a 'tnsping oradscan' (oradscan is the scan equivalent in dev for our production equivalent orapscan) it resolves ok.
    ie.
    13:22:15[oracle@euxq10 [eu11d] ~]$tnsping oradscan
    TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 08-APR-2013 13:22:20
    Copyright (c) 1997, 2011, Oracle. All rights reserved.
    Used parameter files:
    /apps/oracle/network/sqlnet.ora
    Used EZCONNECT adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTOCOL=TCP)(HOST=10.3.55.34)(POR..... etc.....
    In this case, it is resolved from EZCONNECT.
    This then led us to look at the sqlnet.ora on both our development and production environments, and this is where we found a difference.
    In our development environment in sqlnet.ora, we had -
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT)
    But in our production environment in sqlnet.ora we had -
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES)
    Thus when we changed our sqlnet.ora in our production environment to include EZCONNECT - ie.
    NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT)
    Then when we retried the DBCA create, we did not receive this ORA-00119 / ORA-00132 error with parameter REMOTE_LISTENER.
    Anyway, this was the solution to my problem. Hope it helps others.
    Regards,
    Roger

  • Communication error with external system ( VERTEX )

    Hi Folks,
    While creation the Credit memo request or Sales order /invoice system giving the error message " COmmunication error with external system ( VERTEX ) " and stopping to proceed further and even not able to post the accounting document.
    Please help  me out here.
    Answers will be appreciated and rewared.
    Regards,
    Ram.

    Hi,
    check this below thread
    Communication error with the external tax system (VERTEX_MS0018)
    OR
    Remove V from the Extrernal System at the location IMG->financial Accounting->Financial Accounting Global Settings->Tax on Sales/Purchases->Basic Settings->External Tax Calculation->Activate External Tax Calculation
    Reg,
    JJ
    Edited by: Jagsap on Mar 5, 2010 1:15 PM

Maybe you are looking for

  • Cant Access windows 8 after upgrading to mountain lion

    a few weeks ago i upgraded my lion to mountain lion i had windows 8 installed with boot camp on a seperate partition (i only use windows 8 for my astrophotography as certain specilised apps i use are sadly windows only) now as i hadnt had any clear s

  • Thunderbolt to dvi resolution problem

    I have a 30 inch dell monitor and when i connect the monitor to my macbookpro 17 inch late 2011 with 10.6.8 via mini display to dvi my resolution on the external monitor is 1280x800 maximum. The display can go to 2560. does anyone now how to fix this

  • Thumbnails in Sequence

    I'd like to turn off the visual thumbnails in my sequence. Is there a setting for that as there is in FCP? J

  • Function module  for logo

    Hi all by which function module logo can be attached in the sap script or smartform

  • Preview Facebook Social Plugin in Fireworks CS5?

    Hi, Is it possible to preview Facebook Social Plugins like the "Facepile" in Fireworks CS5 just like you can do with a Google Map? The HTML for the Social Plugin is: <iframe src="//www.facebook.com/plugins/facepile.php?href=facebook.com%2Ftriplapp&si