How to Deploy all mappings in a module using OMB+

Hi,
I am using OMB+ to deploy project from DEV to QA , i used a OMB+ script to do the export and one import script to do the import/deployment
both Export and Import are working fine , the problem is in the Deploy part of Import script,
in this script I am connecting to the Repository and importing the Project from DEV and then changed the Context to the module and then connected to the Control centre , when i tried to deploy the mapping i get the error saying the location is not registered to the module
ususally if i use the GUI i double click the module and add the location to the module, howcan i do that in OMB+ ,
Example script would help me a lot
and for deploying the mappings i am using
OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN' ADD ACTION 'MAP_DEPLOY' SET PROPERTIES (OPERATION) VALUES ('CREATE') SET REFERENCE MAPPING 'MAPPING NAME'
but i don't want to pass mapping names like this i just want to deploy all mappings in a single step
Please advice me
Thanks in Advance
Suresh
Edited by: Suresh_G on Sep 9, 2008 3:30 PM

Hi Mahesh,
here is my script,
# Connect to the repository
OMBCONNECT datarepdb/[email protected]:1535:ukfndr USE REPOSITORY 'owb_rep'
puts stdout {Connected to Repository }
#Importing the OWB Project
OMBIMPORT MDL_FILE 'C:/Temp/local/ORAFINDATAREPOSITORY.MDL' \
USE MERGE_MODE \
OUTPUT LOG 'C:/Temp/local//ORAFINDATAREPOSITORY_IMP.LOG'
puts stdout {Import Finished }
OMBCC '/ORAFINDATAREPOSITORY'
# Assign the location to the oracle module
OMBALTER ORACLE_MODULE 'DATAREPDB' SET REFERENCE LOCATION 'DATAREPDB_LOCATION'
OMBALTER ORACLE_MODULE 'DATAREPDB' SET PROPERTIES (DB_LOCATION) VALUES ('DATAREPDB_LOCATION')
puts stdout {location to the oracle module registered}
# Connect to Control Centre for Deployment
OMBCONNECT CONTROL_CENTER USE 'dugout'
puts stdout {Connected to Controle Centre}
OMBCC '/ORAFINDATAREPOSITORY/DATAREPDB'
#Starting the Deployment
puts stdout {Starting the Deployment}
OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN' ADD ACTION 'MAP_DEPLOY' SET PROPERTIES (OPERATION) VALUES ('CREATE') SET REFERENCE MAPPING 'XXDR_GL_BALANCE'
OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN'
OMBCOMMIT
puts stdout {Deployed Mappings and Disconnecting }
OMBDISCONNECT
I embeded your script in mine but i was getting errors , i am still trying to resolve it, mine is a TCL script can u please suggest me where actually i should incorporate the ur code and to what level,
in my case we have just one module and need to deploy all the mappings in that module , the above script working fine but i don't want to give all names of mappings hardcoded.
Thanks in advance

