Multiples of the same object/value in a contact field

Hello

In our table of Contacts of the E10, I feel a very strange behavior with a field called 'Type of Contact'. The field has been set as a drop-down list.

Suddenly, multiples of the value stored in this field in the documents that get 2-way sync between E and SFDC, Ont. Thus, for example, if the value of the field

has been 'Operator', the actual value is passed to 'OperatorOperator '. And the more you synch, the value is (as seems to be added).

Then, the value would be "OperatorOperatorOperatorOperator".

Wake up to the problem and setting values is tricky, because in the E10 user interface, you won't notice them if you use a drop-down list.

I then changed the field to be a textbox to think what might help. And there is progress here. If there are more than two objects of value in the field,

they present themselves. IF there were only two, everything looks ok just as you can see in the screenshot below:

More survey close using that an outgoing external call Test reveals, however, that the value is actually duplicated:

Also, if you have opened upward the selected record under Contacts the contents of the field (after changing text box):

and then remove the selection (by tapping the button Delete), you could actually get a hint that something does not always work with the field:

The cursor remains in the right-hand side of the text box, while he should have all the way to the left.

Finally, I tried to fix the multiplied values SFDC and autosych back to Eloqua, but unfortunately the values do not get it fixed but

keep duplicate values stored in.

Any other questions/experiences? Is it a problem with the autosynch get leads NOT to crush, but rather just adding?

WBR,

-tatu-

Some additional screenshots: fi

The choice list values:

Yep!

That did the trick. It must have been a flaw in the external call-out who copied the value out. would have not thought about it in the first place...

PS. and of course the external call test has shown that the field mapping was abt to do, IE send a duplicated value (although the field could have only a single (or double) value in db at the time.)

WBR,

Tatu

Tags: Marketers

