Move objects from DEV to QA

My database is a 10.2.0.4 database running on HPUX IA64 box.
I have a requirement to move a Package and a Trigger from DEV to QA.
Package ETH_OWAI.CAI_E1_Trigger_pkg
Trigger ETH_OWAI.CAI_F4311_AIUDR
Could someone please help me with the steps as to how to do it?
- can I do an exp/imp for only a package and a trigger. What should be the parameters that I should use?
- Or should I get the scripts of the objects using dba_source and execute the script in QA? Since the package has 10000 lines, I dont think I will be able to get it using dba_source.
Please let me know!

Short term solution:
You can try to use DBMS_METADATA.GET_DDL to generate the source code from database dictionary using SQL*Plus statements:
SQL> set long 100000
SQL> set heading off
  1* SELECT DBMS_METADATA.GET_DDL('PACKAGE', 'PCK', 'HR' ) txt from dual
SQL>/
  CREATE OR REPLACE PACKAGE "HR"."PCK"
is procedure p;
end;
CREATE OR REPLACE PACKAGE BODY "HR"."PCK"
is
procedure p
is
l_i int;
begin
select s.nextval into l_i from dual ;
insert into t values(l_i);
end;
end;
SQL> spool source.sql
SQL> /
  CREATE OR REPLACE PACKAGE "HR"."PCK"
is procedure p;
end;
CREATE OR REPLACE PACKAGE BODY "HR"."PCK"
is
procedure p
is
l_i int;
begin
select s.nextval into l_i from dual ;
insert into t values(l_i);
end;
end;
SQL> spool off
SQL> host type source.sql
SQL> /
  CREATE OR REPLACE PACKAGE "HR"."PCK"
is procedure p;
end;
CREATE OR REPLACE PACKAGE BODY "HR"."PCK"
is
procedure p
is
l_i int;
begin
select s.nextval into l_i from dual ;
insert into t values(l_i);
end;
end;
SQL> spool off
SQL>Long term solution:
Use a source code versioning system like Subversion to manage your source code.
Edited by: P. Forstmann on 18 oct. 2010 17:55
Edited by: P. Forstmann on 18 oct. 2010 17:57