Similar Messages

  • How to deploy APEX Application within EBS module

    Hi Guruz,
    How to deploy APEX Application within EBS module, for example I have developed APEX application by using EBS Tables like OA Framework Development in jDeveloper. or anyone can clear my understanding regarding jDeveloper and APEX differences and both are same in relation with EBS Development.
    Regards,

    Hello,
    First of all you can delete delete the development environment, by executing apxdevrm.sql script.
    You can also wrap your packages.
    Regards

  • Deployment of the SiteMinder WebAS module using SDA is no longer supported

    I just came to know  that "the deployment of the SiteMinder WebAS module using SDA is no longer supported by SAP "
    Can any body please verify that how much this is correct.
    Also,just out of curiousity, i want to know that do SAP still support SDA as the mean of deploying various modules?
    Edited by: David Garrison on Mar 6, 2008 12:27 PM
    Edited by: David Garrison on Mar 6, 2008 12:30 PM

    To move to Safari 6 you would have to install Lion or Mountain Lion.  Perhaps try contacting Google/gmail about the issue and why they are not supporting your version of Safari.

  • Create Data Source Module using OMB

    I am not seeing how to create Data Source modules using OMB. I am assuming there is a property of OMBCREATE ORACLE_MODULE that I am overlooking. If anyone can provide assistance, it would be greatly appreciated.
    Thanks,
    craig

    Hi,
    Yes, there is a OMBCREATE command for creating Oracle Modules. And as per the Scripting ref Guide ( Page 4-157 owb 9i scripting guide) -
    OMBCREATE ORACLE_MODULE 'src_module' SET PROPERTIES (DESCRIPTION, BUSINESS_NAME) VALUES ('this is an Oracle module', 'source module') This will create an Oracle module named "src_module", its description is "this is an Oracle module", and business name is "source module".
    HTH
    Mahesh

  • How to find all the objects by Module.

    Hey all,
    Can any one please help me in finding all the objects by Module.
    I need to have all the objects(like app engines, records, fields, file layouts, etc,.) in AP, AM, GL, BI, AR.
    thank you,
    Bye.

    You can use the OwnerID field as a starting point. The reason why i say that is because there are some objects that cross-over between more than one module.
    http://www.CompShack.com

  • How to find the names of Function Module used in the program

    Hi all,
    can you people help me with this issue.I want to the names of all the Function Module used in the program  along with their parameters into an internal table.It will be helpful for your suggestions.
    Kind Regards,
    Edited by: Prasenjit Sengupta on Nov 20, 2008 7:39 AM

    Take structure of internal table as
    TYPES : BEGIN OF TY_FM,
            FUNCNAME TYPE RS38L_FNAM,  "Name of Function Module
            PARAMETER TYPE RS38L_PAR_, "Parameter name
            PARAMTYPE TYPE RS38L_KIND, " Parameter type
            R3STATE TYPE R3STATE,      "ABAP: Program Status (Active, Saved, Transported...)
            STRUCTURE TYPE RS38L_TYP,  "Associated Type of an Interface Parameter
            DEFAULTVAL TYPE RS38L_DEFO,"Default value for import parameter
            REFERENCE TYPE RS38L_REFE, "Call by reference
            OPTIONAL TYPE RS38L_OPTI,  "Optional parameters
            TYPE TYPE RS38L_TYPE,      "Reference Structure is an ABAP/4 Type
            END OF TY_FM.
    DATA : IT_FM TYPE TABLE OF TY_FM WITH HEADER LINE.

  • How to deploy Jdeveloper application to war file using jasper reports?

    Hello people,
    I´m not sure I this is the right place to ask, but I really need help.
    I´m using Jdeve 10.1.3.2
    My application is working perfectly. However when I deploy to war file in publish it into application server OC4J. I can´t print report.
    the error says that it can´t find jrxml file.
    I´ve tried to deploy report´s files with the applicaiton. I´ve tried just to set the path of the jrxml file. but nothing works.
    How can I deploy my applicattion to use Jasper reports correctly?
    Thanks willian

    Hi,
    I think first you need to wrap it into an EAR file, then you can deploy it.
    As far as I know standalone deployment of WAR is deprecated as of 640.
    similar threads:
    How to deploy .war on NWDI
    Deploying an existing WAR file into the Portal
    Hopefully this tutorial also gives some idea:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/70/13353094af154a91cbe982d7dd0118/frameset.htm
    Regards,
    Ervin

  • How to find all z-programs in system using spars field in select  ???

    hi all,
       i have to make change in all program in my system in which spars field is used in select statement. how to fin all those z-programs
    points will be awarded for all useful answers.
    Regards
       Deepak Kumar

    run the report RPR_ABAP_SOURCE_SCAN, give 'z*' in "Program name" field, and 'SPRAS' in "Find string" field, u'll get to know the places where SPRAS is used, modify those programs accordingly....
    Reward points if useful, get back in case of query...
    Cheers!!!

  • How to find all APIs for AOL Module

    Hi Friendz,
    Can anybody please tell me the API for Request Group.
    Also how to find the APIs for different Screens in AOL like creating Form Functions,Forms,Menus,Responsibilities,Value Set,Value Set Names,Securing attributes etc.,
    I have tried with this URL, http://irep.oracle.com/index.html
    but page is displaying error.
    Suggest me other option.
    Can i get this through metalink
    Regards,
    Uma Jayakumar

    may be the link is broken for time being..that is the best link for APIs.
    have a look at the following this might help you.
    http://download-east.oracle.com/docs/cd/B25516_11/current/html/docset.html
    Regards
    Prashant Pathak

  • How TO DEPLOY JAR FILES INTO XI Server using SDM

    Hi XI Gurus,
       im working on adapter development. we have created jar file in NWDS.
       now going ahead to deploy into XI server through SDM.
       can we deploy jar files directly into xiserver through SDM. or it needs to convert to any other formate like EAR, SDA. then how would i convert to SDA.
      i any have clear idea on this... pls throw the ways how to convert........
               JAR File to EAR format
               JAR file to SDA format
               EAR file to SDA format         
       can any one explain the procedure step by step how to convert jar file into deployment archive file in order to succesfully into XI server.
              thanks  i advance. points will be rewarded.
      Regards
      Rajesh

    Hi Rajesh,
    JAR file in itself in not deployable.
    So v need to envelop this jar file into an EAR file and then v deploy this EAR file on SDM.
    Creating Jar
    Inside NWDS --> Windows --> Open perspective --> J2EE Development --> right click on ur proj --> Build EJB Archive
    Converting .EAR file to .SDA
    Converting .EAR file to .SDA
    Regards,
    Prateek

  • How to deploy ejb in an Enterprise Environment using the jbuilder plugin

    Hello:
    I use Oracle9iAS Plug-in Release 2 (9.0.2) for Borland JBuilder 7 to deploy my ejb. But now, i would like to deploy my ejb to oc4j in an Enterprise Environment (not as standalone).
    Does anybody know how can i do it? I noted that the plugin use admin.jar to deploy ejb, and I suppose it need to use dcmctl.
    Thank you
    Sergio

    Sergio,
    The current release of Borland JBuilder only allows you to deploy to standalone OC4J. If you want to deploy to Oracle9iAS (Enterprise OC4J), please try Oracle9i JDeveloper 9.0.3:
    http://otn.oracle.com/software/products/jdev/content.html
    JDeveloper 9.0.3 uses DCM to deploy to Oracle9iAS
    Regards,
    Chen.

  • How to deploy weblink shortcuts with specific icons using sccm -

    I have about 5 shortcuts (webLinks) that I am deploying via sccm and they get to the desktop but the specific icon does not show up. They all show "IE" Icon.
    I am sure it is something fairly simple but I just can not seem to do it.
    I used the following method to deploy the shortcuts ..
    http://joevanysitblog.blogspot.com/2013/03/copy-files-to-desktop-in-sccm-2012.html
    Thank you
    Petros

    If the weblink .url file is the one you need, and you want the icon to be packed together perhaps you should include it's .ico file
    normally when you visit a website with favicon, the favicon.ico will be stored under the cache dir under Temporary Internet Files in IE
    e.g C:\Users\Name\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\xxxx
    Also, favicon will automatically be downloaded to cache directory, and your shortcut icon will be changed once user start launching it
    ---Pat

  • How to deploy rpt chnges to end users using Windows Installer?

    We are in ISV and we develop an integrated suite of business management applications.  We use Crystal Reports extensively in these applications.  We currently deploy 717 rpt files with our suite.
    Because rpt files are not versioned, we are having problems deploying rpt changes to our end users using Windows Installer.  Windows Installer assumes that non-versioned files contain user data, so if the file exists on the users system, the file is never over written, even if the file included in the MSI is newer than the file on the users system.
    Is it possible to version .rpt files?  How do you recommend deploying these files so that if we change a few of then, we will be able to deploy the changes to our end users.
    Thanks,
    Todd

    Hi, Todd;
    There is a Revision Number property in a report that is updated when any changes are made. You can access this via the File | Properties screen, but I am not sure if you can use it in an installer.
    Regards,
    Jonathan

  • How to get all values from an interval using select statement

    Hi,
    Is it possible to write a select statement that returns all values from an interval? Interval boundaries are variable.
    something like this:
    select (for x in 1,1024 loop x end loop) from dual
    (this, of course, doesn't work)
    The result in this example should be 1024 rows of numbers from 1 to 1024. These numbers are parameters, so it is not possible to create a table with predefined values.
    Thanks in advance for your help,
    Mia.

    For your simple case, with a lower boundary of 1, you can use:
    SELECT rownum
    FROM all_objects
    WHERE rownum <= 1024For a set of number between say 50 - 100, you can use something like:
    SELECT rownum + (50 - 1)
    FROM all_objects
    WHERE rownum <= (100 - 50 + 1)Note, that all_objects was used only because it generally has a lot of rows. Any table with at least the number of rows in your range will work.
    TTFN
    John

  • How to expand all frames in the document using a script?

    Hi,
    I have used the ImageCatalog script to place a 1000+ images of different dimensions in the document. On the ImageCatalog dialog box, I have unchecked the Proportional and Frame to Content option to place the images in 100%. I am looking for a way to expand all the graphic frames to reveal all the images it placed on the document. When you double-click the bottom-right handle, it would expand the frame to see the full content. (it would time consuming when you do this one by one)
    Let me know. Thank you very much.

    If I understand you correctly, you placed the images without using Fit Frame To Contents and now you are trying to rectify this? Do you get that making just the frames larger, at this point, may make them overlapping others? If that's going to be a problem, just run the script again but this time with the correct settings ...
    Anyhow. Typing on my iPad so I can't check; but something in the lines of
    g = app.activeDocument.allGraphics;
    for (i=0; i<g.length; i++)
      g[i].fit (FitOptions.FRAME_TO_CONTENT);
    See http://jongware.mit.edu/idcsjs5.5/pc_Graphic.html#fit

Maybe you are looking for