How to change MDS in Plan

Hello,
Using database based MDS in SOA app (11g). referring all the XSDs in the application via this MDS store using resource palette - IDEConnection --- SOA-MDS . app gets compiled and deployed on remote server (where MDS is also sitting)
now, we want to deploy this application on test server (which has different MDS properties - MDSHost, MDSPort, user, pass). Two Questions .........
1> Now, without making changes in adf-config.xml where MDS properties are stored, how can we use deployment plan to make replacement to MDS properties MDSHost, MDSPort etc etc and be able to apply this new deploy plan during deploment to TEST server ?
i have created deploy plan, but do not see any entry for MDS properties replacement. so what is the way out ?
2> If that is possible, then are we going to compile / build our project with exiting (BASE) MDS connection in Jdev and then only apply the MDS replacement via deploy plan during deploy to TEST server ? is this correct ?
thx
P.S Idea is to be able to make MDS replacement thru Plan file and yet be able to compile / build / deploy correctly on TEST server.

Hi Milan,
I am trying to make my fault policy and fault bindings file global ie., accessed by all the services running in my server.
For this,
I have created a folder in /Middlewarehome/jdeveloper/integration/seed/sabari_apps. In that folder i hav my fault-policies.xml and fault-bindings.xml.
I have my adf-config.xml like below.
<?xml version="1.0" encoding="windows-1252" ?>
<adf-config xmlns="http://xmlns.oracle.com/adf/config"
xmlns:config="http://xmlns.oracle.com/bc4j/configuration"
xmlns:adf="http://xmlns.oracle.com/adf/config/properties"
xmlns:sec="http://xmlns.oracle.com/adf/security/config">
<adf-adfm-config xmlns="http://xmlns.oracle.com/adfm/config">
<defaults useBindVarsForViewCriteriaLiterals="true"/>
<startup>
<amconfig-overrides>
<config:Database jbo.locking.mode="optimistic"/>
</amconfig-overrides>
</startup>
</adf-adfm-config>
<adf:adf-properties-child xmlns="http://xmlns.oracle.com/adf/config/properties">
<adf-property name="adfAppUID" value="Application1-8741"/>
</adf:adf-properties-child>
<sec:adf-security-child xmlns="http://xmlns.oracle.com/adf/security/config">
<CredentialStoreContext credentialStoreClass="oracle.adf.share.security.providers.jps.CSFCredentialStore"
credentialStoreLocation="../../src/META-INF/jps-config.xml"/>
</sec:adf-security-child>
<adf-mds-config xmlns="http://xmlns.oracle.com/adf/mds/config">
<mds-config xmlns="http://xmlns.oracle.com/mds/config">
<persistence-config>
<metadata-namespaces>
<namespace metadata-store-usage="mstore-usage_1" path="/soa/shared"/>
<namespace metadata-store-usage="mstore-usage_2" path="/sabari_apps/faulthandling"/>
</metadata-namespaces>
<metadata-store-usages>
*<metadata-store-usage id="mstore-usage_1">*
*<metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">*
*<property value="${oracle.home}/integration"*
name="metadata-path"/>
*<property value="seed" name="partition-name"/>*
*</metadata-store>*
*</metadata-store-usage>*
*<metadata-store-usage id="mstore-usage_2">*
*<metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">*
*<property value="D:\StudyForInstalling\SOA11gHome\jdeveloper\integration" name="metadata-path"/>*
*<property value="seed" name="partition-name"/>*
*</metadata-store>*
*</metadata-store-usage>*
</metadata-store-usages>
</persistence-config>
</mds-config>
</adf-mds-config>
</adf-config>
Now .. when I try to give the path of my fault-policy and faultbinding.xml file in my composite.xml, i am confused .
<property name="oracle.composite.faultPolicyFile">jdev.rc:oracle.jdeveloper.rescat2.ResourcePalette/SabariAppsFileBasedMDS/faulthandling/fault-policies.xml</property>
<property name="oracle.composite.faultBindingFile">jdev.rc:oracle.jdeveloper.rescat2.ResourcePalette/SabariAppsFileBasedMDS/faulthandling/fault-bindings.xml</property>
here.. the links which i referred to give the value for the faultpolicyFile as oramds://apps/folder/fault-policies.xml
I have given like 'jdev.rc:oracle.jdeveloper.rescat2.ResourcePalette/SabariAppsFileBasedMDS/faulthandling/fault-policies.xml' becz when i created a filebasedMDS connection in my ResourcePalette, i found the path of my faultPolicy and faultBinding file like this, when i placed my mouse over the file.
Please guide me in finding the path of my faultpolicy file to give it in the composite.xml.
Thanks,
Sabarisri. N

