Assignment of specific values of CI practitioners

Hello

We try to customer approval of road tasks to those who are defined as stakeholders at a specific value of the CI.  So if someone chose a value of 'GMBO' of a QD field on the submission form, I would like to as the workflow to send the approval to Executive Director task "of stakeholders: role" for the selected CI.

In order to define, in the customer approval task, I chose "Interested party", then "request no. / query CIs and stakeholders."  However it seems to set the CI in the detail screen of the application (within the CIs section) in the model in order to have it correctly routed to an intervener linked.  Here, the problem seems to be that he forward tasks of customer approval to all stakeholders associated with ALL the listed CI (under the section related CIs).

Is it possible to have the 'Bound CIs' field dynamically filled in the details screen of application based on the value that is selected in the submission form?

I hope I'm missing something right here in the way I set it up.  We run a 9.1.4 VSM environment. Thanks for any help/direction with it.

-Syed

Hi Syed,

It is very important that your custom QD CI field is created in the screen assigned to your application either in all screen common called "request". You can take a look here for more information on this subject.

If she asks is the value or inherited then you should be able to select your players in the custom field in a form of selection of feline recipients (cust.appr.task):

There is really no need to use the "CI-related" field at all so you don't need.

Gytis

Tags: VMware

Similar Questions

  • How to round a number to a specific value and not to a certain number of decimal places

    Hello

    I'd round up the numbers according to a grid.

    Let's say I have a grid of 6 between 3 and 4 (3.0 3.2 3.4 3.6 3.8 4.0)

    I'd round up to the nearest number in the grid, so if I choose 3.7125, it will turn to 3.8.

    I found already in the forum how to round decimal degree, but not in my approach.

    You know to force rounding to the nearest of the grid.

    I thought a ramp up to make the grid then interpolate the number and use its index to round. But I don't know that there is a much easier way.

    Thank you

    Zied

    These ideas, everything seems to work if you try to round up to a set of specific values.  But you must set specific values for all the possibilities.

    If you want to round to a given interval, there is an easier way to do it.

    If you want to round each 0.2.  Divide your number of this interval.  Round to the nearest integer.  Multiply your number of this interval.

    If you need to force a number less than or greater than a given to be in this range, such as having range 1.255 round up to 3, then put a stove and Coerce before or after this piece of code.

  • How do you define a table of drop-down list to a specific value boxes?

    I have a table of drop-down list boxes that I want to put a specific value. When I say my program to put them to affect only the drop-down list box which just recently I changed and none of the others.

    I have attached a small vi presents the problem.

    Thank you

    -Ben

    It would be the value - property

  • How to take specific values of a 2d array

    Hi all

    I have a 10 X 10 reasult 2d chart. for example:

    1 2 3 4

    5 6 7 8

    9 10 11 12

    and I want a specific values in the table / say 1,3,7 and 10 (there is no reason given to work with..)

    I used the IndexArray, but because it's about 20 values, it is hell to change and to debug the hell...

    Is there a more elegant way to do it?

    Thank you!

    (this is a great forum, this is my first time ask your question, but I followed you for a while!)

    You can drag the array index down function, by creating something that looks like this:

    That will allow you at the exit of the multiple elements of the same array, putting in each other simultaneously prepare for clues. If you want to make it easier to debug, make the index entries, name them effectively and group them in x, y pairs.

    You can also do an array of Boolean and can select the indices you want. It makes more sense if your clues must be selected graphically.

  • BlackBerry smartphone how to assign a specific ringtone to a specific contact?

    It is probably a n00b question, but is it possible to assign a specific ringtone to a specific contact?  I just changed to a LG Lotus, where I was able to give a specific ringtone to each contact.  I'd like to be able to do with my Style...

    Access your Contacts, scroll to the one you want, click Menu BB button, Edit, highlight the contact info here made place defiler scroll to Custom Ring Tones/alerts section, highlight the phone option, click the Trackpad when the next screen comes up the first box at the top is where you choose the ringtone. Click on the Trackpad and all your ringtones should mount automatically, if you want one that is not on the list scroll all alerts, all voice Notes or all music and choose what file you want to use. The same procedure applies to the evolution of the beeps for messages. Your vibration, volume, etc. will be all settled on active by default, if you want volume and the different vibration for a specific contact you can also change these options at this time.

  • Filter for a specific value object type

    I would like to know if the documents loaded on an object type can be interrogated for a specific value. For ex, I wanted to fetch all the records of the emp and load it into an object. I wanted to ask the object out of the loop to query for a specific deptno. I understand a query simpe SQL would be much faster in the scenario below, but the report itself used in our system uses several tables and some of them have millions of records from different sources as accounts suppliers, accounts receivable, accounting, etc. and they are treated differently for each source before that the result will be published the report. I took the table emp for example and wanted to know if the type of object can be queried for a specific column outside the loop.

    DECLARE

    CURSOR cur_emp IS SELECT * FROM EMP;

    TYPE emp_obj IS TABLE OF cur_emp % ROWTYPE INDEX BY PLS_INTEGER;

    l_emp_tab emp_obj;

    BEGIN

    OPEN cur_emp.

    LOOP

    Get the cur_emp COLLECT LOOSE l_emp_tab LIMIT 1000;

    EXIT WHEN l_emp_tab.count = 0;

    BECAUSE me IN 1.l_emp_tab.count

    Loop

    dbms_output.put_line (' Ename:' | l_emp_tab (i) .ename |', Deptno:' | .deptno l_emp_tab (i));

    END LOOP;

    END LOOP;

    -Can I ask specific employee to a deptno outside the loop FOR without using a temporary table

    -something like "SELECT * FROM TABLE (type_name) WHERE DEPTNO = x_Deptno.

    END;

    /

    In a collection of table selection is not effective, there are better ways to do it.

    Why not create a view?

    create view...

    Select * from source1 Union all the

    Select * from source2 Union all the

    Select * from source3

    -or-

    Using ref cursor return... clause, so you can make conditional cursors

    If somecondition then

    Open the NEWS for

    Select * source1;

    on the other

    Open the NEWS for

    Select * from source2.

    end if;

    -or-

    Dynamics based SQL ref cursor

    DECLARE

    TYPE EmpCurTyp IS REF CURSOR;

    v_emp_cursor EmpCurTyp;

    employees emp_record % ROWTYPE;

    v_stmt_str VARCHAR2 (200);

    v_e_job employees.job%TYPE;

    BEGIN

    -Dynamic SQL statement with placeholder:

    v_stmt_str: = ' SELECT * FROM employees WHERE job_id =: I;

    -Open the cursor & specify bind argument in the USING clause:

    V_emp_cursor OPEN FOR v_stmt_str with the HELP of 'MANAGER ';

    -Extraction of the lines of result set one at a time:

    LOOP

    SEEK v_emp_cursor INTO emp_record;

    EXIT WHEN v_emp_cursor % NOTFOUND;

    END LOOP;

    -Close the cursor:

    CLOSE V_emp_cursor;

    END;

    /

    -or-


    Load in an intermediate table (as a temporary table)

  • Create a filter with a large list of non-specific values

    I am familiar with a filter using "value in" option to include a list of specific values of construction. If the list of values is non-specific?

    For example, I am creating a filter that shows me all the addresses that start with these:

    admin@*,all@*,billing@*,everyone@*,feedback@*,ftp@*,hostmaster@*,info@*,investorrelations@*,ispfeedback@*,ispsupport@*,jobs@*,list-request@*,marketing@*,news@*,nobody@*,noreply@*,spam@*,subscribe@*,support@*,tech@*,trouble@*,undisclosed-recipients@*,unsubscribe@*,usenet@*,uucp@*,webmaster@*,www@*

    I tried to add with the * using "value in" without success.

    Maybe it's two separate issues, because what I'm really trying to figure out how to build a filter based on the example above and perhaps using the "have a value" is not the road to go at all.

    Thank you.

    Your right, Corey. Several filters are necessary. Not funny, its not like the dentist. Its something you have to do. Maybe Eloqua should make it a policy to send a lollipop after that each of us must do for the first time!

    Using filters in comma as instructions BUT is something that I wanted, since a very long time.

  • Manually created SelectManyChoice survey error when certain specific values are selected.

    Hello

    I manually set the values for the component selected choice a lot of a view object.

    The list is retrieved correctly on the UI, but when I select some specific values it gives an error - error: the value is not in the correct format. Enter a value for this type: {2}

    I put the Auto Submit - True and I have a valueChangeListener hung for this component.

    All can help me in this regard

    Here's the code,

    < af:selectManyChoice value = "#{backingBeanScope.AllocationQuickCreateBean.warehouseList} '"

    label = "#{publicuiviewcontrollerBundle.Warehouse}" id = 'smc1' "

    Binding = "#{backingBeanScope.AllocationQuickCreateBean.warehouseSelectMany} '"

    partialTriggers = "it1 soc1" autoSubmit = 'true '.

    valueChangeListener = "#{backingBeanScope.AllocationQuickCreateBean.warehouseValChanged} '"

    Disabled = "#{backingBeanScope.AllocQuickCreateAccessibilityBean.Disabled ['Warehouse']}" "

    valuePassThru = "true" >

    < f: selectItems value = "#{bindings." AllocationQCWarehouseVO1.items}"id ="si3"/ >

    < / af:selectManyChoice >

    Similar mail was returned?

    Incorrect in error message

  • get specific values of several

    This is probably a stupid question, but I can't seem to understand. I have a similar chart to below. There are project files in it, several recordings by project. Im trying to get a separate list of projects that do not have a specific value.

    create table test_project)

    number of project_record

    Varchar2 (50) project.

    project_status varchar2 (50)

    );

    -Select * from test_project

    insert into test_project (project_record, project, project_status) values (1, '123abc', 'active');

    insert into test_project (project_record, project, project_status) values (2, '123abc', 'active');

    Insert into test_project (Project_Record, project, Project_Status) values (3, '123abc', 'active');

    Insert Into test_project (Project_Record, project, Project_Status) Values (4, '123abc', 'total');

    insert into test_project (project_record, project, project_status) values (1, "123cba", "started");

    insert into test_project (project_record, project, project_status) values (2, '123cba', 'active');

    Insert into test_project (Project_Record, project, Project_Status) values (3, '123cba', 'active');

    insert into test_project (project_record, project, project_status) values (4, '123cba', 'guarantee');

    insert into test_project (project_record, project, project_status) values (1, '321abc', 'active');

    insert into test_project (project_record, project, project_status) values (2, '321abc', 'active');

    Insert Into test_project (Project_Record, project, Project_Status) Values (3, '321abc', 'complete');

    insert into test_project (project_record, project, project_status) values (4, '321abc', 'guarantee');

    insert into test_project (project_record, project, project_status) values (1, '555abc', 'active');

    insert into test_project (project_record, project, project_status) values (2, '555abc', 'active');

    Insert into test_project (Project_Record, project, Project_Status) values (3, '555abc', 'active');

    insert into test_project (project_record, project, project_status) values (4, '555abc', 'active');

    I want to choose project_record and project where none of the project files have 'full' in it.

    So if a project is complete in this document, regardlesss of the place where it should not go up.

    Hello

    Thanks for posting the CREATE TABLE and INSERT statements; It's very useful!

    Don't forget to post the exact results you want from this data, as well as an explanation of why.  It may be obvious to you is as a 'project', but not everyone who wants to help is also familiar with your application you are.  Is all separate project_record project, each distinct project or all the distinct combinations of these 2?

    Here are the results you want?

    PROJECT_RECORD PROJECT

    -------------- --------------------------------------------------

    1 123cba

    1 555abc

    2 123cba

    2 555abc

    3 123cba

    3 555abc

    4 123cba

    4 555abc

    ?  Otherwise, each separate project is a project and the results include all the lines with project = '123abc' or '321abc', because these project_ids have a rank with project_status = "Finish."

    If so, one way is:

    WITH got_complete_cnt AS

    (

    SELECT project_record, project

    , COUNTY (CASE

    WHEN project_status = "Finish."

    THEN 'X '.

    END

    ) OVER (PARTITION BY project) AS complete_cnt

    OF test_project

    )

    SELECT project_record, project

    OF got_complete_cnt

    WHERE complete_cnt = 0

    ORDER BY project_record, project

    ;

    Include other ways to achieve the same results

    • NOT EXISTS subquery
    • NOT IN subquery
    • Semi Join
  • How to assign the next value in the sequence directly in a variable?

    How to assign the next value in the sequence directly in a variable without using a table TWICE in PL/SQL.

    BluShadow wrote:

    How about a quick test on 11g, just to see if you directly select a sequence in a variable is significantly better than the mark of DOUBLE.

    ...

    Nope... no obvious difference.

    This is because there is none: Oracle's SELECT sequence. NEXTVAL FROM DUAL under the covers. The direct assignment is just a convenient encoding for us, but it does not change the work that accomplishes Oracle.

    create sequence s;
    alter system flush shared_pool;
    declare
    l_num number;
    begin
    l_num := s.nextval;
    end;
    /
    select sql_text from v$sql where parsing_schema_name = user;
    
    SQL_TEXT
    Report the number of l_num; begin l_num: = s.nextval; end;
    Select sql_text from v$ sql where parsing_schema_name = user
    Select double S.NEXTVAL
  • How to choose a specific value in a drop-down list using javascript

    Hello

    I'm looking for a way to select a specific value in a drop-down list (the first value) using javascript? How would I do that? Thank you in advance.

    Here's how you can select the first item without having to know what it is:

    Set the value of the drop-down list to the first element cb1

    var f = getField ("cb1");

    var val = f.getItemAt (0, true);

    If (val) f.value = val;

    Change 0 to a different index if desired, or use-1 for the last item in the list. More information for the field getItemAt method is in the Acrobat JavaScript documentation.

  • Get rid of BarChart legend and create a horizontal line to a specific value

    Hey,.
    I work with barregraphes.
    1st screen: I want to disable the legend of my Barchart.
    http://imgur.com/wMo6Tfv, DRiNA9C
    Second screen: I want to create a line in my Barchart on a specific value 700 as seen on the screen.
    http://imgur.com/wMo6Tfv, DRiNA9C #1
    Is this Possible? Also: what object to set the ID to change the color bar. I tried

    Chart histogram;
    barchart.setId ("Chart");

    CSS:
    #barchart
    {
    -fx-background-color: red;
    }
    But it did not work. Thank you!

    No, you do not miss anything. I had a temporary brain freeze. You can add nodes directly to an arbitrary region.

    If this makes it a little harder. You need to add the line to the container in which your chart is maintained, and of course this means that you understand the coordinates of the line relative to this container. To simplify a bit, axis has a scale property of conversion of units of the axis to display units, and also according to the docs of css, the table has a child with the css class "table-horizontal-zero line." So one possible strategy is to enter this line and figure the change in the coordinates needed him. There is still work to do to find the correct coordinates relative to the container, and if you want it to run with things move (for example, when the user resizes the window), you need to do a lot of link.

    This seems to work:

    import java.util.Arrays;
    import java.util.List;
    
    import javafx.application.Application;
    import javafx.beans.binding.DoubleBinding;
    import javafx.beans.property.DoubleProperty;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.chart.CategoryAxis;
    import javafx.scene.chart.LineChart;
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.scene.control.Button;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.Region;
    import javafx.scene.shape.Line;
    import javafx.stage.Stage;
    import javafx.util.StringConverter;
    
    public class LineChartSample extends Application {
    
      @Override
      public void start(Stage stage) {
        stage.setTitle("Line Chart Sample");
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis();
        yAxis.setTickLabelFormatter(new StringConverter() {
    
          @Override
          public Number fromString(String string) {
            return Double.parseDouble(string);
          }
    
          @Override
          public String toString(Number value) {
            return String.format("%2.2f", value);
          }
    
        });
        xAxis.setLabel("Month");
    
        final LineChart lineChart = new LineChart(
            xAxis, yAxis);
    
        lineChart.setTitle("Stock Monitoring, 2010");
        lineChart.setAnimated(false);
    
        final XYChart.Series series = new XYChart.Series<>();
        series.setName("My portfolio");
    
        final List> data = Arrays.asList(
    
        new XYChart.Data("Jan", 23),
            new XYChart.Data("Feb", 14),
            new XYChart.Data("Mar", 15),
            new XYChart.Data("Apr", 24),
            new XYChart.Data("May", 34),
            new XYChart.Data("Jun", 36),
            new XYChart.Data("Jul", 22),
            new XYChart.Data("Aug", 45),
            new XYChart.Data("Sep", 43),
            new XYChart.Data("Oct", 17),
            new XYChart.Data("Nov", 29),
            new XYChart.Data("Dec", 25));
    
        series.getData().addAll(data);
    
        final AnchorPane chartContainer = new AnchorPane();
        AnchorPane.setTopAnchor(lineChart, 0.0);
        AnchorPane.setBottomAnchor(lineChart, 0.0);
        AnchorPane.setLeftAnchor(lineChart, 0.0);
        AnchorPane.setRightAnchor(lineChart, 0.0);
        chartContainer.getChildren().add(lineChart);
    
        Button button = new Button("Show line");
        button.setOnAction(new EventHandler() {
    
          @Override
          public void handle(ActionEvent event) {
    
            final double lineLevel = 35;
    
            final Region chartRegion = (Region) lineChart
                .lookup(".chart-plot-background");
    
            final Line zeroLine = (Line) lineChart
                .lookup(".chart-horizontal-zero-line");
    
            final DoubleProperty startX = new SimpleDoubleProperty(0);
            final DoubleProperty endX = new SimpleDoubleProperty(0);
            final DoubleProperty y = new SimpleDoubleProperty(0);
    
            startX.bind(new DoubleBinding() {
              {
                super.bind(chartRegion.boundsInParentProperty());
              }
    
              @Override
              protected double computeValue() {
                double x = chartRegion.getBoundsInParent().getMinX();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  x += n.getBoundsInParent().getMinX();
                }
                return x;
              }
            });
    
            endX.bind(new DoubleBinding() {
              {
                super.bind(chartRegion.boundsInParentProperty());
              }
    
              @Override
              protected double computeValue() {
                double x = chartRegion.getBoundsInParent().getMaxX();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  x += n.getBoundsInParent().getMinX();
                }
                return x;
              }
            });
    
            y.bind(new DoubleBinding() {
              {
                super.bind(chartRegion.boundsInParentProperty(),
                    yAxis.scaleProperty(), zeroLine.startYProperty());
              }
    
              @Override
              protected double computeValue() {
                double y = zeroLine.getStartY() + lineLevel * yAxis.getScale();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  y += n.getBoundsInParent().getMinY();
                }
                return y;
              }
            });
    
            Line line = new Line();
            line.startXProperty().bind(startX);
            line.endXProperty().bind(endX);
            line.startYProperty().bind(y);
            line.endYProperty().bind(y);
    
            chartContainer.getChildren().add(line);
          }
    
        });
    
        BorderPane root = new BorderPane();
        root.setCenter(chartContainer);
        root.setTop(button);
    
        Scene scene = new Scene(root, 800, 600);
        lineChart.getData().add(series);
    
        stage.setScene(scene);
        stage.show();
    
      }
    
      public static void main(String[] args) {
        launch(args);
      }
    }
    
  • Affecting the shortcomings of specific values

    I want to put gaps between the (rectangles) object to specific values. I want to be able to enter a value rather than use the tool, Ctrl + drag.

    I would also like to be able to lock this gap if it is in any way possible.

    How can I do this?

    You can check the differences in the use of a value in the Align Panel, select the objects you want the workspace and click on distribute spacing

  • Oracle how to assign a date value in a parameter declaration

    How can I assign a date value to a parameter declaration in SQL?

    Here are my existing script.

    CURRENT SITUATION:

    select distinct as summary ' iCash EAD error Summary", count (*).
    AAA. BKS_ICASH_EAD_ERRORS
    where creation_date > to_date (' 26/05/12 08:50 "," mm/dd/yy HH24 ')
    Summary group


    I want to assign the date I'm looking for a parameter and use the setting in my query.


    OBJECTIVE:

    DECLARE
    pCreateDate DATE;

    exec: pCreateDate: = 5/26/12-08:50 ';

    select distinct as summary ' iCash EAD error Summary", count (*).
    AAA. BKS_ICASH_EAD_ERRORS
    where creation_date > to_date (: pCreateDate, "mm/dd/yy HH24 '")
    Summary group

    Hello

    In SQL * Plus, you can do this:

    VARIABLE     pcreatdate     VARCHAR2 (20)
    EXEC           :pcreatedate := '5/26/12 8:50';
    
    SELECT    summary          AS "iCash EAD Error Summary"
    ,       COUNT (*)          AS "Total Count"
    FROM        aaa.bks_icash_ead_errors
    WHERE       creation_date  > TO_DATE (:pcreatedate, 'MM/DD/RRRR HH24:MI')
    GROUP BY  summary
    ;
    

    'GROUP BY summary' means that you will get a line of output for each distinct value of the summary. He has no need of SELECT DISTINCT since the GROUP BY is already ensuring that the lines are separate.

    There is no variable binding DATE in SQL * Plus, so you must use a VARCHAR2.
    If you do something similar in PL/SQL, you can use a DATE variable. Make sure that you do not call TO_DATE on something that is already a DATE.

    Published by: Frank Kulash on June 26, 2012 14:01

  • Assign the textfield value to a variable

    How can I transfer a textfield value in the variable?

    [CODE]

    import flash.text. *;

    import flash.events. *;

    import flash.display. *;

    Button named Player_save

    Player_save.addEventListener (MouseEvent.CLICK, savename);

    function savename(event:MouseEvent):void

    {

    playerlist. Text = Player_name. Text;

    trace (Player_name. (Text);

    Player_name. Text is the TextField

    }

    [/ CODE]

    First declare the variable, then assign the text value of the textfield object.

    var playerName:String = player_name.text;

Maybe you are looking for

  • the on my Office Shortcut Bar disappeared

    The shortcut bar that normally appears on the home screen of my left hand has disappeared. I have no idea how to do to get it back, and I think my computer may have some corrupted files. I followed the instructions of the other posts here and run the

  • PC Windows 7 Home Premium alert is NOT compatible for GPS_G520

    In the bottom right bar, I have an 'X' on my HP file indicating that windows 7 Home Premium is NOT compatible for GPS_G520.  I have NO idea what the "means of GPS_G520!  I think it has to do with the manufacturer, which is HP.  I have a laptop.   * E

  • What is so special about 10ms response speed

    Hi friends,Almost everywhere, we mean that the response time of monobloc in oracle should be < 10ms etc.Can someone throw light where the value of 10ms is derived, or why it is considered as good enough?I googled but without success.

  • Help! I lost my "network cards" after reinstalling XP

    Hello I have re-installed XP and apparently deleted my drivers. I try to get my built-in wireless works... but I can't seem to do.I followed the instructions referring to go to Device Manager and clicking on the sign "+" next to "network adapters." U

  • Convert prealloue with Snapshots

    OK, I did like a day and a half of research on this and I can't find a definitive answer.Here's the situation: I have created a virtual machine with a stretch drive. I'm sorry that I need all the performance I can get. I want to convert the prealloue