'BAPI_DOCUMENT_CHECKIN2' Parameters input

Hi All,
Can any one help me out in filling up with the parameters to be filled for executing the RFM of ERP on XI system
              CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
                EXPORTING
                  DOCUMENTTYPE            = (Given)
                  DOCUMENTNUMBER          = (Given)
                  DOCUMENTPART            = (Given)
                  DOCUMENTVERSION         = (Given)
                 HOSTNAME                = ' '   (Doubt wat should be given which host ..erp ?/)
                 STATUSINTERN            = ' '
                 STATUSEXTERN            = ' '
                 STATUSLOG               = ' '
                 REVLEVEL                = ' '
                 AENNR                   = ' '
                 PF_HTTP_DEST            = ' ' (Doubt wat to be given ??)
                 PF_FTP_DEST             = ' ' (Doubt wat to be given ??)
               IMPORTING
                 RETURN                  =
                TABLES
                  DOCUMENTFILES           =
                 COMPONENTS              =
                 DOCUMENTSTRUCTURE       =
Kindly asnwer particulary to those paramerts doubt wat to be given ..
thx in advance
regards
Srinivas

Problem solved.Need to pass doc path along with other parameters

Similar Messages

  • Set parameters input automatically in my report and connection to my base

    Hello
    this my programmes , it work it's ok ( see bottom of the page )
    Now i have a rapport rpt with a input edit (example number customer )
    I want by my file jsp that the number customer display automatically
    in my rapport rpt ( variable string or integer or date) and after validate automaticcaly
    and connection to my database automartically ( database oracle 8 user and paswword)
    (by example with my url , i pass a parameters input and automatically i will see
    the rapport rpt ) it's possible , How to make in jsp ?
    thanks to help me
    regards
    Michel
    Ps : Notes fresh  for the connection in my database oracle
    i have modified CrystalReportViewer.jsp but i have an message
    "Information is needed before this report can be processed " why ?
    <%@ page import="com.crystaldecisions.report.web.viewer.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSourceFactory2" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
    <%
    CrystalReportViewer viewer = new CrystalReportViewer();
    ConnectionInfos connInfos = new ConnectionInfos();
    IConnectionInfo connInfo1 = new ConnectionInfo();
    connInfo1.setUserName("user");
    connInfo1.setPassword("pass");
    viewer.refresh();
    Object reportSource = session.getAttribute("reportSource");
    viewer.setReportSource(reportSource);
    viewer.setDatabaseLogonInfos(connInfos);
    viewer.setEnableLogonPrompt(false);
    viewer.processHttpRequest(request, response,getServletConfig().getServletContext(), out);
    viewer.dispose();
    %>
    this programmes are ok (but now i search to display a variable on my report)
    via url
    http://pa-81b36a7e9d/businessobjects/enterprise11/desktoplaunch/opendoc/view_report.jsp?sdoc=axeriatest&user=Administrator&pass=&cms=pa-81b36a7e9d
    CrystalReportViewer.jsp
    <%@ page import = "com.crystaldecisions.report.web.viewer.*"%>
    <%
         CrystalReportViewer viewer = new CrystalReportViewer();
         viewer.setName("CrystalReportViewer");
        viewer.setOwnPage(true);
        //Enable Active-X print mode. 
        viewer.setPrintMode(CrPrintMode.ACTIVEX);
        //Obtain report source of the report that the viewer will display.   
        Object reportSource = session.getAttribute("reportSource");
        viewer.setReportSource(reportSource);
        viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    %>
    view_report.jsp
    <%
    Applies to Versions:     XI
    Creation Date:     Febuary 28 2005
    Description:
                             This sample to demonstrates how to view a Crystal Report on demand in
        *                         the zero-client DHTML viewer. 
    Author:               CW.
    %>
    <%@ page import = "com.crystaldecisions.sdk.occa.infostore.*,
                       com.crystaldecisions.sdk.plugin.desktop.common.*,
                       com.crystaldecisions.sdk.framework.*,
                       com.crystaldecisions.sdk.occa.security.*,
                       com.crystaldecisions.sdk.exception.SDKException,
                       com.crystaldecisions.sdk.occa.managedreports.IReportSourceFactory,
                       java.util.Locale,
                       com.crystaldecisions.sdk.occa.report.reportsource.IReportSource"
    %>
    <%@ include file = "logonform.jsp" %>
    <%
         String cms             = request.getParameter("cms");
         String user             = request.getParameter("user");
         String pass             = request.getParameter("pass");
         String sdocName       = request.getParameter("sdoc");
         try {
             //If logon information is required, display the logonForm and exit.
              //Create a special logon form that requests 2 Report Names
              //(code for LogonForm class is included).
              LogonForm logonform = new LogonForm(response, request, LogonForm.REPORT_NAME);
              //if (logonform.display_if_needed()) return;
              // ici doit recuperer le nom du document
              logonform.reportname[0] =  sdocName ; //"diagramme";
              //Log in.
              IEnterpriseSession enterpriseSession = CrystalEnterprise.getSessionMgr().logon(user,pass,cms,"secEnterprise");
             //Grab the InfoStore from the httpsession
             IInfoStore infoStore = (IInfoStore)enterpriseSession.getService("", "InfoStore");
             //Query for the report object in the CMS.  See the Developer Reference guide for more information the query language. 
             IInfoObjects oInfoObjects = (IInfoObjects)infoStore.query("SELECT TOP 1 * " +
                                                                                     "FROM CI_INFOOBJECTS " +
                                                                                "WHERE SI_PROGID = 'CrystalEnterprise.Report' AND SI_INSTANCE=0 AND SI_NAME='" + logonform.reportname[0] + "'" );
             if (oInfoObjects.size() > 0) {
                  //Retrieve the latest instance of the report
                  IInfoObject oInfoObject = (IInfoObject) oInfoObjects.get(0);
                  //Use the PS report factory to obtain a report source that will be processed on the Page Server.   
                  IReportSourceFactory factoryPS = (IReportSourceFactory)enterpriseSession.getService("PSReportFactory");
                  Object reportSource = factoryPS.openReportSource((oInfoObject), Locale.ENGLISH);
                  session.setAttribute("reportSource", reportSource);
                  //View the report in the standard DHTML viewer.        
                  response.sendRedirect("CrystalReportViewer.jsp");
             else {
                  out.println("Report " + logonform.reportname[0] + " not found.");     
        catch(SDKException sdkEx) {
              out.println(sdkEx);  
    %>
    logonform.jsp
    <%!
    /**************************** class LogonForm ***************************
    This logon form is used to gather the logon information needed
    to login to Enterprise
    private class LogonForm {
         HttpServletResponse response;
         HttpServletRequest request;
         int num_reports_needed = 1;
         String[] reportname;
         public static final int NONE = 0;
         public static final int REPORT_NAME = 1;
         public static final int REPORT_NAME_X2 = 2;
    Constructor - Save the response and request objects
         LogonForm(HttpServletResponse response, HttpServletRequest request)
              //this.response = response;
              //this.request = request;
    Constructor with options - Add some optional boxes to request other
                               input from the user such as reportnames.
         LogonForm(HttpServletResponse response, HttpServletRequest request, int extra_requests) {
              this.response = response;
              this.request = request;
              switch (extra_requests) {
                   case NONE:
                        break;
                   case REPORT_NAME:
                        num_reports_needed = 1;
                        reportname = new String[1];
                        break;
                   case REPORT_NAME_X2:
                        num_reports_needed = 2;
                        reportname = new String[2];
                        break;
    %>

    oh thanks but i have an error on this example  Viewingview_report_parameters
    but where is my connection to my database in file jsp ?
    thanks
    windows
    CMS  NAme  = MyCMS
    user = myuser
    pass = password
    aut = enterprise
    doc = my doc
    ok
    after enter values : i Put my values
    ok
    after click on button view report this is error
    Etat HTTP 500 -
    type Rapport d'exception
    message
    description Le serveur a rencontré une erreur interne () qui l'a empêché de satisfaire la requête.
    exception
    org.apache.jasper.JasperException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    cause mère
    java.lang.NullPointerException
         org.apache.jsp.opendoc.CrystalReportViewer_jsp._jspService(CrystalReportViewer_jsp.java:80)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note La trace complète de la cause mère de cette erreur est disponible dans les fichiers journaux de Apache Tomcat/5.0.27.
    Apache Tomcat/5.0.27

  • [Interface] - Passing variety parameters/input to PL/SQL report

    Hi,
    I've the PL/SQL report which can allow passing in the parameter, i use '&'.
    the report is given to the end user who do not have the IDE for PL/SQL. the machanism of the report is generated into the spool file and import into excel format.
    now i am wondering how to create a tool using SQL or PL/SQL to allow the end user to choose the parameter(s) dynamically and passing into the PL/SQL to generate the report based on the input selected.
    the parameters like below:
    package code :
    week no :
    year :
    department :
    all the above parameters, the data would be selected from the existing lookup table. the user is allow to select more than 1 input for specified parameter for instance i want to spool report for week 1 until week 5.
    pls advise any solution on this topic. thanks

    hi scoot,
    thank for reply.
    yep, i'm using sql*plus and also sql navigator 4.0 .
    the user don't have the software to interact. i'm thinking of build an simple interface using VB and passing in the parameter then initiate the sql*plus to run the program in background mode.
    but if you have any other solution which not need to use other software to wirte such program , pls let me know immediately. thank

  • Parameters input when creating a module/report

    Hello :-)
    Im trying to create a Generic Process Module, im using a report i have made in oracle reports (RDF) it will output a pdf (R60)
    But i have a parameter input on my RDF
    I dont know how to setup up the Parameters in the Generic module setup.....its askin for seq numbers??
    Please help?!

    Yes as i stated above i have created a report in oracle reports RDF, i know what what the extension means!!!
    But im trying to create a generic module process in oracle9 DATABASE, which i would like it to run the rdf as a generic module process....i have done this before with sql reports, but i need help with the sequnce number!!

  • Configuration parameters input help va01 BAPI_SALESORDER_CREATEFROMDAT2..

    BAPI_SALESORDER_CREATEFROMDAT2
    Can some one tell me  what the fields mean, I know they are related to the configuration parameters in VA01... but what i want to know is what are the values to be passed into these structures and how...
    if possible can some one also specifically tell me the meaning of config_id root_id inst_id.... what is the concept SAP has used to design these configuration parameters screens etc... what are the classes etc fs it related to PP module)
    ORDER_CFGS_REF
    ORDER_CFGS_INST
    ORDER_CFGS_PART_OF
    ORDER_CFGS_VALUE
    ORDER_CFGS_BLOB
    ORDER_CFGS_VK
    ORDER_CFGS_REFINST
    Thank you.
    Points awarded.

    These flds are for config materials related....

  • Calling stored procedures with parameters with the Database Connectivi​ty Toolkit

    Hi all,
    I am new to the forum and am having difficulty finding a solution to a particular problem I am having regarding using the LabVIEW Database Connectivity Toolkit on a project I am currently working on at my job.  I have a database in which I have tables and stored procedures with parameters.  Some of these stored procedures have input, output, and return parameters.
    I have been trying to follow this example but to no avail:  http://digital.ni.com/public.nsf/allkb/07FD1307460​83E0686257300006326C4?OpenDocument
    One such stored procedure I am working on implementing is named "dbo.getAllowablePNs", which executes "SELECT * from DeviceType" (DeviceType is the table).  In this case, it does not require an input parameter, it has an output parameter that generates the table [cluster], and has a return parameter which returns an integer value (execution status code) to show if an error occurred.  The DeviceType table has 3 columns; ID (PK, int, not null), PN (nvarchar(15), null), and NumMACAddresses (int, null).  I have gone over many examples and have talking to NI support to try to implement this and similar stored procedures in LabVIEW but have not been successful.  I am able to connect to the database with the Open Connection VI without error, but am running into some confusion following this step.  I am then trying to use the Create Parameterized Query VI to call the stored procedure and set the parameters.  I assume I would then use the Set Parameter Value VI for each parameter that is wired into the parameters input on the previous Parameterized Query VI?  I am also having some confusion during and following these steps as well.  I would greatly appreciate any advice or suggestions anyone might have in regards to this situation as I am not a SQL expert.  Also, I would be happy to provide any more information that would be helpful.
    Regards,
    Jon
    Solved!
    Go to Solution.

    Also, I don't know if this would be helpful but here is the actual stored procedure in SQL:
    CREATEPROCEDURE [dbo].[getLastSequenceNumber]
    @p1 nvarchar(10)='WO-00000'
    AS
    BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SETNOCOUNTON;
    -- Insert statements for procedure here
    selectmax(SequenceNumber)from Devices where WorkOrderNumber= @p1
    END
    GO

  • How do i use ranges and parameters together?

    Plz help me...
    I have a selection screen with about 8 parameters out of which two are mandatory, i.e. a flag and the date of creation. What I need to do is delete certain entries from a database table based on the parameters input by the user. Now the problem is when i am using the delete statement using where statement..
    delete from zinbd_delv where vbeln     = vbeln    and             
                                 posnr     = posnr    and
                                 lfimg     = lfimg    and
                                 lfdat     = lfdat    and
                                 created  = created and
                                 status   = status.
    But suppose the user enters data in only the two mandatory fields and say status = 'X' and created = 'XX/XX/XXXX'. In that case it should delete all the entries from the table where status = X and creation date as specified but since it will find the other parameters as blank it will fail. Can we use range table for this...plz tell me how to do it.

    i think if you are using parameters then you have to enter the value in that.
    or
    select-options : sop for mara-matnr no intervals no-extension.
    for single entry.
    data : itab like zinbd_delv occurs 0 with header line.
    select * from zinbd_delv ito table itab where vbeln in vbeln and
    posnr in posnr and
    lfimg in lfimg and
    lfdat in lfdat and
    created in created and
    status in status.
    delete zinbd_delv from table itab.
    commit work.
    regards
    shiba dutta

  • XML message as input for webservice gives deserialization error

    Hi,
    jDeveloper 10.1.3
    BPEL PM 10.1.2.0.2
    Carrental example
    Problem:
    For the Business Rule Engine I did the Carrental XML example. Based on the java application that connects to the BR engine, I created a webservice in jDeveloper and deployed it to my localhost AS 10.1.3. The webservice has a testRule method that accepts a String buf as input. For now, the only thing the webservice does is return a 'do nothing' string. This works fine:
    When deployed the testpage generates the following SOAP message:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body xmlns:ns1="http://carrental/types/">
    <ns1:testRuleElement>
    <ns1:buf>my xml message</ns1:buf>
    </ns1:testRuleElement>
    </soap:Body>
    </soap:Envelope>
    The SOAP response is:
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://carrental/types/"><env:Body><ns0:testRuleResponseElement><ns0:result>do nothing...</ns0:result></ns0:testRuleResponseElement></env:Body></env:Envelope>
    In BPEL Designer I create a new asynchronous process ValidateBR, with a partnerlink for the webservice, based on the following WSDL file:
    <definitions
    name="Rent"
    targetNamespace="http://carrental/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://carrental/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:tns0="http://carrental/types/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    >
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://carrental/types/"
    elementFormDefault="qualified" xmlns:tns="http://carrental/types/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
    <complexType name="testRule">
    <sequence>
    <element name="buf" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="testRuleResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="version">
    <sequence/>
    </complexType>
    <complexType name="versionResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="testRuleElement" type="tns:testRule"/>
    <element name="testRuleResponseElement" type="tns:testRuleResponse"/>
    <element name="versionElement" type="tns:version"/>
    <element name="versionResponseElement" type="tns:versionResponse"/>
    </schema>
    </types>
    <message name="Rent_testRule">
    <part name="parameters" element="tns0:testRuleElement"/>
    </message>
    <message name="Rent_testRuleResponse">
    <part name="parameters" element="tns0:testRuleResponseElement"/>
    </message>
    <message name="Rent_version">
    <part name="parameters" element="tns0:versionElement"/>
    </message>
    <message name="Rent_versionResponse">
    <part name="parameters" element="tns0:versionResponseElement"/>
    </message>
    <portType name="Rent">
    <operation name="testRule">
    <input message="tns:Rent_testRule"/>
    <output message="tns:Rent_testRuleResponse"/>
    </operation>
    <operation name="version">
    <input message="tns:Rent_version"/>
    <output message="tns:Rent_versionResponse"/>
    </operation>
    </portType>
    <binding name="RentSoapHttp" type="tns:Rent">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="testRule">
    <soap:operation soapAction="http://carrental//testRule"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    <operation name="version">
    <soap:operation soapAction="http://carrental//version"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    </binding>
    <service name="Rent">
    <port name="RentSoapHttpPort" binding="tns:RentSoapHttp">
    <soap:address location="http://localhost:7780/Rules-rent-context-root/RentSoapHttpPort"/>
    </port>
    </service>
    </definitions>
    I defined the process variable inputVariable to be defined based on the carrental.xsd schema. I assign the inputVariable to the 'buf' parameter of the webservice as shown below in the ValidateBR.bpel
    <!--
    // Oracle JDeveloper BPEL Designer
    // Created: Mon Mar 27 16:02:22 CEST 2006
    // Author: haanrw
    // Purpose: Asynchronous BPEL Process
    -->
    <process name="ValidateBR" targetNamespace="http://xmlns.oracle.com/ValidateBR" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" 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:ns1="http://rules.oracle.com/carrental" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns3="http://carrental/types/" xmlns:ns2="http://carrental/" xmlns:client="http://xmlns.oracle.com/ValidateBR" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"><!-- ================================================================= --><!-- PARTNERLINKS --><!-- List of services participating in this BPEL process --><!-- ================================================================= -->
    <partnerLinks><!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:ValidateBR" myRole="ValidateBRProvider" partnerRole="ValidateBRRequester"/>
    <partnerLink name="CheckBR" partnerRole="Rent_Role" partnerLinkType="ns2:Rent_PL"/>
    </partnerLinks><!-- ================================================================= --><!-- VARIABLES --><!-- List of messages and XML documents used within this BPEL process --><!-- ================================================================= -->
    <variables><!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable" messageType="client:ValidateBRRequestMessage"/><!-- Reference to the message that will be sent back to the
    requester during callback
    -->
    <variable name="outputVariable" messageType="client:ValidateBRResponseMessage"/>
    <variable name="InvokeValidateBR_testRule_InputVariable" messageType="ns2:Rent_testRule"/>
    <variable name="InvokeValidateBR_testRule_OutputVariable" messageType="ns2:Rent_testRuleResponse"/>
    </variables><!-- ================================================================= --><!-- ORCHESTRATION LOGIC --><!-- Set of activities coordinating the flow of messages across the --><!-- services integrated within this business process --><!-- ================================================================= -->
    <sequence name="main"><!-- Receive input from requestor.
    Note: This maps to operation defined in ValidateBR.wsdl
    -->
    <receive name="receiveInput" partnerLink="client" portType="client:ValidateBR" operation="initiate" variable="inputVariable" createInstance="yes"/><!-- Asynchronous callback to the requester.
    Note: the callback location and correlation id is transparently handled
    using WS-addressing.
    -->
    <assign name="Assign_1">
    <copy>
    <from variable="inputVariable" part="payload" query="/ns1:repository"/>
    <to variable="InvokeValidateBR_testRule_InputVariable" part="parameters" query="/ns3:testRuleElement/ns3:buf"/>
    </copy>
    </assign>
    <invoke name="InvokeValidateBR" partnerLink="CheckBR" portType="ns2:Rent" operation="testRule" inputVariable="InvokeValidateBR_testRule_InputVariable" outputVariable="InvokeValidateBR_testRule_OutputVariable"/>
    <invoke name="callbackClient" partnerLink="client" portType="client:ValidateBRCallback" operation="onResult" inputVariable="outputVariable"/>
    </sequence>
    </process>
    When I deploy the process and initiate a testinstance from the BPEL console, the assign looks as follows:
    <InvokeValidateBR_testRule_InputVariable>
    <part name="parameters" >
    <testRuleElement>
    <buf>
    <driver>
    <driver-license-number>15-PS-FZ</driver-license-number>
    <name>Rob de Haan</name>
    <age>39</age>
    <vehicle-type>Saab</vehicle-type>
    <license-type>B</license-type>
    <pre-convictions>0</pre-convictions>
    <pre-accidents>0</pre-accidents>
    <able-to-drive>true</able-to-drive>
    </driver>
    </buf>
    </testRuleElement>
    </part>
    </InvokeValidateBR_testRule_InputVariable>
    The InvokeValidateBR shows the following error:
    <remoteFault>
    <part name="code" >
    <code>Client</code>
    </part>
    <part name="summary" >
    <summary>when invoking endpointAddress 'http://localhost:7780/Rules-rent-context-root/RentSoapHttpPort', caught exception while handling request: deserialization error: unexpected XML reader state. expected: END but found: START: {http://rules.oracle.com/carrental}driver</summary>
    </part>
    <part name="detail" >
    <detail>AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client faultSubcode: faultString: caught exception while handling request: deserialization error: unexpected XML reader state. expected: END but found: START: {http://rules.oracle.com/carrental}driver faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace:caught exception while handling request: deserialization error: unexpected XML reader state. expected: END but found: START: {http://rules.oracle.com/carrental}driver at org.collaxa.thirdparty.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:221) at org.collaxa.thirdparty.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:128) at org.collaxa.thirdparty.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1083) at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.collaxa.thirdparty.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:226) at org.collaxa.thirdparty.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:645) at org.collaxa.thirdparty.apache.axis.Message.getSOAPEnvelope(Message.java:424) at org.collaxa.thirdparty.apache.axis.client.Call.invokeEngine(Call.java:2754) at org.collaxa.thirdparty.apache.axis.client.Call.invoke(Call.java:2715) at org.collaxa.thirdparty.apache.axis.client.Call.invoke(Call.java:1737) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeAXISMessaging(WSIFOperation_ApacheAxis.java:2113) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1611) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.executeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1083) at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:452) at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:327) at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:189) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:601) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:317) at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:188) at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3408) at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1836) at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:166) at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:252) at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5438) at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1217) at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:511) at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke(CubeDeliveryBean.java:335) at ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.handleInvoke(ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.java:1796) at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:37) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:125) at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:70) at com.collaxa.cube.engine.ejb.impl.WorkerBean.onMessage(WorkerBean.java:86) at com.evermind.server.ejb.MessageDrivenBeanInvocation.run(MessageDrivenBeanInvocation.java:123) at com.evermind.server.ejb.MessageDrivenHome.onMessage(MessageDrivenHome.java:755) at com.evermind.server.ejb.MessageDrivenHome.run(MessageDrivenHome.java:928) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Thread.java:534) {http://xml.apache.org/axis/}hostname:NL-GRH-L120981 </detail>
    </part>
    </remoteFault>
    FYI: the webservice only contains a return "do nothing"
    Question:
    What is the proper way to assign an XML message to the web service?
    Any help would be appreciated.
    Rob
    Message was edited by:
    [email protected]

    Hi,
    Reading only is not possible..
    I will be still more clear in my question this time..
    I have deployed my bpel. My receiveInputVariable is of type xsd:string.
    So when i run the bpel in my console, i will be asked to give input as string data.
    So when i go to the XMLView, it will be like this.
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body xmlns:ns1="http://xmlns.oracle.com/Sabari_POC_Appln/DOM_Parser/ConvertToBLOB">
              <ns1:process>
                   <ns1:input></ns1:input>
    </ns1:process>
    </soap:Body>
    </soap:Envelope>
    Now, i am going to give my input like this. --- which leads to error.
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body xmlns:ns1="http://xmlns.oracle.com/Sabari_POC_Appln/DOM_Parser/ConvertToBLOB">
              <ns1:process>
                   <ns1:input>
    *<?xml version="1.0" encoding="UTF-8"?>*
    *<projects>*
    *<project id = "BP001">*
    *<name>Banking Project</name>*
    *<start-date>Jan 10 1999</start-date>*
    *<end-date>Jan 10 2003</end-date>*
    *</project>*
    *<project id = "TP001">*
    *<name>Telecommunication Project</name>*
    *<start-date>March 20 1999</start-date>*
    *<end-date>July 30 2004</end-date>*
    *</project>*
    *<project id = "PP001">*
    *<name>Portal Project</name>*
    *<start-date>Dec 10 1998</start-date>*
    *<end-date>March 10 2006</end-date>*
    *</project>*
    *</projects>*
    </ns1:input>
    </ns1:process>
    </soap:Body>
    </soap:Envelope>
    This xml is not accepted as string input.. so kindly suggest me some other solution.
    I also tried.. like.. making my receiveInputVariable of type xsd:anyType, it also dint help. same error occurred.
    Thanks,
    Sabarisri. N
    Edited by: Sabarisri N on Jul 20, 2011 1:03 PM

  • How to pass parameters to the list of ESS Jobs that are in a Job Set?

    All,
    Oracle Fusion Application Version: 11.1.7.0.0
    I am new to Fusion Apps (I was ADF Developer before this), got some hands on with Fusion Application. Need some help/guidance related to ESS Job. I have 2 custom ESS Job created (1st of type Sql Plus to query and spool the result into a file into local server and 2nd of type host script that accesses the spooled file and sends it to destination server). I've put these two job together in a Job set (Serial execution) and it works fine.
    Requirement:
    Whenever the Job set is executed, generated file should be appended with System Date and Time. Following are the two ways that are coming into my mind to achieve this.
    Way 1. First job has to read the systimestamp (in desired format) from DB, do actual query execution, spool the resultset into a file named with time stamp details, place it in a local directory. As a part of completion of the 1st Job, 1st Job has to pass this systimestamp value to the 2nd Job (How?) so that it can pick the right file from local directory for its work.
    Way 2. We should be able to create parameters at Job Set level (and this too should not be a constant value but dynamic, say sysdatetime) so that both the job can access this value.
    Though I am getting some thought on how the communication between these two jobs should be happened, I don't know whether they are possible, if so, how to do.. Can anybody suggest? Your help would be appreciated!

    Is the timestamp used in the processing other than uniquely identify the file ? If it is then do note that you may need to take into account timezones, slight differences in the time etc. in your processing  If not you could potentially use the request identifier or some other unique identifier instead.
    In any case you can pass information between the jobs; for details refer to:
    Defining and Using Job Sets Supporting Input and Output Forwarding in Job Sets
    Using Parameters and System Properties
    Using System Properties
    SystemProperty (Oracle Enterprise Scheduler Service API Reference)
    So depending on your requirements you could define job set step parameters, input / output forwarding or name value pairs on the ENVIRONMENT_VARIABLES system property.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Passing Parameters to an IAC Iview

    I am trying to fill in a field name for an IAC Iview. It renders the requested transaction, but doesn't fill out the field. I am using the ApplicationParameter property with an IAC Transaction iview.
    In the ApplicationParameter field I just have one value: <fieldname>=<value>
    I am able to get this to work using a web gui transaction iview, and it fills out the requested field ok. However, I have to use a IAC transaction iview because of its abiliy to hide buttons and the transaction box, so any clues as to would be appreciated.
    Regards,
    Tom

    Hi Tom,
    Please go through these thread, i m sure they will help you.
    Passing parameters (input range/more parameters) to IAC Transaction iView
    Passing parameters to IAC Transaction iView
    http://help.sap.com/saphelp_nw04/helpdata/en/9e/7d9713087311d7b84600047582c9f7/frameset.htm
    Regards
    Atul Shrivastava
    PS: Award points for helpful answer

  • Using error codes.txt and error rings don't allow parameter inputs like custom error rings?

    The error ring is very useful, especially with its parameterized inputs you can specific with %s, %f and %d parameters.  I'd like to do the same thing in my fixed error codes using the error ring so that I can localize them into mulitple languages, but it seems that LabVIEW error codes from project text files never detect or support the parameter inputs, you get a error ring, but no input parameters.  If you use the same string in a customer error code, it gives you the parameter input but then its hardcoded and you can't localize it.  What gives?
    Is there some other way to configure the error rings to use a project file for the error codes but still support the parameter inputs?
    Solved!
    Go to Solution.

    Hi Mike_King
    Here is a VI snippet that I created with two different approaches, in the first one I used the format into string, the second one the function search and replace.
    Here are some links with information about the functions that I used.
    Format Into String Function - LabVIEW 2011 Help
    Search and Replace String Function - LabVIEW 2011 Help
    Regards
    Esteban R.
    Attachments:
    Generate error code.png ‏34 KB

  • String variable - within parameters statement

    Hi,
    is it possible to define a string variable like:
       PARAMETERS: var_xxx type string,
    It doesnt works. Why?
    Thanks
    Markus

    HI,
         For patameters you can only use FIXED-LENGTH types' Since String is a data type of variable length you can not use it for declaring parameters. Both string and Xstring cannot be used as both are variable lengths. This only for releses before ERP 2005. From ERP 2005 onwards you can type using string but not using xstring.
    You can create your own type with 
    TYPES: param_type(200) type c.
    PARAMETERS: input type param_type.
    Regards,
    Sesh

  • Error while creating new projects using api

    Hello,
    I am having error while creating projects using standard api, PA_PROJECT_PUB.CREATE_PROJECTS. The error I am having is as follow.
    Source template ID is invalid.
    ===
    My code is as follow:
    SET SERVEROUTPUT ON SIZE 1000000
    SET VERIFY OFF
    define no=&amg_number
    DECLARE
    -- Variables used to initialize the session
    l_user_id NUMBER;
    l_responsibility_id NUMBER;
    cursor get_key_members is
    select person_id, project_role_type, rownum
    from pa_project_players
    where project_id = 1;
    -- Counter variables
    a NUMBER := 0;
    m NUMBER := 0;
    -- Variables needed for API standard parameters
    l_commit VARCHAR2(1) := 'F';
    l_init_msg_list VARCHAR2(1) := 'T';
    l_api_version_number NUMBER :=1.0;
    l_return_status VARCHAR2(1);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(2000);
    -- Variables used specifically in error message retrieval
    l_encoded VARCHAR2(1) := 'F';
    l_data VARCHAR2(2000);
    l_msg_index NUMBER;
    l_msg_index_out NUMBER;
    -- Variables needed for Oracle Project specific parameters
    -- Input variables
    l_pm_product_code VARCHAR2(30);
    l_project_in pa_project_pub.project_in_rec_type;
    l_key_members pa_project_pub.project_role_tbl_type;
    l_class_categories pa_project_pub.class_category_tbl_type;
    l_tasks_in pa_project_pub.task_in_tbl_type;
    -- Record variables for loading table variables above
    l_key_member_rec pa_project_pub.project_role_rec_type;
    l_class_category_rec pa_project_pub.class_category_rec_type;
    l_task_rec pa_project_pub.task_in_rec_type;
    -- Output variables
    l_workflow_started VARCHAR2(100);
    l_project_out pa_project_pub.project_out_rec_type;
    l_tasks_out pa_project_pub.task_out_tbl_type;
    -- Exception to call messag handlers if API returns an error.
    API_ERROR EXCEPTION;
    BEGIN
    -- Initialize the session with my user id and Projects, Vision Serves (USA0
    -- responsibility:
    select user_id into l_user_id
    from fnd_user
    where user_name = 'SSHAH';
    select responsibility_id into l_responsibility_id
    from fnd_responsibility_tl
    where responsibility_name = 'Projects Implementation Superuser';
    pa_interface_utils_pub.set_global_info(
    p_api_version_number => l_api_version_number,
    p_responsibility_id => l_responsibility_id,
    p_user_id => l_user_id,
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status);
    if l_return_status != 'S' then
    raise API_ERROR;
    end if;
    -- Provide values for input variables
    -- L_PM_PRODUCT_CODE: These are stored in pa_lookups and can be defined
    -- by the user. In this case we select a pre-defined one.
    select lookup_code into l_pm_product_code
    from pa_lookups
    where lookup_type = 'PM_PRODUCT_CODE'
    and meaning = 'Conversion';
    -- L_PROJECT_IN: We have to provide values for all required elements
    -- of this record (see p 5-13, 5-14 for the definition of the record).
    -- Customers will normally select this information from some external
    -- source
    l_project_in.pm_project_reference := 'AGL-AMG Project &no';
    l_project_in.project_name := 'AGL-AMG Project &no';
    l_project_in.created_from_project_id := 1;
    l_project_in.carrying_out_organization_id := 2864; /*Cons. West*/
    l_project_in.project_status_code := 'UNAPPROVED';
    l_project_in.start_date := '01-JAN-11';
    l_project_in.completion_date := '31-DEC-11';
    l_project_in.description := 'Trying Hard';
    l_project_in.project_relationship_code := 'Primary';
    -- L_KEY_MEMBERS: To load the key member table we load individual
    -- key member records and assign them to the key member table. In
    -- the example below I am selecting all of the key member setup
    -- from an existing project with 4 key members ('EE-Proj-01'):
    for km in get_key_members loop
    -- Get the next record and load into key members record:
    l_key_member_rec.person_id := km.person_id;
    l_key_member_rec.project_role_type := km.project_role_type;
    -- Assign this record to the table (array)
    l_key_members(km.rownum) := l_key_member_rec;
    end loop;
    -- L_CLASS_CATEGORIES: commented out below should fix the error we get
    -- because the template does not have an assigment for the mandatory class
    -- 'BAS Test'
    l_class_category_rec.class_category := 'Product';
    l_class_category_rec.class_code := 'Non-classified';
    -- Assign the record to the table (array)
    l_class_categories(1) := l_class_category_rec;
    -- L_TASKS_IN: We will load in a single task and a subtask providing only
    -- the basic fields (see pp. 5-16,5-17,5-18 for the definition of
    -- the task record)
    l_task_rec.pm_task_reference := '1';
    l_task_rec.pa_task_number := '1';
    l_task_rec.task_name := 'Construction';
    l_task_rec.pm_parent_task_reference := '' ;
    l_task_rec.task_description := 'Plant function';
    -- Assign the top task to the table.
    l_taskS_in(1) := l_task_rec;
    -- Assign values for the sub task
    l_task_rec.pm_task_reference := '1.1';
    l_task_rec.pa_task_number := '1.1';
    l_task_rec.task_name := 'Brick laying';
    l_task_rec.pm_parent_task_reference := '1' ;
    l_task_rec.task_description := 'Plant building';
    -- Assign the subtask to the task table.
    l_tasks_in(2) := l_task_rec;
    -- All inputs are assigned, so call the API:
    pa_project_pub.create_project
    (p_api_version_number => l_api_version_number,
    p_commit => l_commit,
    p_init_msg_list => l_init_msg_list,
    p_msg_count => l_msg_count,
    p_msg_data => l_msg_data,
    p_return_status => l_return_status,
    p_workflow_started => l_workflow_started,
    p_pm_product_code => l_pm_product_code,
    p_project_in => l_project_in,
    p_project_out => l_project_out,
    p_key_members => l_key_members,
    p_class_categories => l_class_categories,
    p_tasks_in => l_tasks_in,
    p_tasks_out => l_tasks_out);
    -- Check the return status, if it is not success, then raise message handling
    -- exception.
    IF l_return_status != 'S' THEN
    dbms_output.put_line('Msg_count: '||to_char(l_msg_count));
    dbms_output.put_line('Error: ret status: '||l_return_status);
    RAISE API_ERROR;
    END IF;
    -- perform manual commit since p_commit was set to False.
    COMMIT;
    --HANDLE EXCEPTIONS
    EXCEPTION
    WHEN API_ERROR THEN
    FOR i IN 1..l_msg_count LOOP
    pa_interface_utils_pub.get_messages(
    p_msg_count => l_msg_count,
    p_encoded => l_encoded,
    p_msg_index => i,
    p_msg_data => l_msg_data,
    p_data => l_data,
    p_msg_index_out => l_msg_index_out);
    dbms_output.put_line('ERROR: '||to_char(l_msg_index_out)||': '||l_data);
    END LOOP;
    rollback;
    WHEN OTHERS THEN
    dbms_output.put_line('Error: '||sqlerrm);
    FOR i IN 1..l_msg_count LOOP
    pa_interface_utils_pub.get_messages(
    p_msg_count => l_msg_count,
    p_encoded => l_encoded,
    p_msg_index => i,
    p_msg_data => l_msg_data,
    p_data => l_data,
    p_msg_index_out => l_msg_index_out);
    dbms_output.put_line('ERROR: '||to_char(l_msg_index_out)||': '||l_data);
    END LOOP;
    rollback;
    END;
    ===
    Msg_count: 1
    Error: ret status: E
    ERROR: 1: Project: 'AGL-AMG Project 1123'
    Source template ID is invalid.
    PL/SQL procedure successfully completed.

    I was using a custom Application, which had a id other then 275 (which belongs to Oracle projects)

  • Support Package Import Error in ECC 6.0 SR2

    Hi,
    We tried to upgrade EA-GLTRADE in our ECC 6.0 SR 2 system with
    SAPKGPGD07 patch during which, we encounter with some error at
    DDIC_ACTIVATION. (Attached: Entire Log)
    Note:
    We have already updated the Kernal with latest patch and SPAM with
    latest version 7.00/0023.
    We also applied dependency patches for SAPKGPGD07.
    Please give us the steps to resolve it or to reset the Queue so that
    atleast we can continue with other patches
    Thanks,
    Vignesh P,
    Log from Log File:               
    ides\sapmnt\trans\log\SAPAGPGD07.I01
    Log File:               
    ides\sapmnt\trans\log\SAPAGPGD07.I01
            ABAP Dictionary: Activation
            Transport request   : SAPKGPGD07
         &#61487;        System              : I01
            tp path             : tp
            Version and release: 370.01.01 700
         3T             Program start============================================================
            Mass Activation
            =========================================================================
         &#61487;        Process..................: ides_9
            User.....................: DDIC
            Date, time...............: 20.04.2007, 17:14:35
            Platform.................: CUSTOMER-I01(700)/MSSQL/WindowsNT/ides
            Tool.....................: BATCH/RADMASG0
            Log......................: F,
    ides\sapmnt\trans\tmp\SAPAGPGD07.I01
            Program parameters:
            Input Medium...............: Transp. Request SAPKGPGD07
            Activation Method..........: Inactv.
            Chk Mode...................: T
            Version to be activated....: M
            Versions to be deleted.....: Delete Only Active Versions
            Lock Against Paral. Exec...: Shared
            Independent Statistics Log.: being written
            Parallel Mode..............: Switched on
            ..Resources................: 50% of Dialog Processes, Maximum 4 Processes
            .Costs for Each Task.......: Minimum: 3.000, Maximum: 150.000
            =========================================================================
            Number of objects to be analyzed: 121
            Number of relevant dependencies: 108
            Level 1:42 objects assigned, 52 less dependencies
            Level 2:34 objects assigned, 35 less dependencies
            Level 3:27 objects assigned, 10 less dependencies
            Level 4:7 objects assigned, 7 less dependencies
            Level 5:7 objects assigned, 4 less dependencies
            Level 6:4 objects assigned, 0 less dependencies
            Graph_Analysis: 121 objects on 6 topological levels
            Start phase 001 **********************************************************
                  Object Activation
         3T             *** Activate objects at level 1
    Parallel execution with maximal 3 concurrent tasks *
            Total of 42 objects with 28.630 costs in 8 tasks
         3T             Activate data element WB2_DEFAULT_TEW
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_FIELD
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KBETR_BAPI
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KBETR_SCALE_BAPI
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KOMXWRT_BAPI
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_KSTBW_SCALE_BAPI
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activate data element WB2_ORDER_KEY
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activate table BAPITCCOND
            Table BAPITCCOND was activated successfully
            Activate table BAPITCCONDCX
            Table BAPITCCONDCX was activated successfully
            Activate table BAPITCCONDD
            Table BAPITCCONDD was activated successfully
            Activate table BAPITCCONDDCX
            Table BAPITCCONDDCX was activated successfully
            Activate table E1BPTCCOND
            Table E1BPTCCOND was activated successfully
            Activate table E1BPTCCONDCX
            Table E1BPTCCONDCX was activated successfully
            Activate table E1BPTCCONDD
            Table E1BPTCCONDD was activated successfully
            Activate table E1BPTCCONDDCX
            Table E1BPTCCONDDCX was activated successfully
            Activate table KOMEXPENSE
            Table KOMEXPENSE was activated successfully
            Activate table KOMTCKO
            Table KOMTCKO was activated successfully
            Activate table KOMTCKOCX
            Table KOMTCKOCX was activated successfully
            Activate table KOMTCKOE
            Table KOMTCKOE was activated successfully
            Activate table KOMWBHIE_NEW
            Table KOMWBHIE_NEW was activated successfully
            Activate table KOMWBHKEX_NEW
            Table KOMWBHKEX_NEW was activated successfully
            Activate table KOMWBHKE_NEW
            Table KOMWBHKE_NEW was activated successfully
            Activate table WB2_CHANGED_FIELDS
            Table WB2_CHANGED_FIELDS was activated successfully
            Activate table WB2_COND_MAP
            Table WB2_COND_MAP was activated successfully
            Activate table WB2_KONV_SELECT
            Table WB2_KONV_SELECT was activated successfully
            Activate table WB2_SCALE_EXTERNAL
            Table WB2_SCALE_EXTERNAL was activated successfully
            Activate table WBHID_NEW
            WBHID_NEW-LGOBE: Table KOMWBHI in search help attachment differs from table of search field
            Table WBHID_NEW was activated successfully
            Activate table WCOCOH
            WCOCOH-RATE: Table KOMWCOCOH in search help attachment differs from table of search field
            Table WCOCOH was activated successfully
         3T             Activation of table type T681E_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type T6B2F_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TB2BN_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TB2BO_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TB2BP_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TWBACCTYPE_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type TWBEXCLASSGROUP_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPIRET2_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_CONDSCALE_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_CONDSCALE_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_KONH_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_KONP_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_KONP_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_VAKE_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Server Usage ************************************************************
              Server..............     Workp     Tasks     Error     .Timesum     Objcount     ms/Obj     ..KCosts     ms/KCs     
              ides_I01_00.........     ....3     ....8     .....     .....106     ......42     .2.524     ......29     .3.655     
         &#61487;        Parallel execution: 38 sec., Phase out time: 8 sec., Load: 9,2982456140350877E+01 percent
         3T             *** Activate objects at level 2
    Parallel execution with maximal 3 concurrent tasks *
            Total of 34 objects with 28.040 costs in 8 tasks
            Activate table APPEND_KOMWBHKEX
         &#61487;     8R      Enhancement category for table missing
         8R      Enhancement category for include or subtype missing
            Table APPEND_KOMWBHKEX was activated with warnings
            Activate table BAPITCCONDITIONITEM
            Table BAPITCCONDITIONITEM was activated successfully
            Activate table BAPITCCONDITIONITEMO
            Table BAPITCCONDITIONITEMO was activated successfully
            Activate table BAPITCCONDITIONITEMX
            Table BAPITCCONDITIONITEMX was activated successfully
            Activate table BAPITCCONDITIONKEY
            Table BAPITCCONDITIONKEY was activated successfully
            Activate table BAPITCCONDITIONKEYO
            Table BAPITCCONDITIONKEYO was activated successfully
            Activate table BAPITCCONDITIONKEYX
            Table BAPITCCONDITIONKEYX was activated successfully
            Activate dependent table KOMWBHIE_APPEND
            Activation of dependent table KOMWBHIE_APPEND successful
            Activate dependent table KOMWBHKE_APPEND
            Activation of dependent table KOMWBHKE_APPEND successful
            Activate dependent table KOMWCOCOH
            Activation of dependent table KOMWCOCOH successful
            Activate dependent table KOMWCOCOH_LI
            KOMWCOCOH_LI-RATE: Table KOMWCOCOH in search help attachment differs from table of search field
            Activation of dependent table KOMWCOCOH_LI successful
            Activate table TWGTA
            Table TWGTA was activated successfully
            Activate table WB2_KOMG
         &#61487;     8O      WB2_KOMG-ZZANZ_KG (combination reference table/field WB2_KOMG-ZZME_KG does not exist)
         &#61487;     8O      WB2_KOMG-ZZAUFMENG_KG (combination reference table/field WB2_KOMG-ZZME_KG does not exist)
         8R      Flag: 'Incorrect enhancement category' could not be updated
            Table WB2_KOMG was not activated
            Activate dependent table WBHID_APPEND
            Activation of dependent table WBHID_APPEND successful
         3T             Activation of table type KOMEXPENSE_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activate dependent table type TABKOMTCKO
            Activate dependent table type TABKOMTCKOCX
         3T             Activation of table type WB2B_FIELD_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_CHANGED_FIELDS_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_COND_MAP_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_SCALE_EXTERNAL_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activate dependent table type WCB_WCOCOH_STAB
            Activate dependent table type WCB_WCOCOH_TAB
            Activate dependent view DB_WCOCOA
         &#61487;        View must be deleted from the database and created again
            Activate dependent view DB_WCOCOA_JEST
         &#61487;        View must be deleted from the database and created again
            Activate dependent view DB_WCOCOH_I_ST
         &#61487;        View must be deleted from the database and created again
            Activate dependent view V_WCOCOA_CUS_LST
            Check dependent search help WCB_SH_CC_NUM_CUS_LST_HEADER
            Search help WCB_SH_CC_NUM_CUS_LST_HEADER is consistent
         &#61487;        View must be deleted from the database and created again
            Activate dependent view V_WCOCOA_VEN_LST
            Check dependent search help WCB_SH_CC_NUM_VEN_LST_HEADER
            Search help WCB_SH_CC_NUM_VEN_LST_HEADER is consistent
         &#61487;        View must be deleted from the database and created again
            Activate dependent view V_WCOCOH_CUS_LST
            Check dependent search help WCB_SH_CC_NUM_CUS_LST_A
            Search help WCB_SH_CC_NUM_CUS_LST_A is consistent
         &#61487;        View must be deleted from the database and created again
            Activate dependent view V_WCOCOH_VEN_LST
            Check dependent search help WCB_SH_CC_NUM_VEN_LST_A
            Search help WCB_SH_CC_NUM_VEN_LST_A is consistent
         &#61487;        View must be deleted from the database and created again
            Server Usage ************************************************************
              Server..............     Workp     Tasks     Error     .Timesum     Objcount     ms/Obj     ..KCosts     ms/KCs     
              ides_I01_00.........     ....3     ....8     .....     .....171     ......34     .5.029     ......28     .6.107     
         &#61487;        Parallel execution: 82 sec., Phase out time: 44 sec., Load: 6,9512195121951223E+01 percent
         3T             *** Activate objects at level 3
    Parallel execution with maximal 3 concurrent tasks *
            Total of 28 objects with 20.340 costs in 6 tasks
            Activate dependent search help WCB_SH_CC_NUM_CUS_LST_A
            Activate dependent search help WCB_SH_CC_NUM_CUS_LST_HEADER
            Activate dependent search help WCB_SH_CC_NUM_VEN_LST_A
            Activate dependent search help WCB_SH_CC_NUM_VEN_LST_HEADER
            Activate table BAPITCSCALE
            Table BAPITCSCALE was activated successfully
            Activate table BAPITCSCALEO
            Table BAPITCSCALEO was activated successfully
            Activate dependent table KOMWBHIE
            Activation of dependent table KOMWBHIE successful
            Activate dependent table KOMWBHKE
            Activation of dependent table KOMWBHKE successful
            Activate dependent table KOMWBHKEX
         &#61487;        Append structure APPEND_KOMWBHKEX appended to table KOMWBHKEX
         8R      Enhancement category 2 possible, but include or subty. not yet classified
            Activation of dependent table KOMWBHKEX successful
            Activate table WB2_COND_CHANGE
            Table WB2_COND_CHANGE was activated successfully
            Activate table WB2_KEY_CHANGE
         &#61487;     8O      INCLUDE table WB2_KOMG is not active
         &#61487;     8O      Routine EXPAND (Table WB2_KEY_CHANGE could not be expanded)
            Table WB2_KEY_CHANGE was not activated
            Activate table WB2_KOMG_EXT
            Table WB2_KOMG_EXT was activated successfully
            Activate dependent table WBHID
            Activation of dependent table WBHID successful
            Activate dependent table type KOMWCOCOH_LI_TAB
            Activate dependent table type KOMWCOCOH_STAB
         3T             Activation of table type WB2_BAPITCCONDITIONITEMO_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONITEMX_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONITEM_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONKEYO_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONKEYX_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCCONDITIONKEY_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activation of table type WB2_KOMG_STAB
         &#61487;     8O      Row type WB2_KOMG is not active or does not exist
            Table type WB2_KOMG_STAB was not activated
            Activate dependent table type WCB_DB_WCOCOA_JEST_STAB
            Activate dependent table type WCB_DB_WCOCOA_STAB
            Activate dependent table type WCB_DB_WCOCOH_I_ST_STAB
            Activate view V_TWGTA
            Activate dependent view V_TWGTA_CFM
            Server Usage ************************************************************
              Server..............     Workp     Tasks     Error     .Timesum     Objcount     ms/Obj     ..KCosts     ms/KCs     
              ides_I01_00.........     ....3     ....6     .....     ......45     ......28     .1.607     ......20     .2.250     
         &#61487;        Parallel execution: 17 sec., Phase out time: 3 sec., Load: 8,8235294117647058E+01 percent
         3T             *** Activate objects at level 4
            Too low cost (3.270) for parallel processing. Minimum: 6.000
    Synchronous execution, no parallel processing *
         3T             Activate dependent table KOMWBHI
            KOMWBHI-HKPSTP: Table KOMWBHK in search help attachment differs from table of search field
            Activation of dependent table KOMWBHI successful
            Activate dependent table type TABKOMWBHIE
         3T             Activation of table type WB2_BAPITCSCALEO_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_BAPITCSCALE_TAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
         3T             Activation of table type WB2_COND_CHANGE_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Activation of table type WB2_KEY_CHANGE_STAB
         &#61487;     8O      Row type WB2_KEY_CHANGE is not active or does not exist
            Table type WB2_KEY_CHANGE_STAB was not activated
         3T             Activation of table type WB2_KOMG_EXT_STAB
         &#61487;        Actions to be performed for dependent objects: activate, ABAP timestamp, DYNP timestamp
            Synchronous processing: 19 sec., 7 objects, 3.270 costs
         3T             *** Activate objects at level 5
            Too low cost (4.630) for parallel processing. Minimum: 6.000
    Synchronous execution, no parallel processing *
         3T             Activate dependent table KOMWBHIH
            KOMWBHIH-HKPSTP: Table KOMWBHK in search help attachment differs from table of search field
            Activation of dependent table KOMWBHIH successful
         3T             Activate dependent table MCWBHI
            MCWBHI-HKPSTP: Table KOMWBHK in search help attachment differs from table of search field
            Activation of dependent table MCWBHI successful
            Activate dependent table WB2_NASTLIEF
            Activation of dependent table WB2_NASTLIEF successful
            Activate dependent table type KOMWBHI_TAB
            Activate dependent table type TABKOMWBHI
            Activate dependent table type TRCON_KOMWBHI_TAB
            Activate dependent table type WB2_KOMWBHI_STAB
            Synchronous processing: 27 sec., 7 objects, 4.630 costs
         3T             *** Activate objects at level 6
            Too low cost (2.160) for parallel processing. Minimum: 6.000
    Synchronous execution, no parallel processing *
            Activate dependent table TRCON_OUTP_DBDATA
            Activation of dependent table TRCON_OUTP_DBDATA successful
            Activate dependent table type GT_MCWBHI
            Activate dependent table type KOMWBHIH_TAB
            Activate dependent table type WB2_NASTLIEF_TAB
            Synchronous processing: 2 sec., 4 objects, 2.160 costs
                  Object Activation
            End phase  001 ***********************************************************
            Start phase 002 **********************************************************
                  Final log
            Following objects not activated/deleted or activated/deleted w. warning:
         3T          8O      Table WB2_KEY_CHANGE could not be activated
         8O      Table WB2_KOMG could not be activated
         8O      Table Type WB2_KEY_CHANGE_STAB could not be activated
            (E- Row type WB2_KEY_CHANGE is not active or does not exist )
         8O      Table Type WB2_KOMG_STAB could not be activated
         8R      Table Type WB2_CHANGED_FIELDS_STAB was activated (error in the dependencies)
         8R      Table Type WB2_VAKE_TAB was activated (error in the dependencies)
         8R      Table APPEND_KOMWBHKEX was activated (warning for the dependent tables)
         8R      Table KOMWBHKEX_NEW was activated (warning for the dependent tables)
                  Final log
            End phase  002 ***********************************************************
            Start phase 003 **********************************************************
                  Statistics on Activated and Deleted Objects
            Number of objects to be activated............:  118
            Objects not activated........................:  4
            Activated objects with errors in dependencies:  2
            Objects activated with warning...............:  2
            Successfully activated objects...............:  110
            Number of objects to be deleted..............:  0
            Objects not successfully deleted.............:  0
            Successfully deleted objects.................:  0
            Tables/views with DROP/CREATE................:  0
            No. of them marked for DROP/CREATE: 0
            Not marked for DROP/CREATE: 0
            Number of nametabs to be deleted.............:  0
            Successfully deleted nametabs................:  0
            Nametabs that were not successfully deleted..:  0
                  Statistics on Activated and Deleted Objects
            End phase  003 ***********************************************************
            =========================================================================
            Mass Activation
            =========================================================================
         &#61487;        Process..................: ides_9
            Return code..............: 8
            Phase 001..................: 00:03:05 (Object Activation)
            Phase 002..................: < 1 sec. (Final log)
            Phase 003..................: < 1 sec. (Statistics on Activated and ...)
            Program runtime..........: 00:03:20
            Date, time...............: 20.04.2007, 17:17:55
            Program end==============================================================
            ABAP Dictionary: Activation
            End date and time : 20070420171755
         &#61487;     8O      Ended with return code:  ===> 8 <===
    ALOG
    ALL                  I01.ALL t 0000 20070419142033              DDIC         ides                    
    SAPKD70022           I01.ALL m 0000 20070419142040 SAPUSER      DDIC         ides                    
    SAPKD70022           I01.ALL L 0004 20070419142051 SAPUSER      DDIC         ides 20070419142042     
    SAPKD70022           I01.ALL P 0004 20070419142056 SAPUSER      DDIC         ides 20070419142053     
    SAPKD70022           I01.ALL H 0004 20070419142615 SAPUSER      DDIC         ides 20070419142100     
    SAPKD70022           I01.ALL A 0004 20070419142914 SAPUSER      DDIC         ides 20070419142100     
    ALL                  I01.ALL S 0000 20070419142929              DDIC         ides 20070419142100     
    ALL                  I01.ALL 6 0004 20070419142947              DDIC         ides 20070419142100     
    SAPKD70022           I01.ALL I 0004 20070419143215 SAPUSER      DDIC         ides 20070419142100     
    ALL                  I01.ALL n 0000 20070419143340              DDIC         ides 20070419142100     
    SAPKD70022           I01.ALL R 0000 20070419143413 SAPUSER      DDIC         ides 20070419142100     
    ALL                  I01.ALL t 0000 20070419145325              DDIC         ides                    
    SAPKD70023           I01.ALL m 0000 20070419145327 SAPUSER      DDIC         ides                    
    SAPKD70023           I01.ALL L 0004 20070419145330 SAPUSER      DDIC         ides 20070419145328     
    SAPKD70023           I01.ALL P 0004 20070419145332 SAPUSER      DDIC         ides 20070419145331     
    SAPKD70023           I01.ALL H 0004 20070419145350 SAPUSER      DDIC         ides 20070419145332     
    SAPKD70023           I01.ALL A 0004 20070419145432 SAPUSER      DDIC         ides 20070419145332     
    ALL                  I01.ALL S 0000 20070419145439              DDIC         ides 20070419145332     
    ALL                  I01.ALL 6 0000 20070419145443              DDIC         ides 20070419145332     
    SAPKD70023           I01.ALL I 0004 20070419145527 SAPUSER      DDIC         ides 20070419145332     
    ALL                  I01.ALL n 0000 20070419145529              DDIC         ides 20070419145332     
    SAPKD70023           I01.ALL R 0000 20070419145535 SAPUSER      DDIC         ides 20070419145332     
    ALL                  I01.ALL t 0000 20070419150805              DDIC         ides                    
    SAPKB70010           I01.ALL m 0000 20070419150826 SAPUSER      DDIC         ides                    
    SAPKB70010           I01.ALL L 0004 20070419151011 SAPUSER      DDIC         ides 20070419150915     
    SAPKB70010           I01.ALL P 0004 20070419151101 SAPUSER      DDIC         ides 20070419151032     
    SAPKB70010           I01.ALL H 0004 20070419152544 SAPUSER      DDIC         ides 20070419152217     
    SAPKB70010           I01.ALL A 0004 20070419154149 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070419154232              DDIC         ides 20070419154155     
    ALL                  I01.ALL N 0000 20070419154335              DDIC         ides 20070419154155     
    ALL                  I01.ALL 6 0004 20070419154820              DDIC         ides 20070419154155     
    SAPKB70010           I01.ALL I 0004 20070419163829 SAPUSER      DDIC         ides 20070419154155     
    ALL                  I01.ALL n 0000 20070419164133              DDIC         ides 20070419154155     
    SAPKB70010           I01.ALL R 0000 20070419171913 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070419172644              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420101414              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420102627              DDIC         ides                    
    SAPKA70010           I01.ALL m 0000 20070420102638 SAPUSER      DDIC         ides                    
    SAPKIPYJ7A           I01.ALL m 0000 20070420102647 PIBASISUSER  DDIC         ides                    
    SAPKW70010           I01.ALL m 0000 20070420102659 SAPUSER      DDIC         ides                    
    SAPKNA7007           I01.ALL m 0000 20070420102705 SAPAPUSER    DDIC         ides                    
    SAPKH60007           I01.ALL m 0000 20070420102728 SAPUSER      DDIC         ides                    
    SAPK-60007INFICA     I01.ALL m 0000 20070420102754 SAPUSER      DDIC         ides                    
    SAPK-60007INFICAX    I01.ALL m 0000 20070420102757 SAPUSER      DDIC         ides                    
    SAPKA70010           I01.ALL L 0004 20070420102832 SAPUSER      DDIC         ides 20070420102800     
    SAPKIPYJ7A           I01.ALL L 0004 20070420102838 PIBASISUSER  DDIC         ides 20070420102800     
    SAPKW70010           I01.ALL L 0004 20070420102906 SAPUSER      DDIC         ides 20070420102800     
    SAPKNA7007           I01.ALL L 0004 20070420102910 SAPAPUSER    DDIC         ides 20070420102800     
    SAPKH60007           I01.ALL L 0004 20070420102949 SAPUSER      DDIC         ides 20070420102800     
    SAPK-60007INFICA     I01.ALL L 0004 20070420103005 SAPUSER      DDIC         ides 20070420102800     
    SAPK-60007INFICAX    I01.ALL L 0004 20070420103007 SAPUSER      DDIC         ides 20070420102800     
    SAPKA70010           I01.ALL P 0004 20070420103039 SAPUSER      DDIC         ides 20070420103026     
    SAPKIPYJ7A           I01.ALL P 0004 20070420103042 PIBASISUSER  DDIC         ides 20070420103026     
    SAPKW70010           I01.ALL P 0004 20070420103053 SAPUSER      DDIC         ides 20070420103026     
    SAPKNA7007           I01.ALL P 0004 20070420103055 SAPAPUSER    DDIC         ides 20070420103026     
    SAPKH60007           I01.ALL P 0004 20070420103121 SAPUSER      DDIC         ides 20070420103026     
    SAPK-60007INFICA     I01.ALL P 0004 20070420103126 SAPUSER      DDIC         ides 20070420103026     
    SAPK-60007INFICAX    I01.ALL P 0004 20070420103128 SAPUSER      DDIC         ides 20070420103026     
    SAPKA70010           I01.ALL H 0004 20070420104455 SAPUSER      DDIC         ides 20070420104317     
    SAPKIPYJ7A           I01.ALL H 0004 20070420104510 PIBASISUSER  DDIC         ides 20070420104317     
    SAPKW70010           I01.ALL H 0004 20070420104614 SAPUSER      DDIC         ides 20070420104317     
    SAPKNA7007           I01.ALL H 0004 20070420104619 SAPAPUSER    DDIC         ides 20070420104317     
    SAPKH60007           I01.ALL H 0004 20070420105120 SAPUSER      DDIC         ides 20070420104317     
    SAPK-60007INFICA     I01.ALL H 0004 20070420105217 SAPUSER      DDIC         ides 20070420104317     
    SAPK-60007INFICAX    I01.ALL H 0004 20070420105228 SAPUSER      DDIC         ides 20070420104317     
    ALL                  I01.ALL t 0000 20070420110210              DDIC         ides                    
    SAPK-60007INFICA     I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPK-60007INFICAX    I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPKA70010           I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPKH60007           I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    SAPKIPYJ7A           I01.ALL A 0004 20070420115140 PIBASISUSER  DDIC         ides                    
    SAPKNA7007           I01.ALL A 0004 20070420115140 SAPAPUSER    DDIC         ides                    
    SAPKW70010           I01.ALL A 0004 20070420115140 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420115355              DDIC         ides 20070420115217     
    ALL                  I01.ALL N 0000 20070420115401              DDIC         ides 20070420115217     
    ALL                  I01.ALL 6 0004 20070420120305              DDIC         ides 20070420115217     
    SAPKA70010           I01.ALL I 0004 20070420121421 SAPUSER      DDIC         ides 20070420115217     
    SAPKIPYJ7A           I01.ALL I 0004 20070420121612 PIBASISUSER  DDIC         ides 20070420115217     
    SAPKW70010           I01.ALL I 0004 20070420123219 SAPUSER      DDIC         ides 20070420115217     
    SAPKNA7007           I01.ALL I 0004 20070420123349 SAPAPUSER    DDIC         ides 20070420115217     
    SAPKH60007           I01.ALL I 0004 20070420130625 SAPUSER      DDIC         ides 20070420115217     
    SAPK-60007INFICA     I01.ALL I 0004 20070420131144 SAPUSER      DDIC         ides 20070420115217     
    SAPK-60007INFICAX    I01.ALL I 0004 20070420131253 SAPUSER      DDIC         ides 20070420115217     
    ALL                  I01.ALL n 0000 20070420131356              DDIC         ides 20070420115217     
    SAPKA70010           I01.ALL R 0000 20070420132346 SAPUSER      DDIC         ides                    
    SAPKIPYJ7A           I01.ALL R 0000 20070420132353 PIBASISUSER  DDIC         ides                    
    SAPKW70010           I01.ALL R 0000 20070420134358 SAPUSER      DDIC         ides                    
    SAPKNA7007           I01.ALL R 0000 20070420134934 SAPAPUSER    DDIC         ides                    
    SAPKH60007           I01.ALL R 0006 20070420140042 SAPUSER      DDIC         ides                    
    SAPK-60007INFICA     I01.ALL R 0000 20070420140703 SAPUSER      DDIC         ides                    
    SAPK-60007INFICAX    I01.ALL R 0000 20070420140713 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420141932              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420141939              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420142045              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420142823              DDIC         ides                    
    SAPKGPID07           I01.ALL m 0000 20070420142825 SAPUSER      DDIC         ides                    
    SAPKGPID07           I01.ALL L 0004 20070420142836 SAPUSER      DDIC         ides 20070420142828     
    SAPKGPID07           I01.ALL P 0004 20070420142839 SAPUSER      DDIC         ides 20070420142837     
    ALL                  I01.ALL 6 0000 20070420143317              DDIC         ides 20070420143303     
    SAPKGPID07           I01.ALL I 0004 20070420143348 SAPUSER      DDIC         ides 20070420143303     
    ALL                  I01.ALL t 0000 20070420143614              DDIC         ides                    
    SAPKW70011           I01.ALL m 0000 20070420143625 SAPUSER      DDIC         ides                    
    SAPKW70011           I01.ALL L 0004 20070420143742 SAPUSER      DDIC         ides 20070420143632     
    SAPKW70011           I01.ALL P 0004 20070420143811 SAPUSER      DDIC         ides 20070420143749     
    SAPKW70011           I01.ALL H 0004 20070420144247 SAPUSER      DDIC         ides 20070420144134     
    SAPKW70011           I01.ALL A 0004 20070420144612 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420144641              DDIC         ides 20070420144617     
    ALL                  I01.ALL 6 0004 20070420144903              DDIC         ides 20070420144617     
    SAPKW70011           I01.ALL I 0004 20070420150622 SAPUSER      DDIC         ides 20070420144617     
    ALL                  I01.ALL n 0000 20070420150652              DDIC         ides 20070420144617     
    SAPKW70011           I01.ALL R 0000 20070420151931 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420153322              DDIC         ides                    
    SAPKGPDD07           I01.ALL m 0000 20070420153324 SAPUSER      DDIC         ides                    
    SAPKGPDD07           I01.ALL L 0004 20070420153338 SAPUSER      DDIC         ides 20070420153326     
    SAPKGPDD07           I01.ALL P 0004 20070420153345 SAPUSER      DDIC         ides 20070420153340     
    SAPKGPDD07           I01.ALL H 0004 20070420153632 SAPUSER      DDIC         ides 20070420153610     
    SAPKGPDD07           I01.ALL A 0004 20070420153818 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420153831              DDIC         ides 20070420153823     
    ALL                  I01.ALL 6 0000 20070420153905              DDIC         ides 20070420153823     
    SAPKGPDD07           I01.ALL I 0004 20070420154205 SAPUSER      DDIC         ides 20070420153823     
    SAPKGPDD07           I01.ALL R 0000 20070420154226 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420154751              DDIC         ides                    
    SAPKGPAD07           I01.ALL m 0000 20070420154807 SAPUSER      DDIC         ides                    
    SAPKGPAD07           I01.ALL L 0004 20070420154851 SAPUSER      DDIC         ides 20070420154814     
    SAPKGPAD07           I01.ALL P 0004 20070420154911 SAPUSER      DDIC         ides 20070420154856     
    SAPKGPAD07           I01.ALL H 0004 20070420155533 SAPUSER      DDIC         ides 20070420155317     
    ALL                  I01.ALL t 0000 20070420155918              DDIC         ides                    
    SAPKGPAD07           I01.ALL A 0004 20070420160620 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420160638              DDIC         ides 20070420160625     
    ALL                  I01.ALL 6 0004 20070420160743              DDIC         ides 20070420160625     
    SAPKGPAD07           I01.ALL I 0004 20070420162359 SAPUSER      DDIC         ides 20070420160625     
    ALL                  I01.ALL n 0000 20070420162445              DDIC         ides 20070420160625     
    SAPKGPAD07           I01.ALL R 0004 20070420163533 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420163915              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420164004              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420164112              DDIC         ides                    
    SAPKGPFD07           I01.ALL m 0000 20070420164119 SAPUSER      DDIC         ides                    
    SAPKGPFD07           I01.ALL L 0004 20070420164205 SAPUSER      DDIC         ides 20070420164129     
    SAPKGPFD07           I01.ALL P 0004 20070420164217 SAPUSER      DDIC         ides 20070420164209     
    SAPKGPFD07           I01.ALL H 0004 20070420164645 SAPUSER      DDIC         ides 20070420164524     
    SAPKGPFD07           I01.ALL A 0004 20070420165233 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL S 0000 20070420165248              DDIC         ides 20070420165238     
    ALL                  I01.ALL 6 0000 20070420165322              DDIC         ides 20070420165238     
    SAPKGPFD07           I01.ALL I 0004 20070420170133 SAPUSER      DDIC         ides 20070420165238     
    ALL                  I01.ALL n 0000 20070420170156              DDIC         ides 20070420165238     
    SAPKGPFD07           I01.ALL R 0000 20070420170418 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420170650              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420171054              DDIC         ides                    
    SAPKGPGD07           I01.ALL m 0000 20070420171056 SAPUSER      DDIC         ides                    
    SAPKGPGD07           I01.ALL L 0004 20070420171108 SAPUSER      DDIC         ides 20070420171059     
    SAPKGPGD07           I01.ALL P 0004 20070420171112 SAPUSER      DDIC         ides 20070420171109     
    SAPKGPGD07           I01.ALL H 0004 20070420171431 SAPUSER      DDIC         ides 20070420171339     
    SAPKGPGD07           I01.ALL A 0008 20070420171755 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420171911              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420171918 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420172106              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420172117 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420173251              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420173255 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420173753              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420173756 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420173914              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420173917 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420174114              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420174541              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420174543 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420181327              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420181355 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420183111              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420183123 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420183655              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420183700 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420185422              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420185424 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420185611              TMSADM       ides                    
    ALL                  I01.ALL S 0000 20070420190348              DDIC         ides 20070420190338     
    ALL                  I01.ALL t 0000 20070420190358              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420190403 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL 6 0000 20070420190407              DDIC         ides 20070420190338     
    ALL                  I01.ALL a 0000 20070420190537              DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420190559              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420190606 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL d 0000 20070420190622              DDIC         ides                    
    SAPKGPGD07           I01:000 I 0004 20070420190713 SAPUSER      DDIC         ides 20070420190338     
    ALL                  I01.ALL t 0000 20070420190713              DDIC         ides                    
    ALL                  I01.ALL Q 0000 20070420190717              DDIC         ides 20070420190338     
    SAPKGPGD07           I01.ALL A 0008 20070420190925 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420191154              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420191156 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420202424              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420202534 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420204507              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420204509 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420211533              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420211555 SAPUSER      DDIC         ides                    
    ALL                  I01.ALL t 0000 20070420220457              DDIC         ides                    
    SAPKGPGD07           I01.ALL A 0008 20070420220500 SAPUSER      DDIC         ides                    
    SLOG
    START CMDIMPORT            I01 L      20070419142043              DDIC         ides 20070419142042     
    STOP  CMDIMPORT            I01 L      20070419142052              DDIC         ides 20070419142042     
    START imp all              I01        20070419142100              DDIC         ides 20070419142100     
    INFO: event SAP_IMPORT_START triggered successfully
    START DD IMPORT            I01 H      20070419142101              DDIC         ides 20070419142100     
    STOP  DD IMPORT            I01 H      20070419142617              DDIC         ides 20070419142100     
    START DD ACTIVATION        I01 A      20070419142618              DDIC         ides 20070419142100     
    START tp_getprots          I01 J      20070419142620              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 J      20070419142918              DDIC         ides 20070419142100     
    STOP  DD ACTIVATION        I01 A      20070419142918              DDIC         ides 20070419142100     
    START DISTRIBUTION OF DD-O I01 S      20070419142918              DDIC         ides 20070419142100     
    START tp_getprots          I01 S      20070419142918              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 S      20070419142933              DDIC         ides 20070419142100     
    STOP  DISTRIBUTION OF DD-O I01 S      20070419142933              DDIC         ides 20070419142100     
    INFO  TBATG CONVERSION OF  I01 N      not needed                  DDIC         ides 20070419142100     
    START MOVE NAMETABS        I01 6      20070419142934              DDIC         ides 20070419142100     
    START tp_getprots          I01 P      20070419142934              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 P      20070419142949              DDIC         ides 20070419142100     
    STOP  MOVE NAMETABS        I01 6      20070419142949              DDIC         ides 20070419142100     
    START MAIN IMPORT          I01 I      20070419142949              DDIC         ides 20070419142100     
    STOP  MAIN IMPORT          I01 I      20070419143215              DDIC         ides 20070419142100     
    START TBATG CREATION OF EN I01 n      20070419143216              DDIC         ides 20070419142100     
    START tp_getprots          I01 Y      20070419143216              DDIC         ides 20070419142100     
    STOP  tp_getprots          I01 Y      200

    How was this problem fixed? We are running into the same problem. Any help will be much appreciated.
    Thanks so much.
    Mario

  • Look Up API through JCO

    Hi all,
    I m using look up through JCO and calling a RFC on backend R/3 for the particular validation.I m using UDF for that.In the UDF i have specified imports as:-
    imports :-java.util.;java.lang.obj.;com.sap.aii.mapping.lookup.;com.sap.mw.jco.;java.io.*;
    source code --
    //write your code here
    JCO.Repository  myRepository;
    // Change the logon information to your own system/user
    JCO.Client  myConnection =  JCO.createClient(
        // all the client information namely client ,user id pwd etc
    myConnection.connect();
    // create repository
    myRepository = new JCO.Repository( "SAPLookup", myConnection );
    // Create function
    JCO.Function function = null;
    IFunctionTemplate ft = mRepository.getFunctionTemplate("xxxxx"); //Name of RFC
    function = ft.getFunction();
    // Obtain parameter list for function
    JCO.ParameterList input = function.getImportParameterList();
    // Pass function parameters
    input.setValue( a , "xxxxx" ); //import parameter of RFC, a is input argument.
    myConnection.execute( function );
    String ret = function.getExportParameterList().getString( "XXXX" ); //export param
    myConnection.disconnect();
    return ret;
    however on test  i m getting follwing error:
    Source code has syntax error:  D:/usr/sap/XID/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Map6df266d0f96411dbb2a4000bcd3f5f3d/source/com/sap/xi/tf/_MM_Source_To_Target_.java:157: 'class' or 'interface' expected public static void main(String[] args) throws Exception{/!_$ClNRep_/_MM_Source_To_Target_ st = new /!_$ClNRep_/_MM_Source_To_Target_(); st.testExecute(); }
    Can anybody help me out in rectifying this Syntax errror.
    Regards,
    AshwinM

    You are hardcoding the user id , password etc in your UDF. This is something will cause issues asyou move your objects across environments from Dev to Qaulity and production.
    You cannot change the user id and passwordi n your mapping code in your Quality and Prodction. Use of RFC Lookup is strongly recommended with the RFC adapter.
    I dont think using RFC Lookup API causes any perfromance degradations. We have used this feature multiple times in and have never faced performance constraints as a result of this.
    Regards
    Bhavesh

Maybe you are looking for

  • Bridge "supports" missing ;-)

    The following file types should be a bridge natural fit, but strangely missing; Fonts... Hello, Adobe had it's root in fonts. (hint render thumbnail in sample text Selected BY USER in preferences. Photoshop Styles, Gradients, Custom Shapes, etc. Adob

  • How to install adobe reader to my site [removed] so that pdf file can be read directly in my site instead of getting downloaded ?

    How to install adobe reader to my site [spam link removed] so that pdf file can be read directly in my site instead of getting downloaded ?

  • BT Homehub issues on Xbox Live

    Hey guys, Recently I've been having a lot of trouble with my internet.  This has been constant disconnections and abismal speeds (0.12 mb to be precise).  We had a type A router, but we were given a type B router to try and rectify the problem.  This

  • Asynchronous  IO ( need help)

    hi i got a problem in reading a file Asynchronously, my requirements are : i would like to read huge file into the buffers (say 3 here )each buffer of fixed size ,the moment the buffer gets filled with read content ,i need to update the bufferd conte

  • Idoc problems

    Hi to all,        This is Venkat.I am doing IDOC programming. Here my program is in SAPLVV01 finding exit and and writing the program for outbound. After completion of program I activated my project. In Communication settings crate partner profiles (