" Changed " Design Status after deployment involving two runtime reposiory

Hello everybody,
I'm experiencing severe metadata management problems in OWB 10.1.0.2.0.
When I deploy a mapping into the production runtime repository , it appears with a "changed" design status when I switch back to the development runtime repository.
If I can't rely on the design status it will be a nightmare to manage mapping delivery !
Anyone can share his experience about managing multiple runtime repository ?
Best regards,
Franck.

Hi Franck
Looking at your single design repository that deploys to two runtime repositories; I would say when you switch the runtime, it updates internally the default connected runtime for the mapping. As you will remember you can deploy straight from within the design browser if you have previously set the deploy mode. It will be updating this.
Not much you can do, except create a different design repository. It is somewhat poor I know. I raised a number of TARS on this myself. Perhaps they improved it in Paris (but I somehow doubt it.) Multiple database deployment configuration should be in there but so should real user based functional security and versioning(via the frontend without script repository hacks).
Too sum up, nearly all sites use the multiple design repository approach.
Regards,
Richard Harrison

Similar Messages

  • Change material status after creating SO

    Hi Guru,
    i have created a sales order with material 'DCC001'.
    after creating the sales order the STATUS of material 'DCC001' should be 'Sales not allowed'.
    but, when i am checking the status of that material, its showing blank in field 'X-distr.chain status' which is in tab 'Sales: sales org. 1'.
    Please tell me how can i change the status after creating SO.
    Thanks & Regards
    Sohel

    Please post in correct forum..

  • How to change SessionTimeOut value after deployed war file in SunAPP Server

    Hi Guys,
    Any one can help and give some guidence How i can change the session time out value in web.xml after deployed the file on sun one application server.This is the code given below which i have to change the time of session from 5 minutes to 1 minute.
    <session-config>
         <session-timeout>5</session-timeout>
    </session-config>
    Regards,
    Suresh.Babu.Ramagani.

    For SunOne session configuration is in the sun-web.xml.
    http://docs.sun.com/app/docs/doc/820-2207/abxcz?a=view
    -steve

  • Changing env-entry after deployment

    Hi,
    I was wondering how I can change the value of an env-entry after deployment? Do I have to change the value in the ejb-jar.xml, redeploy the application, or is there a utility I can use?
    thanks
    Steve

    Okay gentlemen, I dug around and couldn't find anything on this concept of defining an env-entry after deployment using Sun Java System Application Server 8.1 - so I just came up with my own hack. Thought I'd share it in case others have the same question and can't find the answer.
    Just to restate the problem: In SJAS you can't seem to define an environment entry that you can just look up via JNDI (you can do this in Tomcat pretty easy though using the context.xml file and an env-entry like syntax) - the benefit of this being of course that you can easily define deployment-time variables which a system administrator can set based on his setup. There seems to be no way to do this is SJAS 8.1
    As a workaround, you can create your own custom JNDI resource which will expose the properties that you set in the Admin Console as a simple java.util.Map that you can use from your app.
    Here's the blow by blow:
    2. Create a JNDIProperties object that implements java.util.Map but does NOT implement java.io.Serializable:
    package helpers.jndi;
    import java.util.Collection;
    import java.util.Map;
    import java.util.Set;
    public final class JNDIProperties implements Map {
        private Map map;
        public JNDIProperties(Map aMap) { map = aMap; }
        public boolean containsKey(Object key) { return map.containsKey(key); }
        public void clear() { map.clear(); }
        public Object get(Object key) { return map.get(key); }
        public boolean containsValue(Object value) { return map.containsValue(value); }
        public Set entrySet() { return map.entrySet(); }
        public boolean isEmpty() { return map.isEmpty(); }
        public Set keySet() { return map.keySet(); }
        public Object put(Object key, Object value) { return map.put(key, value); }
        public void putAll(Map t) { map.putAll(t); }
        public Object remove(Object key) { return map.remove(key); }
        public int size() { return map.size(); }
        public Collection values() { return map.values(); }
    }2. Create an object that implements javax.naming.spi.ObjectFactory and returns an instance of JNDIProperties containing the properties defined in the container:
    package helpers.jndi;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.Map;
    import javax.naming.Context;
    import javax.naming.Name;
    import javax.naming.RefAddr;
    import javax.naming.Reference;
    import javax.naming.spi.ObjectFactory;
    public class PropertyFactory implements ObjectFactory {
        public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception {
            Map myMap = new Hashtable();
            Reference myReference = (Reference)obj;
            Enumeration myEnumeration = myReference.getAll();
            while (myEnumeration.hasMoreElements()) {
                RefAddr myRefAddr = (RefAddr)myEnumeration.nextElement();
                myMap.put(myRefAddr.getType(), myRefAddr.getContent());
            JNDIProperties myJNDIProperties = new JNDIProperties(myMap);
            return myJNDIProperties;
    }3. Build this and copy the jar to $SJAS_HOME/domains/domain1/lib/ext/ (or other appropriate folder for your setup), then restart the app server to get to load the jar.
    4. Go to the admin console and go to Resources -> JNDI -> Custom Resources -> New. Give it a sensible JNDI name (I'll use "testproperties" in this example), enter java.util.Map as the resource type and the name of your factory class for the "factory class" field, e.g. "helpers.jndi.PropertyFactory". Below that under "Additional Properties", add in each of the properties that you want to expose, for example enter a property named "testproperty1" with the value of "my test".
    5. You can now get a java.util.Map that contains the properties that you set for your custom JNDI resource by doing something like the following (example in JSP):
    <%
    Context myContext = new InitialContext();
    Context myEnvContext = (Context)myContext.lookup("java:comp/env");
    Map myMap = (Map)myEnvContext.lookup("testproperties");
    %>
    <%=myMap.get("testproperty1")%>Output is:
    my testNOTE: If this sounds convoluted - I agree, it is. If anyone's got a better idea, please post it; as I could not find another solution to this seemingly simple problem.

  • Changing EndPoint URL after deploying the project

    Hi All,
    I have developed a BPEL process that invokes a Web-Service. the End-Point URL of that service changes from time to time. Now ,my requrement is that I don't want to change my BPEL code every time whenever the URL changes. Is there any cleaner way to change the end-point url and any other varaible after deploying the project.
    Basically I want to know if is this can be achieved without modifying the code manully.
    I am using Jdeveloper 11g and SOA suite 11g with weblogic 10.3.1
    Please suggect
    Thanks

    Hi
    Here I am creating dynamic partner link to call OSB service in my BPEL process. I wan make it dynamic to change run time server address and port numbers. Here I am getting Error (Error occurred reading inline schemas) while creating reference variable as per BPEL cook book. To resolve that exception, I have created /bpel/system/xmllib/ folders in SOA 11g and placed ws-addressing.xsd file. After I am trying to import in BPEL process, still I am getting same Exception.
    Even I tried to read ws-addressing.xsd file through IE browser (http://Host:Port/orabpel/xmllib/ws-addressing.xsd) after placing that directory(/bpel/system/xmllib/). My SOA server and everything is running.
    Thanks in advance.
    mally

  • Incident Management - changing doc-status after action SOCM_COPY_DOCUMENT

    Hello,
    in sppfcadm I've created a workflow handling new SAP-incidents. Everything works fine, but there's one problem: the user should have the possibility to create an urgent correction. With action SOCM_COPY_DOCUMENT the user can do this. After choosing this action and saving the support message, he can have a look with button [Document Flow] to the new generated document. In the new document everything is fine and all contents were correctly copied.
    Problem: The status of the incident doesn't change, because the action SOCM_COPY_DOCUMENT only creats a new document. In a second step the system should automatical activate action "Sets user status according to container element USER_STATUS". But where can I do this? Adding a second "Method Call" in "Assigned Processing" in transaction SPPFDETCRM doesn't work. The system only calls the first method.
    So, what I want to do is to combine two actions: "Create Change Document" + "Change Status of Document"
    I would be grateful if somebody could give me advise.
    Thanks,
    Ralph

    Hi,
    Create your own PPF Action with the Coding of both actions and it should resolve your requirement. Only with customizing you would no reach what you want, you need ABAP to do this.
    Regards
    Abosi

  • Is it possible to change 'billing status' after making credit memo request?

    Hi. This is Kwangkyun Choi from Samsung SDS in Korea as a  SD system operator.
    Our system can make billing documents from contract without making sales order and outbound delevey.
    And the contract can use milstone billing.
    When we make billing document using contract,
    one of the milestone billing item's 'billing status' has been changed from A (Not yet processed) to C (Completely processed).
    And also when we cancel the billing, the status has been changed from C to A.
    BUT,
    When I make CREDIT MEMO request referenced the billing document,
    at that time the 'billing status' doesn't changed.
    It was still 'C (Completely processed)'.
    I want to change that value 'A'.
    Is there any methods to solve this problem?
    I couln't find any solution using customising IMG setting.
    PLZ help to solve this problem.
    Best Regards.
    Edited by: Kwang-Kyun Choi on Oct 13, 2009 10:45 AM

    Hello,
    Let me clear my thought on this issue related to Billing Status of the Billing Docoument. You want to change the billing status of billing document to not yet processed after you have created a credit memo request. If this is the case then my explanation would be as :
    when billing document is generated and then Accounting document is also generated,  the billing status is fully completed. Nothing is rejected here nor nothing is left over. When you are creating a credit memo request, which is of course created with reference to Billing document then the billing status under no circumstances can change to "not yet processed" as the billing process is completed. Morever you are creating the credit memo request to adjust payment for the cusotmer.
    Hope this helps to understand !!
    Regards,
    Sarthak

  • Not Loaded status after deploying a EAR file in Oracle 10g application serv

    Hi,
    I am deployed a simple ear file in Oracle App Server 10g. The deployment went on well. But when i use the enterprise manager to see the status , it shows 'Not Loaded'.
    Can any body kindly give me a suggestion on why this is happening.
    Any help is highly appreciated.
    Thanks
    SK

    Hi,
    You have to register your Portlet provider.
    How to register new portlet in Oracle Portal 10g ?
    Here are the steps -
    1- Go to your oracle portal home page e.g. http://oracleportal.com/pls/portal
    2- Login into the oracle portal by clicking on 'login' link
    3- Go to the Builder and then Administer
    4- Click on Portlets tab
    5- Click on 'Register a Provider' in 'Remote Providers' portlet.
    6- Enter the provider URL and other information and click finish. Normally the provider URL for portlets developed using JPDK is in the form of http://[your portal]/[context root]/providers/
    Please note that you must have deployed the portlet before trying to register the provider for the portlet.
    Best Regards,
    Kevin

  • Change message status after release purchase order

    Hi,
    I'm a newbie in MM...
    When a purchase order is created, the message status is not processed (yellow light) until the purchase order is released. Then the message is printed and the status changes to green light.
    As far as I see, I can't find in the spro where is this customizing set or if there is a user-exit or badi for changing the message status depending on the release indicator.
    Thanks in advance!
    Jen

    Hi Jen,
    Complete the condition record, for example, like this:
    - Transaction: MN04
    - Output Type: NEU
    - Choose third option: Purchasing Output Determination Document Type
    - Document Type: NB
    - Function: VN (Vendor)
    - Medium: 1 (Print output)
    - Date/Time: 4 (Send immediately (when saving the application))
    Select the line and press button "Communication". Complete the output device and mark the option "Print immediately"
    So, when the PO is created the system generates the message with yellow status. Then, when the PO is released, the message status will be green
    Regards,
    Fernando

  • Email notification status after deployment finished in sccm 2012 r2

    We run 300+ server security patch update deployements every weekend with limited human resources to check when a deployment job is finished. Our limited weekend staff needs to run post deployment checks failed deployments . Is there an option in SCCM
    2012 R2 to send a email notification once a job is finished?

    I haven't taking a Powershell scripting class yet, so this will be kind of difficult to make work for what it is i am looking for. So i have to modify an Application Request script just to get a job done email notification SCCM 2012?
    Yes. There is no builtin functionality to send email when deployments have run.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Sharepoint Designer - Two step List Workflow task item is not changing the status from not started to Complete

    Hi 
    Using SPD i am creating list workflow.
    Scenario: Employee submits a request . Task assign to manager. Manager can either approve/ reject. If approve then change the state column to "done". If rejected the state column to "Rejected".
    Problem is "Assign a to do item" is assigning the task to manager. But after manager approves the status in the task list not changed to "Completed". Still it is showing "Not started". I dont want to manually complete the task.
    Please help me for automatic process. 
    What i should do to change the status to "Complete" automatically after manager approval
    Regards
    Jhanani
    Janani.R

    Hi Janani,
    From your description, you would like to create an approval workflow for a list. When an employee submit a request to the list, an approval task should be assigned to manager, then manager could approve or reject the request. From the request list,
    we should be able to see the Approval task’s status.
    Not understand the reason of designing the workflow to two steps, an approval action should be enough from my understanding. For producing, I create a list named Request list, then customize it in InfoPath form to add a Request field for stating request
    content. Then add a workflow to list named Approval task, add the action of Start an approval process with administrator and make the workflow automatically start when item is added.
    The image below shows the status of Adding items, Approving and Rejecting. Please check if it could meet your requirement.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Design status not right in deployment manager

    Hello,
    Ever since I have two deployment connections, I cannot count on on the design status of the deployment manager anymore. It keeps jumping back to 'changed' and the deployment date jumps back to an earlier date. However, when I look into the deployment history, all deployments, up to the last one, are there.
    This is very anoying. I really don't want to keep track myself of all the changes I make.
    Has anyone experience with this? Is this a bug, or is there some parameter that should be set?
    Thanks in advance,
    Gaston.

    hi
    FM  SAP_WAPI_SET_WORKITEM_STATUS  , YOu can use it to set the WI status to 'complete'
    to slove yr problem.
    you hav to pass :
    WORKITEM_ID: WI_id of the task that you want to chang
    STATUS: what u want to set (COMPLETED)
    USER: user name (can put yrs)
    LANGUAGE: EN
    DO_COMMIT:X
    it wil give you o/p as the new status.
    hope this will be helpful
    thanks
    kakoli
    Edited by: kakoli debroy on Jul 17, 2009 10:24 AM

  • How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    HI,
    How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    Thanks Florin,
    Your piece of code has worked alot, and it was very helpful in changing the Status of the Workitem to "READY" for all the Users fo the workitem.
    Points have been rewarded for your help.
    Process: We have acheived this using the "Work Item Exits", Usng "AFTER_EXECUTION" Method.
    Note: The Exit will be executed if "exit_cancelled"  statement is present/used in the work item method. if not it is not taking to the exit code. I'm unable to find the reason for it. Florin can u please explain this point.
    Please check the link for adding the code in Work Item Exits.
    http://wiki.sdn.sap.com/wiki/display/ABAP/ProgramExitsIn+Workflow
    Please find the Code:
    method IF_SWF_IFS_WORKITEM_EXIT~EVENT_RAISED.
    Get the context of the workitem
      me->wi_context = im_workitem_context.
    After execution of the workitem call the method AFTER_EXECUTION
      if im_event_name eq swrco_event_after_execution.
        me->after_execution( ).
      endif.
    endmethod.
    METHOD AFTER_EXECUTION.
    This method acts as the Event Handler for SWRCO_EVENT_AFTER_EXECUTION
      DATA: LCL_L_WID TYPE SWW_WIID,
            L_STATUS TYPE SWR_WISTAT-STATUS,
            L_NEW_STATUS  TYPE SWR_WISTAT,
            L_SWR_MESSAG  TYPE STANDARD TABLE OF SWR_MESSAG,
            L_SWR_MSTRUC  TYPE STANDARD TABLE OF SWR_MSTRUC.
    Get work item
      CALL METHOD WI_CONTEXT->GET_WORKITEM_ID
        RECEIVING
          RE_WORKITEM = LCL_L_WID.
      L_STATUS = 'READY'.
      CALL FUNCTION 'SAP_WAPI_SET_WORKITEM_STATUS'
        EXPORTING
          WORKITEM_ID    = LCL_L_WID
          STATUS         = L_STATUS
          USER           = SY-UNAME
          LANGUAGE       = SY-LANGU
          DO_COMMIT      = 'X'
        IMPORTING
          NEW_STATUS     = L_NEW_STATUS
         RETURN_CODE    = SY-SUBRC
        TABLES
          MESSAGE_LINES  = L_SWR_MESSAG
          MESSAGE_STRUCT = L_SWR_MSTRUC.
      IF SY-SUBRC EQ 0.
      ENDIF.
    ENDMETHOD.
    Thank You Once Again,
    Ajay Kumar Chippa

  • How to change async to sync after deploying the process.? Thanks

    How to change async to sync after deploying the process.? Thanks

    you'd need to change the base wsdl, the generated one (_Name.wsdl) and the bpel.file .. and remove the generated classes .. (all in domains/you_domain/tmp/your_process dir)
    the wsdl needs to get the output msg to the input msg instead of a callback porttype, the same needs to be in the generated wsdl (don't forget to remove the callback role in plnk session).. and the bpel process needs to have a reply instead of the invoke ..
    this is what you would need to do .. BUT, maybe we can find a better solution for you, if you elaborate on the usecase..
    during design time this is easier :-)
    regards clemens

  • Send e-mail after change document status solar02

    Hi...
    How is possible to send an e-mail for someone or a group, when a especific document status is changed to a new value?
    Thanks in advance,
    Warlei Figueiredo

    Hi Federico,
    Thanks for your tip about how to send an email. So, I am trying to send email in my scenario and I don't know if I am choosing the correct type status. I have two questions:
    1 - In SE16 transaction, into table TJ30 I dont know what transaction type to select?
    2 - Is necessary choose "Depend Partner"? I don't know what kind "Depend Partner" is possible to choose.
    Reminder, my necessity is to send an email to someone (doesn't matter in this moment, could be an especific user your choose) after an specific document into solar02 changed status from "A" to "B".
    Thank you if possible to help me.

Maybe you are looking for

  • Checking the actual instance of reference, like "instance of" in Java

    Hi All, I have a method that has the ability to return a number of Z exception class types.  All of these exception classes inherit from the same super Z exception class.  This means that when called the callee only needs to catch the super Z excepti

  • How can I delete bulk emails from my iPhone?

    I have an iMac, an iPhone and iPad, all running latest software.  My Mail accounts are with Gmail and Hotmail.  My problem is that I have a huge number of emails on my devices which I cannot delete.  The methods I have read about don't seem to work,

  • Issues with 0PP_C03 delta loads

    Hi, I loaded the data from 2LIS_04_P_ARBPL & 0PP_WCCP to 0PP_C03. Initialization of the data load went fine. Did the delta loads to BI and observed that I am not getting any of the Key figure data in the cube. All the values are showing as Zero. When

  • Implementaion of ADS on SAP Web AS ABAP

    Dear All We have an ECC6.0 setup on Oracle Solaris as SAP Web AS ABAP only. We now want to install & configure ADS (Adobe Document Services) on it. Is it possible to do so on ABAP only system or do we need to have ABAP + Java system. In case, we can,

  • I need to know how to access and use the Blue Tooth device that comes with the Thinkpad W520

    Forgive me for being a techo illiterate. But I know that this thing supports Blue Tooth. And one "problem" with it is although it has a DVD and sound card, music and movies have very lousy audibility. Is there something I can do about that? I can bar