Similar Questions

  • Multiples of the same document [Android]

    Whenever I open a document, I end up with multiples of the same document. How can I stop this happening again?

    Thank you very much for your help. This has been driving me crazy for months. I was able to remove multiple files at length by pressing the files in the folder my documents. Yet once again thank you all so much for your help. Now that l know how to delete them it don't bother me if they continue to multiply. I'll understand it. Have a wonderful day.

  • Consecutive tweens to the same object?

    I'm new to Flash, and I have a simple question that I can't find an answer to in the online help or tutorials topics. It is the following:

    In CS4, it is possible to add two consecutive to the same object (symbol instance) tweens? I mean have a shape move from the left, wait a few seconds and then move back to the left. So far, the only method I've found is to create a copy of the object (a new instance of the coast) and animate it separately. But that creates additional objects and get the right positioning is very difficult. Is there a way to have a piece of tween and start another (possibly after a delay) on the same object in the same layer? Or in different layers, which would be better?

    Any advice is welcome.

    Gregory

    You can do this with a single object. One way using the new method of interpolation in CS4, quoted above, would be as follows.

    1. Select the object positioned at location lefmost, then choose Create a motion tween.

    2. move the playhead when you want it to be interpolated in the right, then move it.

    3. Select this image (Ctrl/Cmd-click), right-click, choose copy properties.

    4. move the playhead when you want to * start * interpolation (after the break), right-click and choose Paste properties.

    5. at the end of the duration, drag the object to the original position (so TI interpolations of return).  OR, you can copy the properties of the first image.

    Another way to do this would be:

    1. Select the object positioned at location lefmost, then choose Create a motion tween.

    2. move the playhead when you want it to be interpolated in the right, then move it.

    3. Select this image (Cmd/Ctrl-click and release), press Alt and drag a copy of the image where you want to stop "a break."

    4. at the end of the duration, drag the object to the original position (so TI interpolations of return).

    It seems quite clear that I describe each click, but once you do the steps that you will notice it's very simple copy-pasta.

  • selection of multiple grants on the same object

    Hello

    (The following SQl code will be run on 9i, 10g and 11g database versions)

    Im trying to produce a list of the directory of the subsidies that are the same from 2 different users (but only display the details of a user grants)

    to clarify...

    lets say we have 100 directories and 2 users who have granted permissions on them, user A and user B.

    Permissions can be granted on a directory by just A user, to any user B or the same permission granted on the same directory by users A and B.

    I want to make a list that displays the details of the directories where user A and user B are granted this permission (but in the list only display the details of A user grants)

    If the following SQL code will give me all the directory permissions that are granted by user A

    Select p.table_name, p.grantee, p.owner, p.grantor, p.privilege, o.object_type
    of dba_tab_privs p
    dba_objects o inner join
    on o.object_name = p.table_name
    where o.object_type = 'DIRECTORY '.
    and p.grantor = 'USER ';

    so I want to make the same list of grants by USERA just, but only if these directories have also been granted the same permission by USERB

    any ideas on the best way to do it?

    Thank you

    882817 wrote:
    What's the advantage I have this solution on the previous?

    Well, I just introduced two solutions. Depending on the particular case compare you execution plans and choose a better. Here we have quite complex views, but I would say the analytical solution is a little bit faster:

    SQL> explain plan for
      2  select  p.table_name,
      3          p.grantee,
      4          p.owner,
      5          p.grantor,
      6          p.privilege,
      7          o.object_type
      8    from      dba_tab_privs p
      9          inner join
     10              dba_objects o
     11            on (
     12                    o.object_type = 'DIRECTORY'
     13                and
     14                    o.owner = p.owner
     15                and
     16                    o.object_name = p.table_name
     17                and
     18                    p.grantor != 'U2'
     19               )
     20    where not exists (
     21                      select  1
     22                        from  dba_tab_privs p1
     23                        where p.owner = p1.owner
     24                          and p.table_name = p1.table_name
     25                          and p.grantee = p1.grantee
     26                          and p.privilege = p1.privilege
     27                          and p1.grantor = 'U2'
     28*                    )
    SQL> /
    
    Explained.
    
    SQL> @?\rdbms\admin\utlxpls
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    Plan hash value: 1557554763
    
    ----------------------------------------------------------------------------------------------------------------------
    | Id  | Operation                            | Name                  | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    ----------------------------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT                     |                       |   494 |   131K|       |   864   (5)| 00:00:11 |
    |*  1 |  HASH JOIN                           |                       |   494 |   131K|       |   864   (5)| 00:00:11 |
    |*  2 |   TABLE ACCESS FULL                  | USER$                 |    73 |  1095 |       |     3   (0)| 00:00:01 |
    |*  3 |   HASH JOIN ANTI                     |                       |   494 |   124K|       |   861   (5)| 00:00:11 |
    |*  4 |    HASH JOIN                         |                       |   522 | 96570 |       |   681   (5)| 00:00:09 |
    |   5 |     TABLE ACCESS FULL                | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |*  6 |     HASH JOIN                        |                       |   522 | 88740 |       |   678   (5)| 00:00:09 |
    |   7 |      TABLE ACCESS FULL               | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |*  8 |      HASH JOIN                       |                       | 38597 |  5842K|  1752K|   674   (5)| 00:00:09 |
    |*  9 |       HASH JOIN                      |                       | 24484 |  1458K|       |   172   (5)| 00:00:03 |
    |* 10 |        HASH JOIN                     |                       | 24221 |   685K|       |    23   (9)| 00:00:01 |
    |  11 |         INDEX FULL SCAN              | I_TABLE_PRIVILEGE_MAP |    24 |   240 |       |     1   (0)| 00:00:01 |
    |* 12 |         TABLE ACCESS FULL            | OBJAUTH$              | 24221 |   449K|       |    21   (5)| 00:00:01 |
    |  13 |        TABLE ACCESS FULL             | OBJ$                  | 52647 |  1645K|       |   147   (3)| 00:00:02 |
    |  14 |       VIEW                           | DBA_OBJECTS           | 49670 |  4559K|       |   164  (10)| 00:00:02 |
    |  15 |        UNION-ALL                     |                       |       |       |       |            |          |
    |* 16 |         FILTER                       |                       |       |       |       |            |          |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |* 17 |          HASH JOIN                   |                       | 52627 |  2826K|       |   162  (10)| 00:00:02 |
    |  18 |           TABLE ACCESS FULL          | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |* 19 |           TABLE ACCESS FULL          | OBJ$                  | 52627 |  2055K|       |   158   (9)| 00:00:02 |
    |* 20 |          TABLE ACCESS BY INDEX ROWID | IND$                  |     1 |     8 |       |     2   (0)| 00:00:01 |
    |* 21 |           INDEX UNIQUE SCAN          | I_IND1                |     1 |       |       |     1   (0)| 00:00:01 |
    |* 22 |           TABLE ACCESS BY INDEX ROWID| SUM$                  |     1 |     8 |       |     1   (0)| 00:00:01 |
    |* 23 |            INDEX UNIQUE SCAN         | I_SUM$_1              |     1 |       |       |     0   (0)| 00:00:01 |
    |* 24 |         FILTER                       |                       |       |       |       |            |          |
    |* 25 |          HASH JOIN                   |                       |     9 |   513 |       |     5  (20)| 00:00:01 |
    |  26 |           INDEX FULL SCAN            | I_LINK1               |     9 |   378 |       |     1   (0)| 00:00:01 |
    |  27 |           TABLE ACCESS FULL          | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |  28 |    VIEW                              | VW_SQ_1               |  1530 |   109K|       |   179   (4)| 00:00:03 |
    |* 29 |     HASH JOIN                        |                       |  1530 |   158K|       |   179   (4)| 00:00:03 |
    |  30 |      TABLE ACCESS FULL               | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |* 31 |      HASH JOIN                       |                       |  1530 |   135K|       |   176   (4)| 00:00:03 |
    |* 32 |       HASH JOIN                      |                       |  1514 | 89326 |       |    27   (8)| 00:00:01 |
    |  33 |        TABLE ACCESS FULL             | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |* 34 |        HASH JOIN                     |                       |  1514 | 66616 |       |    24   (9)| 00:00:01 |
    |  35 |         INDEX FULL SCAN              | I_TABLE_PRIVILEGE_MAP |    24 |   240 |       |     1   (0)| 00:00:01 |
    |  36 |         NESTED LOOPS                 |                       |  1514 | 51476 |       |    22   (5)| 00:00:01 |
    |  37 |          TABLE ACCESS BY INDEX ROWID | USER$                 |     1 |    15 |       |     1   (0)| 00:00:01 |
    |* 38 |           INDEX UNIQUE SCAN          | I_USER1               |     1 |       |       |     0   (0)| 00:00:01 |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |* 39 |          TABLE ACCESS FULL           | OBJAUTH$              |  1514 | 28766 |       |    21   (5)| 00:00:01 |
    |  40 |       TABLE ACCESS FULL              | OBJ$                  | 52647 |  1645K|       |   147   (3)| 00:00:02 |
    ----------------------------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - access("OA"."GRANTOR#"="UR"."USER#")
       2 - filter("UR"."NAME"<>'U2')
       3 - access("U"."NAME"="NAME" AND "O"."NAME"="NAME" AND "UE"."NAME"="NAME" AND "TPM"."NAME"="NAME")
       4 - access("OA"."GRANTEE#"="UE"."USER#")
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
       6 - access("O"."OWNER"="U"."NAME" AND "U"."USER#"="O"."OWNER#")
       8 - access("O"."OBJECT_NAME"="O"."NAME")
       9 - access("OA"."OBJ#"="O"."OBJ#")
      10 - access("OA"."PRIVILEGE#"="TPM"."PRIVILEGE")
      12 - filter("OA"."COL#" IS NULL)
      16 - filter(("O"."TYPE#"<>1 AND "O"."TYPE#"<>10 OR "O"."TYPE#"=1 AND  (SELECT 1 FROM "SYS"."IND$" "I" WHERE
                  "I"."OBJ#"=:B1 AND ("I"."TYPE#"=1 OR "I"."TYPE#"=2 OR "I"."TYPE#"=3 OR "I"."TYPE#"=4 OR "I"."TYPE#"=6 OR
                  "I"."TYPE#"=7 OR "I"."TYPE#"=9))=1) AND DECODE("O"."TYPE#",0,'NEXT
                  OBJECT',1,'INDEX',2,'TABLE',3,'CLUSTER',4,'VIEW',5,'SYNONYM',6,'SEQUENCE',7,'PROCEDURE',8,'FUNCTION',9,'PACKAG
                  E',11,'PACKAGE BODY',12,'TRIGGER',13,'TYPE',14,'TYPE BODY',19,'TABLE PARTITION',20,'INDEX
                  PARTITION',21,'LOB',22,'LIBRARY',23,'DIRECTORY',24,'QUEUE',28,'JAVA SOURCE',29,'JAVA CLASS',30,'JAVA
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
                  RESOURCE',32,'INDEXTYPE',33,'OPERATOR',34,'TABLE SUBPARTITION',35,'INDEX SUBPARTITION',40,'LOB
                  PARTITION',41,'LOB SUBPARTITION',42,NVL( (SELECT DISTINCT 'REWRITE EQUIVALENCE' FROM SYS."SUM$" "S" WHERE
                  "S"."OBJ#"=:B2 AND BITAND("S"."XPFLAGS",8388608)=8388608),'MATERIALIZED
                  VIEW'),43,'DIMENSION',44,'CONTEXT',46,'RULE SET',47,'RESOURCE PLAN',48,'CONSUMER
                  GROUP',51,'SUBSCRIPTION',52,'LOCATION',55,'XML SCHEMA',56,'JAVA DATA',57,'SECURITY
                  PROFILE',59,'RULE',60,'CAPTURE',61,'APPLY',62,'EVALUATION CONTEXT',66,'JOB',67,'PROGRAM',68,'JOB
                  CLASS',69,'WINDOW',72,'WINDOW GROUP',74,'SCHEDULE',79,'CHAIN',81,'FILE GROUP','UNDEFINED')='DIRECTORY')
      17 - access("O"."OWNER#"="U"."USER#")
      19 - filter("O"."LINKNAME" IS NULL AND "O"."NAME"<>'_NEXT_OBJECT' AND
                  "O"."NAME"<>'_default_auditing_options_' AND BITAND("O"."FLAGS",128)=0)
      20 - filter("I"."TYPE#"=1 OR "I"."TYPE#"=2 OR "I"."TYPE#"=3 OR "I"."TYPE#"=4 OR "I"."TYPE#"=6 OR
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
                  "I"."TYPE#"=7 OR "I"."TYPE#"=9)
      21 - access("I"."OBJ#"=:B1)
      22 - filter(BITAND("S"."XPFLAGS",8388608)=8388608)
      23 - access("S"."OBJ#"=:B1)
      24 - filter(NULL IS NOT NULL)
      25 - access("L"."OWNER#"="U"."USER#")
      29 - access("U"."USER#"="O"."OWNER#")
      31 - access("OA"."OBJ#"="O"."OBJ#")
      32 - access("OA"."GRANTEE#"="UE"."USER#")
      34 - access("OA"."PRIVILEGE#"="TPM"."PRIVILEGE")
      38 - access("UR"."NAME"='U2')
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
      39 - filter("OA"."COL#" IS NULL AND "OA"."GRANTOR#"="UR"."USER#")
    
    89 rows selected.
    
    SQL> explain plan for
      2  select  table_name,
      3          grantee,
      4          owner,
      5          grantor,
      6          privilege,
      7          object_type
      8    from  (
      9           select  p.table_name,
     10                   p.grantee,
     11                   p.owner,
     12                   p.grantor,
     13                   p.privilege,
     14                   o.object_type,
     15                   count(case when p.grantor != 'U2' then 1 end) over(partition by p.table_name,p.grantee,p.owner,p.privilege) u2_indicator
     16             from      dba_tab_privs p
     17                   inner join
     18                       dba_objects o
     19                     on (
     20                             o.object_type = 'DIRECTORY'
     21                         and
     22                             o.owner = p.owner
     23                         and
     24                             o.object_name = p.table_name
     25                        )
     26          )
     27    where u2_indicator = 1
     28  / 
    
    Explained.
    
    SQL>
    SQL>
    SQL> @?\rdbms\admin\utlxpls
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    Plan hash value: 1974693759
    
    ------------------------------------------------------------------------------------------------------------------------
    | Id  | Operation                              | Name                  | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    ------------------------------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT                       |                       |   522 | 59508 |       |   674   (5)| 00:00:09 |
    |*  1 |  VIEW                                  |                       |   522 | 59508 |       |   674   (5)| 00:00:09 |
    |   2 |   WINDOW SORT                          |                       |   522 |   101K|       |   674   (5)| 00:00:09 |
    |*  3 |    HASH JOIN                           |                       |   522 |   101K|       |   673   (5)| 00:00:09 |
    |   4 |     TABLE ACCESS FULL                  | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |*  5 |     HASH JOIN                          |                       |   522 | 96570 |       |   670   (5)| 00:00:09 |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |   6 |      TABLE ACCESS FULL                 | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |*  7 |      HASH JOIN                         |                       |   522 | 88740 |       |   666   (5)| 00:00:08 |
    |   8 |       INDEX FULL SCAN                  | I_TABLE_PRIVILEGE_MAP |    24 |   240 |       |     1   (0)| 00:00:01 |
    |*  9 |       HASH JOIN                        |                       |   522 | 83520 |       |   665   (5)| 00:00:08 |
    |  10 |        TABLE ACCESS FULL               | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |* 11 |        HASH JOIN                       |                       | 38597 |  5465K|  1512K|   661   (4)| 00:00:08 |
    |* 12 |         HASH JOIN                      |                       | 24484 |  1219K|       |   170   (4)| 00:00:03 |
    |* 13 |          TABLE ACCESS FULL             | OBJAUTH$              | 24221 |   449K|       |    21   (5)| 00:00:01 |
    |  14 |          TABLE ACCESS FULL             | OBJ$                  | 52647 |  1645K|       |   147   (3)| 00:00:02 |
    |  15 |         VIEW                           | DBA_OBJECTS           | 49670 |  4559K|       |   164  (10)| 00:00:02 |
    |  16 |          UNION-ALL                     |                       |       |       |       |            |          |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |* 17 |           FILTER                       |                       |       |       |       |            |          |
    |* 18 |            HASH JOIN                   |                       | 52627 |  2826K|       |   162  (10)| 00:00:02 |
    |  19 |             TABLE ACCESS FULL          | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    |* 20 |             TABLE ACCESS FULL          | OBJ$                  | 52627 |  2055K|       |   158   (9)| 00:00:02 |
    |* 21 |            TABLE ACCESS BY INDEX ROWID | IND$                  |     1 |     8 |       |     2   (0)| 00:00:01 |
    |* 22 |             INDEX UNIQUE SCAN          | I_IND1                |     1 |       |       |     1   (0)| 00:00:01 |
    |* 23 |             TABLE ACCESS BY INDEX ROWID| SUM$                  |     1 |     8 |       |     1   (0)| 00:00:01 |
    |* 24 |              INDEX UNIQUE SCAN         | I_SUM$_1              |     1 |       |       |     0   (0)| 00:00:01 |
    |* 25 |           FILTER                       |                       |       |       |       |            |          |
    |* 26 |            HASH JOIN                   |                       |     9 |   513 |       |     5  (20)| 00:00:01 |
    |  27 |             INDEX FULL SCAN            | I_LINK1               |     9 |   378 |       |     1   (0)| 00:00:01 |
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
    |  28 |             TABLE ACCESS FULL          | USER$                 |    74 |  1110 |       |     3   (0)| 00:00:01 |
    ------------------------------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       1 - filter("U2_INDICATOR"=1)
       3 - access("OA"."GRANTEE#"="UE"."USER#")
       5 - access("OA"."GRANTOR#"="UR"."USER#")
       7 - access("OA"."PRIVILEGE#"="TPM"."PRIVILEGE")
       9 - access("O"."OWNER"="U"."NAME" AND "U"."USER#"="O"."OWNER#")
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
      11 - access("O"."OBJECT_NAME"="O"."NAME")
      12 - access("OA"."OBJ#"="O"."OBJ#")
      13 - filter("OA"."COL#" IS NULL)
      17 - filter(("O"."TYPE#"<>1 AND "O"."TYPE#"<>10 OR "O"."TYPE#"=1 AND  (SELECT 1 FROM "SYS"."IND$" "I" WHERE
                  "I"."OBJ#"=:B1 AND ("I"."TYPE#"=1 OR "I"."TYPE#"=2 OR "I"."TYPE#"=3 OR "I"."TYPE#"=4 OR "I"."TYPE#"=6 OR
                  "I"."TYPE#"=7 OR "I"."TYPE#"=9))=1) AND DECODE("O"."TYPE#",0,'NEXT
                  OBJECT',1,'INDEX',2,'TABLE',3,'CLUSTER',4,'VIEW',5,'SYNONYM',6,'SEQUENCE',7,'PROCEDURE',8,'FUNCTION',9,'PACKAGE'
                  ,11,'PACKAGE BODY',12,'TRIGGER',13,'TYPE',14,'TYPE BODY',19,'TABLE PARTITION',20,'INDEX
                  PARTITION',21,'LOB',22,'LIBRARY',23,'DIRECTORY',24,'QUEUE',28,'JAVA SOURCE',29,'JAVA CLASS',30,'JAVA
                  RESOURCE',32,'INDEXTYPE',33,'OPERATOR',34,'TABLE SUBPARTITION',35,'INDEX SUBPARTITION',40,'LOB
                  PARTITION',41,'LOB SUBPARTITION',42,NVL( (SELECT DISTINCT 'REWRITE EQUIVALENCE' FROM SYS."SUM$" "S" WHERE
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
                  "S"."OBJ#"=:B2 AND BITAND("S"."XPFLAGS",8388608)=8388608),'MATERIALIZED
                  VIEW'),43,'DIMENSION',44,'CONTEXT',46,'RULE SET',47,'RESOURCE PLAN',48,'CONSUMER
                  GROUP',51,'SUBSCRIPTION',52,'LOCATION',55,'XML SCHEMA',56,'JAVA DATA',57,'SECURITY
                  PROFILE',59,'RULE',60,'CAPTURE',61,'APPLY',62,'EVALUATION CONTEXT',66,'JOB',67,'PROGRAM',68,'JOB
                  CLASS',69,'WINDOW',72,'WINDOW GROUP',74,'SCHEDULE',79,'CHAIN',81,'FILE GROUP','UNDEFINED')='DIRECTORY')
      18 - access("O"."OWNER#"="U"."USER#")
      20 - filter("O"."LINKNAME" IS NULL AND "O"."NAME"<>'_NEXT_OBJECT' AND
                  "O"."NAME"<>'_default_auditing_options_' AND BITAND("O"."FLAGS",128)=0)
      21 - filter("I"."TYPE#"=1 OR "I"."TYPE#"=2 OR "I"."TYPE#"=3 OR "I"."TYPE#"=4 OR "I"."TYPE#"=6 OR
                  "I"."TYPE#"=7 OR "I"."TYPE#"=9)
      22 - access("I"."OBJ#"=:B1)
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------------------------------------------------------
      23 - filter(BITAND("S"."XPFLAGS",8388608)=8388608)
      24 - access("S"."OBJ#"=:B1)
      25 - filter(NULL IS NOT NULL)
      26 - access("L"."OWNER#"="U"."USER#")
    
    70 rows selected.
    
    SQL> 
    

    SY.

  • In the tree of ADF problem when I use 2 tree in a Page with the same object in view!

    Hello world

    I use 11.1.1.5 JDeveloper and ADF Faces in the user interface. I have 2 trees in a page that they are same view editable object but different instances in the module of the application. When I change the attribute value of one of them to manage Bean programmatically, two of them change? !! in my case, I put a checkbox in nodeStamp, when the user click on the checkbox, rank title needs to change but the title in both entities change?
    I think it's a bug.

    Please help me. Thank you

    Hello
    If I understand your case, then this is the expected behavior.
    When multiple instances of objects from view based on feature in an application module is based on the same underlying object of the entity, then a change in one of them reflected on the other.

  • Waiting on Notification of the Multiple is the same with or without history

    I'm running this VI on a cRIO-9066, and two functions "Wait" the same behavior. After reading the help of LV, I expect with "notifier history" one to return an array of two elements, not one. Is this a bug?

    (Attachment is LV 2014 SP10

    Staab_Engineering wrote:

    When he comes back is less interesting than what it returns with. I expect the entire purpose of "with the story declaring" that he would return a value for each registrant, to condition, not only a value for the first hit. The first is the behavior I want, so I can write a loop to wait at a time on two filers and find out who shot first.

    It returns a value for each alert system who shot between waiting for him. If one of the authors of the provided notifications does not fire, then it will not have a value.

    To determine the one who fired first, you can use the notifier out output and status. (i.e. the first element of the notifier out output is the declarant who shot first)

  • Add multiple scans the same analysis of PDF when scanning

    Hello

    HP Officejet Pro 6830

    How to add multiple scans in the same pdf file?

    I need to scan several documents and make them all go into a single pdf. Some may be double-sided and that's fine if I have to scan individually.

    At present it will only do a scan or a two-sided scanning, then he wants to save the scan and not ask if there are other pages. The only option is to save or not.

    Thank you.

    After your first scan, you need to click on the sign to the 07:00 position.

  • Easy VPN setup with interface to multiples with the same level of security

    Hello

    I want to configure an ASA 5505 with 7.2 (4) software and dual license ISP and when I configure two interfaces with the level 0 on two security interfaces and enable vpnclient the trace message appear:

    ERROR: Cannot determine the internal and external interfaces Easy VPN remote: multiple interfaces with the same levels of security.

    vpnlclient of configuration above:

    vpnclient Server x.x.x.x where x.x.x.x
    vpnclient mode network-extension-mode
    vpnclient nem-st-autoconnect
    vpnclient TUNNEL_EZVPN_TUNNELSPEC vpngroup password *.
    vpnclient username usr_ezvpn_tunnelspec password *.
    vpnclient enable

    interfaces:

    interface Vlan200
    nameif outside1
    security-level 0
    IP x.x.x.x 255.255.255.252
    !
    interface Vlan300
    nameif outside2
    security-level 1
    IP x.x.x.x 255.255.255.128
    !

    monitor the SLA to the routing:

    monitor SLA 100
    type echo protocol ipIcmpEcho 200.221.2.45 interface outside1
    NUM-package of 5
    frequency 30
    monitor als 100 calendar life never start-time now
    ALS 200 monitor
    type echo protocol ipIcmpEcho 200.154.56.80 interface outside2
    NUM-package of 5
    frequency 30
    Annex monitor SLA 200 life never start-time now
    ALS 300 monitor
    type echo protocol ipIcmpEcho 4.2.2.1 interface outside1
    NUM-package of 5
    frequency 30
    Annex monitor SLA 300 life never start-time now
    ALS 400 monitor
    type echo protocol ipIcmpEcho 200.244.168.149 interface outside1
    NUM-package of 5
    Timeout 3000
    threshold of 3000
    frequency 30
    Annex monitor SLA 400 life never start-time now

    Follow-up:

    !
    track 1 rtr 400 accessibility
    !
    Track 2 rtr 200 accessibility
    !

    routes:

    Route 0.0.0.0 outside1 0.0.0.0 x.x.x.x 100 track 1
    Route 0.0.0.0 outside2 0.0.0.0 x.x.x.x 200 track 2

    The track works normal.

    Kind regards!

    Try using the command "backup interface" on the secondary ISP interface.

    http://www.Cisco.com/en/us/docs/security/ASA/asa72/command/reference/b_72.html#wp1338585

    You need to increase the level of security to 1 for this interface.

    By default, EasyVPN uses the highest level of safety inside and the lowest outside.  Anything between the two must be set manually.  I assume you have an interior vlan defined but not added to the posted config.

  • Retruning lines which have the same return value from the function RANK

    Hi, I want to achieve is to use a DENSE RANK function to identify the same value of the data, if the rank values are same then extra. Here is the code
    WITH CTE AS
    (
    SELECT SalesPersonID,
    SalesQuota,
    DENSE_RANK() OVER (ORDER BY SalesQuota DESC) as DENSE_RANK
    FROM Sales.SalesPersonQuotaHistory
    WHERE SalesQuota BETWEEN 266000.00 AND 319000.00
    )
    This retrun
    SalesPersonID SalesQuota DENSE_RANK
    280 319000.00 1
    287 304000.00 2
    280 301000.00 3
    282 288000.00 4
    283 284000.00 5
    287 281000.00 6
    278 280000.00 7
    283 280000.00 7
    283 267000.00 8
    278 266000.00 9
    How I choose the rank value that are of the same value?

    The result should be
    278 280000.00 7
    283 280000.00 7
    with cte as
    (
     select salespersonid,
         salesquota,
         dense_rank() over (order by salesquota desc) as dr
       from sales.salespersonquotahistory
      where salesquota between 266000.00 and 319000.00
    )
    select *
      from (
         select cte.*, count(*) over(partition by dr) ct
           from cte
           )
     where ct > 1
    
  • addChild is the addition of new child but get rid of the existing children (if it is the same object)

    I have a chart of the letters from A to Z.

    I add the child to the scene with a discreet button represents the letter of the alphabet.

    I can add different letters to step up to 4 letters (I have a condition 'if', limiting the number of children on the stage).  But if I try to add 4 of the SAME letter, added the first, the second is added and removed from the first, the third is added and removed from the second (and the first has already been removed) and so on.  So I can never have the same letters as if I want to spell out MMMM as the expression of a feeling.

    How can this be?  I think I used a similar method before in a previous prototype where new children were loading on the scene from an image file on the disk.  In this case, all the children are integrated MovieClips in the FLA file (the FLA is huge!... because I have about 10 types of lettering images for each letter of the alphabet).  And I'm calling those with class constructors and pushing Classes in an array and then call this table a for loop iterating from 0 to less than 27 with i being a uint.

    Any help is greatly appreciated.

    -markerline

    :

    initialize

    var wordDisplayA:Array = [];

    var btnA:Array = [btn_A, btn_B],

    for (var i: int = 0; i<>

    btnA [i] .addEventListener (MouseEvent.CLICK, letterDisplayF);

    }

    use wordDisplayA to remove objects in the scene and null them.

    can change but do not change significantly

    function letterDisplayF(e:MouseEvent):void {}

    var C: Class = Class (getDefinitionByName ("Alpha_01_" + e.currentTarget.name.split ("btn_") [1] .toUpp erCase()));

    var instance: MovieClip = new C();

    addChild (instance);

    wordDisplayA.push (instance);

    instance.x = instance. Width * wordDisplayA.Length;

    }

    Call when you want to remove the letters.

    function removeWordF (): void {}

    for (var i: int = wordDisplayA.length - 1; i > = 0; i--) {}

    removeChild (wordDisplayA [i]);

    }

    wordDisplayA.length = 0;

    }

  • Map of the same different value of the column in different column based on conditio

    Hi experts,

    We source as Oracle tables and target also Oracel tables.

    Source
    --------
    Column1 | Column2 | Column3

    Goal
    ---------
    trg1 | trg2

    I need to
    Insert the value of Column1 in trg1 where column2 = 'xxx '.
    Insert the value of Column1 in trg2 where Column3 = "yyy".

    After giving the conditions on mapping, the where conditions become clubed with and I get a different value to what is excluded. As the same way, I have the same scenario for most of the columns in my target table. Suggest me how do.

    Thanks in advance.

    Hello

    to do everything in a single interface without performance issue you could do a join like this

    Source.col2 = source2.src1 or Source.col2 = Source2.src2

    This mapping and

    Target.trg1

    CASE WHEN Source.col2 = Source2.src1 THEN
    Source.Col1
    ANOTHER NULL
    END

    Target.TRG2

    CASE WHEN Source.col2 = Source2.src2 THEN
    Source.Col1
    ANOTHER NULL
    END

  • Several sprites using the same parameter value

    I'll ask the same question " 'contains' doubt in the hexadecimal color value?" but in a different way, because I realized that the solution is more simple than I thought, and the solutions will also. I have this problem:

    property pTargetSprite, pBlendValue

    on getPropertyDescriptionList me
    List = [:]

    addProp list, #pTargetSprite, [#comment: ' target Sprite: ',]
    [#format: #integer, #default: VOID]

    addProp list, #pBlendValue, [#comment: ' mixture value: ",]
    [#format: #integer, #default: 100]

    back list

    end


    on mouseDown me

    .blend Sprite (pTargetSprite) = pBlendValue

    end

    I would like to get SEVERAL sprites for 1 parameter, that is to say when the behavior dialog box appears and ask me the "target Sprite:", I entered... Let's say 1, 2, 3,... Regardless of the numbers I want. Therefore, the values of this sprites mix will change according to the mix input value. Right now is perfect, but of course work with only a sprite, but I want to be able to give this value of mixture for several sprites on the same setting.

    I guess it must be very simple, but I can't get the answer anywhere in my brain, nor my book Director, or in the forums.

    Thank you!!!

    Rob, Anders... Thank you very much!!! Now it works perfectly.

    spriteList property
    blendValue property

    on getPropertyDescriptionlist
    myPropList = [:]
    myPropList.addProp (#spriteList, [#comment: "enter the sprite channel \])
    (["the numbers to use, separated by commas:", #format: #string, #default: "1,2,3"]).<>
    myPropList.addProp (#blendValue, [#comment: "mixture value:",-])
    ([#format: #integer, #default: 100])
    return myPropList
    end

    on beginSprite me
    spriteList = stringToList (spriteList)
    end

    on stringToList (thisString)
    oldDelim = the itemDelimiter
    itemDelimiter = «»
    thisManyItems = thisString.item.count
    tempList =]
    Repeat with n = 1 to thisManyItems
    tempList.add (thisString.item [n])
    end repeat
    itemDelimiter = oldDelim
    return tempList
    end

    on mouseUp me
    thisMany = spriteList.count
    Repeat with n = 1 to thisMany
    .blend Sprite (value(spriteList[n])) = blendValue
    end repeat
    end

  • How can I run two sequences simultaneously on the same object to measure

    I'm turning two sequences in parallel on even the UUT (own USE) so that I can put a piece of equipment to a certain State while starting a timer at the same time.  How can I do this in the sequencer teststand?

    You can run a sequence (or a subsequence if you just need a timer) in a new thread (just choose "use new thread" in the call of the sequence)

  • Multiple installation the same updates

    Windows Vista updates, the last two (update for Windows Vista (KB2633171) security and update for Windows Vista (KB2679255)) has installed several times successfully, but every time that they both reappear when the updates of Windows. I tried Microsoft fix - it just in case that is suggested. Is there anything I can do to stop it redownloading? Thank you

    Take a look at this answer of the last MS Answer questions.

    Fold it is a well-established expert. The answer applies to 32 or 64-bit and IE8 or IE9.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_other-windows_update/Windows-Vista-keeps-wanting-to-install-the-same/4ca85f08-73e3-4A4B-B1FF-f3747fcf945e

  • How can I add two different colors on the same object?

    Hello

    Say if I have something that I have a circle and I want the black semicircle and the other half with white. How can I do this?

    Thank you

    actually, sorry, forget something: you can fill it with a gradient that has two color stops in the same place. It is maybe a little more ordered according to what you need.

Maybe you are looking for