How to Migrate custom DML Programs to a new AW

Hi,
I created a custom DML Program using AWM and OLAP Worksheet.
I'm migrating the AW metadata to another file usin XML template which doesn't migrate the custom DML Programs.
Can you please let me know how can I migrate the custom DML Programs?
We don't want to use EIF import and export as part of our migration.
Thanks,
Rajesh

Hi Rajesh,
You can also do it like this.
run dsc <program name> => Copy the output to a .txt file and in the end of this txt file after "END" insert a enter.
upload this file to physical location of a oracle directory(ensure that the user has access to this directory).
Now from olap worksheet run
infile <txt file name>;upd;commit;
Thanks
Brijesh

Similar Messages

  • How do I assign a program to my new HR sapscript form ZHR_BEN_CONF

    I have copied the form HR_BEN_CONF to a z program.  I set the config to use this form when printing a confirmation form.   when I am in transaction HRBEN0015 it is printing my new form.  All is fine except I cannot figure out how to assing my Z program to the new form.  My z program is a copy of SAPLHRBEN00FORMS and I also tried RPUBEN15.  I tried assigned the print program within se71.  But that doesn't work and I cannot find in configuration how to assign the new program to the new form.

    Application Preferences.
    Next time, 'what' program would also help.
    Most people do setup with a dedicated boot drive with OS and apps, .then use other drives or array(s) for media, scratch as needed, including external hardware RAID.

  • I purchased creative cloud when I purchased my laptop, I've since had to put in a new hard drive.  How do I reinstall the programs on my new hard drive?

    I purchased creative cloud when I purchased my laptop, I've since had to put in a new hard drive.  How do I reinstall the programs on my new hard drive?

    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    Creative Cloud Help / Install, update, or uninstall apps
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Installing Creative Cloud Apps
    http://tv.adobe.com/watch/cs6-creative-cloud-feature-tour-for-video/installing-desktop-app s-from-creative-cloud/

  • Computer Crashed with CS4 - How can I get these programs to my new computer?

    Computer Crashed with CS4 - How can I get these programs to my new computer?

    You will want to install them from the installation media.

  • How do I make this program generate a new problem once the button is hit

    Here is the code... appreciate any help given
    How do I make this program generate a new set of problem when the "NEXT" button is clicked and continue until the END button is hit
    package javaapplication3;
    import java.awt.GridLayout;
    import java.awt.Window;
    import javax.swing.*;
    import java.awt.event.*;
    * @author Sylvester Saulabiu
    class Grid extends JFrame{
        final int score = 0;
        final int total = 0;
        Grid(){
            //Set Layout of Flashcard
            setLayout(new GridLayout(4, 4, 2 , 2));
            //Create Panels
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            final JPanel p1 = new JPanel();
            //Create Radio buttons & group them
            ButtonGroup group = new ButtonGroup();
            final JRadioButton ADD = new JRadioButton("Addition");
            final JRadioButton SUB = new JRadioButton("Subtraction");
            final JRadioButton MUL = new JRadioButton("Multiplication");
            final JRadioButton DIV = new JRadioButton("Division");
            p2.add(ADD);
            p2.add(SUB);
            group.add(ADD);
            group.add(SUB);
            group.add(MUL);
            group.add(DIV);
            p2.add(ADD);
            p2.add(SUB);
            p2.add(DIV);
            p2.add(MUL);
            //Create buttons
            JButton NEXT = new JButton("NEXT");
            JButton END = new JButton("End");
            //Create Labels
            JLabel l1 = new JLabel("First num");
            JLabel l2 = new JLabel("Second num");
            JLabel l3 = new JLabel("Answer:");
            JLabel l4 = new JLabel("Score:");
            final JLabel l5 = new JLabel("");
            JLabel l6 = new JLabel("/");
            final JLabel l7 = new JLabel("");
            //Create Textfields
            final JTextField number = new JTextField(Generator1());
            final JTextField number2 = new JTextField(Generator1());
            final JTextField answer = new JTextField(5);
            //Add to panels
            p1.add(l1);
            p1.add(number);
            p1.add(l2);
            p1.add(number2);
            p1.add(l3);
            p1.add(answer);
            p1.add(l4);
            p1.add(l5);
            p1.add(l6);
            p1.add(l7);
            p3.add(NEXT);
            p3.add(END);
            //Add panels
            add(p2);
            add(p1);
            add(p3);
            //Create Listners
      NEXT.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
             int answer1 = 0;
             //Grab the numbers entered
             int numm1 = Integer.parseInt(number.getText());
             int numm2 = Integer.parseInt(number2.getText());
             int nummsanswer = Integer.parseInt(answer.getText());
             //Set the score and total into new variabls
             int nummscore = score;
             int nummtotal = total;
             //Check if the add radio button is selected if so add
             if (ADD.isSelected() == true){
                 answer1 = numm1 + numm2;
             //otherwise check if the subtract button is selected if so subtract
             else if (SUB.isSelected() == true){
                 answer1 = numm1 - numm2;
             //check if the multiplication button is selected if so multiply
             else if (MUL.isSelected() == true){
                 answer1 = numm1 * numm2;
             //check if the division button is selected if so divide
             else if (DIV.isSelected() == true){
                 answer1 = numm1 / numm2;
             //If the answer user entered is the same with th true answer
             if (nummsanswer == answer1){
                 //add to the total and score
                 nummtotal += 1;
                 nummscore += 1;
                 //Convert the input back to String
                 String newscore = String.valueOf(nummscore);
                 String newtotal = String.valueOf(nummtotal);
                 //Set the text
                 l5.setText(newscore);
                 l7.setText(newtotal);
             //Otherwise just increase the total counter
             else {
                 nummtotal += 1;
                 String newtotal = String.valueOf(nummtotal);
                 l7.setText(newtotal);
      //Create End listener
    END.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            // get the root window and call dispose on it
            Window win = SwingUtilities.getWindowAncestor(p1);
            win.dispose();
    String Generator1(){
         int randomnum;
         randomnum = (1 + (int)(Math.random() * 20));
         String randomnumm = String.valueOf(randomnum);
         return randomnumm;
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            JFrame frame = new Grid();
            frame.setTitle("Flashcard Testing");
            frame.setSize(500, 200);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: SirSaula on Dec 5, 2009 4:39 PM

    Extract code into methods, so that when an action is performed a method is called. That way you can reuse the method for purposes such as resetting textfields to their default values, scores to default values, etc.
    You can go one step further and seperate the GUI layer from the processing layer, by deriving classes that for example maintain and calculate a score.
    Mel

  • We are getting a new computer for are Adobe Creative suite 6. how do we install the program onto the new computer?

    we are getting a new computer for are adobe creative suite. How do we install the program on the new computer?

    contact adobe support for an activation count reset, http://helpx.adobe.com/x-productkb/global/service1.html

  • Just purchased a new computer, how do I download the program on the new computer?

    Just purchased a new computer, how do I download the program on the new computer?

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How to migrate custom user attributes (UDF) from test environment to production when a sandbox is published

    Hi all,
    I like to migrate custom attributes from test environment to my production environment. I read OIM documentation and i tried to fallow these steps but I cannot export sandbox and import it because all sandboxes are published in the test environment.
    I exported and imported users metadata by deployment manager only. Now, all migrated attributes are in the OIM DB but I do not see these attributes in Administration Console.
    How can i solve this issue? Is it possible to export published sandbox and import it in the other environment?
    Thank you.
    Milan

    In OIM 11g R2 you need to export sandbox before publishing sandbox for custom user fields from DEV or TEST environment.
    Then import exported sandbox in the another environment.
    If you didn't exported custom user fields sandbox from your TEST or DEV in that case you need to create those again in another environment manually. There is no other option for this in OIM 11g R2.

  • How to find custom Tcodes,programs and enhancement.. for a specific country

    hi...
    Is there any way in ABAP to find the Custom Tcodes, programs and enhancements only for specific country in our present system.

    Hi Srujan,
    Use the table name TSTC to find the custom program and t-code.
    To find the custom enhancement use t-code : CMOD.
    Regards
    Dev

  • How to launch a java program in a new process

    Hello !
    II have a Java program, in which I want to carry out another Java program but in a new process, this new program requiring the definition of constants to the launching of the JVM.
    How can I do it ?
    Tank you for your help.

    Use
    Runtime.getRuntime().exec( cmd ); //where cmd is command for run java program.
    cmd may be "java test".
    You may also try using jnlp to run you java program in a new process.
    cmd will be "cmd /c \"javaws " + jnlpFile + "\"";

  • How to migrate Boot Camp Vista Partition to new Mac

    Hi there,
    I've been working with Vista on my iMac 24" (Core2Duo 2,8GHz 2007) using a Boot Camp partition. I'll be migrating to a 27" Quad-Core iMac soon. Does anybody out there know if there's a smooth and simple way to also migrate the Boot Camp Partition without new installing Vista OS and Windows Apps?
    SL 10.6.2 on old and new iMacs. Any info appreciated.

    I figured graphics drivers would be an obstacle...just talked to a friend and got some advice:
    1. When display stays black after installation of Windows 7 64 bit (signal is on Mini-Display port)
    restart from Windows 7 DVD - open command prompt (shift+F10) and delete all ATI Drivers.
    2. Restart Windows 7 with default graphics drivers. Download ATI Desktop drivers, modify using ATI MobilityModder, install modified drivers.
    It works.
    Use of Magic Mouse's multi-touch features in Windows requires Apple's Bluetooth update 1.0 for Windows.

  • How to migrate custom attribute from OID to RHDS

    Hello!
    I am migrting my server from Oracle Internet Directory (OID) to Red Hat Directory Server (RHDS 8.1). I need to export the schema containing custom objectclass and attributes. I also need to migrate the entries. Can anyone tell me how can I do these exporting and importing task?
    I also have orclaci attribute set for groups. Does RHDS support the attribute?

    Hi Rajesh,
    You can also do it like this.
    run dsc <program name> => Copy the output to a .txt file and in the end of this txt file after "END" insert a enter.
    upload this file to physical location of a oracle directory(ensure that the user has access to this directory).
    Now from olap worksheet run
    infile <txt file name>;upd;commit;
    Thanks
    Brijesh

  • How to migrate custom application from AK to MDS ?

    I have got a custom application in Apps 11.5.8 where the data is stored in the AK_REGIONS table, etc. and the custmo application is registered in FND_APPLICATION table correctly. When applying the OAF 5.7 patch, the data is not migrated to MDS.
    Answer:
    This is because the OAF 5.7 patch does not migrate product data automatically. It is up to the development teams to do this.
    With Custom applications, there is apparently no documented or supported mechanism to migrate this data from AK to MDS.
    Solution:
    OA Framework 5.7 (or OAF 5.10) can read the page definitions out of AK, so there is no pressing need to migrate the page definitions anyway. (See Metalink Note 216823.1 for example of this) When a page needs to be changed, the page will need to be changed via AK Developer as before, or manually recreated using JDeveloper which will then be using the MDS repository.

    Do you mind telling me how you do it from the client ? All the libraries for the import utilities seem to be present in the application server. How (and what) to bring to the client where my jdeveloper resides ?
    Thanks in advance...

  • How to migrate Custom Reports from 2010 to 2013

    We are considering upgrading from Project 2010 to 2013 and one of our users noticed there are no Custom Reports or canned reports available.
    On her computer with Project 2010, when she selects Reports-Custom Reports, there are numerous canned reports available.
    On the test computer, with Project 2013, when she views Custom Reports, it is empty.
    How do we get the Custom Reports moved from her computer with Project 2010 to the test computer with Project 2013?
    thank you in advance for any assistance you can provide.
    Geemail

    Thus I guess you are using the new reports feature in MS Project Pro 2013 (as per my 2nd screenshot)?
    I would say that this feature aims at giving reports summarizing projects information in a global way, based on criterion specified by the user (cost, time period, tasks, resources..).
    I don't know how to bypass this limitation (which doesn't mean that it is not possible).
    But I'd advice as it says in the report tip to filter in order to emphasize on what makes sense for the user (incomplete tasks, overdue tasks, overallocated resources...) in order to use it like a dashboard more than like a detailed report.
    If your objective is to provide detail reports (and if you're using project server), I'd suggest to use more advanced BI features such as Excel Services or SSRS.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How to migrate custom mappings ,workflok and DAC

    Hi Experts,
    we are moving to 7.9.6.1 to 7.9.6.2 for siebel Sales Applications. We do have custom mappings and workflow as well as we have some custom Dac objects. Can any one provide me the related documents
    Reagrds,
    Ml
    Edited by: user10675696 on Sep 12, 2012 1:01 AM

    Here is a link to the doc: http://download.oracle.com/docs/cd/E14847_01/bia.796/e17801/toc.htm
    This has sections for INFA, Webcat, RPD.
    For the custom mappings, if you followed the practice of having all ETL customizations in a custom Infromatica Folder, then these should be reuseable. There should not be too much impact as 7962 and 7962 is not a major upgrade. Refer to the release notes to see if your custom mappings will have any impact.
    For DAC, again, based on the changes in 7962, you can reuse or add the necessary customizations. If I recall, there was not a lot of major DAC changes from 7961 to 7962.
    If helpful, please mark as correct or helpful

Maybe you are looking for

  • I got 99 problems and...

    Hi, here are a few problems, for those I can remember : Applications : now I've been reading a lot about why many applications that were available on bberry torch or bold (shazam, whatsapp, etc.) are not on the z10 and I get pretty mad when I read it

  • Curve 8520 black screen but have sound

    I've had problems before with the white screen but then a few days ago my screen was black but I was getting sound land flashing light wen I receive n messages/ emails and rings when I get calls. When I pull the battery it comes back on and screen sh

  • How to get each account balance in sapscript when using F.01

    Dear Friends, I had developed a sapscrit form for P/L statement ( TCODE F.01) printing Now I received a new requirement. I need to get the balance values for each account and check the credit/debit indicator in sapscript. Do anyone know how to do it?

  • HT3209 high def vs standard def

    Just purchased a tv series in high def and it looks like it will take 11h per episode to download.  Would standard def be much faster, and would it be likely that the folks at the itunes store would change this for me?

  • Child IFrame HTMLLoader, HTMLHost and Location

    Hi All, I wrote a small app with the early versions of Adobe Air that essentially monitored for swear words in any HTML Content. This monitoring was done in Flex and effectively monitored HTML objects innerHTML for any matches. I had no problems doin