Problem while generating CTS request

Hi All,
I am working on a SAP 3.1 i system where I have created a report program as local object($tmp).
Now when I am trying to assign it a Development Class the request gets created however in SE10
it comes under the status Local  Non Transportable. Other customizing request were created without any issues as transportable.
Please suggest how that request will be made transportable.
Regards
Pravesh Sharma

Hi,
        Delete that created request and save the program once again, then it will ask the request number(give development class - package) now u can create new request and try to transport. Just try once (it may work).
Edited by: Ravi Kumar on Jun 9, 2008 3:34 PM

Similar Messages

  • Problem while sending/Receiving request using the HttpURLConnection obj

    Hi,
    We are facing the problem while passing the request in Weblogic.
    Looks like there is some problem with Weblogic while sending/Receiving the request using the HttpURLConnection object.
    Currently we are migrating 2 applications to WebLogic. Application1 to application2 request should pass.
    Below is some example we tried:
    "When we send a request to our code using the SSOAdaptor code (which handles the request/session in our application) which is on the SunOne server the request parameters are received by our code successfully. And also in Create User Functionality of application1 we are sending a request to webpass(which is on Sunone Server) using the HttpURLConnection object and the SOAP request is received successfully by the Webpass."
    Looks like when we send request (using HttpURLConnection) from a server other than Weblogic to a servlet in a Weblogic the request parameters are received with out issues.
    Where as when the request is sent from WebLogic to WebLogic the request parameters are missing some how.
    Is there any issue in Weblogic? Please helpus on this.
    Thanks,
    Nagesh
    Edited by: user9307541 on Mar 15, 2010 5:08 AM

    Hi,
    Please find below scenario for testing.
    We have tested the SSOAdaptor code (it is the fucntion name which will send the data from source) locally by hittiing the WPS adaptor URL in a Java client program(TestRequest.java) and the request parameters were reaching the WPS Adapter successfully.
    Then we have written two test servlets to test the communication between SSOAdaptor(TestServlet.java) and WPS adaptor(WPSServlet.java).
    Functionality of TestSevlet: It is sending a request to WPSServelt similar to the way we are doing it in SSOAdaptor.
    Functionality of WPSServlet: It will receive the request parameters and write the parameter Map to console.
    We have deployed and these two servlets(in a single webapplication) on Tomcat server and the request parameters are reaching the WPSServlet successfully.
    Output on Tomcat server:
    before sending request
    **********************Inside WPS Servlet -- the request Map is:{TypeAcc=[Ljava.lang.String;@14e3f41, ServiceName=[Ljava.lang.String;@1acd47, GMEPortalUserID=[Ljava.lang.String;@19b04e2, UserID=[Ljava.lang.String;@5dcec6, Country=[Ljava.lang.String;@b25b9d}
    after sending request
    After this we have deployed these two servlets (with in a single webapplication) on the Weblogic server in Dev machine(path: /apps/usmport/domains/usmport/servers/usmport_admin/upload/ssoAdaptor/WEB-INF/classes/com/gm/gmeportal/security/adaptor) and
    now the request parameters are not reaching the WPSServlet.
    Output on Weblogic Server:
    before sending request
    **********************Inside WPS Servlet -- the request Map is:{}
    after sending request
    Looks like there is some problem with Weblogic while sending/Receiving the request using the HttpURLConnection object.
    When we send a request to WPSAdaptor using the Old SSOAdaptor code which is on the SunOne server the request parameters are received by WPS successfully. And also in Create User Functionality of Portal we are sending a request to webpass(which is on Sunone Server) using the HttpURLConnection object and the SOAP request is received successfully by the Webpass.
    Looks like when we send request (using HttpURLConnection) from a server other than Weblogic to a servlet in a Weblogic the request parameters are received with out issues. Where as when the request is sent from weblogic to weblogic the request parameters are missing some how.
    Please find below javs source code used to test this:
    TestRequest.java
    import java.io.BufferedReader;
    import java.io.DataOutputStream;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.net.HttpURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;
    public class TestRequest {
         * @param args
         public static void main(String[] args) throws Exception{
              // TODO Auto-generated method stub
              excutePost("http://localhost:8080/Testing/TestServlet", "GMEPortalUserID=captest.wss@it0555&UserID=bl1133&Country=it&TypeAcc=256&ServiceName=Logon");
              //System.out.println("********** Now the request is from SSO *****************");
              //excuteGet("http://10.156.0.173:7013/channel21/wpsadapter", "GMEPortalUserID=captest.wss@it0554&UserID=bl1133&Country=it&TypeAcc=256&ServiceName=Logon");
         public static String excutePost(String targetURL, String urlParameters)
         URL url;
         HttpURLConnection connection = null;
         try {
         //Create connection
         url = new URL(targetURL);
         connection = (HttpURLConnection)url.openConnection();
         connection.setRequestMethod("POST");
         connection.setRequestProperty("Content-Type",
         "application/x-www-form-urlencoded");
         connection.setRequestProperty("Content-Length", "" +
         Integer.toString(urlParameters.getBytes().length));
         connection.setRequestProperty("Content-Language", "en-US");
         connection.setUseCaches (false);
         connection.setDoInput(true);
         connection.setDoOutput(true);
         //Send request
         DataOutputStream wr = new DataOutputStream (
         connection.getOutputStream ());
         wr.writeBytes (urlParameters);
         wr.flush ();
         wr.close ();
         //Get Response     
         InputStream is = connection.getInputStream();
         BufferedReader rd = new BufferedReader(new InputStreamReader(is));
         String line;
         StringBuffer response = new StringBuffer();
         while((line = rd.readLine()) != null) {
         response.append(line);
         response.append('\r');
         rd.close();
         System.out.println("Response is:" + response);
         return response.toString();
         } catch (Exception e) {
         e.printStackTrace();
         return null;
         } finally {
         if(connection != null) {
         connection.disconnect();
         public static String excuteGet(String targetURL, String urlParameters) throws Exception
              URL url = new URL(targetURL);
              HttpURLConnection httpurlconnection =
                   (HttpURLConnection) url.openConnection();
              /*httpurlconnection.setRequestProperty(
                   "cookie",
                   constructRequestParams(httpservletrequest.getCookies()));*/
              httpurlconnection.setDoOutput(true);
              httpurlconnection.setDoInput(true);
              httpurlconnection.setRequestProperty(
                   "Content-length",
                   String.valueOf(urlParameters.length()));
              OutputStream outputstream = httpurlconnection.getOutputStream();
              outputstream.write(urlParameters.getBytes());
              outputstream.flush();
              //Get Response     
              try{
         InputStream is = httpurlconnection.getInputStream();
         BufferedReader rd = new BufferedReader(new InputStreamReader(is));
         String line;
         StringBuffer response = new StringBuffer();
         while((line = rd.readLine()) != null) {
         response.append(line);
         response.append('\r');
         rd.close();
         System.out.println("Response from SSO is:" + response);
         return response.toString();
         } catch (Exception e) {
         e.printStackTrace();
         return null;
         } finally {
         if(httpurlconnection != null) {
              httpurlconnection.disconnect();
    TestServlet.java
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class TestServlet
    public class TestServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
    * Default constructor.
    public TestServlet() {
    // TODO Auto-generated constructor stub
         * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              doPost(request,response);
         * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              //System.out.println("********************** the request Map is:" + request.getParameterMap());
              try {
                   System.out.println("before sending request");
                   excuteGet("http://localhost:7003/ssoAdaptor/WPSServlet", "GMEPortalUserID=captest.wss@it0554&UserID=bl1133&Country=it&TypeAcc=256&ServiceName=Logon");
                   System.out.println("after sending request");
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public String excuteGet(String targetURL, String urlParameters) throws Exception
              URL url = new URL(targetURL);
              HttpURLConnection httpurlconnection =
                   (HttpURLConnection) url.openConnection();
              /*httpurlconnection.setRequestProperty(
                   "cookie",
                   constructRequestParams(httpservletrequest.getCookies()));*/
              httpurlconnection.setDoOutput(true);
              httpurlconnection.setDoInput(true);
              httpurlconnection.setRequestProperty(
                   "Content-length",
                   String.valueOf(urlParameters.length()));
              OutputStream outputstream = httpurlconnection.getOutputStream();
              outputstream.write(urlParameters.getBytes());
              outputstream.flush();
              //Get Response     
              try{
         InputStream is = httpurlconnection.getInputStream();
         BufferedReader rd = new BufferedReader(new InputStreamReader(is));
         String line;
         StringBuffer response = new StringBuffer();
         while((line = rd.readLine()) != null) {
         response.append(line);
         response.append('\r');
         rd.close();
         //System.out.println("Response from SSO is:" + response);
         return response.toString();
         } catch (Exception e) {
         e.printStackTrace();
         return null;
         } finally {
         if(httpurlconnection != null) {
              httpurlconnection.disconnect();
    WPSServlet.java
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class WPSServlet
    public class WPSServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
    * @see HttpServlet#HttpServlet()
    public WPSServlet() {
    super();
    // TODO Auto-generated constructor stub
         * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              System.out.println("**********************Inside WPS Servlet -- the request Map is:" + request.getParameterMap());
         * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              // TODO Auto-generated method stub
              doGet(request,response);
    Thanks,
    Nagesh

  • IS- Retail- problem while generating delivery in WF30

    Hi Guys,
    I do have problem while generating deliveries after adjusting the stocks to stores and external customers.
    T.Code WF30- Merchandise Distribution for CD/FT process
    Scenario :!from DC to Stores process (1)
    I am getting an error called for stores is "*shipping Data not Found for item 10,20 and 30" (using one article and 3 stores)*
    Another scenario :2 from DC to external Customer(2)
    I am getting an error called "No deliveries are generated"
    (using one article and 2 customer)
    shipping point determination was done in OVL2,
    Picking area determination has done with few settings( if anybody guides what and where all the settings to be checked) I given Storage conditions in Article MD, entered Sto loc in Storage loc Deter and condition at IMG>LE>Shipping>Picking
    Is it problem in Allocation Table Item category level for second one ?
    for both scenarios i am using Allocation Table Item category AAFA
    In AAFA,(Alloc Item Cate) SD Type is ZZTA and delivery type is not maintined..(what are the entries should be in the Alloc Tab Item Cat).
    but in ZZTA sales order doc type(v0v8) Delivery type is LF
    Plz help on this..
    regards
    Harish

    Hi guys,
    I got the answer and i am closing this thread.
    Harish

  • Problems while generating the proxy definition

    Hi Experts,
       I am facing the error " Problems while generating the Proxy Definition! ", when creating the proxy definition, for a specific URL.
    The URL to call the webservice is similar to "http://www3.XYZ.com/_vti_bin/newswebservice.asmx?WSDL" and is returning the appropriate XML code. Moreover accessing the webservice through browser, returns the expected response, too.
    From the NWDS side, where we are creating the proxy, again, everything is fine, because we have already created two proxy definitions, in similar fashion, but for different WSDL links.
    The only difference we are encountering is like, earlier the links were of type "www.abc.com/..." while the new URL is of type "www3.xyz.com/..." type. I hope this load balancing technique has hardly to do anything with it.
    Any pointers for possible reasons and solutions will be of much help.
    Regards,
    Akhil Mishra

    If you are consuming a web service in NWDS look below document and check if you are not missing any step:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f0cf9e42-ccb0-2c10-d0a4-f5aa8a79e19a

  • Problems while generating the report........

    Hi Experts,
    I have genereated a new report on purchasing data, I am facing bellow problems while generating the report,
    1) In rows one Invoice doc num is there, I am not getting result row for this object, I have given NEVER in supress result rows in properties of that object, but it's not showing.....how can i get result row for this object?
    2) I am getting '#' for the blank values, How to remove these '#"s
    Please help to solve my above problems,
    Helpful answer will be awarded with points,
    Thanks in advance,
    Venkat.

    Hi,
    1) If you have only Invoice Num it does not shows the result Row .
    2)If you display the characteristics as Key u will get as '#'. You can select as Text,then it will show 'Not Assigned'. (Hope you know that when the Values not updated from Infoprovider then # appears at output )
    Hope it helps

  • Problem while generating hindi pdfs

    Hi,
    This is Dasaradh. I have one problem while generating pdfs in HIndi. Here i have used two properties files, one is English and another one is Hindhi. If the user selects English PDF is generates Suceesfully. But if the user selects hindhi then pdf is generated but in that pdf all the charcaters are in diferent format but not in hindi.Actually my hindhi properties file and that pdfgerneration jsp both are in UTF-8 format. Here i have used PDFWriter class for generating pdfs.
    Can any one pls help for generating the hindhi pdfs.
    Thanking You,
    Dasaradh.P

    Make sure that you use the correct and the same encoding thoroughout the complete process.
    1) Save the propertiesfile with in that encoding. Even the most simplest texteditor (notepad) offers you an option list of charset encodings to be used during 'Save As'.
    2) Read values from the propertiesfile with that encoding. Use a Reader where you specify the encoding in the constructor. Otherwise either the platform's default encoding (e.g. CP1252 in Windows) or the API's default encoding (e.g. ISO 8859-1 in java.util.Properties) will be used.
    3) Display the values with that encoding. Specify the charset encoding in a <meta> tag in the HTML head.
    A must-read: [http://www.joelonsoftware.com/articles/Unicode.html].

  • Problem while generating classification data-sources

    Hi ,
    I have one classification data-source 1CL_OVEN001 which is based on vendor master data and class type 10.  I tried to added one field in this data-source . while generating data-source, I got some error like " Extractor can not be generated".
    Then I searched on SAP site and got one note 1946309 . When I implemented this note and tried to generated data-source. Now I am getting another error.
    "EXTRACT STRUCTURE IS NOT PERMITTED"
    I have tried with several note  but getting same error.
    Please help.
    Thanks in advance
    Devesh Varshney

    Hi,
    What field you have added, if it is Keyfigure then make sure that you have added its unit.
    -Sriram

  • Problem while releasing TP Request

    Hi,
    We have developed ZAM Object in Development GLD and tranported to GLI(Accept). we hav edited the object in GLI (im. req. basis ).
    While releasing i am getting following error. Kindly help.
    Only edit objects from package ZAM in local requests
    Diagnosis
    Objects in package ZAM cannot be edited in transportable Workbench requests in the current system CLI. The transport routes are configured such that objects from package ZAM can only be edited in local Workbench requests.
    Thanks

    Closing my self.

  • Problem while generating Update progam for a Change Document Object

    Hi,
    I'm trying to deal with Change Document concept in a R/3 4.6C environment and to establish new Change Document object for my (Z)-table. I haven't using any namespace and created object with name ZTEST. Following the online documentation I came to the point, where I have to generate include program. I made all the nessesary inputs (using Z prefix) but faced
    "Function module name is reserved for SAP"
    Creating everything similarily using some of our registered namespaces (/somenamespace/) I succeed to generate the Update program and to integrate it in my Z-programs as well.
    My question is: is it possible to use Change Document Object-names without predefined namespace - being a regular customer developer, but not an SAP developer - means, if I am allowed to manage programs in the customer namespace (Z,Y, X) only. If yes, how to do this?
    Further (I decided not to open a new thread) - generated Update program uses
    CALL FUNCTION 'xxxxx' IN UPDATE TASK
    for creation of Change Numbers for generated Change Document Object. This CALL doesn't work when I implemented it in my Z-program, but when changed  (IN UPDATE TASK was commented) - everything goes well and the system creates records in CDHDR/CDPOS tables for my object class and table.
    Why is that? According to the documentation I shoud only fill appropriate variables for the Change Document Object (class, tr.code, etc.) and call generated FM, nothing is pointed out about any possible problems? Am I doing something wrong?
    Well, to be precise, I think I have to give a sample:
    1. I have a sample Z-table with few fields (their data elements are marked as Change-Document relevant).
    2. Using own z-progam I created a new record for this z-table. Also fill all the nessesary variables included in the interface of generated FM for Change Document Object (for example - FM-mane CD_CALL_my_object).
    3. I call the CDO FM.
    4. Check what is happening (directly in both tables CDHDR/CDPOS or using FM CHANGEDOCUMENT_READ).
    Further, I perfom the steps from 1 to 4 updating the created in previous loop record in my Z-table.
    In both cases if the FM 'CD_CALL_my_object' is called IN UPDATE TASK nothing happens, but in case of direct call (without addition IN UPDATE TASK) the system behaves as expected. Well, obliously I can change the generated code for our production needs, but it doesn't seems to be the correct decision - in case of next possible modification of the Change Document Object definition, respectively in need of re-generation of the code.
    Any hints are wellcome.
    Thanks in advance.
    Ivaylo Mutafchiev
    Edited by: Ivaylo Mutafchiev on Jan 24, 2008 10:24 AM

    "IN UPDATE TASK" resolved by myself. The one should explicitly call 'COMMIT WORK' from Z-program after CALL FUNCTION '...' IN UPDATE TASK in order to get changes in the CDHDR/CDPOS commited. The key in this issue for me was to check the documentation of CALL FUNCTION :-).
    Regards,
    Ivo

  • Problem while Importing Transport Request

    Hi Friends
    We are trying to import a transport request, while importing abap dictionary objects, in the log it is showing not imported. we have tried the same request in other system, but it works fine there. Can you please anyone explain what may be the cause behind for this.
    Regards
    Praveen

    Hi
    Please find the log.
    EXCLUDING        : 'R3TRVIEW','R3TRUENO','R3TRTTYP','R3TRTABL','R3TRSQLT','R3TRSHLP','R3TRMCOB','R3TRMCID','R3TRMACO','R3TRENQU','R
    Data file is compressed with algorithm 'L'.
    Export was executed on 25.07.2008 at 15:27:15 by unknown
    620
      with R3trans version: 26.02.07 - 15:37:00
    Source System = PC with Windows NT on DBMS = MSSQL ---  SERVER = 'ADAPSAPDEV' DBNAME = 'BI1' --- SYSTEM = 'BI1'.
    language vector during export: ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz(),./:;
    lsm during export: VECTOR
    trfunction = K (transport to consolidation system)
    Used Commandfile BI1K900524           (DEVELOPER1/125)
    Target client in E070C updated (100)
      0 entries for E070 imported (BI1K900524).
      0 entries for E071 imported (BI1K900524          *).
         table TADIR: entry in DB is 2 bytes bigger than in file.
         ... ignoring such differences.
    26 26
         table DD01L: entry in DB is 32 bytes bigger than in file.
         ... ignoring such differences.
         table DD07L: entry in DB is 1 byte bigger than in file.
         ... ignoring such differences.
    LIMUDOMDZZSMBI_TESTSTATUS was not imported in this step
         table DD04L: entry in DB is 2 bytes bigger than in file.
         ... ignoring such differences.
    LIMUDTEDZZMSBI_ABAPVERSION was not imported in this step
    LIMUDTEDZZMSBI_BUGID was not imported in this step
    LIMUDTEDZZMSBI_CODELINE was not imported in this step
    LIMUDTEDZZMSBI_CONVEXIT was not imported in this step
    LIMUDTEDZZMSBI_COUNT was not imported in this step
    LIMUDTEDZZMSBI_DATAROW was not imported in this step
    LIMUDTEDZZMSBI_DATATYPE was not imported in this step
    LIMUDTEDZZMSBI_DATEFORMAT was not imported in this step
    LIMUDTEDZZMSBI_DECIMALPOINT was not imported in this step
    LIMUDTEDZZMSBI_DELIMITER was not imported in this step
    LIMUDTEDZZMSBI_DESCRIPTION was not imported in this step
    LIMUDTEDZZMSBI_FILENAME was not imported in this step
    LIMUDTEDZZMSBI_FLAG was not imported in this step
    LIMUDTEDZZMSBI_FUNCNAME was not imported in this step
    LIMUDTEDZZMSBI_INDEX was not imported in this step
    LIMUDTEDZZMSBI_INTTYPE was not imported in this step
    LIMUDTEDZZMSBI_LANG was not imported in this step
    LIMUDTEDZZMSBI_LANGUAGE was not imported in this step
    LIMUDTEDZZMSBI_MODE was not imported in this step
    LIMUDTEDZZMSBI_MSGCLASS was not imported in this step
    LIMUDTEDZZMSBI_MSGDATE was not imported in this step
    LIMUDTEDZZMSBI_MSGID was not imported in this step
    LIMUDTEDZZMSBI_MSGTEXT was not imported in this step
    LIMUDTEDZZMSBI_MSGTIME was not imported in this step
    LIMUDTEDZZMSBI_MSGVAR was not imported in this step
    LIMUDTEDZZMSBI_NEG_ON_RIGHT was not imported in this step
    LIMUDTEDZZMSBI_OBJNAME was not imported in this step
    LIMUDTEDZZMSBI_OPTION was not imported in this step
    LIMUDTEDZZMSBI_OUTPUTLEN was not imported in this step
    LIMUDTEDZZMSBI_SEVERITY was not imported in this step
    LIMUDTEDZZMSBI_SHORTCOUNT was not imported in this step
    LIMUDTEDZZMSBI_SIGN was not imported in this step
    LIMUDTEDZZMSBI_TABLECLASS was not imported in this step
    LIMUDTEDZZMSBI_TAGNAME was not imported in this step
    LIMUDTEDZZMSBI_TAGTYPE was not imported in this step
    LIMUDTEDZZMSBI_TESTID was not imported in this step
    LIMUDTEDZZMSBI_TESTOBJNAME was not imported in this step
    LIMUDTEDZZMSBI_TESTSTATUS was not imported in this step
    LIMUDTEDZZMSBI_VAR was not imported in this step
    LIMUDTEDZZMSBI_VIEWCLASS was not imported in this step
    LIMUDTEDZZMSBI_WHERESTRING was not imported in this step
    LIMUDTEDZZMSBI_WHERE_LINE_46C was not imported in this step
    LIMUDTEDZZMSBI_WHERE_OPERATOR was not imported in this step
    LIMUDTEDZZMSBI_WHERE_VALUE was not imported in this step
    Start import LIMUREPSZZMSBI_EXTRACTCODE_TEMPLATE ...
      1 entry for TADIR updated  (R3TRPROGZZMSBI_EXTRACTCODE_TEMPLATE             ).
      0 entries from SMODILOG (PROGZZMSBI_EXTRACTCODE_TEMPLATE             REPSZZMSBI_EXTRACTCODE_TEMPLATE
      0 entries from SMODISRC (CVPROGZZMSBI_EXTRACTCODE_TEMPLATE             REPSZZMSBI_EXTRACTCODE_TEMPLATE
      0 entries from SMODISRC (CUPROGZZMSBI_EXTRACTCODE_TEMPLATE             REPSZZMSBI_EXTRACTCODE_TEMPLATE
      0 entries from SMODISRC (PRPROGZZMSBI_EXTRACTCODE_TEMPLATE             REPSZZMSBI_EXTRACTCODE_TEMPLATE
      0 entries from SMODISRC (SVPROGZZMSBI_EXTRACTCODE_TEMPLATE             REPSZZMSBI_EXTRACTCODE_TEMPLATE
      0 entries from SMODISRC (CIPROGZZMSBI_EXTRACTCODE_TEMPLATE             REPSZZMSBI_EXTRACTCODE_TEMPLATE
    REPOS ZZMSBI_EXTRACTCODE_TEMPLATE              A replaced.
    report ZZMSBI_EXTRACTCODE_TEMPLATE              (L) synchronized.
    169736 169762
      1 entry for TRDIRT updated  (ZZMSBI_EXTRACTCODE_TEMPLATE             *).
    End of import LIMUREPSZZMSBI_EXTRACTCODE_TEMPLATE
         table DD03L: entry in DB is 4 bytes bigger than in file.
         ... ignoring such differences.
    LIMUTABDZZMSBI_ABAPCODE was not imported in this step
    LIMUTABDZZMSBI_CONVERSION_FIELDS was not imported in this step
    LIMUTABDZZMSBI_CONVERSION_METADATA was not imported in this step
    LIMUTABDZZMSBI_DATAOBJECT was not imported in this step
    LIMUTABDZZMSBI_DATATABLE was not imported in this step
    LIMUTABDZZMSBI_DD02V was not imported in this step
    LIMUTABDZZMSBI_DD03P was not imported in this step
    LIMUTABDZZMSBI_DD05M was not imported in this step
    LIMUTABDZZMSBI_DD08V was not imported in this step
    LIMUTABDZZMSBI_DD09L was not imported in this step
    LIMUTABDZZMSBI_DD12V was not imported in this step
    LIMUTABDZZMSBI_DD17V was not imported in this step
    LIMUTABDZZMSBI_DD26V was not imported in this step
    LIMUTABDZZMSBI_DD27P was not imported in this step
    LIMUTABDZZMSBI_DD28J was not imported in this step
    LIMUTABDZZMSBI_DD28V was not imported in this step
    LIMUTABDZZMSBI_FIELDS was not imported in this step
    LIMUTABDZZMSBI_JOINCONDITION was not imported in this step
    LIMUTABDZZMSBI_KEYFIELDS was not imported in this step
    LIMUTABDZZMSBI_LOGMESSAGE was not imported in this step
    LIMUTABDZZMSBI_RANGE_CONVEXIT was not imported in this step
    LIMUTABDZZMSBI_RFCRETURNMSG was not imported in this step
    LIMUTABDZZMSBI_TAG_DIRECTORY was not imported in this step
    LIMUTABDZZMSBI_UNITTESTRESULT was not imported in this step
    LIMUTABDZZMSBI_WHERE was not imported in this step
    LIMUTABDZZMSBI_WHERE_CLAUSE_46C was not imported in this step
    LIMUTTYDZZMSBI_T_ABAPCODE was not imported in this step
    LIMUTTYDZZMSBI_T_CONVERSION_FIELDS was not imported in this step
    LIMUTTYDZZMSBI_T_CONVERSION_METADATA was not imported in this step
    LIMUTTYDZZMSBI_T_DATAOBJECTS was not imported in this step
    LIMUTTYDZZMSBI_T_DATATABLE was not imported in this step
    LIMUTTYDZZMSBI_T_DD02V was not imported in this step
    LIMUTTYDZZMSBI_T_DD03P was not imported in this step
    LIMUTTYDZZMSBI_T_DD05M was not imported in this step
    LIMUTTYDZZMSBI_T_DD08V was not imported in this step
    LIMUTTYDZZMSBI_T_DD09L was not imported in this step
    LIMUTTYDZZMSBI_T_DD12V was not imported in this step
    LIMUTTYDZZMSBI_T_DD17V was not imported in this step
    LIMUTTYDZZMSBI_T_DD26V was not imported in this step
    LIMUTTYDZZMSBI_T_DD27P was not imported in this step
    LIMUTTYDZZMSBI_T_DD28J was not imported in this step
    LIMUTTYDZZMSBI_T_DD28V was not imported in this step
    LIMUTTYDZZMSBI_T_FIELDS was not imported in this step
    LIMUTTYDZZMSBI_T_JOINCONDITION was not imported in this step
    LIMUTTYDZZMSBI_T_KEYFIELDS was not imported in this step
    LIMUTTYDZZMSBI_T_MESSAGE was not imported in this step
    LIMUTTYDZZMSBI_T_OBJECTMETADATA was not imported in this step
    LIMUTTYDZZMSBI_T_RANGE_CONVEXIT was not imported in this step
    LIMUTTYDZZMSBI_T_RFCRETURNMSG was not imported in this step
    LIMUTTYDZZMSBI_T_TAGTYPE_LIST was not imported in this step
    LIMUTTYDZZMSBI_T_TAG_DIRECTORY was not imported in this step
    LIMUTTYDZZMSBI_T_UNITTESTRESULT was not imported in this step
    LIMUTTYDZZMSBI_T_WHERE was not imported in this step
    LIMUTTYDZZMSBI_T_WHERE_CLAUSE_46C was not imported in this step *
    Can you please reply me asap.
    Thanks and Regards
    Praveen

  • Problem while generating stub and skeleton in ejb

    Hi All,
    I am learning Ejb,i developed a simple hello world application .And i am trying to generate stub and skeleton for that using weblogic.ejbc.I am getting the following error
    C:\nkmb\ejb\HelloEjb>java weblogic.ejbc slb.jar
    <Jun 22, 2006 9:55:35 AM EDT> <Warning> <EJB> <BEA-010212> <The EJB 'HelloBean(J
    ar: slb.jar)' contains at least one method without an explicit transaction attri
    bute setting. The default transaction attribute of Supports will be used for the
    following methods: remote[hello()] >
    C:\nkmb\ejb\HelloEjb\ejbcgen\examples\HelloBean_gbyfgg_Impl.java:11: cannot a
    ccess java.io.Serializable
    bad class file: C:\Program Files\Java\jre1.5.0_06\lib\rt.jar(java/io/Serializabl
    e.class)
    class file has wrong version 49.0, should be 48.0
    Please remove or make sure it appears in the correct subdirectory of the classpa
    th.
    public final class HelloBean_gbyfgg_Impl
    ^
    1 error
    Exec failed .. exiting
    can anybody help me to getting out of this problem.
    thanks inadvance,
    nkmb

    Try the following forum (about EJB technology)
    http://forum.java.sun.com/forum.jspa?forumID=13

  • Problem while generating Encrypted PDF in batch

    Hi PPl
    I am generating encrypted PDF in batch. I have one requirement to generate about 1 lakh PDFs.
    But when i start my batch initially it works fine but after generating round about 25 PDF my program get
    stuck at Document.copyToFile method and after that it again generates around 5-6 PDF and stops for a while
    at the same place.
    I have tried the same program to generate PDF without Encryption and it works very fine.
    Guys i need your help to solve this issue.
    Waiting for your valuable inputs.
    Thanks

    Moved to the Java Development - Crystal Reports forum.
    Ludek

  • Problem while generating PDF using iText

    Hi:
    I have generated PDF using iText, where i have written all code in sequential flow.
    <code>
    com.lowagie.text.Document document = new com.lowagie.text.Document(PageSize.A4, 55, 5, 20, 20);
    OutputStream outputstream = response.getOutputStream();
    PdfWriter.getInstance(document,outputstream);
    </code>
    And i have added all fields in the document.
    But my problem is how to display total pagecount on all pages e.g.1\20 (because i have generated PDF sequentially)
    Also i want to add watermark on all pages.
    So, can any body help me to solve this problem?
    Thank You,
    Balaji

    sabre150 wrote:
    Maybe http://itext-general.2136553.n4.nabble.com/
    Nice pron link in there :/

  • Pop problem while creating spool request in reuse_alv_grid_display

    Hi Experts,
    I am trying to create a spool request of alv
    and problem is that i do not want pop-up window for asking output devices,
    actually i am calling reuse alv in loop and following steps i have done:
    w_print-print = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_BYPASSING_BUFFER = 'X'
          I_CALLBACK_PROGRAM = SY-REPID
          IT_FIELDCAT         = FIELDCAT[]
          I_DEFAULT           = 'X'
          I_SAVE                = 'X'
          is_print                 = w_print
        TABLES
          T_OUTTAB           = T_FINAL
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please give the solution.
    Thanks
    Pankaj

    Hi,
    Use FM GET_PRINT_PARAMETERS ,  and  use command NEW-PAGE PRINT ON PARAMETERS <wa_params> NO DIALOG. before calling the alv FM.
    ls_print-print = 'X'.
    DATA: lwa_params TYPE pri_params,
          lv_valid TYPE c.
    CLEAR: lwa_params, lv_valid.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        in_parameters          = lwa_params
        layout                 = 'X_65_132'
        line_count             = 65
        line_size              = 132
        no_dialog              = 'X'
      IMPORTING
        out_parameters         = lwa_params
        valid                  = lv_valid
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    MOVE-CORRESPONDING lwa_params TO ls_print-print_ctrl-pri_params.
    ls_print-print_ctrl-pri_params-pdest = 'LP01'. " your printr device
    NEW-PAGE PRINT ON PARAMETERS lwa_params NO DIALOG.
    then call FM CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'.
    this will work.
    refer link [ALV - print - create spool request;
    Regards,
    Ravi.

  • Problem while generating an Export DataSource in our Productive BW system

    Hi all
    We are trying to generate an export data source in our productive system and for any infocube and we are getting the error "SAP System has status 'not modifiable', Choose 'Display Object' or 'Cancel'." please see the following steps to reproduce the error, for ODS's everything it's working just fine
    In the attached document, you will see he error
    Best Regards,
    BW Team
    Steps to Reproduce the error
    Please follow the next steps in order to reproduce the error:
    1. Logon into BW production system
    2. Go to TX RSA1
    3. Find infocube "XXXX"
    4. Right bottom on your mouse, go to "Additional Functions" and then select "Generate Export Data Source"
    5. You will get the following error "SAP System has status 'not modifiable', Choose 'Display Object' or 'Cancel'."
    The error is only happening with infocubes, for ODS's everything it's working just fine.
    We already check several notes and in RSA1 the "Transport Connection" --> "Object Changeability" and everything seems to be OK, we used to do it but "something happened" and we cannot do it anymore
    a"

    Hi Ramanjaneyulu
    Thanks for your soon response, we are trying to do this in order to copy data from our productive system to our quality system for testing purposes
    We have a SAP 730 and SP08 so the note does not apply because we already have it
    The problem it's only happening with infocubes and no loads had been executed  in the system during this process; for ODS's we can generate the export datasource without any problem
    thanks
    Carlos Deciga

Maybe you are looking for

  • Apple Mail, Photo Browser, Attachments and Yosemite

    OK, Help.  Anytime I want to insert a photo from my iPhoto Library into Apple Mail via Photo Browser in  Yosemite Mail, it crashes. My preferred method - Via add attachments - Finder/Pictures/Iphoto library doesn't work anymore. It now says Open iPho

  • XML in Portal

    I apologize if this is not the correct forum. Can anyone please describe Portal's current use of XML. Also, what are the future plans for XML in Portal. Thanks!

  • What will heppen if redo logs at os level get deleted

    Friends, need 1 answer about the query: what will heppen if redo logs at os level get deleted.

  • WF error

    Hi experts, running 10.2.0.4 on ebs 11.5.10.2. Suddenly my WF mailer down, no any changes done recently. When I click on container 'Workflow Agent Listener Service' and 'Workflow Mailer Service' are heaving status "Active". When I try to start WF mai

  • Problem with BPm Starting

    Hy , I have a strange problem. I defined a BPM Objects, message (files) have been received correctly, but no instance of the BPM have been started. I simulated the same BPM with another old XI System and it works. The error is an "Outbound Error" in