Question: How to make EDQ Trigger ODI?

Hi ALL
I know how to make ODI to Trigger EDQ Job but are threre any wat to make EDQ to trigger ODI Job?
regards,
Supanut Srisaksakul

Assuming ODI jobs can be called from the command line, you could use an External Task and a shell script to invoke them.

Similar Messages

  • Question: How to make EDQ Purge Project data after Finishing a Job?

    Hi all
    I know how to purge project data manually by clicking
    but I am wondering if there is a way to make EDQ to Purge project data after Finishing a Job by itself.
    Thank you in advance for all answer.

    Hi,
    In EDQ 9.0, there is no automated purge facility.
    However, note that you can configure a job to write only bare metrics and the data and results data that you are choosing to stage (or indeed to stage no data at all) - and you can set such options up to be variable at runtime using a run profile. It is normally better to consider purging separately from the running of jobs, since any temporary footprint a job has in the results database is cleared up automatically in any case.
    Regards,
    Mike

  • Simpe Question: How to make .swf non scalable

    Hey guys,
    I have been trying to search for an answer on how to make a whole .swf file unscalable but I have only found information on how to scale flash files. I did find a post that mentioned the code "Stage.scaleMode = "noScale";" but when I add that to the first frame in my timeline, nothing happens. So any help on this issue would be much appreciated. Thanks so much.
    Note: I am using action script 3.

    You can also use this frame action:
    fscommand("fullscreen", "false");
    to disable the menu use:
    fscommand("showmenu", "false");
    Hope that helps

  • Question: How to make typing area bigger in chat?

    My first post disappeared, so if this is a double, I'm sorry.
    I can't find how to make my typing area in the chat bigger - I only seem to be able to make it wider and I'm really, really annoying with the ridiculously tiny one-liner area I currently have. How do I make it bigger?
    Thanks!
    Solved!
    Go to Solution.

    This is not possible with the latest Skype 7.0 version. The typing area will only expand vertically when entering a new line of text.
    If you prefer the old Skype style, then uninstall the 7.0 version and install the previous 6.21.0.104 version.
    http://download.skype.com/msi/SkypeSetup_6.21.0.104.msi

  • How to make ALEAUD trigger XI scenario

    I've been reading a lot of messages on this but not found good answers to this requirements.
    I would like to trigger a XI non BPM scenario when I receive an ALEAUD back from R/3 on FI message type. The idea behind is to read certain fields from ALEAUD segment and to report on them (to remote system).
    I configured ALEAUDIT XI IDoc scenario incl map and all but my scenario is not being called or shown in SXMB_MONI or RWB message display.
    However I do see Acks being posted for the reference message in question.
    Any idea?
    THanks,
    Pam

    Ravi,
    ALEAUD IDocs are being triggered in R/3 and they do make it to XI. I see them in IDX5 and also in the ref XI message where it does get posted as Ack. In addition, I have a separate XI interface which takes this ALEAUD, maps certain fields of it and send an email notificaiton to remote system. This scenario IDoc - XI - Mail/fail (tried both) is not happening. The scenario just does not get triggered. Don't see it in RWB message display or sxmb_moni.
    Thanks,
    Pam

  • Warehoue question- how to make it?

    Hi Gurus,
    I need to make a apex application to manage the warehouse, we are a typical manufacture, I made it like this:
    1. One table for input the income of goods of the goods.
    2. One table for output from the warehouse of the goods.
    3. the stocks you can see from a view, I sum all the ins by item, and then sum all the outs by item,and then
    sum(in) - sum(out)
    will be the stock in store.
    Is that silly?
    I am just wondering what others are doing, I got another idea
    1. one table for inputing goods
    2. one table for outputing goods
    3. one table for stocks
    And the stock will change by triggers, like that, if something come into the warehouse, by the in table, and then the stock table will also be automatically increased by the same qty, by a trigger at the in table.
    if out, the oposite.
    How do you create that kind of stuff?
    Peter

    peter,
    for reports try and explore materalized views (only if you think data will be stale).
    if you think the data tables are volatile explore using completely normalized table structure (at least 3rd normal form).
    do you have users input the data or do you do it?
    bharat

  • Newbie question - how to make an autoplay dvd?

    Forgive the rank beginner question, but here goes. I have a 3.5Gb, uncompressed 8-bit .mov file that I want to burn to a dvd. It should simply play on insertion, no menus, no other media, nothing. Seems like it should be simple in dvdsp, but I've been beating my head against this, so far with no luck. Any help you experts can provide will be much appreciated. Thanks.

    Set first play to the track as suggested. If you want it to loop set the end jump to the track itself. Usually it is a good idea to have a menu in case someone hits the menu button on the remote (or to stop playback) and put a button on that menu to go to the track. If you are looping a short movie (timewise) you may want to string a few on the track so that the player does not have to keep on repositioning back to the beginning. I know you mentioned 3.5 Gig 8 bit, but did not see the time, I didn't want to do the math right now
    Also if you search autoplay or loop --> this comes up often.
    You also want to encodde your video with Compressor and make the audio AC3 in all likelihood
    http://dvdstepbystep.com/faqs_3.php
    http://dvdstepbystep.com/faqs_7.php
    Some info on Compressor also here (though part of it is for something different)
    http://dvdstepbystep.com/faqs_7.php

  • How to make Partial Trigger work for a SelectManyShuttle

    Hi,
    I'm developing a page for user role management. For each role, one or more menus could be assigned to it. We have 3 db table, Role, Menu and RoleMenu. RoleMenu is the intersection table.
    At UI level, I placed one editable table on the top of a page, and put a SelectManyShuttle below the table.
    I developed a backing bean for the SelectManyShuttle to get all menus and selectedMenus for the current row in the table.
    The Shuttle can display selectedMenu for the first row of the Role table, but it can't update when I select another row. It seems the partial trigger is not working.
    Below are the codes:
      <af:selectManyShuttle value="#{ pageFlowScope.RoleManagementBean.selectedValues}"
                    leadingDescShown="true" size="8"
                                  trailingDescShown="true"
                                  inlineStyle="background-color:transparent; width:100%;"
                                          binding="#{pageFlowScope.RoleManagementBean.menuSelectShuttle}">
                      <f:selectItems value="#{ pageFlowScope.RoleManagementBean.allItems}"/>
      </af:selectManyShuttle>
    * Implements the basic backing-bean mechanics to handle page with shuttle.
    * By injecting managed properties into the properties of this bean
    * you can setup the shuttle data binding declaratively.
    public class RoleManagementBean {
        String beanName = "RoleManagementBean";
        String allItemsIteratorName;
        String allItemsValueAttrName;
        String allItemsDisplayAttrName;
        String allItemsDescriptionAttrName;
        String selectedValuesIteratorName;
        String selectedValuesValueAttrName;
        List selectedValues;
        List allItems;
        private boolean refreshSelectedList = false;
        private RichSelectManyShuttle menuSelectShuttle;
        public RoleManagementBean() {
        private OperationBinding findOperationBinding(String pOperationBindingName) {
            BindingContainer bindings = ADFUtils.getBindingContainer();
            OperationBinding operation =
                bindings.getOperationBinding(pOperationBindingName);
            return operation;
         * Setter for 'allItemsIteratorName' property.
         * @param allItemsIteratorName Name of the iterator for all items in the list
        public void setAllItemsIteratorName(String allItemsIteratorName) {
            this.allItemsIteratorName = allItemsIteratorName;
         * Getter for 'allItemsIteratorName' property.
         * @return Name of the iterator to use for all items in the list
        public String getAllItemsIteratorName() {
            return allItemsIteratorName;
         * Set allItems value attribute name.
         * @param allItemsValueAttrName name of attr to use as value of all items list
        public void setAllItemsValueAttrName(String allItemsValueAttrName) {
            this.allItemsValueAttrName = allItemsValueAttrName;
         * Get allItems value attribute name.
         * @return name of attr to use as value of all items list
        public String getAllItemsValueAttrName() {
            return allItemsValueAttrName;
         * Setter for 'allItemsDisplayAttrName' property.
         * @param allItemsDisplayAttrName attr to use for display in all items list
        public void setAllItemsDisplayAttrName(String allItemsDisplayAttrName) {
            this.allItemsDisplayAttrName = allItemsDisplayAttrName;
         * Getter for 'allItemsDisplayAttrName' property.
         * @return attr to use for display in all items list
        public String getAllItemsDisplayAttrName() {
            return allItemsDisplayAttrName;
         * Setter for 'allItemsDescriptionAttrName' property.
         * @param allItemsDescriptionAttrName attrib for description in all items list
        public void setAllItemsDescriptionAttrName(String allItemsDescriptionAttrName) {
            this.allItemsDescriptionAttrName = allItemsDescriptionAttrName;
         * Getter for 'allItemsDescriptionAttrName' property.
         * @return attrib for description in all items list
        public String getAllItemsDescriptionAttrName() {
            return allItemsDescriptionAttrName;
         * Setter for 'selectedValuesIteratorName' property.
         * @param selectedValuesIteratorName name of iterator for selected values
        public void setSelectedValuesIteratorName(String selectedValuesIteratorName) {
            this.selectedValuesIteratorName = selectedValuesIteratorName;
         * Getter for 'selectedValuesIteratorName' property.
         * @return name of iterator for selected values
        public String getSelectedValuesIteratorName() {
            return selectedValuesIteratorName;
         * Setter for 'selectedValuesValueAttrName' property.
         * @param selectedValuesValueAttrName name of attr to use for selected value
        public void setSelectedValuesValueAttrName(String selectedValuesValueAttrName) {
            this.selectedValuesValueAttrName = selectedValuesValueAttrName;
         * Getter for 'selectedValuesValueAttrName' property.
         * @return name of attr to use for selected value
        public String getSelectedValuesValueAttrName() {
            return selectedValuesValueAttrName;
         * Setter for 'selectedValues' property.
         * @param selectedValues List of selected values in shuttle
        public void setSelectedValues(List selectedValues) {
            this.selectedValues = selectedValues;
         * Event handler for shuttle value change event.
         * @param event value change event
        public void refreshSelectedList(ValueChangeEvent event) {
            refreshSelectedList = true;
         * Getter for 'selectedValues' property.
         * @return List of selected values in shuttle
        public List getSelectedValues() {
            if (selectedValues == null || refreshSelectedList) {
                System.out.println("here");
                selectedValues =
                        ADFUtils.attributeListForIterator(selectedValuesIteratorName,
                                                          selectedValuesValueAttrName);
            return selectedValues;
         * Setter for 'allItems' property.
         * @param allItems list of SelectItem representing all items in available list
        public void setAllItems(List allItems) {
            this.allItems = allItems;
         * Getter for 'allItems' property.
         * @return list of SelectItem representing all items in available list
        public List getAllItems() {
            if (allItems == null) {
                allItems =
                        ADFUtils.selectItemsForIterator(allItemsIteratorName, allItemsValueAttrName,
                                                        allItemsDisplayAttrName,
                                                        allItemsDescriptionAttrName);
            return allItems;
        public void setMenuSelectShuttle(RichSelectManyShuttle menuSelectShuttle) {
            this.menuSelectShuttle = menuSelectShuttle;
        public RichSelectManyShuttle getMenuSelectShuttle() {
            return menuSelectShuttle;
    }I guess the partial trigger is not working because the binding of the shuttle is not relative to the binding of the role table.
    any help will be appreciated!
    thanks!
    Gene

    My problem is solved, after I removed the if statement at the backing bean getSelectedValues() method
    public List getSelectedValues() {
        //    if (selectedValues == null || refreshSelectedList) {
       //         System.out.println("here");
                selectedValues =
                        ADFUtils.attributeListForIterator(selectedValuesIteratorName,
                                                          selectedValuesValueAttrName);
            return selectedValues;
        }

  • Dummy question: how to make html file working under weblogic

    I created a file called register.html, and I put it under
    weblogic\myserver\public_html directory, but when I try to access from the
    browser, I get the following error:
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is
    given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the
    client, the status code 403 (Forbidden) can be used instead. The 410 (Gone)
    status code SHOULD be used if the server knows, through some internally
    configurable mechanism, that an old resource is permanently unavailable and
    has no forwarding address.
    What should I do to make this html file working?
    Thank you for any help.
    li

    I solved the problem.
    "li" <[email protected]> wrote in message
    news:[email protected]..
    I created a file called register.html, and I put it under
    weblogic\myserver\public_html directory, but when I try to access from the
    browser, I get the following error:
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indicationis
    given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the
    client, the status code 403 (Forbidden) can be used instead. The 410(Gone)
    status code SHOULD be used if the server knows, through some internally
    configurable mechanism, that an old resource is permanently unavailableand
    has no forwarding address.
    What should I do to make this html file working?
    Thank you for any help.
    li

  • Song Shuffle question, how to make it more random?

    80GB Classic with latest (I think) SW downloads.
    Whether using playlists or listening to the complete song listing, the shuffle does not appear to be giving me a true shuffle. I have maybe 3500 songs, some are played the next day, some haven't been played in two years. Playlists exhibit the same tendency, some songs with over 30 plays, some with less than five.
    I tried setting up an exclusion in the smartlist where I told it to not put the song on the smart list if it had been played in the previous 20 days. That worked sort of OK, but I had to dock the iPOD every day to keep that working.
    Is there a better way to get more random music selection? I have the randomness setting at max (no chance of playing same artist twice). Or at least I thought I did, but I cannot find that setting now.

    Make sure you have *Live Updating* ticked in the smart playlist.
    On the iPod, start playing a new playlist, then go back to the original playlist and it should be updated (dropping of the recently played songs).
    Also, when starting a playlist, go to Music -> Playlists, scroll to the name of the playlist you want and press Play, (not Select).

  • Simple Question: How to make a text subpicture highlight not appear by default?

    I'm sure I am missing some very easy one-button solution here, but here goes...
    I have a menu with just one single button on it. I have the 'Create Text Subpicture' box checked in the button properties panel. What I want is for the highlight to appear only when I roll over the button. But when I preview the menu, the button highlight is on automatically. It functions just fine. I just need to solve this one little highlight issue.
    Is it as easy as I am thinking it is?
    Thanks!
    bobby

    How do I assign rollover states? I've looked but can't find any reference to it.
    Thanks!
    bobby

  • Quick question: How to make a JAR file

    Well I have jdk1.5.0_02/bin/jar.exe file into my file with all of my classes which work using my schools java editing program. I'm trying to get it to run and I have my manifest.txt with "Main-Class: Driver" in it. Driver is my class with "public static void main(String args[])" in it and I have the cariage return in the manifest.txt file. Thanks for the help.

    Well I have jdk1.5.0_02/bin/jar.exe file into my file
    with all of my classes which work using my schools
    java editing program. I'm trying to get it to run and
    I have my manifest.txt with "Main-Class: Driver" in
    it. Driver is my class with "public static void
    main(String args[])" in it and I have the cariage
    return in the manifest.txt file. Thanks for the help.What is the problem? You told us what your are trying to do, not what is happening. If you get an error, you better post it. You could also post the command you are using.

  • How to make a round Slider with an image ?

    hello everybody,
    I'm back and i have a new question : how to make a round Slider (like a volume knob) with an image ?
    I see this very interisting tutorial : http://fxexperience.com/2012/01/fun-javafx-2-0-audio-player/ but it use a private class from com.sun.javafx.scene.control.skin.SkinBase...
    thank you for your answer.
    Gaëtan.

    I'm guessing you could subclass Slider to create a class SliderKnob.
    At some stage in the process, not sure where (perhaps after calling super in the constructor), you could look up the slider region's child thumbnail and track and call setVisible(false) and setManaged(false) on them, create an ImageView for your knob, add the knob ImageView to the slider's region and bind the ImageView's rotateProperty to the slider's valueProperty(). Not sure that that is any better than using the SkinBase stuff, but at least it is an alternative idea.
    Everything to create your own controls has not been added to the public API, so if you want to make your own controls in the same way the JavaFX does them (i.e. with Skin's and Behaviours and stuff like that) you have to make use of com.sun classes unless you can subclass and modify the workings of existing controls similar to what is proposed in the preceding paragraph.

  • How to make this effect in Keylight?

    Hi, I have question, how to make this effect in Keylight?
    I know that this overlay is added here:
    http://oi57.tinypic.com/1174fup.jpg
    Photos:
    http://iv.pl/images/18475588964010299091.jpg

    Keylight what? All I see is some effect similar to Leave Color, a.k.a the Pleasantville effect that made the rounds 10 years ago. It may require additional masking and otehr effects, but definitely not something that is specifically related to Keylight...
    Mylenium

  • How to make iTunes read the song's name/singer from the file's name itself?

    Hi everyone,
    So I have this file with songs from everywhere. I spent quite some time now to make sure that the structure of each file's name is as such : "Singer - Song name", hoping that everything would be read by iTunes accordingly. However, either iTunes read it well, or it didn't read it at all ("Singer - Song name" appearing in Title alone), or iTunes read the "media" of the file (ie. what the guy I downloaded it from wrote for it in the Preferences, which usually is in capital letters or with a bunch of weird underscores). As I'm OCD and need everything to be neat, I'm highly tensed right now. I really want everything to be neat and clear!
    So, how do I make sure that iTunes reads the files' names such that it knows the structure is "Singer - Song name"? Thanks.

    iTunes doesn't use file names to determine how music appears in your library,  Rather, it uses metadata that is split between:
    data elements that are embedded within the media files
    data elements that are included in the entries in the iTunes database
    No amount of reorganization, renaming or other manipulation at the file level will make any difference to how songs will appear in iTunes.  Using your example:
    the value of the track number element is 1
    the value of the artist element is "Elvis Presley"
    the value of the song name element is "Blue Suede Shoes"
    Depending on how you configure iTunes then the file name is either:
    completely independent of iTunes (i.,e., the file containing this song could be xyz.mp3)
    dependent on the metadata managed by iTunes, (i.e., when you have these two options set:
    then iTunes will set the file name to be 1-01 Blue Suede Shoes.mp3 where:
    the file is in a folder called "Elvis Presley" (the name of the album)
    that folder is in one called "Elvis Presley" (the name of the artist) which is in iTunes Media\Music
    Going back to your question "How to make iTunes read the song's name/singer from the file's name" the answer is simple - you can't, as this is not how iTunes works.  There are some third-party utilities that you can use to set some metadata element values based on parsing of file names which might be a useful first step.  However, to use iTunes effectively you should really forget about / ignore file names - manage your media using appropriate metadata and allow iTunes to look after file names behind the scenes.

Maybe you are looking for