Extract processing-instruction in workflow

I am trying to extract an XML Processing Instruction from some input XML in a WLI
Workflow. Using the XPATH wizard I have constructed the expression, but this just
returns an empty string when used in the workflow.
Has anybody successfully extracted the processing instruction? and set a workflow
variable, or is there a different method of getting at it?
TIA
Dave

Hello Vandy,
try this:
var PI = app.selection[0].insertionPoints[0];
var xmlElementOfPI = PI.associatedXMLElements[0];
xmlElementOfPI.xmlInstructions.add("target","data", PI);
Roland

Similar Messages

  • Unable to Start Extract Process

    hi,
    I am just start the extract process command & then i see the status. then the process is in STOP mode. i can't understand that why.
    I have also check the ggerror file. in which i can the extract process is runnig.
    but whn i run the command
    1.START EXTRACT EOLTP1
    starting...
    stats EOLTP01
    ERROR: EXTRACT EOLTP1 not currently running.
    2. GGSCI (s34klj69) 22> info extract EOLTP1
    EXTRACT EOLTP1 Initialized 2013-01-23 11:29 Status STOPPED
    Checkpoint Lag 00:00:00 (updated 52:16:51 ago)
    Log Read Checkpoint Oracle Redo Logs
    2013-01-23 11:29:21 Thread 1, Seqno 0, RBA 0
    waiting...thanks,AMSII
    Edited by: AMSI on Jan 24, 2013 11:48 PM

    Thanks Kamal,
    I have followed your instruction & just get the logs. Kindly will you like to tell me where is problem. because there is only one warning??? wht you suggest??
    Machine: 9000/800
    soft limit hard limit
    Address Space Size : unlimited unlimited
    Heap Size : 17179869184 17179869184
    File Size : unlimited unlimited
    CPU Time : unlimited unlimited
    Process id: 4400
    Description:
    ** Running with the following parameters **
    EXTRACT EOLTP1
    EXTTRAIL ./dirdat/sa
    ---SETENV (ORACLE_SID=SID_T)
    USERID OGG, PASSWORD *******
    DBOPTIONS ALLOWUNUSEDCOLUMN
    TABLE crispadm.TEST_OGG;
    CACHEMGR virtual memory values (may have been adjusted)
    CACHEBUFFERSIZE: 64K
    CACHESIZE: 8G
    CACHEBUFFERSIZE (soft max): 4M
    CACHEPAGEOUTSIZE (normal): 4M
    PROCESS VM AVAIL FROM OS (min): 15.74G
    CACHESIZEMAX (strict force to disk): 13.79G
    Database Version:
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    PL/SQL Release 9.2.0.7.0 - Production
    CORE     9.2.0.7.0     Production
    TNS for HPUX: Version 9.2.0.7.0 - Production
    NLSRTL Version 9.2.0.7.0 - Production
    Database Language and Character Set:
    NLS_LANG environment variable not set, using default value AMERICAN_AMERICA.US7ASCII.
    NLS_LANGUAGE = "AMERICAN"
    NLS_TERRITORY = "AMERICA"
    NLS_CHARACTERSET = "WE8ISO8859P1"
    Warning: NLS_LANG is not set. Please refer to user manual for more information.
    Regards,
    AMSII

  • Process Instruction (PI) Sheet text (Browser version)

    Our Process Instruction (PI) Sheet information is stored in the text tables (STXH/STXL) under TDOBJECT = 'COPOC' and TDID = '0001', but has a cryptic TDNAME key value.  We use the 'browser' PI Sheet display version, not the ABAP base display version which stores the PI data on tables COCHP (Header data) and COFTP (PI Sheet: Process Instructions).  Function Module COP0_DISPLAY_PI_SHEET would be used to display the ABAP PI Sheet information.  During debug of tcode CO60 (Find PI Sheet), it appears that the Control Recipe (CRID) value is used to create the TDNAME key value via Classes/Methods.  Unfortunately, accessing the text thru the different Classes does not seem straight forward.  Does anyone have code/logic to extract the PI Sheet text directly using the CRID in a more simpler procedure?
    Thank you in advance for your assistance.
    jm

    Hi,
    use this Function module to get the text.
    <b>COCB_CONTROL_RECIPE_GET_DETAIL</b> pass the control recipe ID.
    try this also..
    COCB_CONTROL_RECIPE_GET_TEXTS
    regards
    vijay
    Message was edited by: Vijay Babu Dudla

  • XSLT processing instructions ignored, and namespaces excluded

    Hi folks,
    I am developing a BPEL process and created the following XSLT:
    &lt;xsl:stylesheet version="1.0"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:ehdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.esb.server.headers.ESBHeaderFunctions"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    <strong> xmlns:agrlib="http://services.agresso.com/schema/ABWSchemaLib/2005/05/13"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    </strong> exclude-result-prefixes="xsl xp20 bpws ora ehdr orcl ids hwf"&gt;
    <strong> &lt;xsl:output omit-xml-declaration="no"/&gt;
    &lt;xsl:output standalone="yes"/&gt;
    </strong> &lt;xsl:template match="*[not(node())]"/&gt;
    &lt;xsl:template match="node()"&gt;
    &lt;xsl:copy&gt;
    &lt;xsl:apply-templates select="node()"/&gt;
    &lt;/xsl:copy&gt;
    &lt;/xsl:template&gt;
    &lt;/xsl:stylesheet&gt;
    The transform activity is:
    &lt;copy&gt;
    &lt;from expression="ora:processXSLT('Transformation_1.xsl',bpws:getVariableData('Variable_1'))"/&gt;
    &lt;to variable="Variable_2"/&gt;
    &lt;/copy&gt;
    This XSLT has been tested in Oxygen and produces the required result with the required namespaces included...i.e.
    <p>
    &lt;?xml version="1.0" encoding="utf-8"?&gt;
    </p>
    <p>
    &lt;ABWSupplierCustomer xmlns="http://services.agresso.com/schema/ABWSupplierCustomer/2005/05/13" xmlns:agrlib="http://services.agresso.com/schema/ABWSchemaLib/2005/05/13" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt;
    </p>
    <p>
    ...rest of file...
    But when the BPEL process executes, it outputs this:
    </p>
    <p>
    &lt;ABWSupplierCustomer xmlns="http://services.agresso.com/schema/ABWSupplierCustomer/2005/05/13"&gt;
    </p>
    Anyone any ideas?

    This is how I create my DOM...
    DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    org.w3c.dom.Document doc = builder.newDocument();
    Element docElement = doc.createElement("Document");
    docElement.setAttribute("Title", "Home");
    org.w3c.dom.ProcessingInstruction pi = doc.createProcessingInstruction("xml", "type=\"xslt\"");
    doc.appendChild( pi );
    doc.appendChild( docElement );
    And this is the output I get...
    <?xml version="1.0"?>
    <Document Title="Home"/>
    I dont get it, Im using jdk1.4.0, and you get the processing instruction coming through, but I dont...?

  • Error on extracting process: 'SDMKIT.JAR. The file is corrupt'

    Hi,
    I have both files (NW04SneakPrevJavaSP11.part1.rar and NW04SneakPrevJavaSP11.part2.rar) in the same directory but when I start the extracting process I got those messages:
    D:\SAP_portal\NW04SneakPrevJavaSP11.part1.rar:
    Unexpected end of archive
    D:\SAP_portal\NW04SneakPrevJavaSP11.part1.rar:
    CRC failed in NW04SneakPrevJavaSP11\NWSneakPreviewSP11\SneakPreviewContent\SDM\SDMKIT.JAR. The file is corrupt
    D:\SAP_portal\NW04SneakPrevJavaSP11.part1.rar:
    Cannot create NW04SneakPrevJavaSP11\DeveloperStudioSP11\J2EE-
    RUNT-CD\IDE\eclipse\plugins\com.sap.tc.ap\comp\CAF\DCs\sap.com\caf\runtime\connectivity\impl\_comp\gen\default\public\com.sap.caf.mp.core.svc\90549cee3a85b8105ec24698da254123.HASH
    Total path and file name length must not exceed 260 characters
    I wonder to know what happend and how can I fix it.
    Appreciate your help,
    Luis.

    Hi Luis,
    I dont't know about a mirror. I downloaded the files and extract without problems.
    In the following thread is an instruction how to uncompress:
    How can I extract files of kind .rar?
    Do you use Winrar? Do you select both files if you extract? Try to rename the directory SAP_portal to NW4 (or an other very short name)
    Hope that helps!
    Best regards
    Renald

  • Xml variable removes process-instruction

    I have a project that reads documents through a watch folder. The files that are dropped in are xml and contain a processing instruction with some meta data is needed in my process. I have configured a watch folder endpoint using 3 different type of input variables for document, xml, and string. When I do document I get the document object but no access to the processing instruction. When I do xml, I get the xml in a variable but all processing instructions are removed including the xml declaration. Finally, when I use a string, the variable is set with a binary representation of the file that looks like base 64. I have tested a different process reading the xml from file system as a string and I can use string functions to extract the values I need that way. I'm wondering if anybody knows what I can do to configure my watch folder enpoint so that I can access the processing directive either as xml or as a string.

    Hi,
    The <?xml version='1.0' encoding='utf-8'?>) xml declaration can occur only once and that too at the very top of the xml file before everything else. I think your best bet would be to strip the xml declaration and the doctype declaration before appending. You might want to check the API documentation of the API you are using to serialize the xml to see if it supports suppressing xml and doctype declarations.
    With apache xerces, you can do
    OutputFormat.setOmitXMLDeclaration(true);
    where OutputFormat dictates what underlying serialized is used to serialize the document based on the specified method.
    Hope this helps.
    Cheers,
    vidyut

  • Extract process up & running but I cannot see new transactions in the trail

    extract process up & running on source but I cannot see new transactions in the extract trail file and as result it is not replicated to target
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT RUNNING E_ENVA 00:00:00 00:00:10
    GGSCI (HOST) 186> send extract e_Enva status
    Sending STATUS request to EXTRACT E_ENVA ...
    EXTRACT E_ENVA (PID 11824)
    Current status: In recovery[1]: At EOF
    Current read position:
    Sequence #: 33
    RBA: 34904432
    Timestamp: 2011-09-21 11:14:47.000000
    Current write position:
    Sequence #: 6
    RBA: 1008
    Timestamp: 2011-09-21 11:26:42.426000
    Extract Trail: C:\GG\dirdat\enva\ce
    GGSCI (ILW177711) 193> stats extract e_enva
    Sending STATS request to EXTRACT E_ENVA ...
    No active extraction maps.
    Where to look next and what is the root cause for this,
    thank you

    all configurations was ok and working fine (meaning data was extracted on source and replayed on target) before extract/replicat processes restart
    I did not touch any of the configuration files, after restart processes shows as up & running without any actual errors or rejects on the logs
    please find extract configuration file:
    EXTRACT e_enva
    SETENV ( ORACLE_SID=orcl )
    USERID USER_SCHEMA_A, PASSWORD AACAAAAAAAAAAAHAOFVCXAUANCVHIHCE, ENCRYPTKEY DEFAULT
    DISCARDFILE C:\GG\dirrpt\e_enva.dsc, APPEND, MEGABYTES 10
    REPORTCOUNT EVERY 10000 RECORDS, RATE
    NOTRACETABLE
    EXTTRAIL C:\GG\dirdat\enva\ce
    SQLEXEC "CALL USER_SCHEMA_A.pkg.event_message('START', null, 'ALL','e_enva')";
    SQLEXEC "CALL USER_SCHEMA_A.pkg.event_message('STOP', null, 'ALL','e_enva')" ONEXIT;
    TABLE USER_SCHEMA_A.T_TABLE, KEYCOLS (ID_OBJECT);
    TABLE USER_SCHEMA_A.T_TABLE_REF, KEYCOLS (ID_XREF, PKEY_SRC, SYSTEM, IND);
    logging and supplemental logging enabled, commits performed and again nothing was changed in configuration except that processes was restarted
    thank you

  • Error while creating process instruction sheet in COR2

    While creating Process instruction sheet, the following error is occuring. Please guide me to resolve the issue.
    Define variable QTYPRODUCED for default value
    Message no. CPOC110
    Diagnosis
    In the process instruction, variable QTYPRODUCED is defined for the value that you want the system to propose when data is entered in the PI sheet. This value does, however, not exist because it has not yet been defined as a variable.
    If you want to use a variable in a process instruction, however, you must first have defined it in a preceding process instruction or in the same process instruction.
    Procedure
    Define variable QTYPRODUCED in one of the preceding process instructions or in the same process instruction.
    Define Variable
    Regards
    Kumar

    1.  Assign characteristic PPPI_VARIABLE to the process instruction before the message characteristic to which the variable is to refer
    2.  Assign the required variable name to characteristic PPPI_VARIABLE.

  • How to print process instruction in process order.

    Hi dudes,
    ,y client is not having Process management interface, but they want to maintain process instruction for phases in recipe and want to take print of process instructions  in process order after release process order.
    Please explain the path for printing process instructions copied into process order.
    if some one assign PIs to phase in recipe, will control recipes be created after release of process order.
    Regards
    Daniel

    The easiest way to do what you want is to actually create the PI sheet and then print it off from the view PI sheet transaction (CO60).  This is then all standard functionality.
    to do this you will need to set the configuration to create the control recipe when the process order is released and send it to a recipe destination.
    Regards
    Laurence

  • Guidelines required to analyze the extraction process for 2LIS_02_SCL.

    Hi All,
    I have a problem here regarding the extraction process for the DataSource 2LIS_02_SCL. The values posted by date fields like
    Posting Date (0PSTNG_DATE)
    Schedule Line Delivery Date (0SCL_DELDAT)
    Statistics Date  (0STAT_DATE)
    In BW are suspected to be wrong values.
    So I am supposed to check the extraction process for PO Schedule Line (2LIS_02_SCL).
    So how can I proceed with this analysis in BW side as well as in SAP R/3.
    Can anyone please help with the process.
    Thanks in advance.

    Hi,
    In Bw thre is always confusion about following Dates.
    Posting Date (0PSTNG_DATE)
    Schedule Line Delivery Date (0SCL_DELDAT)
    Statistics Date (0STAT_DATE)
    So ask Functional Consultants and Business USers and Identify the corretc Date in ECC and then Change the Mapping In UPdate Rules in BW. i.e. What date USer is wanting and accordingly we nee dtgo change the mapping in UPdate Rules in Time Char Tab in UpdateRules.
    Thanks
    Reddy

  • How to analyze the extraction process for 2LIS_02_SCL both in R/3 & BW.

    Hi All,
    I have a problem here regarding the extraction process for the DataSource 2LIS_02_SCL. The values posted by date fields like
    Posting Date (0PSTNG_DATE)
    Schedule Line Delivery Date (0SCL_DELDAT)
    Statistics Date (0STAT_DATE)
    In BW are suspected to be wrong values.
    So I am supposed to check the extraction process for PO Schedule Line (2LIS_02_SCL).
    So how can I proceed with this analysis in BW side as well as in SAP R/3.
    Can anyone please help with the process.
    Thanks in advance.

    Hi,
    In Bw thre is always confusion about following Dates.
    Posting Date (0PSTNG_DATE)
    Schedule Line Delivery Date (0SCL_DELDAT)
    Statistics Date (0STAT_DATE)
    So ask Functional Consultants and Business USers and Identify the corretc Date in ECC and then Change the Mapping In UPdate Rules in BW. i.e. What date USer is wanting and accordingly we nee dtgo change the mapping in UPdate Rules in Time Char Tab in UpdateRules.
    Thanks
    Reddy

  • Updating a XML document with a processing instruction

    Greetings Guru's
    I have a fully functional XML database solution for our new system. The only thing left is for me to update a xml document in the database with a processing instruction to find the style sheet (JAXB strips it out when the XML must go back into the database).
    I can update complete nodes and node elements in the xml document using updateXML in a regular update statement, but I do not know how to add the following processing instruction to my documents.
    <?xml-stylesheet type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"?>
    [pre]
    Thanks in advance
    Derrick                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    SQL> var xmltext varchar2(4000)
    SQL> --
    SQL> begin
      2    :xmlText := '<Hello>World</Hello>';
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> drop table t
      2  /
    drop table t
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> create table t of xmltype
      2  /
    Table created.
    SQL> set long 10000
    SQL> --
    SQL> insert into t values (xmltype(:xmltext))
      2  /
    1 row created.
    SQL> select *
      2    from t
      3  /
    SYS_NC_ROWINFO$
    <Hello>World</Hello>
    SQL> update t set object_value = updateXML
      2                              (
      3                                object_value,
      4                                '/',
      5                                xmlconcat
      6                                (
      7                                  xmlpi("xml-stylesheet",'type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"'),
      8                                  object_value
      9                                )
    10                              )
    11  /
    1 row updated.
    SQL> select * from t
      2  /
    SYS_NC_ROWINFO$
    <?xml-stylesheet type="text/xsl" href="/RASWEB/JIT_REPORT.xslt"?>
    <Hello>World</Hello>
    SQL>

  • Failure of Extract Process

    Hello All,
    I am trying to extract and the process fails. please help me this, following is part of "view ggsevt"
    2012-07-26 16:24:05 WARNING OGG-00752 Oracle GoldenGate Capture for Oracle, ext1.prm: Failed to validate table SAPSR3.FAGL
    _SPLINFO. Likely due to existence of unused column. Please make sure you use sourcedefs in downstream Replicat, or the target
    table has exactly the same unused columns when using ASSUMETARGETDEFS or DDL replication.
    2012-07-26 16:39:15 WARNING OGG-00752 Oracle GoldenGate Capture for Oracle, ext1.prm: Failed to validate table SAPSR3.FMIF
    IIT. Likely due to existence of unused column. Please make sure you use sourcedefs in downstream Replicat, or the target tabl
    e has exactly the same unused columns when using ASSUMETARGETDEFS or DDL replication.
    2012-07-26 16:39:18 WARNING OGG-00752 Oracle GoldenGate Capture for Oracle, ext1.prm: Failed to validate table SAPSR3.FMIO
    I. Likely due to existence of unused column. Please make sure you use sourcedefs in downstream Replicat, or the target table
    has exactly the same unused columns when using ASSUMETARGETDEFS or DDL replication.
    2012-07-26 17:45:46 WARNING OGG-00752 Oracle GoldenGate Capture for Oracle, ext1.prm: Failed to validate table SAPSR3.MSEG
    . Likely due to existence of unused column. Please make sure you use sourcedefs in downstream Replicat, or the target table h
    as exactly the same unused columns when using ASSUMETARGETDEFS or DDL replication.
    2012-07-26 18:22:05 ERROR OGG-01960 Oracle GoldenGate Capture for Oracle, ext1.prm: Failed to validate table SAPSR3.ORA_
    COCKPIT_HELPER. The table is created with the NOLOGGING option, which is not supported. Extract may not be able to capture da
    ta from it.
    2012-07-26 18:22:05 ERROR OGG-00663 Oracle GoldenGate Capture for Oracle, ext1.prm: OCI Error retrieving bind info for q
    uery (status = 100), SQL < select (select count(*) from dba_tables where logging = 'NO' and owner = 'SAPSR3' and t
    able_name = 'ORA_COCKPIT_HELPER') + (select count(*) from dba_tab_partitions where table_owner = 'SAPSR3' and
    table_name = 'ORA_COCKPIT_HELPER' and logging = 'NO') + (select count(*) from dba_tab_subpartitions wher
    e table_owner = 'SAPSR3' and table_name = 'ORA_COCKPIT_HELPER' and logging = 'NO') from DUAL >.
    2012-07-26 18:22:05 ERROR OGG-01668 Oracle GoldenGate Capture for Oracle, ext1.prm: PROCESS ABENDING.
    I am confused for
    1)WARNING OGG-00752 Oracle GoldenGate Capture for Oracle, ext1.prm: Failed to validate table.. -- as i have DBOPTIONS ALLOWUNUSEDCOLUMN in my extract process.
    2)Bind info for query.
    please help.
    Kind Regards,
    Krishna.

    Hi,
    I started the extract for few tables as suggested and got the output of "ggsevt" as :
    on Source
    Check swap space. Recommended swap/extract: 128G (64bit system).
    2012-07-31 16:33:01 INFO OGG-00993 Oracle GoldenGate Capture for Oracle, ext1.prm: EXTRACT EXT1 started.
    2012-07-31 16:33:01 INFO OGG-01478 Oracle GoldenGate Capture for Oracle, ext1.prm: Output file ./dirdat/INITLOADEMP.DAT
    is using format RELEASE 11.2.
    2012-07-31 16:33:06 INFO OGG-01226 Oracle GoldenGate Capture for Oracle, ext1.prm: Socket buffer size set to 27985 (flu
    sh size 27985).
    2012-07-31 16:56:25 INFO OGG-00991 Oracle GoldenGate Capture for Oracle, ext1.prm: EXTRACT EXT1 stopped normally.
    2012-07-31 17:14:50 INFO OGG-00987 Oracle GoldenGate Command Interpreter for Oracle: GGSCI command (root): send manager
    childstatus.
    2012-07-31 17:14:50 INFO OGG-00963 Oracle GoldenGate Manager for Oracle, mgr.prm: Command received from GGSCI on host m
    ahaeccsbox (CHILDSTATUS).
    on Target:
    2012-07-31 21:50:45 INFO OGG-00963 Oracle GoldenGate Manager for Oracle, mgr.prm: Command received from SERVER on host
    localhost.localdomain (REPORT 27981 7820).
    2012-07-31 21:50:45 INFO OGG-00974 Oracle GoldenGate Manager for Oracle, mgr.prm: Manager started collector process (Po
    rt 7820).
    2012-07-31 21:50:45 INFO OGG-01228 Oracle GoldenGate Collector for Oracle: Timeout in 300 seconds.
    2012-07-31 21:50:50 INFO OGG-01229 Oracle GoldenGate Collector for Oracle: Connected to static-mum-59.185.103.124.mtnl.
    net.in:61873.
    2012-07-31 21:50:50 INFO OGG-01669 Oracle GoldenGate Collector for Oracle: Opening ./dirdat/INITLOADEMP.DAT (byte 0, cu
    rrent EOF 0).
    2012-07-31 22:14:10 INFO OGG-01670 Oracle GoldenGate Collector for Oracle: Closing ./dirdat/INITLOADEMP.DAT.
    2012-07-31 22:14:10 INFO OGG-01676 Oracle GoldenGate Collector for Oracle: Terminating after client disconnect.
    2012-07-31 22:15:48 INFO OGG-01670 Oracle GoldenGate Collector for Oracle: Closing ./dirdat/INITLOADEMP.DAT.
    2012-07-31 22:15:48 INFO OGG-01676 Oracle GoldenGate Collector for Oracle: Terminating after client disconnect.
    Does it mean that my initial load was successful ? or does it indicate something else ? please guide.

  • ERROR   ORA-12514: TNS: unable to start extract process

    Hi Experts,
    I have installed Oracle Golden Gate in the below environment.But unable to start extract process
    Primary site (source): This is production DB and up and running.
    RAC 2 nodes
    Oracle RAC 11.2.0.1.0
    ASM
    Oracle GoldenGate 11g Release 1 (11.1.1.0.0)
    Enterprise Linux Server release 5.5 (Carthage)
    Processor Type x64
    OS 64 bit
    target Site (destination):
    Standalone single server - Non RAC
    Oracle version 11.2.0.1.0
    ASM
    Oracle GoldenGate 11g Release 1 (11.1.1.0.0)
    Enterprise Linux Server release 5.5 (Carthage)
    Processor Type x64
    OS 64 bit
    Getting below error in logs while starting extract process:
    RECOVERY: reset to initial or altered checkpoint.
    2012-08-05 10:34:10  ERROR   OGG-00868  Oracle GoldenGate Capture for Oracle, aaa.prm:  Attaching to
    ASM server asm: (12514) ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor.
    2012-08-05 10:34:10  ERROR   OGG-01668  Oracle GoldenGate Capture for Oracle, aaa.prm:  PROCESS
    ABENDING.[oracle@ ggate]$
    Getting below error while connecting with asm instance directly:
    [oracle@ admin]$ sqlplus sys@asm as sysasm
    SQL*Plus: Release 11.2.0.1.0 Production on Sun Aug 5 11:16:11 2012
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    [oracle@ ~]$ tnsping asm TNS Ping Utility for Linux: Version 11.2.0.1.0 - Production on 05-AUG-2012 11:55
    :42
    Copyright (c) 1997, 2009, Oracle. All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxx-
    scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = ASM) (I
    NSTANCE_NAME = +ASM1)))
    OK (0 msec) Any help Please ?
    Regards
    LazyDBA
    Edited by: LazyDBA11g on Aug 5, 2012 12:14 AM
    Edited by: LazyDBA11g on Aug 5, 2012 11:25 PM
    Edited by: LazyDBA11g on Aug 12, 2012 4:36 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hello JK,
    Thanks a lot for specific response.
    SQL> select INST_ID, NAME, VALUE from gv$parameter where name like '%_listener%';
    INST_ID NAME VALUE
    1 local_listener (DESCRIPTION=(ADDRESS_LIST=(AD
    DRESS=(PROTOCOL=TCP)(HOST=xxx_
    data1-vip)(PORT=1521))))
    1 remote_listener xxxdata-scan:1521
    2 local_listener (DESCRIPTION=(ADDRESS_LIST=(AD
    DRESS=(PROTOCOL=TCP)(HOST=xxx_
    data2-vip)(PORT=1521))))
    2 remote_listener xxxdata-scan:1521
    If I  add REMOTE_LISTENER pointing to SCAN ip address, Does it require DB bounce ? (Its production DB)
    Regards,
    LazyDBA
    Edited by: LazyDBA11g on Aug 10, 2012 12:01 PM
    Edited by: LazyDBA11g on Aug 12, 2012 4:48 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Cannot create process to handle workflow instance conversation

    <Nov 18, 2002 1:04:30 PM IST> <Error> <B2B> <000000> <<Process>
    Hi,
    Iam getting following error when iam trying to invoke
    subworkflow.
    can anyone help me in solving this problem.
    regards
    Ananth
    ERROR: Cannot cr
    eate process null.>
    <Nov 18, 2002 1:04:30 PM IST> <Error> <B2B> <000000> <<B2B-BPM-Plugin> ERROR:
    Cannot create process to handle workflow instance conversation
    com.bea.b2b.protocol.ProcessManager$CreateException: ERROR: Cannot create proces
    s null.

    Hi Ajaz,
    Error description is not detailed enough to provide the solution. You need to post the error message what you got in the server log files. This should contain specific details about the issue.
    Not sure but issue may be related to JVM settings. if it is so, server log file will provide the error description.

Maybe you are looking for