Error in generating Outbound Xml in SNC

Hi All:
We are working on SNC 7.0 vrsion along with Pi 7.0 and ECC 6.0.
When SNC gets a PO from ECC and supplier confirms it then we are not able to see any outbound xml file generation in SNC .
Due to this nothing is coming out from SNC.
Folowing are the configuration has been done in SNC.
A> Outbound processing message ReplishmentOrderConfirmation_Out has been configured properly for sender and receiver.
B> All required ODM and TSODM has been activated properly.
C> Structure in proxy name space has been re generated properly for above mentioned outbound message.
D> No badi has been activated as of now in SNC area.
Whats happening in SNC once supplier confirms PO.
A>Error dump saying that Assertion Failed .
My question.
A> Do we have to activate any badi by default to generate any outbound xml?
B> Is there any report by which we can check weather proxy structure has been called or not for generating outbound Xml?
C>How to generate and activate TSODM and related POS in time series Order Data Management ?
D>Report to check that what Time Series Object has been activated as of now ?
Please let us know ur views to slove this
thanks
Ganesh

Hi Ganesh,
If you have errors within proxy setup, you will get the XML blocked in SXMB_XI transaction.
As I could see from your description, the problems might be due to any one of these reasons.
1. Validation Checks - PO Confirmation invloves a validation check before getting published. There might an error if this fails.
2. ODM and TSDM not initialised properly - Try to generate and activate the necessary ODM and TSDM data types.
Cheran

