Binding between Task and method dissappears

The binding between task and method is dissappearing .
I tried creating a new task altogether but still not working
kindly help
Edited by: kittu reddy on May 6, 2008 3:19 PM

I have Zmethod and i have done binding between the task and the method and
Task and workflow..
Binding between Task  and work flow doesnt seem to Disappear
but the binding between Task and the method kept on disappearing
I have a Zmethod to Bus2091(delagated to Zbus2091)
with an import parameter and an export parameter
and now when creating the task and assigning the method the container elements of method are transferred to Task
and next i wen to binding eeditor and generated automatic binding:
From task to method
and method to task
with out errors and now on clicked green tick mark of the binding editor and saved the Task and now on checking back the binding editor
i find the binding disppearead

Similar Messages

  • What is the difference between function and method

    Hey I need help I dont know which is the difference between function and method ?
    Does anybody can ask me this question.
    Thanks

    jverd wrote:
    The first two answers were also correct.Also the blocked message, quoted here for posterity:
    "Tinkerbell" wrote:
    Methods are defined by Java whereas functions are not. ~

  • Diffenence between task and change request

    What is the difference between task and change request? Is it possible to release a change request without releasing a task?

    Tasks are a level under the change request.  You can have multiple tasks under each change request.  You can release a task without releasing the change request, but not vice versa.
    Regards,
    Rich Heilman

  • What is the difference between task and change request?

    Hi all
    What is the difference between task and change request?
    thanks all

    Dear Ispit,
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/19/3f5bf8a4b011d285090000e8a57770/content.htm">Request Types and Task Types</a>
    <a href="http://help.sap.com/saphelp_sm32/helpdata/en/dd/cc86a571464559a2685a404397065b/content.htm">Change Transactions in Change Request Management</a>
    For more information about the SAP Change and Transport System (CTS), visit the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/57/38ddff4eb711d182bf0000e829fbfe/frameset.htm
    Transport Request is generated in following scenarios:
    1. Customizing Request - When doing or changing some customization.
    2. WorkBench Request - When configuration is cross-client. Eg Generating new Table, making changes in access sequence, Abap development, etc.
    Transport request is not generated for Master Data. For eg: Customer Master, Material Master, price master, etc.
    Benefit of Transport Request:
    SAP Landscape normally has 3- Tier system:
    Development Server - Where customization takes place. Transport request is generated at this level & then first transported to Quality server for testing whether it meets the requirement or not. Once the requirement is met in Quality server then Request is transported from Development Server to Production Server (Actual / Live System)
    Quality Server - Mainly useful for testing.
    Production Server Actual / Live server, where the real transactions are created & posted.
    Procedure to Release & Transport Request:
    1. In development server, go to T.Code: SE10 & select the check box Modifiable & enter
    2. In the next screen, you will see list of transport request created.
    Note: Transport request consist of main request along with sub request. These sub request hold the object to be transported.
    3. Expand the main request & you will be able to view the sub requests attached to main request.
    4. First release the sub requests.
    Note: To release the request, select the request ni & click on release request individually (Do not select release all request)
    5. Next release main request.
    6. Once the request is released sucessfully, imform the basis person to import the request to QA server.
    or
    If the authority is with you, through T.Code: STMS, select development server --> select request no & release to QA server. Here when it pops up client no, user id & password, maintain it of QA server & release the request to QA server.
    Reward points if this is helpful.
    Regards,
    Naveen.

  • "Require authenticated binding between directory and clients" missing

    A new install of 10.6, upgraded to 10.6.4 Server does not show the option "Require authenticated binding between directory and clients" under the Open Directory - Settings - Policies - Binding tab. I do see the "Enable authenticated directory binding" option. Also, the terminal command sudo slapconfig -setmacosxodpolicy -binding required does work as a workaround.
    This option is not present in both Server Admin on the server itself and one client machines I'm using to manage the server.
    Is there a way to get the graphical button to become visible?
    Thank you in advance.

    This Option is no longer available in the GUI.
    See Apple Support Article HT4068.

  • Bidirectional binding between DoubleProperty and ObjectProperty Double

    Is there a way to bind a DoubleProperty and an ObjectProperty<Double> in a bidirectional manner?
    For a unidirectional solution, one could utilize low-level binding api, but I couldn't find a way to achieve the same for bidirectional binding.

    DoubleProperty implements Property<Number>, so you can bind bidirectionally between DoubleProperty and ObjectProperty<Number>, but not (directly) between DoubleProperty and ObjectProperty<Double>, as far as I can see.
    One way is just to use listeners:
    final DoubleProperty dProp = new SimpleDoubleProperty();
      final ObjectProperty<Double> propD = new SimpleObjectProperty<>();
      propD.addListener(new ChangeListener<Number>() {
          @Override
          public void changed(ObservableValue<? extends Number> observable,
              Number oldValue, Number newValue) {
            if (dProp.getValue() != newValue) {
              dProp.setValue(newValue);
      dProp.addListener(new ChangeListener<Number>() {
          @Override
          public void changed(ObservableValue<? extends Number> observable,
              Number oldValue, Number newValue) {
            if (propD.get() != newValue) {
              propD.set((Double) newValue);
    And another way, which is less code but a bit obtuse and less efficient, is to use an intermediate StringProperty and bind with the appropriate StringConverters:
    final StringProperty sProp = new SimpleStringProperty();
      Bindings.bindBidirectional(sProp, dProp, new NumberStringConverter());
      Bindings.bindBidirectional(sProp, propD, new DoubleStringConverter());
    I don't see another way: if you can arrange for your ObjectProperty<Double> to be an ObjectProperty<Number>, that would obviously be best. I don't see a more general way to bind bidirectionally between Property<T> and Property<S> when one of S, T is not a String.

  • Difference between eventhandlers and methods

    Hi all
    I hope i am correct when i say  creating an action called submit in a view raises an eventhandler called onactionsubmit in the implementation tab for that controller
    we are expected to write some coding in the implementation tab of the view controller in a specified area.
    lets say that this submit action should give us the details of a sales order wherein it should go to the componnet controller to get the data
    apart from this coding we need to write code for populating the context of the component controller from where we get the actual data
    so how different are the coding areas in  the view controller and the component controller since one handles an action and another getting a data?
    urgent.
    Thanks in advance
    krishna chaitanya

    hi all
    pls elaborate me about the actual difference between a eventhandler and a method
    thanks in advance
    krishna chaitanya

  • What's the difference between FM and Method?

    We can layout a list by using FM (reuse_alv_grid_display) or Method cl_gui_alv_grid.
    can anybody tell me the difference?Thanks

    Hi Slam,
    <b>Function modules</b> are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. Function groups act as containers for function modules that logically belong together. You create function groups and function modules in the ABAP Workbench using the  Function Builder.
    Function modules allow you to encapsulate and reuse global functions in the R/3 System. They are stored in a central library. The R/3 System contains a wide range of predefined function modules that you can call from any ABAP program. Function modules also play an important role in database updates and in remote communications between R/3 Systems or between an R/3 System and a non-SAP system.
    Hope u understood.
    Thanks&Regards,
    Ruthra

  • Different timeout between bean and method

    I have to set on the same bean a different timeout between the bean und one method.
    I set in the weblogic-ejb-jar.xml <trans-timeout-seconds> to 39 sec But I will
    set the timeout for a method in this bean to 120 sec. How con I set this timeout?

    I don't know if this is yourproblem, but you have unbalanced quotes on the line
    name=""object1">I didn't know that javascript could talk to java like this. Please tell me where I can read more about this.

  • Binding Between CFForms

    Hi I hope someone can help me here - thisis driving me nuts
    I have two forms one one page - reason being that I need to
    use a certain widget provided to me by a third party.
    My code is
    ===================================================
    this form calls the thrid party widget and returns data to
    the input field - works fine no probs
    ===================================================
    <cfform name="add" >
    <cfinput type="text" name="housenumbers" message="enter
    housenumber" width=200 label="housenumber" value="hurrah"
    validateat="onBlur" validate="noblanks" required="yes">
    <SCR1PT LANGUAGE=JAVA$CR1PT
    SRC="htp://www.xxxxxxxxxxxxxxxxxxxxx.aspx?id=3333333333333333333318B78987393597539737"></ SCR1PT>
    </cfform>
    =============================================
    this form essentially needs to take the dataform the form
    above and populate the housenumber field - but doesn't
    cfform flash is used for the second form as there is more
    user "interface" required the intention of the first form is for it
    to be hidden once this is working.
    the alternative is to try to call the JS function from with
    the second CFForm but since the format flash only reads
    actionscript this may be a bit trickier.
    =============================================
    <cfform name="address" format="flash">
    <cfinput type="text" name="housenumber" message="enter
    housenumber" value="" width=200 label="housenumber" tooltip="df"
    required="yes">
    <cfinput name="addln1" type="text" required="yes"
    message="enter line 2" width=200 label="addln1">
    <cfinput name="addln2" type="text" required="yes"
    message="enter line 2" width=200 label="addln2">
    <cfinput name="town" type="text" required="yes"
    message="enter town" width=200 label="town">
    <cfinput name="county" type="text" required="yes"
    message="enter county" width=200 label="county">
    <cfinput name="postcode" type="text" required="yes"
    message="enter postcode" width=200 label="postcode">
    </cfform>
    any help would be gratefully appreciated.
    regards

    I have Zmethod and i have done binding between the task and the method and
    Task and workflow..
    Binding between Task  and work flow doesnt seem to Disappear
    but the binding between Task and the method kept on disappearing
    I have a Zmethod to Bus2091(delagated to Zbus2091)
    with an import parameter and an export parameter
    and now when creating the task and assigning the method the container elements of method are transferred to Task
    and next i wen to binding eeditor and generated automatic binding:
    From task to method
    and method to task
    with out errors and now on clicked green tick mark of the binding editor and saved the Task and now on checking back the binding editor
    i find the binding disppearead

  • Trying to pass parameters between GUI classes and methods

    Hi All.
    I have been working on a rather large final year project in college and it is getting close to the deadline. It looks as though I need to "tidy up" my code as it contains too many static methods, variables and other bad programming habits. My package consists of many different GUI's and classes. Up until now I have been calling different GUI's with guiName.NameOfMethod. I have been told this is bad practice so I am trying to fix this. Also instead of passing parameters correctly I have been creating static variables in my main class and using them. So for example if one class needed to pass a variable to the other I would first myGlobalVariable = X; in the first class. And then the second class can use this. This is also bad, right?
    So I guess im really just looking for a good example or tutorial on how to pass parameters between classes and methods, GUI if possible. Here is an example of how my GUI classes look:
    public class anotherGUI extends JFrame implements ActionListener {
            private JTextField a, b, c;
            private JButton button1, button2;
            JPanel p, p1;                   
            public anotherGUI() {
                LayOutAnotherGUI();
                setLocationRelativeTo(DnDMain.pictureArray[a]);
                setTitle("Example");
                setVisible(true);
                pack();     
            private void LayOutAnotherGUI(int c) {
         //GUI is layed out here     
            public void actionPerformed(ActionEvent e) {
                Object source = e.getSource();
                if (source == submit)
                    clickOK();
            public void clickOK(){
                //Here is where I have been accessing and modifying static global variables.  (But this needs to change).
    public void showanotherGUI() {
            new anotherGUI();
    }This is more or less how I have been going about creating my GUI's. These are used as pop ups. The user enters a value and then it is closed.
    To be honest I have been able to pass a variable correctly from one class to a GUI class but I have still having difficulty. For example in my code above I can pass the variable into this class but I cannot pass it into clickOK(). An this is where it is needed.
    Can anyone please help?
    I hope I have explained my problem well.
    Thanks in advance.

    I dont think that is what I need. An example of what I do in my program is:
    I have a main GUI with an array of images. There are a number of other small GUI's that appear for certain functions when the user clicks on an image or does some other function. I am trying to pass a value into the GUI class that is used for the smaller "pop up" GUI. So lets say the user has clicked the image in array[12]. Then a GUI is displayed. I need to pass the integer 12 into this class.
    Thanks.

  • How to implement BINDING between drawing shapes and properties?

    See this background info:
    Can we have BINDING between drawing shapes and properties?
    This needs more specific info. My application reads a number of XML files, and places the data in an Excel worksheet. Let's say that there are 20 XML files, the app creates 20 lower tabs (spreadsheets) named: "Item 1", "Item 2", ...,
    "Item 20".
    That is the current version. I am told by the users, however, that in some cases there are some XML files which create more than 1 Excel lower tab.  For example, the file: "Items 8-11.xml" needs to fill tabs 8, 9, 10 and 11.
    In that particular case the user will modify the default map (a 45-degree diagonal, equivalent to the
    identity function F(x) = x), by clicking around. The resulting new map will look as follows:
    Since the number of XML files does not change, the number of rows is constant. However, each time a black square is moved from its canonical (45-degree) location, a spreadsheet becomes "orphan" and therefore the application must create a new Excel
    lower tab (which is a grid column). IOW: The number of columns keeps on growing to the right.
    List<Model>
    I figure that (as opposed to DataGrids which grow and shrink vertically, which each Model being 1 row) this thing should use the column as fundamental Model.
    Before running the main app (the XML file reading procedures), the user will select a menu item named "Configure XML to Excel Mapping" and an interface similar to the image above will be shown.
    In addition to the property binding, which has been discussed, how should I implement the drawing and erasing of black and white squares? I guess I will need some sort of "ConvertTo" bidirectional bridge from/to boolean and square drawing?

    You lost me with the xml file and the tab and the wossname to the thingummybob.
    I don't follow the explanation, sorry.
    The way to show stuff like that isn't dependent on how the data is stored where though.
    I probably wouldn't draw them, as such.
    I'd probably just make each a usercontrol which bound the fill brush of a rectangle for the black white bit and used a border for the outline.
    To simplify that:
    <Grid> <Border>
    <Rectangle Fill={Binding FillBrush}"/>
    </Border>
    </Grid>
    FillBrush
    Would be a public property solidcolorbrush exposed from your cellvm
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Media;
    using GalaSoft.MvvmLight;
    namespace wpf3
    public class CellVM : ViewModelBase
    private SolidColorBrush fillBrush;
    public SolidColorBrush FillBrush
    get { return fillBrush; }
    set
    fillBrush = value;
    RaisePropertyChanged();
    You can then have some logic somewhere which tells that viewmodel to show black or white fill.  Which would be that converter bridge thingy equivalent.  This thing is true then FillBrush = whiteBrush else FillBrush = blackBrush.
    You could probably do it with just rectangle, lose the border and set the Stroke on the rectangle.
    The stroke is the outside line round a rectangle ( or any shape).
    https://msdn.microsoft.com/en-us/library/system.windows.shapes.shape.stroke(v=vs.110).aspx
    And you would of course do other stuff like sizing the usercontrol and arranging an list in a list as I explained in your other thread.
    Oh.................
    But to answer the question in the title.
    Yes you can bind all sorts of things including the point making up a polygon, brush used to draw the line and all sorts.  You could even do flashing cells if you wanted.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • ADF 11: dvt:schedulingGantt : phase lag between resources and tasks

    I am using dvt:schedulingGantt in my ADF BC application.
    When I don't have simultaneous tasks in the same resource, the visualization in good.
    But when I have simultaneous tasks in the same resource, in many resorces. the height of in the part of the resources does not coincide exactly with the height with the part of the tasks.
    I you are using a lot of resources, in the last resources, it is posible the tasks of a resource are horizontally on another resource

    Hi Frank,
    If you use the demo rcfDvtDemo and create more tasks in the SampleModelFactory.java you can see the delay between resources and tasks.
    In the last resource "Sue Morgan" The tasks "Hewitt Pacific" and "Johnson" are 10 px below the resource
    This delay increase when you work with a lot of resources. The user might make an mistake.
    I paste here the code from the method getSchedulingGanttModel, from the file: dsstools/modules/dvt-faces-demo/src/oracle/adfdemo/view/feature/rich/gantt/data/SampleModelFactory.java
    public static TreeModel getSchedulingGanttModel()
    Employee _r1 = new Employee("r1", "PRS-1", "Celula 1", "06:00", "15:00", null);
    Task t11 = new Task("t11", "Ped.1560 L1", r1.getResourceId(), _r1.getResourceName(), parseDate("12/21/2006 14:00"), parseDate("12/21/2006 15:30"), "blue");
    t11.setLabel(t11.getTaskName());
    r1.addTask(t11);
    Task t12 = new Task("t12", "Ped.1560 L2", r1.getResourceId(), _r1.getResourceName(), parseDate("12/22/2006 10:00"), parseDate("12/22/2006 14:30"), "blue");
    t12.setLabel(t11.getTaskName());
    r1.addTask(t12);
    Employee _r2 = new Employee("r2", "PRS-2", "Celula 2", "07:00", "16:00", null);
    Task t21 = new Task("t21", "Cymer Inc.", r2.getResourceId(), _r2.getResourceName(), parseDate("12/21/2006 09:00"), parseDate("12/21/2006 10:30"), "gold");
    t21.setLabel(t21.getTaskName());
    _t21.setStartupTime(30);
    r2.addTask(t21);
    Task t21b = new Task("t21b", "Cymer Inc.", r2.getResourceId(), _r2.getResourceName(), parseDate("12/21/2006 09:00"), parseDate("12/21/2006 10:30"), "gold");
    t21b.setLabel(t21b.getTaskName());
    r2.addTask(t21b);
    Task t21c = new Task("t21c", "Cymer Inc.", r2.getResourceId(), _r2.getResourceName(), parseDate("12/21/2006 09:00"), parseDate("12/21/2006 10:30"), "gold");
    t21c.setLabel(t21c.getTaskName());
    r2.addTask(t21c);
    Task t22 = new Task("t22", "Ped 1561 L1", r2.getResourceId(), _r2.getResourceName(), parseDate("12/22/2006 08:00"), parseDate("12/22/2006 11:30"), "gold");
    t22.setLabel(t22.getTaskName());
    _t22.setStartupTime(30);
    r2.addTask(t22);
    Task t23 = new Task("t23", "Ped 1562 L1", r2.getResourceId(), _r2.getResourceName(), parseDate("12/22/2006 14:00"), parseDate("12/22/2006 16:30"), "gold");
    t23.setLabel(t23.getTaskName());
    r2.addTask(t23);
    Employee _r3 = new Employee("r3", "BELSO", "Celula 3", "14:00", "16:00", null);
    Task t31 = new Task("t31", "Ped 1568 L1", r3.getResourceId(), _r3.getResourceName(), parseDate("12/21/2006 10:30"), parseDate("12/21/2006 11:15"), "grey");
    t31.setLabel(t31.getTaskName());
    _t31.setStartupTime(20);
    Task t32 = new Task("t32", "Ped 1569 L1", r3.getResourceId(), _r3.getResourceName(), parseDate("12/21/2006 12:30"), parseDate("12/21/2006 13:30"), "tan");
    t32.setLabel(t32.getTaskName());
    _t32.setStartupTime(20);
    r3.addTask(t31);
    r3.addTask(t32);
    Task t33 = new Task("t33", "Hibbings West", r3.getResourceId(), _r3.getResourceName(), parseDate("12/22/2006 9:30"), parseDate("12/22/2006 11:15"), "grey");
    t33.setLabel(t33.getTaskName());
    _t33.setStartupTime(15);
    Task t34 = new Task("t34", "Hibbings West", r3.getResourceId(), _r3.getResourceName(), parseDate("12/22/2006 14:30"), parseDate("12/22/2006 17:30"), "tan");
    t34.setLabel(t34.getTaskName());
    r3.addTask(t33);
    r3.addTask(t34);
    Employee _r4 = new Employee("r4", "Joe Block", "Consulting", "06:00", "15:00", null);
    Task t41 = new Task("t41", "Harwell", r4.getResourceId(), _r4.getResourceName(), parseDate("12/21/2006 09:30"), parseDate("12/21/2006 10:30"), "purple");
    t41.setLabel(t41.getTaskName());
    Task t42 = new Task("t42", "Service.com", r4.getResourceId(), _r4.getResourceName(), parseDate("12/21/2006 15:00"), parseDate("12/21/2006 16:30"), "aqua");
    t42.setLabel(t42.getTaskName());
    _t42.setStartupTime(15);
    r4.addTask(t41);
    r4.addTask(t42);
    Task t43 = new Task("t43", "Harwell", r4.getResourceId(), _r4.getResourceName(), parseDate("12/22/2006 11:30"), parseDate("12/22/2006 12:30"), "purple");
    t43.setLabel(t43.getTaskName());
    Task t44 = new Task("t44", "Service.com", r4.getResourceId(), _r4.getResourceName(), parseDate("12/22/2006 15:30"), parseDate("12/22/2006 16:30"), "aqua");
    t44.setLabel(t44.getTaskName());
    _t43.setStartupTime(15);
    r4.addTask(t43);
    r4.addTask(t44);
    Employee _r5 = new Employee("r5", "Stacey Edwards", "Support", "06:00", "15:00", null);
    Task t51 = new Task("t51", "HewWWWitt Pacific", r5.getResourceId(), _r5.getResourceName(), parseDate("12/21/2006 13:00"), parseDate("12/21/2006 14:30"), "red");
    t51.setLabel(t51.getTaskName());
    r5.addTask(t51);
    Task t52 = new Task("t52", "Hewitt Pacific", r5.getResourceId(), _r5.getResourceName(), parseDate("12/22/2006 13:00"), parseDate("12/22/2006 15:30"), "green");
    t52.setLabel(t52.getTaskName());
    Task t53 = new Task("t53", "Hewitt Pacific", r5.getResourceId(), _r5.getResourceName(), parseDate("12/22/2006 16:00"), parseDate("12/22/2006 17:30"), "green");
    t53.setLabel(t53.getTaskName());
    _t53.setStartupTime(30);
    r5.addTask(t52);
    r5.addTask(t53);
    Employee _r6 = new Employee("r6", "Jimmy Jones", "Support", "06:00", "15:00", null);
    Task t61 = new Task("t61", "900414 29,5º BLA BLA BLA", r6.getResourceId(), _r6.getResourceName(), parseDate("12/21/2006 10:00"), parseDate("12/21/2006 11:00"), "orange");
    t61.setLabel(t61.getTaskName());
    r6.addTask(t61);
    Task t61B = new Task("t61B", "XXX414 29,5º BLA BLA BLA", r6.getResourceId(), _r6.getResourceName(), parseDate("12/21/2006 10:00"), parseDate("12/21/2006 11:00"), "orange");
    t61B.setLabel(t61B.getTaskName());
    r6.addTask(t61B);
    Task t61c = new Task("t61c", "XXX414 29,5º BLA BLA BLA", r6.getResourceId(), _r6.getResourceName(), parseDate("12/21/2006 10:00"), parseDate("12/21/2006 11:00"), "orange");
    t61c.setLabel(t61c.getTaskName());
    r6.addTask(t61c);
    Task t61d = new Task("t61d", "XXX414 29,5º BLA BLA BLA", r6.getResourceId(), _r6.getResourceName(), parseDate("12/21/2006 10:00"), parseDate("12/21/2006 11:00"), "orange");
    r6.addTask(t61d);
    Employee _r7 = new Employee("r7", "Dominique Monstratelli", "Technical Staff", "06:00", "15:00", null);
    Task t71 = new Task("t71", "wwwState Machine", r7.getResourceId(), _r7.getResourceName(), parseDate("12/21/2006 13:00"), parseDate("12/21/2006 15:30"), "blue");
    t71.setLabel(t71.getTaskName());
    Task t72 = new Task("t72", "Johnson", r7.getResourceId(), _r7.getResourceName(), parseDate("12/21/2006 15:00"), parseDate("12/21/2006 16:30"), "aqua");
    t72.setLabel(t72.getTaskName());
    r7.addTask(t71);
    r7.addTask(t72);
    Task t73 = new Task("t73", "State Machine", r7.getResourceId(), _r7.getResourceName(), parseDate("12/22/2006 10:00"), parseDate("12/22/2006 11:30"), "levander");
    t73.setLabel(t73.getTaskName());
    Task t74 = new Task("t74", "Johnson", r7.getResourceId(), _r7.getResourceName(), parseDate("12/22/2006 15:00"), parseDate("12/22/2006 16:30"), "blue");
    t74.setLabel(t74.getTaskName());
    r7.addTask(t73);
    r7.addTask(t74);
    Employee _r8 = new Employee("r8", "Sue Morgan", "Technical Staff", "06:00", "15:00", null);
    Task t81 = new Task("t81", "Hewitt Pacific", r8.getResourceId(), _r8.getResourceName(), parseDate("12/21/2006 11:15"), parseDate("12/21/2006 12:30"), "gold");
    t81.setLabel(t81.getTaskName());
    Task t82 = new Task("t82", "Hewitt Pacific", r8.getResourceId(), _r8.getResourceName(), parseDate("12/21/2006 13:30"), parseDate("12/21/2006 15:00"), "grey");
    t82.setLabel(t82.getTaskName());
    _t82.setStartupTime(15);
    Task t83 = new Task("t83", "Johnson", r8.getResourceId(), _r8.getResourceName(), parseDate("12/21/2006 15:15"), parseDate("12/21/2006 16:00"), "tan");
    t83.setLabel(t83.getTaskName());
    r8.addTask(t81);
    r8.addTask(t82);
    r8.addTask(t83);
    Task t84 = new Task("t84", "Johnson", r8.getResourceId(), _r8.getResourceName(), parseDate("12/22/2006 14:15"), parseDate("12/22/2006 16:00"), "lime");
    t84.setLabel(t84.getTaskName());
    _t84.setStartupTime(30);
    r8.addTask(t84);
    ArrayList _resources = new ArrayList(10);       
    resources.add(r1);
    resources.add(r2);
    resources.add(r3);
    resources.add(r4);
    resources.add(r5);
    resources.add(r6);
    resources.add(r7);
    resources.add(r8);
    return ModelUtils.toTreeModel(_resources);
    }

  • How to distinguish between enabled and disabled tasks in SSDT-BI 2012

    Hi,
    I've got SSDT-BI 2012 together with VS2012 installed. Simple questions: What is the difference between enabled and disabled tasks in control flow from the design/color point of view? I do see that the disabled tasks changes to grey (omg are you really kidding
    me????) from black. This could be a bad joke or dream however is not.
    So I'm kindly asking you to help me solve this problem. How can I change the color difference between these two options (enabled task vs disabled task)? I do not care whether the one will be yellow or pink, simply just need to be recognizable at first
    look and not under long and painful examination.
    Thanks for your reply. Hopefully it will be useful.
    Karol.

    Hi Karol,
    It’s true that it only changes the font color of the task name text to grey after disabling a task in SSDT 2012. In SSDT 2010, the whole task control including icon will turn grey after it is disabled; in BIDS, the background color of the task control will
    turn grey after it is disabled. These behaviors are by design. Personally, I agree with you that this behavior in SSDT 2012 is not very readable.
    If you have concerns, I would suggest you submitting a wish at
    https://connect.microsoft.com/sql.
    Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software and services the best that they can be, and you can learn about and contribute to exciting projects.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

Maybe you are looking for

  • Digital editions library of books has disappeared?

    I have purchased a number of digital editions over the last year. Last week I opened up my library to find the entire contents had disappeared. I have no idea why it's gone but I would like my books back. I can see them on my computer under My Docume

  • Where can i get an a/c adapter?

    I bought an airport extreme from a guy but it didnt include the a/c adapter. Where can I get one? Thanx

  • JAI TIFF Encoding Problem

    I'm evaluating the Gnome Java Twain package for scanning an image using an Applet as an interface. The image scans in fine and is displayed ok. When I attempt to write it however, using JAI, it creates a 1 byte bad .tif, crashes the browser and place

  • Can I calibrate the screen of new ipad

    i just got an new ipad last week but i found out that the screen is greenish.(everything looks like there is a green layer on it) i went to the apple store and borrow my friends new ipad to make sure it is really greenish. there is no protective film

  • How can I get flash version 9.0 to install on iPad

    How can I install flash version 9.0 to iPad ?