Using multi mappings in a synchronous intergace mappings scenario.

Hi XI Gurus
I have a synchronous soap --> XI --> Sync. RFC scenario (non BPM) which works fine.
My requirement is to add another mapping object  using multi mappings in this scenario, but since XI has a limitation which prohibits me to use multimappings as interface mapping used  is a synchronous one.
Can this be achieved using a BPM ?
Is it possible to use two asynchronous message mappings instead of one synchronous Interface mappings?
Thanks,
Lovein

Hi Pratheek ,
Thanks for your reply.
To explain the issue in other words..
I would like to use a asynchronous interface mapping instead of synchronous one being used currently to access RFC.
I need to use asynchronous Interface mapping as the multi mappings are not supported by synchronous Interface mappings in XI
as has been described on help.sap.com "If you want to map multiple messages to each other by using a multi-mapping, you can only specify asynchronous interfaces" on link
[http://help.sap.com/saphelp_nw04/Helpdata/EN/4f/ef761a5ecfb1418b79896e10fe4c57/content.htm]
So the burning issue boils down to if I can break a synchronous call (RFC request/response in my case) in to 2 asynchronous ones.
If a BPM is needed to achieve the goal then can you guide how that can be done.
Thanks,
Lovein

Similar Messages

  • Trying to access Lion server remote using multi-user access, but from a legacy Leopard system

    Just purchased a mini server running Lion, and got screen sharing working fine from my legacy system (32-bit so Leopard only). However, I would like to run in multi-user mode, so someone can use the Lion system and another person can access their own account, from the older Leopard system, at the same time. Using multi-user rather than screen sharing. But Leopard does not have the option on the Finder/Share Screen command, the pop-up window to select screen sharing or new virtual session. So, is there a way still to run a new virtual session from a remote client running Leopard?  Since the multi-user capability resides on the Lion server, it should be possible, but how, without the pop-up menu?
    Message was edited by: Kurt-Syracuse

    Hey. I suggest you check out http://discussions.apple.com/message.jspa?messageID=9839785#9839785, where there are a couple solutions posted in regard to the error code -36 when connecting to a samba share. Good luck!
    Jeremy A.
    Tekserve Intern

  • IDoc Package to File using Multi Mapping urjent

    Hi Experts,
    I have a scenario where PI 7.1 need to receive IDocs in a package and should send three files to target system. I am using multi mapping concept here, where i have created one message mapping, one operation mapping with three interfaces specified in it. I am getting the error "Inbound interface found several times (for same sender and receiver) for the outbound interface" .

    Hi,
    Please make occurence of the message type in message mapping as 0..unbounded.
    Also in operation mapping the occurence of inbound interface as 0..unbounded.
    Also now in configuration-->interface determination... access the new operation mapping.... u will c the occurence as 0..unbounded. Refresh the cache ad execute it once more...
    Let us know the result...
    Babu
    Edited by: hlbabu123 on Apr 3, 2010 1:16 PM

  • Spliting files based on condition using multi mapping with BPM

    Hi All,
    Can any one please let me know How to <b>Splite the outbound records based on condition using multi mapping with Integration Process in BPM</b>?
    Thanks
    Govindu.

    Hi All,
    Sorry for mistake this question for Exchange infrastructure guys.
    Thanks,
    Govindu

  • Problems using multi-lexer in 8.1.7

    Hello,
    Have a UTF8 database and have created a
    table to hold multi-language data.
    Created an intermedia index using multi-lexer . Have problems quering data out of the table ; specifically the last 2 queries.
    Any ideas?
    SQL> exec ctxsys.ctx_ddl.create_preference('aenglish_lexer','basic_lexer');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.set_attribute('aenglish_lexer','index_themes','YES');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.set_attribute('aenglish_lexer','theme_language','english');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.set_attribute('aenglish_lexer','mixed_case','YES');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.create_preference('agerman_lexer','basic_lexer');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.set_attribute('agerman_lexer','mixed_case','YES');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.create_preference('afrench_lexer','basic_lexer');
    PL/SQL procedure successfully completed.
    SQL> exec ctxsys.ctx_ddl.set_attribute('afrench_lexer','mixed_case','YES');
    PL/SQL procedure successfully completed.
    SQL> execute ctx_ddl.create_preference('aglobal_lexer','MULTI_LEXER');
    PL/SQL procedure successfully completed.
    SQL>
    SQL> begin
    2 ctx_ddl.add_sub_lexer('aglobal_lexer', 'default','aenglish_lexer');
    3 ctx_ddl.add_sub_lexer('aglobal_lexer', 'german', 'agerman_lexer','ger');
    4 ctx_ddl.add_sub_lexer('aglobal_lexer', 'french', 'afrench_lexer','frn');
    5 end;
    6 /
    PL/SQL procedure successfully completed.
    SQL> create table adam (
    2 doc_id number primary key,
    3 lang varchar2(10),
    4 text varchar2(100)
    5 );
    Table created.
    SQL>
    SQL>
    SQL> insert into adam values (1, 'german', 'Ich ging Berlim. ');
    1 row created.
    SQL> insert into adam values (2, 'french', 'Je suis alli a Paris. ');
    1 row created.
    SQL> insert into adam values (3, 'english', 'I went to London. ');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> create index globalx on adam(text)
    2 indextype is ctxsys.context
    3 parameters ('lexer aglobal_lexer
    4 language column LANG'
    5 );
    Index created.
    SQL> col text format A50
    SQL> --
    SQL> -- QUERIES :
    SQL> --
    SQL> -- These are the following 3 rows in the table :
    SQL> -- (1, 'german', 'Ich ging Berlim. ')
    SQL> -- (2, 'french', 'Je suis alli a Paris. ')
    SQL> -- (3, 'english', 'I went to London. ')
    SQL> --
    SQL> alter session set nls_language=AMERICAN;
    Session altered.
    SQL> alter session set nls_territory=AMERICA;
    Session altered.
    SQL> select doc_id, text from adam
    2 where contains(text, 'London') > 0;
    DOC_ID TEXT
    3 I went to London.
    SQL> --
    SQL> -- SHOULD NOT return French data!
    SQL> --
    SQL> select doc_id, text from adam
    2 where contains(text, 'alli') > 0;
    DOC_ID TEXT
    2 Je suis alli a Paris.
    SQL> alter session set nls_language=GERMAN;
    Session altered.
    SQL> alter session set nls_territory=GERMANY;
    Session altered.
    SQL> --
    SQL> -- SHOULD NOT return ENGLISH data! Also does not return valid GERMAN data
    SQL> --
    SQL> select doc_id, text from adam
    2 where contains(text, 'I') > 0;
    DOC_ID TEXT
    3 I went to London.
    null

    First of all in your aenglish_lexer, index_themes should be 'false'.
    The attribute 'alternate_spelling' for German should help. Please read the documentation for examples.

  • Using multi threading to access 2 RS232 ports

    Hi,
    I'm a beginner in multi threading, so this question may be a very basic one....
    I'm Using TS3.5 + CVI 8.01 to communicate withs 2 RS232 ports.  I thought to use mult threading so I can process 2 steps in parallel rather than in series. 
    This is what I do:
    1) I defined 2 subsequences, each of them call the same CVI function.  I use the sub sequence parameters to transfer the com number.
    2) My CVI application includes one dll for this specific project and another one, a general dll to handle RS232 functions.  The RS232 dll uses one global buffer than collects all the traffic on the com. 
    QUESTIONS:
    1) What happens when 2 seperate threads run the same function in the RS232 dll?  (in terms of memory etc...).  Does each one use a different buffer (in terms of memory allocation), or, both of them writes to the same buffer?   Obviously, if they writes to the same buffer, then, my function will not operate properly.
    2) What happens in TestStand after the 2 steps in new threads have finished their execution?  does the next step run back in the same threads the sequence run before?
    Thanks
    Rafi

    Rafi,
    Glad to hear you were able to make some ground on your application. As for all of your questions, I'll try to answer as many as I can.
    First, when you are talking about your global buffer, is it created in TestStand or in the DLL itself? When you use DLLs, global variables or global structures are shared between all threads that call your DLL. On the other hand, if your buffer is declared inside of the DLL it is global for the DLL but not shared and would be a separate buffer for each call.
    With your run-time error in TS, it would definitely be helpful to have more information about the error. From what you explained (executing fine on the first call, but failing on future executions), it sounds like the resource is not being released after the first execution.
    As far as a specific example for TestStand Multithreading, you'll want to look at the TestStand Development Library and, specifically, Multithreading in TestStand. If you look and browse through the Application Notes and Tutorials section, as well as the Technical Presentations section, you will learn a great deal about multithreading and what options you have in TestStand. For a specific example, you may want to look at This Example. You could also look in the <TestStand>\Examples (where <TestStand> is the directory where TS is installed) at the MultiUUT example for an example of multithreading in TS. These examples may not be exactly what you need, but they should give you a jump start.
    As far as making your DLL multithread safe, it is definitely not necessary; however, there are some significant advantages described in this article: Designing Thread-Safe DLLs. It is an MSDN article that focuses on Visual Basic, but it has some helpful information that can apply to C as well.
    Hopefully this can help you move further. I have attached a list of links at the end of this post with other helpful links for you as well. Keep us posted with your progress.
    Matt Mueller
    NI
    Links:
    General Information on Multithreading for C Programmers
    Building Multithreading Applications with LabWindows/CVI
    Multithreading in LabWindows/CVI
    Easy Multithreading Programming in LabWindows/CVI
    Multithreading for Rookies

  • Delete record using multi select ...

    Hi All,
    I have a form associated with 4 reports region and retrieve report for that specific customer. In one report, i have option to delete the saved image by using multi selector check box (single or multiple) and hit the delete button. It works fine if there is no records for the other reports. i can upload image and delete record without any problem. As soon as I have records for other reports, multi selector does not work. when I try to delete, i get this error message -
    ORA-20001: Error in multi row delete operation: row= 13, ORA-01403: no data found, delete from "RATIS"."RTT_FILES" where "FIL_ID" = :p_pk_col
    Error multi row operation failed.
    but if I remove the records for the other report, it works again. I have only one process for multi delete in this page. Seems it is conflicting with the other reports when trying to delete.
    Can anybody help with this please?
    Thanks,
    Tajuddin

    Hi
    That depends if the other "reports" are actually tabular forms as well? If they are, see:
    http://apex.oracle.com/pls/otn/f?p=31517:163
    this explains how to set up more than one tabular form on a page.
    Otherwise, we would probably need to see your code to see what may be happening
    Andy

  • Use of 'static' keyword in synchronized methods. Does it ease concurrency?

    Friends,
    I have a query regarding the use of 'synchronized' keyword in a programme. This is mainly to check if there's any difference in the use of 'static' keyword for synchronized methods. By default we cannot call two synchronized methods from a programme at the same time. For example, in 'Program1', I am calling two methods, 'display()' and 'update()' both of them are synchronized and the flow is first, 'display()' is called and only when display method exits, it calls the 'update()' method.
    But, things seem different, when I added 'static' keyword for 'update()' method as can be seen from 'Program2'. Here, instead of waiting for 'display()' method to finish, 'update()' method is called during the execution of 'display()' method. You can check the output to see the difference.
    Does it mean, 'static' keyword has anything to do with synchronizaton?
    Appreciate your valuable comments.
    1. Program1
    public class SynchTest {
         public synchronized void display() {
              try {
                   System.out.println("start display:");
                   Thread.sleep(7000);
                   System.out.println("end display:");
              } catch (InterruptedException e) {
                   e.printStackTrace();
         public synchronized void update() {
              try {
                   System.out.println("start update:");
                   Thread.sleep(2000);
                   System.out.println("end update:");
              } catch (InterruptedException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              System.out.println("Synchronized methods test:");
              final SynchTest synchtest = new SynchTest();
              new Thread(new Runnable() {
                   public void run() {
                        synchtest.display();
              }).start();
              new Thread(new Runnable() {
                   public void run() {
                        synchtest.update();
              }).start();
    Output:
    Synchronized methods test:
    start display:
    end display:
    start update:
    end update:
    2. Program2
    package camel.java.thread;
    public class SynchTest {
         public synchronized void display() {
              try {
                   System.out.println("start display:");
                   Thread.sleep(7000);
                   System.out.println("end display:");
              } catch (InterruptedException e) {
                   e.printStackTrace();
         public static synchronized void update() {
              try {
                   System.out.println("start update:");
                   Thread.sleep(2000);
                   System.out.println("end update:");
              } catch (InterruptedException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              System.out.println("Synchronized methods test:");
              final SynchTest synchtest = new SynchTest();
              new Thread(new Runnable() {
                   public void run() {
                        synchtest.display();
              }).start();
              new Thread(new Runnable() {
                   public void run() {
                        synchtest.update();
              }).start();
    Output:
    Synchronized methods test:
    start display:
    start update:end update:
    end display:

    the synchronized method obtain the lock from the current instance while static synchronized method obtain the lock from the class
    Below is some code for u to have better understanding
    package facado.collab;
    public class TestSync {
         public synchronized void add() {
              System.out.println("TestSync.add()");
              try {
                   Thread.sleep(2000);
              } catch (InterruptedException e) {
                   e.printStackTrace();
              System.out.println("TestSync.add() - end");          
         public synchronized void update() {
              System.out.println("TestSync.update()");
              try {
                   Thread.sleep(2000);
              } catch (InterruptedException e) {
                   e.printStackTrace();
              System.out.println("TestSync.update() - end");          
         public static synchronized void staticAdd() {
              System.out.println("TestSync.staticAdd()");
              try {
                   Thread.sleep(2000);
              } catch (InterruptedException e) {
                   e.printStackTrace();
              System.out.println("TestSync.staticAdd() - end");
         public static synchronized void staticUpdate() {
              System.out.println("TestSync.staticUpdate()");
              try {
                   Thread.sleep(2000);
              } catch (InterruptedException e) {
                   e.printStackTrace();
              System.out.println("TestSync.staticUpdate() - end");
         public static void main(String[] args) {
              final TestSync sync1 = new TestSync();
              final TestSync sync2 = new TestSync();
              new Thread(new Runnable(){
                   public void run() {
                        sync1.add();
              }).start();
              new Thread(new Runnable(){
                   public void run() {
                        sync2.update();
              }).start();
              try {
                   Thread.sleep(3000);
              } catch (InterruptedException e) {
                   e.printStackTrace();
              new Thread(new Runnable(){
                   public void run() {
                        sync1.staticAdd();
              }).start();
              new Thread(new Runnable(){
                   public void run() {
                        sync2.staticUpdate();
              }).start();
    }

  • How can i use multi threading in labview?

    i want to run a Digital storage oscilloscope and an energ ratio meter simultaneously using labview. i am using GPIB interfacing and windows XP. how can i do this using multi threading. Bot the instruments shd run and give data at the same time.

    You can't do this - at least not with a single GPIB board. It has nothing to do with threading or LabVIEW. There can only be one talker at a time over the bus. Depending on the instruments, you could probably set them up to take measurements simultaneously but you have to sequentially poll them to get the data.

  • Anyone using multi-tenancy in 11.1.1.7?

      anyone using multi-tenancy in 11.1.1.7?
    What method are you using. I am looking at using the single schema with the TenantGUID column.

    Can you give me the URL to access that document?
    Thanks,

  • Splitter operator doesnt use multi table inserts in OWB...very very urgent

    Hi,
    I am using OWB 9i to carry out tranformations. I want to copy the same seuence numbers to the two target tables.
    Scenario:
    I have a source table source_table, which is connected to a splitter and the splitter is used to dump the records in two target tables namely target1_table and target2_table. I have a sequence which is also an input to the splitter, so that I can have the same sequence number in the the two output groups of he splitter. I then map the sequence number from the two output groups to the two target tables expecting to have the same sequence number in the target tables. But when I see the generated code it creates two procedures and effectively inserts sequencing numbers in the target tables which are not consistent. Please help me so that I have the same sequencing numbers in the target tables which are consistent.
    Well the above example works in row based operating mode but not in set based mode. Please give me a valid explanation.
    OWB pdf says that splitter uses multi table inserts for multiple targets. After seeing the generated code for set based operations I dont agree to this.
    Its very urgent.
    thanks a lot in advance.
    -Sharat

    Hi Mark,
    You got me wrong, let me explain you the problem again.
    RDBMS oracle 9.2.0.4
    OWB 9.2.0.2.8
    I have three tables T1,T2 and T3.
    T1 is the source table and the remaining two tables T2 and T3 are target tables.
    Following are the contents of table T1 -
    SQl>select * from T1;
    DEPTNAME LOCATIO?N
    COMP PUNE
    MECH BOMBAY
    ELEC A.P
    Now I want to populate the two destination tables T2 and T3 with the records in T1.
    For this I am using splitter operator in OWB which is suppose to generate multi table inserts, but unfortunately its not doing so when I generate the SQL. There si no "insert all" command in the sql it generates.
    What I want is, when I populate T2 and T3 I use a sequence generator and I want the same sequences for T2 and T3 eg.
    SQl>select * from T2;
    NEXT_VAL DEPTNAME LOCATIO?N
    1 COMP PUNE
    2 MECH BOMBAY
    3 ELEC A.P
    SQl>select * from T3;
    NEXT_VAL DEPTNAME LOCATIO?N
    1 COMP PUNE
    2 MECH BOMBAY
    3 ELEC A.P
    I am able to achieve this when I set the operating mode to ROW BASED. I am not geting the same result when I set the operating mode to SET BASED.
    Help me....
    -Sharat

  • Slideshow Using Multi-State Objects

    Hi,
    I created a slideshow in an Indesign document using multi-state objects. The slideshow has foward and backward buttons to navigate the slideshow. The slideshow works fine in Indesign but when I export the document as an intereactive pdf, the slideshow no longers works. What am I doing wrong? I'm using Indesign CS 5.5.
    Thank you,
    Kristie

    What you're doing wrong is expecting it to work. MSOs are for SWF and DPS output only.
    The only workaround is doing it in its own file, exporting to SWF and placing that in the PDF.
    Bob

  • Insert while using multi table

    Hi
    I have created a class and using multi table feature to retrieve fields from couple of tables. These tables are associated via Foreign key. This works fine while select, but fails while insert a new record in primary table using unitOfWork.
    Here is the peice of code i am using
    UnitOfWork uow = CfToplink9Helper.getUnitOfWork();
    uow.registerNewObject(basketEntry);
    uow.commit();
    Any suggestions !!! Appreciate your response !!!

    Here is the exception
    TopLink Severe]: UnitOfWork(734604338)--java.lang.NullPointerException
    at oracle.toplink.internal.descriptors.ObjectBuilder.addPrimaryKeyForNonDefaultTable(ObjectBuilder.java:104)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildRowForTranslation(ObjectBuilder.java:631)
    at oracle.toplink.queryframework.WriteObjectQuery.prepareForExecution(WriteObjectQuery.java:141)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:500)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2091)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2291)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1101)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1055)
    at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:177)
    at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3286)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1068)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1115)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:938)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:754)
    at com.cna.app.sentinelBatch.batch.DBWriter.addBasketEntry(DBWriter.java:48)
    at com.cna.app.sentinelBatch.batch.DBWriter.main(DBWriter.java:327)
    [TopLink Info]: ClientSession(542256178)--Connection(598240304)--rollback transaction
    [TopLink Severe]: UnitOfWork(734604338)--java.lang.NullPointerException
    at oracle.toplink.internal.descriptors.ObjectBuilder.addPrimaryKeyForNonDefaultTable(ObjectBuilder.java:104)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildRowForTranslation(ObjectBuilder.java:631)
    at oracle.toplink.queryframework.WriteObjectQuery.prepareForExecution(WriteObjectQuery.java:141)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:500)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2091)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2291)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1101)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1055)
    at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:177)
    at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3286)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1068)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1115)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:938)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:754)
    at com.cna.app.sentinelBatch.batch.DBWriter.addBasketEntry(DBWriter.java:48)
    at com.cna.app.sentinelBatch.batch.DBWriter.main(DBWriter.java:327)
    java.lang.NullPointerException
    at oracle.toplink.internal.descriptors.ObjectBuilder.addPrimaryKeyForNonDefaultTable(ObjectBuilder.java:104)
    at oracle.toplink.internal.descriptors.ObjectBuilder.buildRowForTranslation(ObjectBuilder.java:631)
    at oracle.toplink.queryframework.WriteObjectQuery.prepareForExecution(WriteObjectQuery.java:141)
    at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:500)
    at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2091)
    at oracle.toplink.publicinterface.UnitOfWork.internalExecuteQuery(UnitOfWork.java:2291)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1101)
    at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1055)
    at oracle.toplink.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:177)
    at oracle.toplink.publicinterface.Session.writeAllObjectsWithChangeSet(Session.java:3286)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabase(UnitOfWork.java:1068)
    at oracle.toplink.publicinterface.UnitOfWork.commitToDatabaseWithChangeSet(UnitOfWork.java:1115)
    at oracle.toplink.publicinterface.UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:938)
    at oracle.toplink.publicinterface.UnitOfWork.commit(UnitOfWork.java:754)
    at com.cna.app.sentinelBatch.batch.DBWriter.addBasketEntry(DBWriter.java:48)
    at com.cna.app.sentinelBatch.batch.DBWriter.main(DBWriter.java:327)

  • How can i use multi group view criteria in jdeveloper10g?

    Hi.
    i'm using jdeveloper10g.1.3.50,i want add multi group viewcriteria,but can't found ViewCriteriaItem.
    eg.select x from x WHERE ( (( (a = 1) ) OR ( (a = 2) ))
    AND ( (b =1) or (b = 2)))
    how can i use multi group view criteria in jdeveloper10g?

    Hi,
    Did you try with viewcriteriarow.setConjunction?
    http://download.oracle.com/docs/cd/B13597_05/web.904/b10391/oracle/jbo/ViewCriteriaRow.html
    -Arun

  • My Premier Pro freeze up when I use multi cam edit

    Hi everyone,
    I am using Mac Book Pro 2.3G i7 4 core, 16G RAM, NVIDIA GeForce GT 750M 2048 MB, OSX10.9.5, with Premier Pro 7.2.2. When I use multi cam feature to edit,  screen have delay, and when I have more than 3 cam or if I press the buttons too fast, sometimes the program freeze up.
    I am editing RAW footage from my Canon C100 AVCHD, 24f.
    Questions:
    1/ is there any setting on program that can improve the situation?
    2/ if it is a hardware resouce issue, what Mac Pro I have to buy? I am thinking 32G RAM and 512G SSD, but a bit confused on the 4, 6, 8 core and clock speed. Should I get higher clock or more core? Or should I get basic CPU but upgrade the video card with more video RAM?
    Any user with similar experience please give me some insight.

    You're question is very general, more info please -
    What version of Premiere?
    Which Project Preset are you using?
    What clip format are you Importing?
    Computer specs?

