How to use deployment priorities during background TLB automatically

Hi All,
In standard functionalitiy, deployment split results are not considered during backgroung / interactive TLB automatically. Wanted to know if there any custom way (BADI / FM) to use the deployment priorities in the back ground or interactive TLB.
Your valuable suggestion is highly appreciated.
Thanks
DR

In addition to Tom's excellent answer, it should be possible to do so with some VBA. Surely John or Rod will jump in to provide some help.
As Tom said, if you're willing to avoid VB code, you could use some workaround such as having custom indicator fields (flags) with a formula set to YES depending on the contact then doing a specific bar format in the Gantt chart based on those indicators.
Hope this helps,
Guillaume Rouyre, MBA, MVP, P-Seller |

Similar Messages

  • How to use save data in Background by using standard task?

    Hi,
    I have worked with PD Process for PD. I try to find background process to run after manager approve. I use the standard task 17900108 but it seem does not work.  What should I did before I use this standard task?
    Please help me out how to use this standard task.
    Thanks a lot,
    Regards,
    Visut

    Hi All,
    Thanks for your reply.  Actually the key word of my case is I put the class in Program Exit instead of let it blank.  The standard task that I use is 17900108.
    I can use it to update data now....
    But it seem does not update to DPF (Digital Personal File).  Anyone has idea why it does not?
    Thanks again.
    Regards,
    Visut

  • How to use Aggregate Functions during Top N analysis?

    Say i want to find top 5 highest salaries and their totals and average. In that case how to use aggregate functions. Please give me an example on this.
    Regards,
    Renu
    Message was edited by:
    user642387

    Hi,
    Yes, you can do that with aggregate functions.
    First, do a sub-query to retrieve all the salaries (in descending order), then say "WHERE ROWNUM <= 5" in the main query. Use the aggregate SUM and AVG functions in the main query.
    Analytic functions are easier to use for jobs like this, once you get familiar with them. If you're not leaving the field this month, then it's probably worthwhile for you to get familiar with analytic functions.

  • How to use a GradientPaint as background color in a JPopupMenu

    I want to use a GradientPaint as background color in a JPopupMenu.
    I try to use something like
    GradientPaint p;
    p = new GradientPaint(0, 12, Color.white, 0, 24, Color.pink);
    UIManager.put("MenuItem.selectionBackground", p);but it doesn't work.
    I also tried to extends BasicMenuItemUI in MenuItems
    public class CMenuItem extends JMenuItem {
         public CMenuItem(String text) {
              super(text);
              setUI(BUI.createUI(this));
         static final class BUI extends BasicMenuItemUI {
             private final static BUI ui = new BUI();
             public static BUI createUI(JComponent c) {
                 return ui;
             @Override
             public void update(Graphics g, JComponent c) {
                   if (c.isOpaque()) {
                        Graphics2D g2 = (Graphics2D)g.create();
                        int w = c.getWidth();
                        int h = c.getHeight();
                        GradientPaint p;
                        p = new GradientPaint(0, 12, Color.white, 0, 24, Color.pink);
                        g2.setPaint(p);
                        g2.fillRect(0, 0, w, h);
                        g2.dispose();
                   paint(g, c);
    }I used this technique for JLabel and it works fine.
    Please help

    ok, here the SSCCE. I hope its helpful for an answer.
    import java.awt.Color;
    import java.awt.GradientPaint;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.UIManager;
    import javax.swing.plaf.basic.BasicMenuItemUI;
    public class Menu {
        public JMenuBar createMenuBar() {
             JMenuBar menuBar;
            JMenu menu;
            JMenuItem menuItem;
            //Create the menu bar.
            menuBar = new JMenuBar();
            //Build the first menu.
            menu = new JMenu("A Menu");
            menuBar.add(menu);
             GradientPaint p;
             p = new GradientPaint(0, 12, Color.white, 0, 24, Color.pink);
             UIManager.put("MenuItem.selectionBackground", p);
            menuItem = new JMenuItem("1st item: when selected its background is black: wrong");
            menu.add(menuItem);
             UIManager.put("MenuItem.selectionBackground", Color.pink);
            menuItem = new JMenuItem("2nd item: when selected its background is pink: ok");
            menu.add(menuItem);
            menuItem = new CMenuItem("3rd item: when selected its background is pink: WRONG!");
            menu.add(menuItem);
            return menuBar;
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            Menu demo = new Menu();
            frame.setJMenuBar(demo.createMenuBar());
            //Display the window.
            frame.setSize(450, 260);
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    class CMenuItem extends JMenuItem {
         private static final long serialVersionUID = 1L;
         public CMenuItem(String text) {
              super(text);
              setUI(BUI.createUI(this));
         static final class BUI extends BasicMenuItemUI {
             private final static BUI ui = new BUI();
             public static BUI createUI(JComponent c) {
                 return ui;
             @Override
             public void update(Graphics g, JComponent c) {
                   if (true || c.isOpaque()) {
    //                    System.out.println("update()");
                        Graphics2D g2 = (Graphics2D)g.create();
                        int w = c.getWidth();
                        int h = c.getHeight();
                        GradientPaint p;
                        p = new GradientPaint(0, 0, Color.white, 0, 10, Color.pink);
                        g2.setPaint(p);
                        g2.fillRect(0, 0, w, h);
                        g2.dispose();
                   paint(g, c);
    }Thanks for the help

  • How do I set the desktop background to automatically change every so often?

    I had my desktop background set to change every five seconds, with the photos coming from a folder in my iPhoto files. I then made a new folder of background pictures in iPhoto, but when I switched to them and tried to make it "change every 5 seconds", or 1 minute etc., it would not change. I then reverted back to the original group of files and it STILL wouldn't change, even though it had been doing so for the many months that I had been using this set of background photos before.
    I have clicked on "change every 5 seconds" and "random order", but for some reason I can now only change the pictures manually by clicking on them in the right hand pane of the system preferences window. Please can someone tell me how to make them change automatically again...?

    Have you tried restarting your computer and attempting it again?
    Sorry if this is a dumb question, but a lot of people run their machines 24/7 and sometimes a little reboot helps.

  • How to use deploy tool in AIA

    Hi ,
    I am using Tokenizer tool. I have followed the following link
    http://blogs.oracle.com/learnwithpavan/2009/09/deploy_using_the_deploy_tool_u.html.
    I am using ANT 1.7.0 comes with AIA installation.
    export AIA_HOME=/opt/webapps/oracle/product/AIA
    export ORACLE_HOME=/opt/webapps/oracle/product/SOAAS_10.1.3
    export PATH=/opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin
    export JAVA_HOME=/opt/webapps/JDK/jdk1.5.0_20/jre
    ant runesb -DTokenizerPropsFilePath=/opt/webapps/oracle/product/AIA/util/DeployTool/Tokenizer.properties
    following error i am getting
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: uname: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: basename: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: dirname: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    /opt/webapps/oracle/product/AIA/apache-ant-1.7.0/bin/ant: false: not found
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/tools/ant/launch/Launcher
    Please update if anyone has faced same issue

    Please check the ant home properly.
    do echo on ant_home. If this is not helping you.
    Please follow the steps below.
    Steps to deploy AIA Components:
    1. Navigate to the following location in the server.
         D:\product\10.1.3.1\AIA\util\DeployTool>
    2. Set env variable to AIA_HOME, ORACLE_HOME and ANT_HOME folder
         set AIA_HOME=D:\product\10.1.3.1\AIA\
         set ORACLE_HOME=D:\product\10.1.3.1\OracleAS_1\
    3. Make sure your process folder and it's artifacts are NOT read-only
    4. Copy the bpel projects and Esb project to the following locations.
         D:\product\10.1.3.1\AIA\util\DeployTool\BpelCopy
         D:\product\10.1.3.1\AIA\util\DeployTool\EsbCopy
    5. open and edit \Tokenizer\build.properties in a text editor and populate the below values
    aia.home= Path of the folder which contains BPEL and ESB processes that has to be tokenized.
    Make sure that above Path contains Forward slash.(/)
    If you are planning to deploy only one of the BPEL or ESB processes then leave the other path as blank.     
    DONT NOT MODIFY ANY OTHER PARAMETERS IN THIS FILE.
    aia.home=D:/product/10.1.3.1/AIA/util/DeployTool/BpelCopy/
    6. Go to command prompt and change the current directory to \Tokenizer
    7. For BPEL processes execute the command ">ant runbpel" and for ESB processes execute the command ">ant runesb"
         $ ant runesb -DTokenizerPropsFilePath=D:/product/AIA_HOME/util/DeployTool/Tokenizer.properties
         $ ant runbpel -DTokenizerPropsFilePath=D:/product/AIA_HOME/util/DeployTool/Tokenizer.properties
         Note: you can run with the AIA_HOME in the command doesn't matter.
    8. Goto $AIA_HOME/bin and source the AIA environment file - aiaenv.sh.
         This will source all the environment variables.
    9. Then run "ant" to deploy the process from the bpel project folder as below.
         D:\product\10.1.3.1\AIA\bin>aiaenv.bat
    10. D:\product\10.1.3.1\AIA\util\DeployTool\BpelCopy\XXX_CustomerSyncUEKProvAdapterServiceBPEL_V1>ant     
         Note: If you want to deploy to the different domain. Please change the domain name in the build.properties for the bpel process.
    Thanks,
    Vijay.B

  • How to use JavaScript to Open a link automatically

    Is there a method (using JavaScript) to allow a user clicked link to open the link through a “intermediary” page?
    For example, say I have a web page with a embedded Flash file that contains links to several different (outside) web pages. The behavior I want is that the user clicks a link (within the Flash file), a HTML window opens (over the 1st HTML/Flash window) with the new content, leaving the original Flash/HTML window displayed in the background. The user reads the new content. The user can then close the newer window and be back at the displayed HTML/Flash file.
    The twist is that the link embedded in the referring Flash/HTML file goes to a “intermediary page”. Call that the “collector” page. I control that page. On that page I have collected (in a list) all the actual outside URLs (I do this so that I can easily change the URLs using HTML rather than having to edit the Flash file.) The Flash file contains essentially the same URL for each outside location (plus a variable unique to a specific URL).
    The user should not ever actually see this intermediary/collector page. Instead, they click the link, a variable is passed from the referring page to the collector page and fires the corresponding link automatically (replacing the content in the newly created window). Since the link fires automatically the content in the new window (initially created by the collector page) changes to the destination content.
    Is this possible?
    What JavaScript functions are used?
    How are the referring links constructed in the Flash so the variable is passed to the collector page?
    How does the “collector” page auto open the actual content?
    If anyone can point me to descriptions on how this might be done I’d certainly appreciate it.
    TPK

    >is there a way i can call javascript without security checking?
    It wouldn't be security if you could just bypass it. Did you read all
    the security notes? You might be able to do something with trusted
    functions, but I'm not sure how that would integrate with a plug-in.
    Aandi Inston

  • How to use Javascript, C#, or Java to automatically fill out a PDF file using ACROBAT PRO

    Hi.
    I have purchased a copy of acrobat pro and am currently using it to try to create a method of populating certain fields in a PDF file.
    This particualar scenerio is a printable cerficiate, it has a spot for the persons First Name, Last Name, and other basic info.
    So we have an exisiting editable PDF, a database with the user's info, and a ASP.NET web server, and of course Acrobat Pro.
    How can I use these components to create an auto fill script?
    Ideally, we'd genereate these certs on the fly, and allow users to download them.
    A code sample would be awesome.
    Thanks!
    --shawn

    I've discovered that you can create a "PDF Form" and edit that form with Javascript.
    My question now is, what is the prefered method for controlling the pdf form?
    I would like to include the PDF file in an HTML page and edit the form fields using javascript in that HTML page.
    I think that this is how developers are meant to work with dynamic pdf files.
    In the acrobat javascript reference, it only shows an example using the acrobat javascript console.
    If anyone has used Javascript with PDFs, I would highly appricate some input.
    Thanks,
    -- shawn

  • How to not print a certain background image?

    Hello all,
    I wonder how can one make a certain background image automatically not to be printed ...
    changing the transparency to 0% every time is not very elegant ...
    cheers
    North

    A big red button in the middle of the screen that says Whatever.
    Peter

  • JNI - how to use java access function in TypeLibrary( .tlb file) HELP ME PL

    Hey All
    I got one project which can be done by calling up functions in xxxx.tlb
    (window type library) file, that is no problem.
    How to use java to access those functions???
    I know there are some classes which can be used to access function in
    DLL file e.g. JAWIN.
    Is the .tlb file related to one DLL file??? if so, how to locate the
    DLL file through .tlb file???
    Thanks a lot.
    Steve

    Use JNI to create a link between Java class and a DLL, then you can load that DLL (or TLB) from that class.
    Read the JNI Tutorials.

  • WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?

    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    I have installed KB2734608, but when I search MS13-101 , no patch for Win 2012.
    Can you help me resolve this problem ?
    Thanks

    On Thu, 10 Apr 2014 06:01:48 +0000, fujitsu08 wrote:
    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    WSUS has its own, dedicated forum where the WSUS experts answer questions.
    You should repost your question here:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverwsus
    Paul Adare - FIM CM MVP
    Aibohphobia: n. Fear of Palindromes

  • How To Use .ear Deployment in CE 7.1 ?

    Hi @,
    In our project we are using multiple Web Dynpro applications and later we need to deploy the same to various servers, we dont have NWDI and its all standalone applications.
    As per my understanding we need to take the .ear files and deploy the same on those servers but in ce 7.1 How can we deploy these files as there is no such option available.
    Regards

    Hi,
    Window->Show view->Other->Deploy View
    Click ok
    From this view add the archive and deploy to the connected server
    For connecting to a server
    use Window->Preferences->SAP AS Java
    Regards
    Ayyapparaj

  • How can I deploy a jar with directory entries using deploy profiles?

    Hi,
    I'm trying to deploy a jar file using deloy profiles, but the jar file deployed contains no directory entry. Why?
    Is it possible to do that using deploy profiles?

    my project looks like this:
    src +
     - test
         +- Main.java
         +- Test.java
    when I create a jar with 'jar -cf‘, I get something like this (with flat folders view):
    META-INF
    test
    Main.class
    MANIFEST.MF
    Test.class
    but when I use deploy profile to deploy a jar, I get this:
    Main.class
    MANIFEST.MF
    Test.class
    The directory entries are missing in the jar file.
    How can I fix this?
    Edited by: zeta on 2013-3-29 上午11:15
    Edited by: zeta on 2013-3-29 上午11:24
    Edited by: zeta on 2013-3-29 上午11:24
    Edited by: zeta on 2013-3-29 上午11:25
    Edited by: zeta on 2013-3-29 上午11:26

  • How to use an image as my form background in form central

    how to use an image as my form background in form central pls help me....

    Unfortunately this is not supported but you can submit a feature request on this form FormsCentral Ideas.

  • How can i deploy macbooks and 802.1x authentication using PEAP/MSChap version 2

    How can i deploy macbooks and 802.1x authentication for wireless connectivity using PEAP/MSChap version 2. The Cert is generated by a 2008 Windows CA authority. I am trying to get to join but the MAC doesnt seem to want to accecpt the cert. Can i not validate the cert and still have it join the 802.1x wireless netqwotk? The wireless netwotk is using a Cisco 5508 wireless controller and Cisco 1142 access points. All works fine with Windows devices.

    Hi Tarik,
    Thanks for your answers,
    I've attached my configured AuthZ rules and AuthZ profile for provisioning,
    I want the process to be the same for iPhone, Android and Windows.
    1) Connect to the SSID
    2) Login using your AD credentials PEAP-MS-CHAP-v2
    3) Redirect to device registration portal (So I can set a limit of 3 devices per employee)
    4) As soon as the client click "register" no more redirects and PERMIT-ALL
    I think that I don't need to rely on profiling because In terms of AuthZ policies it should be something like this:
    1) if WIRELESS802.1x and PEAP-MS-CHAPV2 and BYODREGISTRATION=!YES(Unknown or not reg) then "Redirect to device registration(that is NSP right?)"
    2) if WIRELESS802.1x and PEAP-MS-CHAPV2 then PERMIT-ALL(no redirection)
    3) everything else = DENY-ALL
    But the NSP looks for Client Provisioning policies, so if I don't configure any policy it should Allow Network Access(See attachment photo3.png) but as I said on the post it shows that cannot retrieve the MAC-Address so the client can't register his device and don't have access to the network. (To grant access I've configured provisioning policies, that way the clients can register their devices but they are redirected to google play or are forced to install the profile at iOS and this is what I don't want because it is not necessary)
    What screenshoot do you need after the registration? the Auth report?
    Thank you very much for your time!

Maybe you are looking for

  • Issue in Alert Generation

    Hello Friends, Requirement: In my scenario we are making outgoing call activity to customers for customer satisfaction survey. So while doing call activity with customers if the customer asks to call at for example 4pm ,then say at 3:45pm call centre

  • My macbook pro is going slow lately

    My macbook pro is going slow lately, it takes longer time to just open a finder window or a simple photo or word document or pdf document. Everything in general goes slower than before. I don´t know what to do to fix this and have the macbook pro run

  • Switch NTSC DVD slideshow to PAL

    Good morning, my wife and I recently received a DVD Slideshow made on a PC in the NTSC format from our Wedding photographers. My family lives in Europe and cannot watch NTSC format. Is there a way to make a copy of my slideshow but in the PAL format?

  • What table stores Interface Filters in Work Repository

    Hi there I have a number of simple 1 to 1 interfaces (i.e. 1 source, 1 target). And each interface has its own filter between source and target. I would like to know how these filters are stored in the work repository database. I can see the filter t

  • How to send information/warning message from CRM to B2B application

    Hi, I need to send information/warning mesage from CRM to B2B application. I am using FM CRM_MESSAGE_COLLECT to send the required message to application log first and then implemented a BADI called CRM_ISA_BASKET_MSGS for reading that message to disp