Error While Transporting Smartforms from 832 client to 834 client

Hi
I released my Smartform and Program...
and i told our basis ppl to Transport the Code from 832 to 834
but while transporting they are Getting this error
Transport Control Program tp ended with error code 0212
Errors:could not access file as supposed.
My question is
Y they r getting this error?
is it link to Abap Program..
bcz they are telling that there is a wrong in my Program...
Bt my Program is working fine in 832 client...
Can any one help me on this?

Smitha,
If you haven't done any changes in the program then there is no need but you are saying you have created error messages.Haven't you tagged the changes related to the smartform as well as the Error messages (ie message class) in the same request?
If you have different requests one for error message and one for Smartform,then see to that both are transported.If smartform is using any of those error messages then you need to move the request which has got error messages first and then only the smartform related requests should be moved otherwise it will give a dump becuase by the time Smartform is moved to 834 the error messages request is not yet moved.Hence sequnece while moving the transport requests is very important.It is always advisable to have all the changes related to a program in one request.
And added to that do check the link given by Gautam too.
K.Kiran.

Similar Messages

  • Error while Transport objects from DEv to QA-File transport

    Hai Experts!
    While exporting objects from Dev to Quality using File Transport. it taking long time and no erro msg is thown and it is not getting end .Did any face this problem. Can any one help me to solve this.
    Regard's
    Preethi.

    Hai!
    Issue is solved.
    I try to export the Individual object -->Message mapping.
    While exporting i unchecked the Option With software component version Defenition.
    Now it is success. Thanks all replies.
    Regard's
    Preethi.

  • ERROR WHILE TRANSPORTING SMARTFORM

    hi friend,
    when i try to transport my smartform it shows the error message like this
    1.   Object CUAD ZINVOICE_11 is inactiv
    2.   Object REPT ZINVOICE_11 is inactiv
    what are CUAD and REPT .
    My Code is.
    REPORT  ZINVOICE_11.
    *& Report  Z_INVOICE_PRINT                                             *
    *&  changes done by : Bhupinder Singh                                                                               
    *REPORT  Z_INVOICE_PRINT_FINAL                         .
    constants : sf_name(30) type c value 'ZINVOICE_11'.
    parameters : vbeln like vbrk-vbeln .
    data : perf type c.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
       PARAMETERS: pre RADIOBUTTON GROUP RAD1 DEFAULT 'X',
                   post RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN END OF BLOCK B1.
    data : form_name type RS38L_FNAM.
    data : ivbrk like vbrk occurs 0 with header line.
    data : ivbrp1 like vbrp occurs 0 with header line.
    data : ivbrpf like vbrp occurs 0 with header line.
    data : ivbrp like vbrp occurs 0 with header line.
    data : ivbap like vbap occurs 0 with header line.
    data : ivbkd like vbkd occurs 0 with header line.
    data : ikna1 like kna1 occurs 0 with header line.
    data : ikonv like konv occurs 0 with header line.
    data : ilips like lips occurs 0 with header line.
    data : ivepo like vepo occurs 0 with header line.
    data : ivekp like vekp occurs 0 with header line.
    data : ikonv1 like konv occurs 0 with header line.
    data : ikonv2 like konv occurs 0 with header line.
    data : netwt like vekp-ntgew.
    data : grwt like vekp-brgew.
    select * from vbrp into table ivbrp where vbeln = vbeln.
    select * from vbrk into table ivbrk where vbeln = vbeln.
    data : vknumv like konv-knumv.
    loop at ivbrk.
    move ivbrk-knumv to vknumv.
    endloop.
    loop at ivbrp.
    select * from konv into table ikonv1 where knumv = vknumv and kposn = ivbrp-posnr and kschl = 'ZFOB'.
    select * from konv into table ikonv2 where knumv = vknumv and kposn = ivbrp-posnr and kschl = 'ZDS3'.
    endloop.
    data : ins like konv-kbetr.
    data : dis like konv-kbetr.
    data : fght like KONV-KBETR.
    loop at ikonv1.
    ins = ins + ikonv1-kbetr.
    endloop.
    loop at ikonv2.
    dis = dis + ikonv2-kbetr.
    endloop.
    if pre = 'X'.
          select * from vbrp into table ivbrp where vbeln = vbeln order by matkl.
          loop at ivbrp.
          on change of ivbrp-matkl.
          clear ivbrp1.
          refresh ivbrp1.
          move ivbrp-matkl to ivbrp1-arktx.
          insert  ivbrp1 into ivbrp.
          modify ivbrp.
          endon.
          endloop.
    endif.
    ivbrpf[] = ivbrp[].
    select * from vbrp into table ivbrp where vbeln = vbeln.
    select * from vbrk into table ivbrk where vbeln = vbeln.
    select * from lips into table ilips for all entries in ivbrp where vbeln = ivbrp-vgbel and posnr = ivbrp-vgpos.
    select * from vepo into table ivepo for all entries in ilips where vbeln = ilips-vbeln and posnr = ilips-posnr.
    select * from vekp into table ivekp for all entries in ivepo where venum = ivepo-venum.
    loop at ivekp.
      if ivekp-gewei = 'G'.
        ivekp-ntgew = ivekp-ntgew / 1000.
        ivekp-brgew = ivekp-brgew / 1000.
      endif.
    netwt = netwt + ivekp-ntgew.
    grwt = grwt + ivekp-brgew.
    endloop.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = sf_name
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
       FM_NAME                  = form_name
    EXCEPTIONS
      NO_FORM                  = 1
      NO_FUNCTION_MODULE       = 2
      OTHERS                   = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION form_name
      EXPORTING
                              vbeln = vbeln
                              perf  = perf
                              pre   = pre
                              post  = post
                              dis = dis
                              ins = ins
                              vknumv = vknumv
                              netwt = netwt
                              grwt = grwt
                              fght = fght
                             VECS  = VECS
      TABLES
        IVBRK                      = IVBRK
        IVBRP                     = IVBRP
        IVBRPf                     = IVBRPf
        IVBaP                     = IVBaP
        IKna1                      = IKna1
        Ivbkd                     = Ivbkd
        ivbrp1                    = ivbrp1
        ikonv                  =  ikonv
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    INCLUDE ZINVOICE_STATUS_0001O01.
    INCLUDE ZINVOICE_USER_COMMAND_0001I01.
    whaT SHOULD i do to active it and transport it.

    dear bhupi,
    When u transporting u r any object , please magke sure u r whole object is in active mode ,otherwise its shows erroe like object in  in active mode.
    Regards ,
    Nikhil Narkhede

  • Error while transporting data from DevBI to QualityBI

    Hi all,
    After transporting SD cubes,along with some warnings I received the foollowing error in BI quality system..
    Master Data Table /BI0/PMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                        |
      SID Table /BI0/SMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                                |
      Text Table /BI0/TMATERIAL contains data: Characteristic 0MATERIAL cannot be activated     
    I remember that sometimes transport error occurs if there is data inside master data object.Remove the data and transport the infoobject again.Is that right?
    Please help me out how to resolve the error.
    Thanks.

    Thanks for the reply.
    I dont have an intention  to delete the data from  infoobject.
    Somewhere I read that transport error results in some cases if there is data inside the infoobject.I am not sure if its correct or not.
    Master Data Table /BI0/PMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                        |
    SID Table /BI0/SMATERIAL contains data: Characteristic 0MATERIAL cannot be activated
         | Text Table /BI0/TMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                              
    Inorder to solve the error,what should i do?
    Please reply back.

  • Error while table Import from Oracle (OBIEE server 64bit & Client 32bit)

    Hi All,
    Problem : ODBC/OCI Connectivity Issue between OBIEE 11.1.1.6.2 BP1 (64-bit) server and OBIEE 11.1.1.6.2 BP1 Client (32-bit) local machine.
    We have an OBIEE 11.1.1.6.2 BP1(64-bit) setup on a 64-bit ‘Windows Server 2008 R2 Enterprise’ machine.
    OBIEE dev team members have 32-bit local machines.
    OBIEE “Admin team member” (who will work on RPD) has OBIEE 11g client (BP1) installed on their *32-bit local machine*(which is common client software for 32/64 bit.)
    Now, two ODBC connections were created on this 32-bit local Client machine, with OBIEE 11g client installed on it.
    One with “BI server driver” for connection to OBIEE server machine(64-bit) to open RPD and other with “Oracle database driver” to connect to the Oracle database on 64-bit machine, to import tables.
    With this setup done, I am able to open the RPD in online mode and view the existing sampleapp related objects present in it.
    But when I try to import metadata from OBIEE client admin tool using OCI or ODBC, it gives an error that “Connection fails! “
    I have the required tns entry in my tnsnames.ora file and I am able to connect to this database from the local client machine, using sqlplus.
    Kindly let me know if there are any restrictions in using this type of a setup combination of 32-bit and 64-bit machines for OBIEE 11.1.1.6.2 BP1 setup.
    If not then, what steps are to be followed to do the setup btw 64-bit OBIEE server and 32-bit OBIEE client to make table import working.

    Hi Veeravalli.. Thanks for your response.
    I have my tns file residing in both the location you mentioned on the server machine. (64-bit)
    •     {Oracle_BI1}\network\admin directory
    •     {oracle_common}\network\admin directory
    And also in the below Oracle_home path of oracle_client in the local machine. (32-bit, Oracle 11g R2 database client)
    •     {oracle_Home}\product\11.2.0\client_1\network\admin
    Also, I have used the full expanded tnsnames as you mentioned. Still issue persists.
    When I use , “DataDirect 6.0 ODBC Oracle Wire Protocol” driver, for creating the system DSN and try to import tables from OBIEE client admin tool on local client machine, the connection happens and table list comes up, but it’s an SAP product and hence it throws a msg to purchase the tool to go further with table import.
    I am wondering if I any other configuration steps need to be carried out, with the ODBC/OCI set up between 64-bit OBIEE server and 32-bit OBIEE client.
    Also, the source database that I am trying to connect to is yet again on a 64-bit machine(Oracle 11g R2).
    Please suggest.

  • Error while transporting objects from one package to another

    Hi Everyone,
    I am using a FM 'HR_INFOTYPE_OPERATION' to update a value into a table pa0584 table.
    If i try to upload all the values i am getting a return value like " No of Entries exceeds more than 20".
    So please help me out.
    Thanks
    Vijay

    Hi,
    You can merge your different requests into a single request. goto se09  select any one of your request and in menu,
    Utilities -> Reorganize -> Merge Requests. or press CTRL + F12.
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • Reg: Error while transporting from Quality to Production

    Hi ,
    I am facing a problem while transporting ODS from quality to production.. The same works perfectly when i transport from Dev to quality.
    The Error Displayed while transporting is
    Start of the after-import method RS_ODSO_AFTER_IMPORT for object type
    The creation of the export DataSource failed
    Password logon no longer possible - too many failed attempts
    Error when creating the export DataSource and dependent Objects
    Error when activating DataStore Object
    The creation of the export DataSource failed
    Password logon no longer possible - too many failed attempts
    Error when creating the export DataSource and dependent Objects
    Error when resetting DataStore Object to the active version
    Kindly give me some suggestion ..
    Thanks in advance
    Regards
    Guru

    go to the source system RFC connection in SM59 and do a remote login - if you get the login page there then there is an issue with the RFC connection. also check if any other system is using the same RFC.. we had a situation where th R/3 connection was being used by 3 BI instances and everytime we reset the password , another system would lock the sme , ultimately we identified the systems and did a password reset in all the systems and then the issue got resolved.
    but then we also faced the same issue you faced and it was related to login issues - check the remote login and that will tell you.

  • "llegal character in path at index" Error While Using wsimport from ant.

    Hi,
    I am getting the following error, while using wsimport from ant build script. you have the details below. I dont have a clue on this error.
    Error :
    wsimport:
    [echo] Generating the client stubs
    [wsimport] error: Unable to parse "HelloService_schema1.xsd" : Illegal character in path at index 25: file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] line 0 of file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] error: Unable to parse "HelloService_schema1.xsd" : Illegal character in path at index 25: file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] line ? of file:/D:/Study/WebService Eclipse Project/examples/jaxws/helloservice/service/server/wsdl/HelloService.wsdl#types?schema1
    [wsimport] error: Element "{http://endpoint.helloservice/}sayHello" not found.
    Java WebService :
    package helloservice.endpoint;
    import javax.jws.WebMethod;
    import javax.jws.WebService;
    @WebService()
    public class Hello {
    private String message = new String("Hello, ");
    @WebMethod()
    public String sayHello(String name) {
    return message + name + ".";
    Ant Build.xml
    <project name="${project.name}" basedir="." default="ear">
         <property file="WS_build.properties"/>
         <target name="init">
              <!-- Path Setting-->
              <echo description="Setting the path for the project"/>
              <path id="classpath">
                   <fileset dir="${lib.dir}" includes="*.jar"/>          
                   <fileset dir="${commonWSLib.dir}" includes="*.jar"/>
              </path>
              <!-- WSGen -->
              <echo description="WSGEN Definition"/>
              <taskdef name="wsgen" classname="com.sun.tools.ws.ant.WsGen">
                   <classpath>
                        <path refid="classpath"/>
                   </classpath>
              </taskdef>
              <!-- WS Import-->
              <echo description="WSImport Definition" />
              <taskdef name="wsimport" classname="com.sun.tools.ws.ant.WsImport">
                   <classpath>
                        <path refid="classpath"/>
                   </classpath>
              </taskdef>
         </target>
         <target name="Compile" depends="init">
              <echo description="Compiling the project"/>
              <mkdir dir="${build.dir}"/>
              <mkdir dir="${build.dir}/classes"/>
              <javac destdir="${build.dir}/classes" srcdir="${java.base}">
                   <classpath>
                        <path refid="classpath"/>
                   </classpath>
              </javac>
              <copy todir="${build.dir}/classes">
                   <fileset dir="${java.base}" excludes="**/*.java"/>
              </copy>
         </target>
         <target name="wsgen" depends="Compile">
                   <echo message="Generating the wsdl file[${project.name}Service.wsdl]" />
                   <mkdir dir="${service.dir}"/>
                   <mkdir dir="${service.dir}/server"/>
                   <mkdir dir="${service.dir}/server/classes"/>
                   <mkdir dir="${service.dir}/server/src"/>          
                   <mkdir dir="${service.dir}/server/wsdl"/>                    
                   <wsgen sei="${sei.class}" destdir="${service.dir}/server/classes" genwsdl="true"
                   sourcedestdir="${service.dir}/server/src" resourcedestdir="${service.dir}/server/wsdl">
                        <classpath>
                             <path refid="classpath" />
                             <pathelement location="${build.dir}/classes" />
                        </classpath>
                   </wsgen>
         </target>
         <target name="copy" depends="wsgen">
                   <echo message="Copying class and config files into ${web-inf.dir} folder" />
                   <copy todir="${web-inf.dir}">
                        <fileset dir="${build.dir}"/>
                        <fileset dir="${service.dir}/server" includes="**/*.class"/>
                        <fileset dir="." includes="${lib.dir}/*.jar"/>
                   </copy>
                   <copy todir="${web-inf.dir}/${lib.dir}">
                        <fileset dir="${commonWSLib.dir}" includes="*.jar"/>
                   </copy>
                   <copy todir="${web-inf.dir}">
                        <fileset dir="${web-inf.dir}" includes="**/*.xml"/>
                   </copy>
         </target>
         <!-- Create the WAR file     -->
         <target name="war" depends="copy">
              <echo message="Creating the war file [${project.name}.war]" />     
              <mkdir dir="${dist.dir}"/>
              <mkdir dir="${dist.dir}/server"/>
              <war destfile="${dist.dir}/server/${project.name}.war" webxml="${web-inf.dir}/web.xml" basedir="${web.dir}"/>
         </target>
         <target name="wsimport" depends="war">
              <echo message="Generating the client stubs" />          
              <mkdir dir="${service.dir}"/>
              <mkdir dir="${service.dir}/client"/>
              <mkdir dir="${service.dir}/client/classes"/>
              <mkdir dir="${service.dir}/client/src"/>     
              <wsimport wsdl="${basedir}/${service.dir}/server/wsdl/${project.name}.wsdl"
                   destdir="${service.dir}/client/classes"
                   package="${wsimport.package}"
                   sourcedestdir="${service.dir}/client/src">
              </wsimport>
         </target>
         <target name="clientjar" depends="wsimport">
    <echo message="Creating the client jar file [${project.name}Client.jar] " />
    <copy todir="${service.dir}/client/classes">
    <fileset dir="${service.dir}/client/src"/>
    </copy>
    <mkdir dir="${dist.dir}/client"/>
                   <tstamp>
                   <format property="TODAY" pattern="yyyy-MM-dd hh:mm:ss" />
                   </tstamp>
    <jar destfile="${dist.dir}/client/${project.name}Client.jar"
    basedir="${service.dir}/client/classes">
                   <manifest>
                   <attribute name="Built-By" value="${user.name}"/>
                   <attribute name="Built-Date" value="${TODAY}"/>
                   <attribute name="Implementation-Version" value="${version}-b${build.number}"/>
              </manifest>
              </jar>          
    <mkdir dir="${dist.dir}/client"/>
         </target>
         <!-- JAR THE ENGINE -->
         <target name="enginejar" depends="clientjar">
         <echo message="Creating the engine jar file for local call [${project.name}.jar] " />
              <!-- <copy todir="${build.dir}/classes">
                        <fileset dir="." includes="${config.dir}/hibernate.cfg.xml"/>           
         </copy> -->
              <tstamp>
                   <format property="TODAY" pattern="yyyy-MM-dd hh:mm:ss" />
              </tstamp>
         <jar destfile="${dist.dir}/server/${project.name}.jar"
         basedir="${build.dir}/classes">
                   <manifest>
                        <attribute name="Built-By" value="${user.name}"/>
                        <attribute name="Built-Date" value="${TODAY}"/>
                        <attribute name="Implementation-Version" value="${version}-b${build.number}"/>
              </manifest>
              </jar>          
              </target>
              <!-- GENERATE EAR FOR THE ENGINE -->
              <target name="ear" depends="enginejar" >
                   <echo message="Creating the ear file [${project.name}.ear]" />
                   <ear destfile="${dist.dir}/server/${project.name}.ear" appxml="META-INF/application.xml">
                   <fileset dir="${dist.dir}/server" includes="${project.name}.war"/>
              </ear>
                   <antcall target="clean"></antcall>
              </target>
              <!-- CLEAN UP THE FOLDERS     -->
              <target name="clean">
                   <echo message="Cleaning up folders " />          
                   <delete dir="${build.dir}"/>
                   <delete dir="${service.dir}"/>
                   <delete dir="${web-inf.dir}/classes"/>
                   <delete dir="${web-inf.dir}/lib"/>
                   <echo message="${project.name}.ear, ${project.name}.war, ${project.name}.jar and ${project.name}Client.jar is available in project's ${dist.dir} folder"/>
              </target>
    </project>
    Generated wsdl(HelloService.wsdl) :
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <definitions targetNamespace="http://endpoint.helloservice/" name="HelloService" xmlns:tns="http://endpoint.helloservice/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
    <types>
    <xsd:schema>
    <xsd:import namespace="http://endpoint.helloservice/" schemaLocation="HelloService_schema1.xsd"/>
    </xsd:schema>
    </types>
    <message name="sayHello">
    <part name="parameters" element="tns:sayHello"/>
    </message>
    <message name="sayHelloResponse">
    <part name="parameters" element="tns:sayHelloResponse"/>
    </message>
    <portType name="Hello">
    <operation name="sayHello">
    <input message="tns:sayHello"/>
    <output message="tns:sayHelloResponse"/>
    </operation>
    </portType>
    <binding name="HelloPortBinding" type="tns:Hello">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="sayHello">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="HelloService">
    <port name="HelloPort" binding="tns:HelloPortBinding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
    </port>
    </service>
    </definitions>
    Generated : HelloService_schema1.xsd
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <xs:schema version="1.0" targetNamespace="http://endpoint.helloservice/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="sayHello" type="ns1:sayHello" xmlns:ns1="http://endpoint.helloservice/"/>
    <xs:complexType name="sayHello">
    <xs:sequence>
    <xs:element name="arg0" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="sayHelloResponse" type="ns2:sayHelloResponse" xmlns:ns2="http://endpoint.helloservice/"/>
    <xs:complexType name="sayHelloResponse">
    <xs:sequence>
    <xs:element name="return" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    If u need any other information let me know.

    This has been resolved by uploading relevant jar file

  • Error while transporting a Workbook

    Hi Pioneers
                  I got an Error while transporting a Workbook from Development to quality.The error is "logical transport object 432L not found in table RSTLOGOPROP".     
        Could u let me out with a possible solution....Plz...
    BR
    Sekhar.D.R

    Hi,
    You have to create a new request and transport it again before transporting ensure that you collect all the dependent objects manually in the "Transport Connection" in the collection options.
    Hope this helps
    Assign points if useful
    Regards,
    venkat

  • Error while transporting custom datasource

    Hi All,
    Below is the scenario that was carried out in my project.
    1. Created OHD to load data from a CUBE to Data base Table /BIC/ABC.
    2. Created a custom Datasource ZABC_TEST with the above table.
    3. Activated the DataSource and loaded the data. (Data load successfull. It works fine).
    4. Tried transporting the above. But trows error while transporting the data source.
    Error -- InfoSource ZABC_TEST is not available in source system BITST.
    Let me know what can be done to solve the above error. Please suggest if i have missed out something.
    Thanks in advance.
    Maddy

    HI,
    The problem seems to be occuring since you are transporting both OHD and DS in the same TR request.
    Transport first the DS in a request, then in another request transport the OHD.
    This should resolve the issue.
    hope this helps.
    thanks,
    rahul

  • Error While Transporting Transformation

    Hi Gurus, I have this issue that I am getting an error while transporting Transformation. I made sure that that only transformation is sected and nothing else. I am getting this error message while importing it in BWQ environment "Formula 4AY060939P5D2NKRXKMJFECLS is already locked in the requests of other users or the system is set so that formula 4AY060939P5D2NKRXKMJFECLS can no longer be changed."
    I was wondering, if this is locked by some other object or transport request, how can I find that out? Thanks in advance for all the help.

    Hi,
    You can check if the request is locked by another transport in BWQ by using the transaction SE03.
    First find the object directory entry for your object(you can take this from your transport. Go to SE03 --> 'Search for Objects in Requests/Tasks '. Under object selection enter the details as in your transport and select the check box against your new entry. Under Request/Task selection, select 'Modified' and 'Released'. Execute. You will now see a list of transport requests that contain your transformation. Check these & either release them or delete your object from the modifable transports. Re import your transport.
    You can check if this object was locked by a person using the transaction SM12.
    Regards,
    Shilpa

  • Error while transporting objects:Internal error during pvc call: Parameter

    Dear all,
    We are facing the following error while transporting the individual configuration objects from our PI development system.
    Export failed: Internal error during pvc call: Parameter versionSpecifier or version has the invalid value null .
    However, it works fine when the complete configuration scenario is transported.
    We tried to transport the objects with different user id's, even then the issue still exists.
    Any inputs to resolve this will be highly helpful.
    Thank you,
    Younus

    Hi Mohammed,
    Answer is inside this oss [Note 1554387 - Error during export from Integration Directory|https://service.sap.com/sap/support/notes/1554387]. In this oss note, solution is to apply a patch (just a patch, not a SP). as it's a litle sap bug...
    Note: your issue is also explained with picture in this one "1550549 - PI transport: Internal error during pvc call" (sorry for this one I cannot insert a link)
    regards
    Mickael
    Edited by: Mickael Huchet on Jan 26, 2012 2:50 PM

  • Error while transporting Infocube

    Hello all,
    i am getting following error while transporting infocube to testing system.
    Please see the bellow error message details.
    Error/warning in dict. activator, detailed log    > Detail
    Structure change at field level (convert table /BIC/DZMD_Y_MR2)
    Structure change at field level (convert table /BIC/FZMD_Y_MR)
    Table /BIC/DZMD_Y_MR2 could not be activated
    Table /BIC/FZMD_Y_MR could not be activated
    Return code..............: 8
    Following tables must be converted
    ZMD_Y_MR InfoCube could not be activated
    Thanks in advance.
    BR,
    YVReddy

    Dear Venkat,
    Looks like you have changed the fields on the infocube.Just wanted to make sure that did u delete the 'data' from the cube 'ZMD_Y_MR' in the testing system before u make the traansport?
    for any changes in the cube fields (except addition of new char) u may need to delete the cube data..
    regards,
    Srini

  • Error while transporting standard cube

    Hi
    We are facing errors while transporting a standard cube and all relevant objects.
    While collection it throws errors saying certain routines are not active, whilst unable to find those routines.
    If we ignore and transport the same, transformations es are not being transported.
    How to resolve this., please provide inputs.
    regards
    Lavanya

    Hi Lavanya
    The error log says these objects are in repair mode in this system. I searched the system for the trnsformations, but they are not present. How do we resolve these
    This only means that the objects were changed directly in the target system (could be QA or prod) and are captured in some request. You need to find the relevant request on the target system and take the appropriate action. You could chose to delete the request or transport it from QA to Prod.
    Find the requests on the target system and you will see the tranaformations collected. However, it is not going to be an easy taskl for you to find as the TR will be with the technical name. But this is definitely the reason for the error.
    Cheers
    Umesh

  • Error while transporting 0MAT_PLANT

    Hi Experts
    I am getting error while transporting 0MAT-PLANT to Prod System.It going fine to QA system.
    it is giving the follwoing error with return code 8
    Characteristic 0MAT_PLANT: Master data has to be activated before conversion
    Start of the after-import method RS_IOBJ_AFTER_IMPORT for object type(s) IOBJ (Delete Mode)
    Errors occurred during post-handling RS_AFTER_IMPORT for DTPA L
    RS_AFTER_IMPORT belongs to package RS
    The errors affect the following components:
    BW-WHM (Warehouse Management)
    I have deleted one Info-object (Key figure) and added one info-object(Key figure) to 0MAT_PLANT ,transported still it is giving errors it is going fine to QA.
    1.Is it because we have large no of records in Prod system ..??
    2.Do we need to delete the data in Prod for 0MAT_PLANT and transport....????
    3.Is it related to any database error in adjusting P table in Prod...?
    Please let me know anybody faced this kind of problem.
    Regards
    Prasad

    Hi Prasad,
    Just to summarise the discussion. If you need to send the transport successfully you need to the following steps:
    1. MD (complete) needs to be deleted from IOBJ. Please note, unless you delete the TD data involving the IOBJ, you will not be able to delete MD completely.
    The reason being, the SID's for the MD are being used in the various IC/DSOs. So you need to go by deleting related TD and then MD.
    2. Secondly, if you forcibly delete for 'P' and 'S' table using the SE14-> Table Name -> Delete Data & adjust Db. This will cause lot of inconsistencies on Drill Down in reports and even on execution as SID values are missing!
    Moreover, as you said there are around 10/12 InfoProviders involved here, then this forcefull deletion can cause a real imapct to your Prod system and make many reports unsusable! So pls be careful!
    Please decide accordingly as there is a trade off here!
    -VA
    Edited by: Vishwa  Anand on Sep 27, 2010 12:15 PM

Maybe you are looking for

  • Can AP 1242 act as a Wireless Bridge

    I have an AccessPoint (Cisco 1242) that has no Ethernet connection available. Is it possible to use one 802.11a interface of the neighbor Access Point as bridge so that the Access point without Ethernet connection can get a connection?

  • "Communication Error" when signing in my account o...

    hi am using asha 311 and when i try signing in my e mail it says communication error. try again...kindly help Moderator's Note: We have moved your post and changed the title into a subject-related title. This is to keep the forum organized and let ot

  • "Unsupported LOB type" error occurs when executing DBMS_LOB.FRAGMENT_INSERT

    Dear all, I try to run DBMS_LOB.FRAGMENT_INSERT, but got error saying: ORA-43856: Unsupported LOB type for SECUREFILE LOB operationSuppose I have the following code: declare note_clob clob; note_clob2 clob; note_bfile bfile; buffer varchar2(10000); n

  • Update KB 2919355 fails

    Hey guys, i'm having problems with installing the update KB2919355. (i.e.the "big" Windows 8.1 Update 1 update). When i try to install this update the system want's to reboot and says "windows is installing updates...please wait" However after a few

  • Warning on /PAE with Windows 2003 Server

    Recently I added the /3GB switch to our boot.ini files for our portal servers. While we were in there we were recommended (by our Ops group) to add the /PAE switch as well. Shortly after we noticed new errors appearing within the PTSPY logs at a high