Similar Messages

  • WE60 - Error while generating the xml schema

    Hi
    Using the transaction WE60 I am trying to generate an XML schema for the BASIC type : DEBMDM06, Segment release - 7 and record type version - 3. Following error message is displayed. "Structure of segment E1T023W is unknown". Kindly let me know how to generate an XML schema successfully and what is the reason for this error to come up
    Regards
    Aruna

    Hi Aruna,
    It seems a dictionary error but it doesn't occurs to me. I can download the XML schema without problems in SAP ECC 6.0.
    If you let me know your email I can send it zipped to you.
    Reward points if helps.
    Roger

  • Error while generating an XML Document from XML Schema with JAXB

    Hi,
    I am following this OTN tutorial to generate the XML document from Java classes got from the XSD document.
    http://www.oracle.com/technology/pub/notes/technote_jaxb.html
    I am able to generate all the Java classes but getting error on compiling the XMLConstructor.java class which is use for generating the XML document :
    I am using JDK 1.5 and
    Oracle 10g XML Developer's Kit (XDK) Production for Java. xdk_nt_10_1_0_2_0_production
    (though these are warnings I am not able to run it.)
    Error
    C:\Prototype\classes\jaxbderived\catalog>javac -Xlint XMLConstructor.java
    warning: [path] bad path element "%CLASSPATH%": no such file or directory
    XMLConstructor.java:42: warning: [unchecked] unchecked call to add(E) as a member of the raw type java.util.List
    journalList.add(journal);
    ^
    XMLConstructor.java:46: warning: [unchecked] unchecked call to add(E) as a membe
    r of the raw type java.util.List
    articleList.add(article);
    Thanks
    Sanjeev ([email protected])

    Use JDK 1.4.

  • How to recover from XML gateway error when generating outbound message

    Hi,
    Due to a misconfiguration in other part of the system, our Purchase Order Request map (RosettaNet PIP3A4) failed on few dozen of orders and ended with an error.
    How can we restart the process and retry the map generation in XML Gateway (as now the problem is fixed)?
    Many thanks in advance,
    Regards
    Kamil

    Hi Kamil;
    please check below and see its helpful:
    http://download.oracle.com/docs/cd/B31017_01/core.1013/b28764/esb002.htm
    http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28211.pdf
    Regard
    Helios

  • Error while generating stack.xml file in solman

    Hi All,
    I am unable to generate a stack.xml file in solman,  below is the error.
    Also, how to select a patch for Java stack JVM in solman. Please help me.
    Thanks,
    Dheeraj

    Hi Kartik,
    Thanks for the info.
    I am trying to upgrade SAP JVM from 6.1.49 to 6.1.64,
    I tried by manually downloading the file and upload it through SUM it was not successful.
    Now I am trying with stack.xml and some product instance are not installed.
    Any suggestions??
    Regards,
    Dheeraj

  • Error while generating an XML File.

    Hello All,
    Help me regarding My Doubt.
    I have created a Procedure Which will create an XML File.
    I am Using the XMLDOM Package to create the File.
    I am passing the XMLFILE to a CLOB Field.
    XMLDOM.writeToClob(DOC, P_XMLFILE);
    But When I am Running the Procedure I am getting the List of Errors.
    ORA-29280: invalid directory path
    ORA-06512: at "SYS.UTL_FILE", line 33
    ORA-06512: at "SYS.UTL_FILE", line 436
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 217
    ORA-29280: invalid directory path
    ORA-29280: invalid directory path
    ORA-06512: at "XDB.DBMS_XMLDOM", line 4416
    ORA-06512: at "K5ESK_LDB2.PR_CREATE_XMLFILE", line 26
    I dont know the Reason why the Errors are Comming.
    Does It Require I should change the System Setting to Make sure that XMLDOM will work Properly

    Dear Member,
    The Below is the Code I am using.
    CREATE OR REPLACE PROCEDURE pr_create_xmlfile(P_XMLFILE IN OUT CLOB)
    doc xmldom.DOMDocument;
    main_node xmldom.DOMNode;
    root_node xmldom.DOMNode;
    user_node xmldom.domnode;
    item_node xmldom.domnode;
    root_elmt xmldom.DOMElement;
    item_elmt xmldom.DOMElement;
    item_text xmldom.domtext;
    CURSOR get_data(p_deptno IN NUMBER)
    IS
    SELECT EMPNO,
    ENAME,
    DEPTNO,
    ROWNUM Rec_Num
    FROM emp WHERE deptno = p_deptno;
    BEGIN
    doc := xmldom.newdomdocument;
    -- Create the Main Node
    main_node := xmldom.makenode(doc);
    -- Create the Root Element.
    root_elmt := xmldom.createelement(doc,'EMPSET');
    -- Attach this Root Element to the Main Node.
    root_node := xmldom.appendchild(main_node,xmldom.makenode(root_elmt));
    xmldom.writetofile(doc,'c:\temp\test.xml');
    xmldom.freedocument(doc);
    FOR rec_data IN get_data(10) LOOP
    <EMP num="1">
    <EMP_NO>7782</EMP_NO>
    <NAME>CLARK</NAME>
    <DEPT_NO>10</DEPT_NO>
    </EMP>
    -- Create a Main Element
    item_elmt := xmldom.createelement(doc,'EMP');
    -- Creating an Attribute to the Emp Element
    xmldom.setattribute(item_elmt,'Num',rec_data.rec_num);
    -- Attaching this EMP Element as Child Record to the Root Node.
    user_node := xmldom.appendchild(root_node,xmldom.makenode(item_elmt));
    -- Creating another EMP_NO Element
    item_elmt := xmldom.createelement(doc,'EMP_NO');
    -- Attaching the EMP_NO Element to the EMP Element as Child Element
    item_node := xmldom.appendchild(user_node,xmldom.makenode(item_elmt));
    -- Creating a Text Node with the Empno data
    item_text := xmldom.createtextnode(doc,rec_data.empno);
    -- Attaching this Text Node as Child to the EMP_NO Element.
    item_node := xmldom.appendchild(item_node,xmldom.makenode(item_text));
    END LOOP;
    XMLDOM.writeToClob(DOC, P_XMLFILE);
    XMLDOM.FREEDOCUMENT(DOC);
    Errors
    ORA - 29280 --> A corresponding directory object does not exist.
    Action --> Correct the directory object parameter, or create a corresponding directory object with the
    CREATE DIRECTORY command
    ORA - 06512 --> Backtrace message as the stack is unwound by unhandled exceptions
    Action --> Fix the problem causing the exception or write an exception handler for this condition.
    END;

  • Unable to generate the XML file through SQL script. getting error PLS-00306

    I am fetching the data from cursor and generating the xml output I am getting the below error.
    When I have checked the cursor query it is fetching the data in to single column.
    Input truncated to 1 characters
    Enter value for 7: EXEC FND_CONC_STAT.COLLECT;
    DBMS_LOB.append (tmp_file, r.core_xml);
    ERROR at line 95:
    ORA-06550: line 95, column 7:
    PLS-00306: wrong number or types of arguments in call to 'APPEND'
    ORA-06550: line 95, column 7:
    PL/SQL: Statement ignored

    Hi Alex,
    thanks for the responce..
    i have fixed the issue
    i have used XMLAttributes to get the value
    SELECT XMLELEMENT (
    NAME "TranACK",
    XMLAttributes ('1' as "TranNum",
    (select distinct to_char(SYSDATE,'yyyy-mm-dd')
    from DUAL) as "PrcDate"),
    XMLFOREST (
    a.PAYMENT_ID AS "PmtID"),
    XMLFOREST (
    a.ACK_TRANSACTION_RECEIVER AS "Name1"),
    XMLFOREST (
    to_char(a.VALUE_DATE,'yyyy-mm-dd') as "ValueDate" ),
    XMLFOREST (
    a.PAYMENT_AMOUNT AS "CurAmt"),
    XMLFOREST (
    a.CURRENCY_CODE AS "CurCode")
    ).getclobval ()
    AS line_xml
    FROM XXWAP_PAYMENT_LINE_TBL a
    where a.PAYMENT_BATCH_ID=P_batch_id;

  • Error while generating XML file through RDF

    Hi,
    I wanted to generate a Report on some business case. For that I need to generate XML file first.
    For generating XML file
    1. I have built an RDF through Reports builder.
    2. Saved the report to local machine with extension .rdf
    3. Moved it to appltop/app/reports/US directory
    4. Registered tha Report with Executable of type Oracle Reports
    5. Defined Concurrent Program with OUTPUT as XML.
    When I submmitted the program, it was giving an error as follows.
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    A semi colon character was expected. Error processing resource 'https://oaphrd.humana.com/OA_CGI/FNDWRR.exe?temp_id=2088989...
    +<?xml version="1.0" encoding="&Encoding"?>+
    But, when I tried to sane the report directly to a file (file - > generate file -> XML) the XML was generated successfully.
    How to get rid of this. Some one please help me out.
    Thanks !
    Edited by: Rajasekhar Reddy on May 4, 2012 1:23 AM

    Hi,
    I found the issue and corrected it. :)
    This was happened only because of the Version problem of Report Builder with Oracle Applications.
    Reports Builder 10g is not compatiblie with Oracle Applications 11.5.10.
    Oracle 11.5+ will always expect the RDF from Reports 6i version. Because of this, the endocing was damaged.
    You can observe in the earlier post as encoding="&Endoding". Here +&Encoding should be replaced by some encoding mechanism like "UTF-8".+
    Finally corrected the version and got the Output as expected.
    Thanks !

  • Error while generating xml file Data Model

    Hi ,
    I am creating data mode in OBIEE through the query builder and trying to generate xml from it but the following exception occurs while generating the XML
    "The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    The following tags were not closed: DATA_DS. Error processing resource 'http://localhost:7002/xmlpserver/servlet/xdo'. "
    Could you please sort this out.
    Thanks
    Govindan P

    Hi,
    I found the issue and corrected it. :)
    This was happened only because of the Version problem of Report Builder with Oracle Applications.
    Reports Builder 10g is not compatiblie with Oracle Applications 11.5.10.
    Oracle 11.5+ will always expect the RDF from Reports 6i version. Because of this, the endocing was damaged.
    You can observe in the earlier post as encoding="&Endoding". Here +&Encoding should be replaced by some encoding mechanism like "UTF-8".+
    Finally corrected the version and got the Output as expected.
    Thanks !

  • Error when generating XML

    Hi, I am trying to generate an XML file using the code below and receive the following error;
    failed ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00231: invalid character 60 ('<') found in a Name or Nmtoken
    Error at line 47102066
    The code inside the procedure is:
    xml_result xmltype;
    doc        dbms_xmldom.DOMDocument;
    ctx DBMS_XMLGEN.ctxHandle;
    vv_exit_code varchar2(5);
    vv_ctx_open varchar2(1) := 'N';
      BEGIN
    vv_exit_code := 'XML1';
      ctx := dbms_xmlgen.newcontext(p_sql);
      vv_ctx_open := 'Y';
    DBMS_OUTPUT.put_line(vv_exit_code);
    vv_exit_code := 'XML2';
      DBMS_XMLGEN.SETCONVERTSPECIALCHARS (ctx,TRUE);
    DBMS_OUTPUT.put_line(vv_exit_code);
      vv_exit_code := 'XML3';
    xml_result := dbms_xmlgen.getXMLType(ctx);
    DBMS_OUTPUT.put_line(vv_exit_code);
    IF xml_result is not null THEN
         vv_exit_code := 'XML4';
         doc := dbms_xmldom.newDOMDocument(xml_result);
    DBMS_OUTPUT.put_line(vv_exit_code);
         vv_exit_code := 'XML5';
         dbms_xmldom.writeToFile(doc,p_dir||'/'||p_fileName, 'ISO-8859-1');
    DBMS_OUTPUT.put_line(vv_exit_code);
         vv_exit_code := 'XML6';
         dbms_xmldom.freeDocument(doc);
         p_xml_created := 'TRUE';
    DBMS_OUTPUT.put_line(vv_exit_code);
    ELSE
        p_xml_created := 'FALSE';
    END IF;
    DBMS_XMLGEN.CLOSECONTEXT (ctx);
    vv_ctx_open := 'N';
    EXCEPTION
         WHEN out_of_process_memory THEN
        IF vv_ctx_open = 'Y' THEN
            DBMS_XMLGEN.CLOSECONTEXT (ctx);
        END IF;
        gv_err_msg := substr(sqlerrm,1,2000);
        DBMS_OUTPUT.put_line(gv_process_name||' failed '||gv_err_msg);
        RAISE_APPLICATION_ERROR(-20906,gv_process_name||' failed'||gv_err_msg);
          dbms_output.put_line('XML_EXPORT failed (out_of_process_memory exception) executing '||p_sql);
          raise_application_error(-20906,'XML_EXPORT (out_of_process_memory exception) failed executing '||p_sql);
        WHEN OTHERS THEN
        IF vv_ctx_open = 'Y' THEN
            DBMS_XMLGEN.CLOSECONTEXT (ctx);
        END IF;
        if xml_result is NULL then
              gv_err_msg := substr(sqlerrm,1,2000);
        DBMS_OUTPUT.put_line(gv_process_name||' failed '||gv_err_msg);
        RAISE_APPLICATION_ERROR(-20906,gv_process_name||' failed'||gv_err_msg);
              dbms_output.put_line('XML_EXPORT failed (xml results are NULL) executing '||p_sql);
              raise_application_error(-20906,'XML_EXPORT (xml results are NULL) failed executing '||p_sql);
        else
        gv_err_msg := substr(sqlerrm,1,2000);
        DBMS_OUTPUT.put_line(gv_process_name||' failed '||gv_err_msg);
          dbms_output.put_line('XML_EXPORT failed (others exception) executing '||p_sql);
          DBMS_OUTPUT.put_line('Export Directory is: '||p_dir||'/'||p_fileName);
          raise_application_error(-20906,'XML_EXPORT (others exception) failed executing '||p_sql);
    end if;
    I have run the p_sql separately and have no issue. The p_sql is select * from <viewname> where date_id > '20100901' and date_id < '20100930'; (For security reasons I am choosing to leave off specific table/view/column names). I have run this procedure with other date ranges and it works for all the views we are using. I have examined all freeform data (data entered by the user without restriction) and none has a '>' in it during this time period.

    All the column names are valid XML names as this returned for other date ranges (as stated). The oracle version is 11G. This code is encapsulated in a function with the following signature:
    PROCEDURE sql_to_xml(p_sql IN VARCHAR2, p_fileName IN VARCHAR2, p_dir IN VARCHAR2, p_xml_created OUT VARCHAR2)
    To test, I have been calling the package with the sql as I indicated originally, a filename, the unix directory to write to, and a global out variable. Again, as I originally stated, this has been run successfully for other date ranges for the same table, but only fails in a specific range.
    As for the issue with the line number it isn't a copy paste error at all. My total code for this package has 84 lines (including comments etc) (i removed function signature when quoting the code above). The line error message confused me as well, which was part of what I hoped someone else who had done XML exporting would know of. My assumption was that the line number was the line of the XML file, not the code. However because it fails it won't create the XML server onto the directory so I cannot view it and see easily where it breaks.
    You are correct that line 52 makes 54 and 55 useless. I think that was a relic of a previous version and I forgot to remove 52. I did so and will see if the below error is raised.
    I forgot to state that the DBMS_OUTPUT does show XML3 indicating that either XML_RESULT is null or that it breaks at line 19 (because DBMS_OUTPUT never prints XML4). Because you caught the issue with line 52-55, that may be why the null error never was being raised. I am rerunning to verify that xml_result is not null (ie: the null exception raised from the if on line 49 does not trigger).

  • Generate prov.xml for Creative Cloud. Return Code 27

    We're trying to follow this guide (Creative Cloud Help | Using Adobe Provisioning Toolkit Enterprise Edition) to serialize a package (or something). We're stuck on generating prov.xml. My best attempt at an entry is:
    C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\CCP\utilities\APTEE>adobe_prtk.exe --tool=VolumeSerialize --generate --serial=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx --regsuppress=ss --eulasuppress --locales=en_US --provfilepath=C:\Program Fil
    es (x86)\Common Files\Adobe\OOBE\PDApp\CCP
    It says half of this is optional, but I'm skeptical.
    Anyway, I'm getting return code 27. This indicates that it is unable to edit the prov.xml file specified. I didn't specify a prov.xml file, I'm trying to make one. The syntax I'm using differs from what I found on the page I linked, as that was giving me syntax errors. I lifted this off someone else's code. I've tried just about every variation I can think of. Any help would be appreciated.
    This is on Windows

    One of these links may help
    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Bursting Program errors with "Error while generating the Document"

    Hello Folks
    Here is my bursting control file
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:globalData location="stream">
    </xapi:globalData >
    <xapi:request select="/XMLEXCEL1/LIST_G_Q0">
    <xapi:delivery>
    <xapi:email server="mycompany.com" port="25" from="[email protected]"
    reply-to ="[email protected]">
    <xapi:message id="1234" to="[email protected]"
    attachment="true" content-type="html/text"
    subject="Employee Report for Empno"> Dear
    Please review the attached document</xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document key="123" output-type="XLS" delivery="1234"
    output="XMLEXCEL1" >
    <xapi:template type="RTF" location="xdo://AR.XMLEXCEL1.en.00/?getSource=true">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    this is the output of bursting status report:
    <?xml version="1.0" encoding="UTF-8"?>
    <BURS_REPORT><REQUESTID>40403415</REQUESTID>
    <PARENT_REQUESTID>40403339</PARENT_REQUESTID>
    <REPORT_DESC>XMLEXCEL1</REPORT_DESC>
    <OUTPUT_FILE>/opt/local/application/orafin/applmgr/out/outfaud/S1759.zip
    </OUTPUT_FILE>
    <DOCUMENT_STATUS>
    <KEY>123</KEY>
    <OUTPUT_TYPE>XLS</OUTPUT_TYPE>
    <DELIVERY></DELIVERY>
    <OUTPUT>
    </OUTPUT>
    <STATUS>fail</STATUS>
    <LOG>Error while generating the Document...</LOG>
    </DOCUMENT_STATUS>
    </BURS_REPORT>
    Can anyone help on this please.

    can anyone help me?

  • Error while generating XMLP report

    Hi,
    I have generated a XML Publisher report using Application Engine (using row set).
    The process runs to NO success and the following error appears in the log file.
    xmlpublisher PTFOProcessor.generateOutput error.
    Exception:null
    Can anyone throw light on as what could be the possible reason for this error.
    xmlpublisher PTFOProcessor.generateOutput error
    Please help me on this.
    thanks in advance
    Venkat

    Hi Kumar,
    By default if a report takes more than 100 seconds to generate you will see the message you have described. In order to view this report you must go to and click the Reports button in the web client tool bar, and click on the option, "My BI Publisher Reports". From this view you will see a list of all reports you have generated. To change the default preference of 100 seconds you can find detailed info under Siebel bookshelf: [http://download.oracle.com/docs/cd/E14004_01/books/Reports/ReportsAdmin9.html#wp305847]
    -Fred

  • Thread: Could not generate the XML in single thread mode

    Hi all,
    I have created a report using PLSQL Procedure method after submitting the request I am getting the following Error.Couldn't sort out why I am getting the error while running the report.
    Error in "Multi threaded or single threaded execution block" of XXRX_REPORT_OUTPUT_PKG.insert_into_nested_table procedure
    ERROR :ORA-20005: Could not generate the XML in single thread mode
    XXRXERROR: XXRX_REPORT_OUTPUT_PKG.run_report SQLERROR: ORA-20005: ORA-20005: Could not generate the XML in single thread mode
    Can someone help me out finding the issue
    Thanks in Advance

    Hi,
    Please read SQL and PL/SQL FAQ
    We cannot guess what is the error if you don't post any part of your code.
    Additionally when you put some code or output please enclose it between two lines starting with {noformat}{noformat}
    i.e.:
    {noformat}{noformat}
    SELECT ...
    {noformat}{noformat}
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error while generating Work Order

    I have a problem while generating Work orders in SNC.
    I set the configuration as belows.
    <General setting for Work Order generation>
    1.Granularity -> Work Order per Purchase Order Item
    2.Create WOs with Report -> Check
    3.Publish Work Order Upon Creation and PO change -> check
    4.Send Work Order Information -> Upon Agreement and when a Phase Is Completed
    5.Send Production Progress Notification -> When a Phase Is Completed
    <Phase Structure>
    1.Comp. from SC Order -> Use SC Comp. as Input, Product and Co-Products as Output
    <Master Data Assignment>
    1.MD Used for WO -> Phase Structure
    2.Active -> Check
    When I use the program /SCA/WO_CREATE for generate Work Orders, Run time error occurs with below messages.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Except.                CX_SY_REF_IS_INITIAL
    <Error analysis>
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in
    procedure "GET_PIO_LCTYPE" "(METHOD)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "LS_NODEREF-R_NODE").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    <Missing RAISING Clause in Interface>
    Program                                 /SCA/CL_WO_PHASE==============CP
    Include                                 /SCA/CL_WO_PHASE==============CM00V
    Row                                     1
    Module type                             (METHOD)
    Module Name                             GET_PIO_LCTYPE
    <Trigger Location of Exception>
    Program                                 /SCA/CL_WO_PHASE==============CP
    Include                                 /SCA/CL_WO_PHASE==============CM00V
    Row                                     45
    Module type                             (METHOD)
    Module Name                             GET_PIO_LCTYPE
    Please let me know what I have to do for this error.
    Thanks and Regards
    JT

    Hi JT
    Clearly the problem is with the method GET_PIO_LCTYPE of interface /SCA/CL_WO_PHASE
    Check whether note 1363834 should be implemented
    It could be because of some corrupted WO entries in database
    or some customizing entry it is expecting
    suggest you to debug the method and try to check what it is expecting
    Best Regards
    Vinod

Maybe you are looking for

  • Adobe Acrobat 8 copying problem

    I have tried the Acrobat HELP feature and it wasn't helpful and so I turn to you! Problem: When I highlight and attempt to copy a word or phrase from a PDF the Acrobat application hiccups and begins to shut down- this has only just begun happening. I

  • With MS 7 IE 10 when installing FP I get prompt to close IE but it is closed - I retry to no avail

    Internet explorer 10 was recently updated on my computer from IE 9.  Now I can't install Flash Player any more.  I get the prompt to close Internet Explorer so I do then the prompt shows back up.  I wait a few minutes and retry again.  Still I get th

  • User Agent in FireFox works but not Safari

    I am trying to log into whstuart.com/clients but it says it requires Internet Explorer 4.0 or higher. This is the only every day task that I can't perform on Safari and would like to not have to use multiple browsers every day. I have been able to lo

  • PO message to User

    Hi MM Experts, We are able to successfully create a Message and sent to Vendor with following setting Process routies : Medium - 5 External send; Standard program i.e. SAPFM06P, FORM routine ENTRY_NEU and FORM: Custom made *However the client need a

  • SSL and J2EE - Problems with the tutorial

    I'm trying to make a small amendment to the bank application ('Duke's Bank') which is the main example in the J2EE tutorial. Nothing complicated: just add a simple 'enrollment' page which will be secured through SSL. The aim is to demonstrate that J2