<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic idoc material in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-material/m-p/1677773#M298882</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt;I m facing problem to upload data through idoc.the scenario is like we receive electric meter reading in flat file format. And to upload that data JAVA code is written which will create an IDOC FILE this authorization is only give to 2-3 person in organization and to basis guy also as user changed it&amp;#146;s password in SAP and in JAVA the java code is not going to create the IDOC file and data is not going to upload. after changing user password in sap system ,user not able to upload the data.&lt;/P&gt;&lt;P&gt;ISU_MR_UPLOAD01 is the idoc file generated. So is there any authorization issue, password issue how to see and view IDOC IN SAP, can any one help me out into this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error with java throws is as;&lt;/P&gt;&lt;P&gt;1ST ERROR IN TRACE FILE&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;ERROR file opened at 20061109 133610 India Standard, SAP-REL 640,0,59 RFC-VER 3  MT-SL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;T:2736 ======&amp;gt; User TR has no RFC authorization for function group SYST .&lt;/P&gt;&lt;P&gt;T:2736 &amp;lt;* RfcReceive [1] : returns 3:RFC_SYS_EXCEPTION&lt;/P&gt;&lt;P&gt;2ND ERROR ON COMMAND PROMT&lt;/P&gt;&lt;P&gt;C:\j2sdk1.4.2_07&amp;gt;cd bin&lt;/P&gt;&lt;P&gt;C:\j2sdk1.4.2_07\bin&amp;gt;java sandsupload&lt;/P&gt;&lt;P&gt;Creating IDoc...Exception in thread "main" com.sap.mw.idoc.IDoc$Exception: (2) I&lt;/P&gt;&lt;P&gt;DOC_ERROR_METADATA_UNAVAILABLE: The meta data for the IDoc type "ISU_MR_UPLOAD01&lt;/P&gt;&lt;P&gt;" is unavailable.&lt;/P&gt;&lt;P&gt;        at com.sap.mw.idoc.jco.JCoIDoc$JCoDocument.&amp;lt;init&amp;gt;(JCoIDoc.java:233)&lt;/P&gt;&lt;P&gt;        at com.sap.mw.idoc.jco.JCoIDoc$JCoDocument.&amp;lt;init&amp;gt;(JCoIDoc.java:187)&lt;/P&gt;&lt;P&gt;        at com.sap.mw.idoc.jco.JCoIDoc.createDocument(JCoIDoc.java:10521)&lt;/P&gt;&lt;P&gt;        at sandsupload.main(sandsupload.java:35)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the part of java code&lt;/P&gt;&lt;P&gt;try {&lt;/P&gt;&lt;P&gt;            //create a JCo client pool&lt;/P&gt;&lt;P&gt;            JCO.addClientPool( "MyPool",    //pool name&lt;/P&gt;&lt;P&gt;                               3,           //maximum pool connections&lt;/P&gt;&lt;P&gt;                               "333",       //SAP client&lt;/P&gt;&lt;P&gt;                               " TR",    //user ID&lt;/P&gt;&lt;P&gt;                               " XYZ",  //password&lt;/P&gt;&lt;P&gt;                               "EN",        //language&lt;/P&gt;&lt;P&gt;                               " 1.1.1.1   ", //app server host name&lt;/P&gt;&lt;P&gt;                               "00" );   //system number&lt;/P&gt;&lt;P&gt;            //create an IDoc repository&lt;/P&gt;&lt;P&gt;            IDoc.Repository idocRep = JCoIDoc.createRepository("MyIDocRepository", "MyPool");&lt;/P&gt;&lt;P&gt;            //create a new and empty MATMAS02 document&lt;/P&gt;&lt;P&gt;            System.out.print("Creating IDoc...");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Line where it shows error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            IDoc.Document doc = JCoIDoc.createDocument(idocRep, "ISU_MR_UPLOAD01");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            //get the root segment from the document&lt;/P&gt;&lt;P&gt;            //The root segment does not contain any fields or data. It is only&lt;/P&gt;&lt;P&gt;            //used as the standard parent segment and won't be transmitted when&lt;/P&gt;&lt;P&gt;            //the document is sent to an SAP system.&lt;/P&gt;&lt;P&gt;            IDoc.Segment segment = doc.getRootSegment();&lt;/P&gt;&lt;P&gt;            //create and add a new and empty child segment of type E1MARAM&lt;/P&gt;&lt;P&gt;            //and fill the segment data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Nov 2006 10:51:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-09T10:51:32Z</dc:date>
    <item>
      <title>idoc material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-material/m-p/1677773#M298882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt;I m facing problem to upload data through idoc.the scenario is like we receive electric meter reading in flat file format. And to upload that data JAVA code is written which will create an IDOC FILE this authorization is only give to 2-3 person in organization and to basis guy also as user changed it&amp;#146;s password in SAP and in JAVA the java code is not going to create the IDOC file and data is not going to upload. after changing user password in sap system ,user not able to upload the data.&lt;/P&gt;&lt;P&gt;ISU_MR_UPLOAD01 is the idoc file generated. So is there any authorization issue, password issue how to see and view IDOC IN SAP, can any one help me out into this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error with java throws is as;&lt;/P&gt;&lt;P&gt;1ST ERROR IN TRACE FILE&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;ERROR file opened at 20061109 133610 India Standard, SAP-REL 640,0,59 RFC-VER 3  MT-SL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;T:2736 ======&amp;gt; User TR has no RFC authorization for function group SYST .&lt;/P&gt;&lt;P&gt;T:2736 &amp;lt;* RfcReceive [1] : returns 3:RFC_SYS_EXCEPTION&lt;/P&gt;&lt;P&gt;2ND ERROR ON COMMAND PROMT&lt;/P&gt;&lt;P&gt;C:\j2sdk1.4.2_07&amp;gt;cd bin&lt;/P&gt;&lt;P&gt;C:\j2sdk1.4.2_07\bin&amp;gt;java sandsupload&lt;/P&gt;&lt;P&gt;Creating IDoc...Exception in thread "main" com.sap.mw.idoc.IDoc$Exception: (2) I&lt;/P&gt;&lt;P&gt;DOC_ERROR_METADATA_UNAVAILABLE: The meta data for the IDoc type "ISU_MR_UPLOAD01&lt;/P&gt;&lt;P&gt;" is unavailable.&lt;/P&gt;&lt;P&gt;        at com.sap.mw.idoc.jco.JCoIDoc$JCoDocument.&amp;lt;init&amp;gt;(JCoIDoc.java:233)&lt;/P&gt;&lt;P&gt;        at com.sap.mw.idoc.jco.JCoIDoc$JCoDocument.&amp;lt;init&amp;gt;(JCoIDoc.java:187)&lt;/P&gt;&lt;P&gt;        at com.sap.mw.idoc.jco.JCoIDoc.createDocument(JCoIDoc.java:10521)&lt;/P&gt;&lt;P&gt;        at sandsupload.main(sandsupload.java:35)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the part of java code&lt;/P&gt;&lt;P&gt;try {&lt;/P&gt;&lt;P&gt;            //create a JCo client pool&lt;/P&gt;&lt;P&gt;            JCO.addClientPool( "MyPool",    //pool name&lt;/P&gt;&lt;P&gt;                               3,           //maximum pool connections&lt;/P&gt;&lt;P&gt;                               "333",       //SAP client&lt;/P&gt;&lt;P&gt;                               " TR",    //user ID&lt;/P&gt;&lt;P&gt;                               " XYZ",  //password&lt;/P&gt;&lt;P&gt;                               "EN",        //language&lt;/P&gt;&lt;P&gt;                               " 1.1.1.1   ", //app server host name&lt;/P&gt;&lt;P&gt;                               "00" );   //system number&lt;/P&gt;&lt;P&gt;            //create an IDoc repository&lt;/P&gt;&lt;P&gt;            IDoc.Repository idocRep = JCoIDoc.createRepository("MyIDocRepository", "MyPool");&lt;/P&gt;&lt;P&gt;            //create a new and empty MATMAS02 document&lt;/P&gt;&lt;P&gt;            System.out.print("Creating IDoc...");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Line where it shows error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            IDoc.Document doc = JCoIDoc.createDocument(idocRep, "ISU_MR_UPLOAD01");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            //get the root segment from the document&lt;/P&gt;&lt;P&gt;            //The root segment does not contain any fields or data. It is only&lt;/P&gt;&lt;P&gt;            //used as the standard parent segment and won't be transmitted when&lt;/P&gt;&lt;P&gt;            //the document is sent to an SAP system.&lt;/P&gt;&lt;P&gt;            IDoc.Segment segment = doc.getRootSegment();&lt;/P&gt;&lt;P&gt;            //create and add a new and empty child segment of type E1MARAM&lt;/P&gt;&lt;P&gt;            //and fill the segment data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2006 10:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-material/m-p/1677773#M298882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-09T10:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: idoc material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-material/m-p/1677774#M298883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use WE02/WE05 to view IDocs in SAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Nov 2006 10:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-material/m-p/1677774#M298883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-09T10:56:30Z</dc:date>
    </item>
  </channel>
</rss>