Similar Messages

  • How to change the explain plan for currently running query?

    Hi All,
    I am using Oracle enterprise 9i edition. I have a query which frames dynamically and running in the database. I noticed a table with 31147758 rows
    in the query which has no indexes and taking more time to process. I tried to create an INdex on that table. I know the query is already running with a FULL table scan. Is it possible to change the explain plan for the current running query to consider the INDEX?
    [code]
    SELECT /*+ USE_HASH (c,e,b,a) */
    d.att_fcc extrt_prod_dim_id,
    d.att_fcc compr_prod_dim_id,
      a.glbl_uniq_id glbl_uniq_id,
      to_date(c.dit_code,'RRRRMMDD')STRT_DT,
      (to_date(c.dit_code,'RRRRMMDD')+150)END_DT,
      a.pat_nbr pat_id,
      a.rxer_id       rxer_id,
      e.rxer_geog_id  rxer_geog_id,
      a.pharmy_id pharmy_id,
      a.pscr_pack_id pscr_pack_id,
      a.dspnsd_pack_id dspnsd_pack_id,
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr ORDER BY c.dit_code) daterank,
      COUNT( DISTINCT d.att_fcc ) OVER (PARTITION BY a.pat_nbr, c.dit_code) event_cnt
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr,
    d.att_fcc
      ORDER BY c.dit_code) prodrank,
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr,
    d.att_fcc
      ORDER BY c.dit_code DESC) stoprank
      FROM
      pd_dimitems c,
       pd_pack_attribs   d ,
        lrx_tmp_rxer_geog e,
        lrx_tmp_pat_daterank p,
        lrx_tmp_valid_fact_link     a
        WHERE c.dit_id = a.tm_id
        AND   e.rxer_id = a.rxer_id
        AND   a.glbl_uniq_id = p.glbl_uniq_id
        AND   p.daterank > 1
      AND   a.pscr_pack_id = d.att_dit_id
    [/code]
    The table lrx_tmp_pat_daterank is having that 31147758 rows. So I am wondering how to make the query to use the newly created index on the table?

    Why do you think using Indexes will improve the performance of the query? How many rows this query is returning? Optimizer might chose a Full table scan when it finds out that Index plan might not be useful. Why are you using /*+ USE_HASH (c,e,b,a) */ hint? This Hint will force oracle to use Full table scan instead of using the index. Try removing it and see if the plan changes.
    Regards,

  • How to change posting of Planned Delivery cost in Po?

    i need to change posting of planned delivery cost in PO to other expense account.
    as when i enter any planed delivery cost in PO it direct posted to the inventory account but i need to change it to be posted to other account.

    Hi Dear,
                 You need to maintain the Account Key for the condition type in the Pricing Procedure.
    and then for the same key maintain the GL account in the OBYC settings.
    Hope it helps you.
    Regards,
    Yawar Khan

  • How to change the "Photography Plan" to "Complete - For New Customers Plan"?

    I've subscribed to "Photography plan" only yesterday but actually changed my mind and would like to go for the "Complete - For new customers" plan. How is it possible to switch?

    You need to contact support to check if it can be done. I have send you a personal message, please & respond.
    You can contact our support team directly at Contact Customer Care to cancel your membership.  If you are not seeing an option to speak with a member of our support team then please utilize a different web browser.
    Regards
    Rajshree

  • Previously I had my account set up so both my daughter and I got a text notification when the bill was due. I made changes in our plan and now we no longer receive alerts that the payment is due. How can I get this back?

    Previously my account was set up so my daughter and I got texts when the bill was due. I recently made some changes in our plan and now this is gone. How do I get this back?

    Sorry, without knowing the Apple ID/Password that was originally used to activate this phone, then there is no way to re-activate it, as you've found out.
    Apple can't/won't help you. Your choice is to get this info, or you simply won't be able to re-activate this phone.
    If you ex won't give it to you, then consult a lawyer.

  • 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

  • I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.h

    I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.how to do that in xml file ?

    Thanks john for you are reply.
    I had tried what you sad.I open shared service in that foundation project i had export shared service.after that in import-export file.In that role.csv,user.csv,group.csv.Like this file have.When i open user file added some users after i trying save in excel it shown messgse
    I click yes and save the .csv file and import from share servie. i got error like this
    am i doing right way john.or explain clearly

  • How to make changes in Savings plan calculation formula

    How can we make changes in savings plan calculation formula in benefits module?

    I have to configure the following scenario.
    There are 2 health plans into the system like
    a) BCBS with plan options: Basic & Special
    b) Mediservice with plan options: Basic & Supplementary.
    currently both the plans with all the corresponding plan options are available for hourly employees.
    Changes in configuration required isthat: Hourly employees are eligible only for BCBS-Basic plan and Mediservice-Basic plan.
    How do I make these changes in the system?
    Kindly help
    Thanks

  • How to change the currency in Billing plan in SO line item

    Hi Experts
    Pls help in following scenario.
    Company Code Currency: HKD
    Sales Document Currency: INR(Indian Rupees)
    Item Pricing Condition Currency(PR00): 100 USD
    Item Netvalue: 4800INR(System caluculated as per exchange rate type M)
    Document Netvalue: INR 4800
    The sales document item is linked to a billing plan.
    I wanted to maintain 100USD in the billing plan.
    When i goto Sales->item-->Billing Plan, The currency in billing plan screen is document currency and is greyed out.
    How to change the Currency in Billing plan (to Item Condition currency) and maintain the Billing value in USD?
    Pls help.
    Regds
    Hari

    Currency change we wanted to do is not during Invoicing.
    In billing plan itself we want to change the currency setup the billing value in item condition currency.
    Any one, pls help.

  • How do I change my storage plan? I'm currently being charged 79p a month for a storage plan I don't use and would like to cancel it!

    How do I change my storage plan? I'm currently being charged 79p a month for a storage plan I don't use and would like to cancel this and obtain a refund!
    Please help!

    Following has information about how to cancel (downgrade to the free 5GB plan): iCloud storage upgrades and downgrades - Apple Support

  • How to change the field 'Current Planning Period' in xRPM portal?

    Hello All,
    In xRPM portal, under portfolio management --> financial planning, we have a field 'Current Planning Period'.
    Can anybody tell how to change the values of this field for all the projects/items at once?
    Also, when I am trying to change for individual projects. its opening the F4 help but not  selecting the date on which I double click.
    Thanks
    Niti.

    No, you cannot add another vPC peer-keepalive configuration.
    Taking down vPC peer-keepalive will not affect your vPC peer-link and vPC operation. It will be a problem if and only if vPC peer-link went down after the peer-keepalive is down first, this will cause dual active.
    Regards,
    jerry

  • How to change sql-plan in shared pool?

    Hi, all.
    The oralce is 10.2.0.4 on sun unix.
    I created statistics for an index of a table (so big.. partitioned).
    As a result, some queries run very well, but some others went bad.
    One query, which made a big impact to reponse time, is using "index skip scanning".
    However, the query uses "PK index" with bind valuables in sqlplus session.
    How can I change sql execution plan in library cache without modifying sql statement in an application module?
    Thanks in advance.
    Have a good day.

    Thanks to your reply.
    After creating outlines, how can I make EVERY NEW session to use the stored outline??
    To be more specific, how can I issue the following command to every new session?
    -->ALTER SESSION SET use_stored_outlines=my_OUTLINES;
    Do I need to issue the following command??
    -->alter system set use_stored-outlines=my_OUTLINES??
    Thanks ..

  • How to change application owner of EPM11 planning application ?

    Hi Gurus,
    How to change application owner of EPM11 planning application ?

    Using this query i can find the application owner in backend :
    SELECT A.OBJECT_NAME AS APPLICATION_OWNER
    FROM HSP_OBJECT A, HSP_USERS B
    WHERE A.OBJECT_ID = B.USER_ID
    AND B.ROLE = 3;
    now i want to change Application owner ....please share if you know

  • How to change my subscription from "CC single-app Photoshop" plan to "Photoshop Photography" plan

    How to change my subscription from "Creative Cloud single-app membership for Photoshop (one-year)" plan to "Photoshop Photography" plan after purchase already and overlap?

    I waiting Live Chat about 2 hours and my thread not any support help to me or feedback.
    Why!

  • How can I change my data plan and backdate to beginning of this billing cycle

    How can I change my data plan and backdate to beginning of this billing cycle

        That's a great question GregTho! If you change your plan online, you can select the option to backdate, future date or on demand, (meaning, today). Please let us know if this works.
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for