Maybe you are looking for

  • How do I write a macro that would look for a string in an entire column

    how do I write a macro that would look for a string in an entire column. If the string is found, it will copy that entire row to a new sheet in that same file? I want to look in an entire column lets say "C" for different strings of numbers like 246,

  • HOW DO I GET MY USERNAME???

    I CREATED MY ACCOUNT WITH FACEBOOKAND I WAN'T TO STOP CONNECTING WITH IT AND START USING MY USERNAME INSTEAD, BUT I DON'T KNOW NEITHER MY NAME OR PASSWORD, WHERE CAN I FIND BOTH BEFORE DISCONNECTING MY ACCOUNT WITH FACEBOOK? (sorry for using uppercas

  • Java ME 3.0 Web Services Stub Generator  Inheritance problem

    Hello, I have a problem with that relates to inheritance. Suppose I have abstract class User and class Member that extends class User. Suppose I have web service MyService: @WebService public class MyService { public User getUser(int id) { // do some

  • IPhoto, Photoshop CS2 or CS3 beta?

    I asked here earlier if iphoto can change the color of peoples eyes and received the response that iphoto is primarilly a final stage editing tool. therefore im asking which is better... this should be answered by those who have used either/or both..

  • Express as booster for time capsule

    I'm trying to set up airport express as a wireless booster for time capsule which is wired to my modem. I keep reading about setting up WDS but am using airport utilities 5.5 which doesn't have that option. Can anyone tell me how to set this up? ever