Similar Messages

  • Transporting SLD objects from DEV to PROD

    Hi,
       I need to move My SLD objects from DEV to PROD. There is no QA. Also SLD is not common across DEV and PROD.
    Thanks!!
    Regards,
    Miten.

    Hi,
    How to handle SLD for Tranporting Dev to Quality ser
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0fa2c490-0201-0010-61b4-df12869c4753
    Transporting XI from DEV to QA
    Transporting XI from DEV to QA
    using CMS system. in XI
    1. /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    2. /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    3. /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    4. /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi --> Overview of Transition from Dev to QA in XI
    5. /people/sravya.talanki2/blog/2005/12/20/inconsistencies-while-transporting-rfc-objects-from-dev-to-qa-150-sp12
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/content.htm --> Transporting XI Objects
    http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content  .htm --> Configuring Groups and Transport Targets
    Look into this blog for how to export / improt IR and ID objects,
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Please go through these links which actualy show you how to configure CMS and also gives you all information regarding it.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/43f5d790-0201-0010-2984-ff72d822b109
    http://help.sap.com/saphelp_nw04/helpdata/en/de/a4214174abef23e10000000a155106/content.htm
    /people/daniel.wirbser/blog/2005/10/27/tcsfilecreateexception--error-while-assembly-of-software-components-in-nwdi
    http://help.sap.com/saphelp_nw04/helpdata/en/f6/719a2172f74b67b150612a7cd3b7df/content.htm
    http://www.sap-hefte.de/download/dateien/964/074_lesesprobe.pdf
    Here are some blogs.
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Re: Moving project from Dev to QA
    Error while exporting/transporting the Business system from Dev to Quality
    Transporting the scenario frm Dev Server to PRD Server
    transporting data from Dev to quality  using CMS
    Regards,
    Phani
    Reward points if Helpful

  • Transport of XI Objects from Dev to Q system

    Hi Experts,
      I need the steps for moving the XI Object from Dev to Q system.
    I have completed the devlopment of object and i need to move to Q system.
    All the servers are maintained at London.
    what should i give to Basis people inorder to move to Q system.
    Thanks in Advance,
    Bhaskar

    Hi
    You have three Options when considering transports between systems in XI:
    1. File Method - Using the standard tools in XI IR and ID it is possible to export the content to a filesystem and following this import into another environment using the import functionality. The advantage of this is that it is easy to do and not implementation overhead. The disadvantage is that you do not have clear tracability (you xhould keep all exported packages on the server).
    2. Using CMS - This uses the NWDI infrastructure to transport packages between environments. Only consider this option if you have NWDI in place in your environment otherwise in my opinion the overhead is too great. It only applies to Java Objects e.g. you cant transport for example ABAP Proxy classes using this methodology.
    3. Use CTS+ or enhanced CTS - This allows Java Objects to be transported to by attaching Java Objects to transport requests. This is good if you are an ABAPer and familiar with the se09.se10 transactions. It does however have and implementation overhead and also you must first export the Objects from IR and ID first as per point 1.
    I think in a low usage env point 1 is fine .. for an env with 100's of interfaces I would go for 3.
    All the links I think are in earlier posts ..
    Thanks
    Damien

  • Unable to transport Integratin Builder objects from Dev to QA correctly

    Hi,
    System : Pi 711 SPS03
    SLD 7.1 with  latest model and content
    We are trying to transport Integration Builder Objects from Dev to QAS, but the SID translation from DEV to QAS is not working.
    The interface is being imported as the source SID.
    We checked the SLD configuration for Transport targets, that is when we realised the below issue.
    Unable to Assign Business Systems in respective Business System Groups
    The expected configuration of the SLD is as below:
    UKD_400  - Integration Server for Dev PI 711 server
    INTEGRATION_SERVER_UKQ - Integration Server for QAS PI 711 server
    XI_QA - Business System Group for all Quality Systems in the landscape
              1) UKD_400
              2) UC1_ECC_60
              3) UED_400
    XI_DEV - Business System Group for all Developement Systems in the landscape
              1) INTEGRATION_SERVER_UKQ
              2) UC2_400
              3) UEQ_400
    We are unable to put the business systems in their respective groups
    All the Business systems are either being assigned in XI_QA or XI_DEV
    Please let us know if this is a product error in SLD 7.1, could not find any relevant notes
    Thanks,
    Govind
    Edited by: Govind Prathi on Feb 12, 2010 10:25 PM
    Edited by: Govind Prathi on Feb 12, 2010 10:27 PM

    We  have already  assinged the Integration server to their respective business system groups while creating the Business system groups.
       BSG: XI_DEV --> UKD_400( Integration Server DEV )
      BSG : XI_QA  ---> INTEGRATION_SERVER_UKQ( Integration Server QA)
    As per documentation, the business systems should be automatically assigned to their respective Groups based on their association with Integration Server.
    But, we are not seeing this behaviour, both the Integration servers are being assigned to the same Business System Group.
    Please help me understand if i am something in the configurations.
    Thanks
    Govind

  • Promotion of Object from Dev to QA

    Hi,
    A quick question,
    I developed a universe and webi report.
    While creating UNX universe in IDT I created secure connection .cns
    Now I want to promote all my objects from dev to qa for testing.
    Do I need to promote connection as well or does it get promoted automatically when I promote universe (unx file)
    I see lot of connections there when I go to Promotion management .
    Will appreciate your help,
    Thanks
    Ron

    You may have to create ODBC/DSN similar to Dev in QA
    First time when you promote UNX and reports, you have to promote connection too (By default all dependencies will be selected)
    In Promotion Management -> Edit Job -> Manage Dependencies-> Check if you appropriate .cns connection is selected.

  • Transport SLDm repository, directory objects from Dev to Prod

    Hi Forum,
    I heve a development XI system and a production XI system,
    and seperate SLD for each of them,
    In development SLD i have created,
    1 business system (third party)
    1 product and software component
    in Repository of Development XI,
    i have a file to file scenario,
    in directory of Development XI,
    i have configured the scenario,
    Now i want to transport everything (as explained above) from Development to Production XI system ....including SLD things ...
    please tell me the procedure and sequence
    Edited by: rana brata de on Jan 18, 2008 9:16 AM

    Hi,
    Check the links below for transporting the Objects from DEV to PRD.
    How to handle SLD for Tranporting Dev to Quality ser
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0fa2c490-0201-0010-61b4-df12869c4753
    Transporting XI from DEV to QA
    Transporting XI from DEV to QA
    using CMS system. in XI
    1. /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    2. /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    3. /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    4. /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi --> Overview of Transition from Dev to QA in XI
    5. /people/sravya.talanki2/blog/2005/12/20/inconsistencies-while-transporting-rfc-objects-from-dev-to-qa-150-sp12
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/content.htm --> Transporting XI Objects
    http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content  .htm --> Configuring Groups and Transport Targets
    Look into this blog for how to export / improt IR and ID objects,
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Please go through these links which actualy show you how to configure CMS and also gives you all information regarding it.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/43f5d790-0201-0010-2984-ff72d822b109
    http://help.sap.com/saphelp_nw04/helpdata/en/de/a4214174abef23e10000000a155106/content.htm
    /people/daniel.wirbser/blog/2005/10/27/tcsfilecreateexception--error-while-assembly-of-software-components-in-nwdi
    http://help.sap.com/saphelp_nw04/helpdata/en/f6/719a2172f74b67b150612a7cd3b7df/content.htm
    http://www.sap-hefte.de/download/dateien/964/074_lesesprobe.pdf
    Regards,
    Phani
    Reward points if helpful

  • How do I move objects from other package to a newly created one?

    How do I move objects from other package to a newly created one?
    Thanks!

    Dear Anthony Pham ,
    for changing objects from one package to another package
    open that object for example Report
    open the report and than click GOTO select OBJECT DIRECTIORY ENTRY
    than it will open a popup in that popup click the change and give the new package
    Thanks
    Surendra

  • How to move object from one cont. to another

    Hi I am not able to move object from one container to another container in work order driver. while when i am same line of code in JMS driver its working fine and also log genarated for the same. but in work ordre driver it is not working. here is my code which i m using for the same.ple help me out
    <do-move-src-object class-name="ValeUser">
    <arg-dn>
    <token-local-variable name="var-str-nwoContent"/>
    </arg-dn>
    <arg-dn>
    <token-text xml:space="preserve">\</token-text>
    <token-global-variable name="dirxml.auto.treename"/>
    <token-text xml:space="preserve">\</token-text>
    <token-global-variable name="hrfeed.inactive.container"/>
    </arg-dn>
    </do-move-src-object>
    thanks
    Adarsh Kumar

    Idmlearner,
    sorry, but you are still posting in the wrong forum. You should ask
    these questions in the Identity Manager forum
    Shaun Pond

  • 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.

  • Move objects from one tablespace to another

    Hello
    Running Oracle 10g rel 2 and I would like to move all objects from one tablespace to another. There are Primary Key indexes to other tables in this tablespace. The size grew too large and I want to reduce the size.
    Thank you.

    Good afternoom Sir!
    I believe that below "ask tom - moving tables across tablespaces" may help you.
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:47812348053
    Regards,
    Marcello M.

  • To move Interfaces from dev to prd/qas

    Hi Experts,
    I have created interfaces in XI developement system  and now want to move it QAS and PRD system
    How should  i go for that....do we need to define business system for QAS and PRD and make all the configuration in ID  again ?
    Thanks in advance.
    Vishal

    Vishal,
    Check this documents for help on this transition:
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    and also this for more info:
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    Regards,
    ---Satish

  • Problems transporting objects from DEV to QAS

    Hi everyone,
    I have a problem trying to transport objects from an environment to another (DEV to QA) in XI. The issue is that the objects that were transported can't be visualized in the namespace; I checked the server log and it shows:
    #2.0 #2011 04 12 14:48:55:730#0-500#Error#com.sap.aii.ibdir.server.abapcache.mapping.CacheMessageMappings#
    #BC-XI#com.sap.xi.util.misc#002264940005022700000004000046FF#109943550000000004#sap.com/com.sap.xi.directory#com.sap.aii.ibdir.server.abapcache.mapping.CacheMessageMappings#PIISUSER#460#SAP J2EE Engine JTA Transaction : [6ffffff8dffffff9afffffffe0021ffffffd4]#0022649400051EE099A790C205DA1100#4DA4A4D6A0904660E1000000AC1D0177#AC1D017746594DA4AC8E000100000000#1#Thread[HTTP Worker [@678875548],5,Dedicated_Application_Thread]#Java##
    error - some message mappings could not be read
    Thrown:
    com.sap.aii.ib.core.roa.RoaMultiObjectAccessException: Attempt to access the 10 requested objects on 10 failed. Detailed information:
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_CreateRequestSPLocalTotalSales | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_CreateRequestSPLocalTotalSales | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_InsertTableVentaTotal_response | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_InsertTableVentaTotal_response | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_SaveFileProcessesTotalSales | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_SaveFileProcessesTotalSales | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_CheckDateProcessesResponse_To_StatementVentaTotal | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_CheckDateProcessesResponse_To_StatementVentaTotal | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_CheckDateProcessesByStore | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_CheckDateProcessesByStore | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_CalculateFileProcesses | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_CalculateFileProcesses | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_ExecuteSPLocalTotalVenta | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_ExecuteSPLocalTotalVenta | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_TiendaPOS_To_InsertUpdateTotalSales | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_TiendaPOS_To_InsertUpdateTotalSales | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_CheckDateByStore_Response | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_CheckDateByStore_Response | http://spsa.com/POS/TotalSales not found
    com.sap.aii.ib.core.roa.RoaObjectAccessException: Attempt to read object Message Mapping mm_SPLocalTotalVenta_response | http://spsa.com/POS/TotalSales, type XI_TRAFO from application REPOSITORY on system REPOSITORY failed. Object does not exist. Detailed informatio n: Object Message Mapping mm_SPLocalTotalVenta_response | http://spsa.com/POS/TotalSales not found
         at com.sap.aii.ib.core.roa.RoaMultiObjectAccessException.newObjectAccessNotCompleted(RoaMultiObjectAccessException.java:98)
         at com.sap.aii.ib.core.roa.RoaServiceImpl.createObjectArrayFromRoaOutput(RoaServiceImpl.java:351)
         at com.sap.aii.ib.core.roa.RoaServiceImpl.readObjectsImpl(RoaServiceImpl.java:256)
         at com.sap.aii.ib.core.roa.RoaServiceImpl.readObjects(RoaServiceImpl.java:367)
         at com.sap.aii.ibdir.server.abapcache.mapping.CacheMessageMappings.addContent(CacheMessageMappings.java:104)
         at com.sap.aii.ibdir.server.abapcache.mapping.CacheMessageMappings.addContent(CacheMessageMappings.java:66)
         at com.sap.aii.ibdir.server.abapcache.CacheRefreshRequest.addContent(CacheRefreshRequest.java:480)
         at com.sap.aii.ibdir.server.abapcache.CacheRefreshRequest.processHTTPRequest(CacheRefreshRequest.java:210)
         at com.sap.aii.ibdir.server.abapcache.CacheRefreshRequest.handleHTTPRequest(CacheRefreshRequest.java:135)
         at com.sap.aii.ibdir.server.abapcache.HmiMethod_CacheRefresh.process(HmiMethod_CacheRefresh.java:70)
         at com.sap.aii.utilxi.hmis.server.HmisServiceImpl.invokeMethod(HmisServiceImpl.java:167)
         at com.sap.aii.utilxi.hmis.server.HmisServer.process(HmisServer.java:212)
         at com.sap.aii.utilxi.hmis.sbeans.HmisBeanImpl.process(HmisBeanImpl.java:98)
         at sun.reflect.GeneratedMethodAccessor375.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:46)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
         at $Proxy1696.process(Unknown Source)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:331)
         at com.sap.aii.utilxi.hmis.web.workers.HmisExternalClient.doWork(HmisExternalClient.java:100)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doWork(HmisServletImpl.java:532)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doGet(HmisServletImpl.java:676)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:162)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:81)
         at com.sap.engine.services.servlets_jsp.server.servlet.AuthenticationFilter.doFilter(AuthenticationFilter.java:124)
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:73)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:461)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:298)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:396)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:385)
         at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:48)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:76)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:243)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:78)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:43)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:42)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:428)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:247)
         at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:45)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    I hope anyone can help me with this.
    Regards,
    Julio

    Hi,
    The problem is that I can't transport any object (Datatypes, message types, service interface, message mapping, etc.) in XI from DEV to QAS.
    I did all the steps to transport objects:
    1. Export the objects from XI-DEV
    2. Import them in XI-QAS
    3. A message of successfull import is shown; however the objects can't be visualized. When I check the log it shows the message that I copied in my previous post.
    Hope you can help me.
    Thanks.

  • Problem while transporting Screen exit object from DEV to QAS client

    Hello All,
    I have developed screen exit for tcode 'ME51N' to add customer field in newly added TAB. To grayout that field in display mode, I have added code on the PBO event of that screen. Code for PBO even has been written inside the include. Exit is working fine on development client.
    After transporting the exit on QAS client the field graying out functionality in diplay mode is not working eventhough the include which contains the code for PBO even is exist on QAS. Also in flow logic if i double clock on the PBO module event, it says object does not exist, eventhough the include which contains the PBO event code exist in QAS.
    Please, help me to understand why the linkage between flow logic PBO event and the include where the PBO code has been written is not getting transported from DEV to QAS.

    Hi,
    First check the TR log if there is any errors. If no errors, then check if all the objects were properly transported or not.
    You might have missed out in transporting the enhancement activation(CMOD).
    Try to Rebuild the object list for updating the navigation index. You can do this from SE80=>Rightclick on function group=>More functions=>Rebuild object list.
    Thanks,
    Vinod.

  • Move code from DEV to PROD

    Hi,
    I need to move my code dev to production.
    Please let me know how.
    I have seen the posts on exporing scenario and then importing them.
    However what about the dependencies like logical schema, models etc???? How do i move them?
    Also, what about contexts?
    I have a csv to db table scenario, which i need to move.
    For DB JNDI can be used, but what about file paths??
    Please let me know.
    Thanks,
    Rosh

    Hi RoseParab,
    We have two way to migrate from Dev to Prod.
    First Way:
    Using ODI import and export option.
    Login to Dev instance,
    Goto Topology> File Menu>Export>Export Master Repository in ZIP format
    File Menu>Export>Export Logical Schema in ZIP format
    In Designer, go to File menu>Export>Export Work Repository in ZIP format
    Quit from Dev instance
    Login to Production instance
    Goto Topology> Import>Import Master Repository in ZIP format (please select INSERT and UPDATE option from dropdown list)
    Import>Import Logical Schema in ZIP format (please select INSERT and UPDATE option from dropdown list)
    In Designer Import>Import Work Repository in ZIP format (please select INSERT and UPDATE option from dropdown list)
    Second Way:
    Using Oracle DB Export/Import command (Data pum)
    Hope it will helps you
    Note: Make sure that you should change Work Repository ID after moving Dev stuff to Production
    Regards,
    Phanikanth

  • Move package from dev to prod

    Hi:
    Would you please tell me how to migrage a package from dev to prod? A customer package in 11.5.10. 10g db on unix.
    thank you!!
    Edited by: user9231603 on Feb 22, 2011 10:54 AM

    user9231603 wrote:
    How about the body? where is it?Is should be with the specification (when you move the package, you have to run the code of the specification as well as the body).
    Thanks,
    Hussein

Maybe you are looking for

  • Error message when trying to open Quicktime player 7.2 in Windows Vista

    I have tried uninstalling and then reinstalling the Q Player a couple times but I still cannot get the player to run. This is the error message that pops up: Microsoft Visual C + + Runtime Library Buffer overrun detected Program: C:\Program Files\Qui

  • Does your transfer to iPod seem to take forever?

    i'm just curious to know if it's me, USB, or the new iTunes, because right now, i am transfering my songs to my newly restored (cleaned) 60GB iPod, and boy is it taking a long, long time. i don't ever recall it taking this long before iTunes 7. so, i

  • OS 10.5.4 Strange problem installing some applications

    Hi, I am running a macPro 2.66 with one boot drive on Leopard and one on Tiger. I have noticed that when using Tiger and installing a new application I just grag it into the applications folder and BINGO.. it's installed. If I take the same applicati

  • How to force script to read a real property?

    Hi, Help me manage this, pls. We have a textFrame with, say, 3 columns. TextColumns line.length is different couse widow/orphans settings. so to fix it I try to run this: // some text in middle column is selected. MC = app.selection[0].textColumns[0]

  • Preview not wokring when sending work to print

    The preview (5.0.3) used to work when I send my files to print on a plotter but one day it no longer works no matter how many times I restarted my macbook. It is fine when viewing doucments and once the files are sent to print with all the printing s