Dynamic Query using no PL/SQL . Is this Possible ??

Hi Everyone,
Based upon the innery query result , can we have a different outer query I want to know whether this is possible with out PL/SQL.
Example:
This is my inner query :
with q1 as
(select
case when x>500 then 0
else 1
end value
from
table1 )
Here is where I am stopped , I only want to run either of these queries depending upon the value,
I know that i can do it using PL/SQL but I want to know whether we can do it with pure SQL
Some thing like this to happen :
when value=0 : run this query : select * from table2
when value=1 : run this query : select * from table2 join table3 using (col1)
Thanks.
VK

Sure. A little modified way ->
satyaki>
satyaki>
satyaki>select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production
Elapsed: 00:00:01.82
satyaki>
satyaki>
satyaki>select k.deptno,
  2         k.empno,
  3         k.ename,
  4         k.job,
  5         k.mgr,
  6         k.hiredate,
  7         k.sal,
  8         k.comm,
  9         null dname,
10         null loc
11  from emp k
12  where &eid = 0
13  union all
14  select *
15  from (
16         select *
17         from emp
18         join dept
19         using (deptno)
20       )
21  where &eid = 1;
Enter value for eid: 0
old  12: where &eid = 0
new  12: where 0 = 0
Enter value for eid: 0
old  21: where &eid = 1
new  21: where 0 = 1
    DEPTNO      EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM DNAME          LOC
        10       9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455
        10       7777 SOURAV     SLS                  14-SEP-08      45000       3400
        30       7521 WARD       SALESMAN        7698 22-FEB-81       1250        500
        20       7566 JONES      MANAGER         7839 02-APR-81       2975
        30       7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400
        30       7698 BLAKE      MANAGER         7839 01-MAY-81       2850
        10       7782 CLARK      MANAGER         7839 09-JUN-81       4450
        20       7788 SCOTT      ANALYST         7566 19-APR-87       3000
        10       7839 KING       PRESIDENT            17-NOV-81       7000
        30       7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0
        20       7876 ADAMS      CLERK           7788 23-MAY-87       1100
    DEPTNO      EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM DNAME          LOC
        30       7900 JAMES      CLERK           7698 03-DEC-81        950
        20       7902 FORD       ANALYST         7566 03-DEC-81       3000
13 rows selected.
Elapsed: 00:00:00.32
satyaki>/
Enter value for eid: 1
old  12: where &eid = 0
new  12: where 1 = 0
Enter value for eid: 1
old  21: where &eid = 1
new  21: where 1 = 1
    DEPTNO      EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM DNAME          LOC
        10       9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455 ACCOUNTING     NEW YORK
        10       7777 SOURAV     SLS                  14-SEP-08      45000       3400 ACCOUNTING     NEW YORK
        10       7782 CLARK      MANAGER         7839 09-JUN-81       4450            ACCOUNTING     NEW YORK
        10       7839 KING       PRESIDENT            17-NOV-81       7000            ACCOUNTING     NEW YORK
        20       7566 JONES      MANAGER         7839 02-APR-81       2975            RESEARCH       DALLAS
        20       7876 ADAMS      CLERK           7788 23-MAY-87       1100            RESEARCH       DALLAS
        20       7788 SCOTT      ANALYST         7566 19-APR-87       3000            RESEARCH       DALLAS
        20       7902 FORD       ANALYST         7566 03-DEC-81       3000            RESEARCH       DALLAS
        30       7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0 SALES          CHICAGO
        30       7521 WARD       SALESMAN        7698 22-FEB-81       1250        500 SALES          CHICAGO
        30       7698 BLAKE      MANAGER         7839 01-MAY-81       2850            SALES          CHICAGO
    DEPTNO      EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM DNAME          LOC
        30       7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400 SALES          CHICAGO
        30       7900 JAMES      CLERK           7698 03-DEC-81        950            SALES          CHICAGO
13 rows selected.
Elapsed: 00:00:00.24
satyaki>Regards.
Satyaki De.

Similar Messages

  • Dynamic Type Checking... Is this possible?

    I want to do a dynamic check for objec types in a datastructure. Something very similar to instanceof but using dynamic type parameter.
    Syntactically speaking...
    Instead of writing several methods like
    public boolean isOfTypeXYZ( )
    return ( this instanceof XYZ);
    public boolean isOfTypeABC()
       return ( this instanceof ABC);
    ...I want one single method like
    public isOfType ( Class a_type)
       return (this ***isoftype**** a_type);
    }Where isoftype can somehow dynamically figure out if the object is of given type (class)
    For those who want to know why I'd need this kind of contrived behaviour let me give a simple example (similar to my real issue).
    Suppose I have a swing GUI application which has several laid out components like Containers, JPanels, JToolBars, JMenuItems, JButtons, JToggleButtons, JRadioButtons etc.
    Now starting from the JFrame in this containment hierarchy, I want to find all instances of JButtons or say all instances of JRadioButtons or say all instances of JMenuItem or all instances of JComponents ...
    I do not want to write a special method for each possible type I might encounter.
    I want a more generic method like
    searchComponents( Class a_class) that I can invoke by just changing its argument to convey the type.
    Unfortunately getClassName() will not work as that gives the most derived type of the object. I want something very much like instanceof wherein I can check for an intermediate super class as well. (eg. All RadioButtons are AbstractButton and should return true for either type).
    I tried to search for this in the forums but couldn't find something close to this. (There are several discussions about dynamic type casting which are different).

    Is this what you want?
    searchComponents( Class a_class) {
    // browse components
    if (a_class.isInstance(component)) {
    // do something
    }

  • How to make dynamic query using DBMS_SQL variable column names

    First of all i will show a working example of what i intend to do with "EXECUTE IMMEDIATE":
    (EXECUTE IMMEDIATE has 32654 Bytes limit, which isn't enough for me so i'm exploring other methods such as DBMS_SQL)
    -------------------------------------------------CODE-----------------------------------
    create or replace PROCEDURE get_dinamic_query_content
    (query_sql IN VARCHAR2, --any valid sql query ('SELECT name, age FROM table') 
    list_fields IN VARCHAR2) --list of the columns name belonging to the query (  arr_list(1):='name';   arr_list(2):='age';
    -- FOR k IN 1..arr_list.count LOOP
    -- list_fields := list_fields || '||content.'||arr_list(k)||'||'||'''~cs~'''; )
    AS
    sql_stmt varchar (30000);
    BEGIN
                   sql_stmt :=
    'DECLARE
         counter NUMBER:=0;     
    auxcontent VARCHAR2(30000);     
         CURSOR content_cursor IS '|| query_sql ||';
         content content_cursor%rowtype;     
         Begin
              open content_cursor;
              loop
                   fetch content_cursor into content;
                   exit when content_cursor%notfound;
                   begin                              
                        auxcontent := auxcontent || '||list_fields||';                    
                   end;
                   counter:=counter+1;     
              end loop;
              close content_cursor;
              htp.prn(auxcontent);
         END;';
    EXECUTE IMMEDIATE sql_stmt;
    END;
    -------------------------------------------------CODE-----------------------------------
    I'm attepting to use DBMS_SQL to perform similar instructions.
    Is it possible?

    Hi Pedro
    You need to use DBMS_SQL here because you don't know how many columns your query is going to have before runtime. There are functions in DBMS_SQL to get information about the columns in your query - all this does is get the name.
    SQL> CREATE OR REPLACE PROCEDURE get_query_cols(query_in IN VARCHAR2) AS
    2 cur PLS_INTEGER;
    3 numcols NUMBER;
    4 col_desc_table dbms_sql.desc_tab;
    5 BEGIN
    6 cur := dbms_sql.open_cursor;
    7 dbms_sql.parse(cur
    8 ,query_in
    9 ,dbms_sql.native);
    10 dbms_sql.describe_columns(cur
    11 ,numcols
    12 ,col_desc_table);
    13 FOR ix IN col_desc_table.FIRST .. col_desc_table.LAST LOOP
    14 dbms_output.put_line('Column ' || ix || ' is ' ||
    15 col_desc_table(ix).col_name);
    16 END LOOP;
    17 dbms_sql.close_cursor(cur);
    18 END;
    19 /
    Procedure created.
    SQL> exec get_query_cols('SELECT * FROM DUAL');
    Column 1 is DUMMY
    PL/SQL procedure successfully completed.
    SQL> exec get_query_cols('SELECT table_name, num_rows FROM user_tables');
    Column 1 is TABLE_NAME
    Column 2 is NUM_ROWS
    PL/SQL procedure successfully completed.
    SQL> exec get_query_cols('SELECT column_name, data_type, low_value, high_value FROM user_tab_cols');
    Column 1 is COLUMN_NAME
    Column 2 is DATA_TYPE
    Column 3 is LOW_VALUE
    Column 4 is HIGH_VALUE
    PL/SQL procedure successfully completed.I've just written this as a procedure that prints out the column names using dbms_output - I guess you're going to do something different with the result - maybe returning a collection, which you'll then parse through in Apex and print the output on the screen - this is just to illustrate the use of dbms_sql.
    best regards
    Andrew
    UK

  • Help with building dynamic website using tutorial (was: I know this is a repost but I'm still stuck!)

    Perhaps this was missed by the group but here goes:
    I am slogging thru a dynamic PHP tutorial but  I cant continue without losing some understanding of the process due to ?
    I am trying to complete the following:
    Building your first dynamic website – Part 2: Developing the back end
    However,
    my Insert record form dialog (below) looks like this, and I need to change both 'title' and 'blog_entry' values (as shown above), but I cannot make that choice in my form.
    I am using DW CC with the Deprecated Server Behavior from DMX zone.
    I have made sure my results match the tutorial, but I cant get past the above inconsistency in functionality.
    Any help would be appreciated.
    Thanks folks!

    The Columns area indicates which form field is used to insert a value in each column. Although the post_id and updated columns are listed as getting no value, their values are generated automatically by the database.
    Check that the title and blog_entry columns are being assigned the correct values. If either is marked as getting no value, it means that you have spelled the names of the form fields differently from the column names. Correct this by selecting the column name in the Columns area and selecting the form field's name from the Value pop-up menu.
    Nancy O.

  • Dynamic query using DB Adapter

    Experts,
    I am using DB adapter to call a simple database query. I have selected the option of Execute Pure SQL and the query is -
    SELECT DEPT_NAME,EMPLOYEE FROM DEPARTMENT WHERE EMP_ID IN ( SELECT EMPID FROM EMPLOYEE WHERE (DEPT_ID=#DEPTID))
    When I run the query standalone on database passing the value of dept_id, it works perfect.
    Additionally when I hardcode the value of #DEPTID in db adapter, it works succesfully. But if I use the above query passing DEPTID as input from my bpel process, it returns nothing.
    Can anyone tell me where I am going wrong?
    Thanks

    It is better to have your query in stored procedure. It would help in avoiding deployments in case of a change.
    Cheers!

  • Dynamic blocks within the WebUI. Is this possible?.

    CRM 7.
    We currently have about 14 user specific blocks within the Online Factsheet. We also have the same in the PDF Factsheet.
    Some of these blocks show data in Metric (Kg, Cm's etc) but there has been a request to show data in Imperial format (Lb's and Inches etc), which is still used in the U.S.
    Using the WebUI and within an Account there's an option under the 'More' tab to display either an Online factsheet or a PDF Factsheet. Does anyone know how I can control the entries in this pull-down tab?.
    With regards to the Factsheet itself, I have two options open to me. The first to create another Factsheet which has the fields and column headings defined in the view config, or use the same factsheet/component/views and dynamically change the column headings and fields, which sounds harder.
    The PDF Factsheet is easy to deal with as it's just a Smartform, so I can copy it  and change it specifically for the Imperial format.
    Has anyone done anything like this before, and perhaps give me the benefit of their wisdom?.
    Best wishes
    Jason

    Thanks for the details.
    I debugged the process and can see this line is providing the text on the tab. However, the method is making a low-level call to get the details from some message class/table, but I can't identify what this message class/table is.
    But it looks like it's the sotr_edit transaction, as you mentioned, that controls this. I'm not that familiar with this OTR process though and the transaction is not that intuitive. I assume that I just need to somehow add new entry, with my own Z package.
    Many thanks for the advice though, I knew nothing about that transaction. I also have to create another Online factsheet as well, and it looks like I can control it this way as well.
    I had already modified table CRMV_PRN_CONTROL via sm30 and had changed the values for the Fom name and class/interface from CRM_ACC_ACCOUNT_OVERVIEW_PRN to ZCRM_ACC_ACCOUNT_OVERVIEW_PRN for the form name and from CL_UIU_PRN_ACCOUNT to ZCL_UIU_PRN_ACCOUNT for the class/interface against all the roles.
    However, I know want to add another form name and class/interface as I have TWO user PDF Factsheets to use, depending on which item the user chooses from the Tab.
    Any idea how I can control this?.
    Best regards
    Jason

  • XML over HTTP using BPEL (not using SOAP)... is this possible?

    Hi there.
    We're trying to expose a BPEL process which will be exclusively triggered from a HTTP POST. The Client Partner Link in the BPEL process models Oracle's Transparent PunchOut standard. This standard is strict XML-over-HTTP, SOAP is not involved.
    However, I am getting issues when I POST the XML to BPEL. It is telling me that it requires a SOAPAction in the header. Again, the design dictates that this is raw XML over HTTP, so we are not to use any SOAP specific header values nor any kind of SOAP wrapper.
    I deployed the sample 'HTTPPostService' process which was delivered with BPEL. I am seeing the same error when I try to POST XML to this process as well. I get a response (in a SOAP wrapper) saying that it wants a SOAPAction in the header. The WSDL used to create this sample process clearly does not bind to SOAP, (there are no mentions of the SOAPAction in the operation, etc) so I do not understand.
    So, my question is: Is is possible to POST raw XML to a BPEL process? Or does BPEL require all processes to follow the SOAP 'protocol' ?
    Thanks for any help.
    Message was edited by:
    [email protected]

    I am also trying to do the same stuff. If i deploy the sample application HttpGetService, will i be able to send the request from browser the way we send typical http get request?
    here is the url which i want to use to invoke Http get BPEL
    http://cybage1:9700/httpbinding/default/HTTPGetService?ssn=10&id=20
    but i am getting following exception
    500 Internal Server Error
    java.lang.IndexOutOfBoundsException: Index: 3, Size: 3
         at java.util.ArrayList.RangeCheck(ArrayList.java:507)
         at java.util.ArrayList.get(ArrayList.java:324)
         at com.collaxa.cube.ws.http.HttpBindingServlet.call(HttpBindingServlet.java:113)
         at com.collaxa.cube.ws.http.HttpBindingServlet.doGet(HttpBindingServlet.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:798)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:278)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:120)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)

  • Match is downloading songs even when Music is set to not use cellular. How is this possible?

    I have turned off cellular data for my Music but when I'm driving in my car, songs are playing that I have not downloaded to my phone. Then, when I look at the library on my phone and try to delete these songs, they won't delete.  I own the songs and they are in my Match cloud but I'm 1) getting charged data usage and 2) somehow stuck with songs on my phone that I don't necessarily want on there.
    I took the phone into a store and they couldn't figure it out either. They said I had somehow downloaded these songs when I synced to a device in my home. I'm not sure how that is possible when I'm driving down the road. My current phone has never been plugged into any device to sync. This was happening on a 5S that I just took in for service replacement and is happening now on the new 5S that they gave me as a replacement phone. Very Frustrating!!

    What makes it worse is that the user made linux touchpad drivers for synaptic touchpads does let you define the phyiscal touch area.  So in linux you could easily shrink the area so the touch area does not include the buttons.
    There is no technical reason why the windows driver cannot support this. Just add a tab to the menu for touch area and let people define it with a box just like the current driver allows you to set touch zones.  Then the feature is universal and it would work for any future variation of physical buttons and touchpad area.
    I personally am in awe of how they could make a touch pad where the physical buttons double as touch area and not notice that you need a way to exclude the buttons from the touch area if you actually want to use them.  Why did they make physical buttons that you cannot use?  Do they not test this stuff?

  • Automatically conditionalizing a variable using a script? is this possible?

    Hello all,
    The TCS 3 documentation states that to suppress the FrameMaker Table Continuation variable from appearing in the online help, you need to conditionalize it and then hide that condition when generating the online help.
    I have to convert quite a few books, and there will be thousands of instances of the Table Continuation variable.
    Does anyone know if it's possible to use ExtendScript to search for the Table Continuation variable, and then to conditionalize it with a specific condition tag? How complicated would this be to do (for someone who has never used Extendscript)?
    I'm posting this question here, because I suspect anyone who is using the FrameMaker integration feature and who also uses this common variable has probably run into this issue before me...
    Thanks for your help.

    Have you tried Find/Change across your book, where you
    Copy the conditionalized TC variable to the clipboard
    Find - Variable of Name: Table Continuation
    Change - By Pasting
    -Matt
    @mattrsullivan

  • My friend needs to upgrade her Macbook Pro OS X but can't get into her internet. I would like to download the update but would need to use my password. Is this possible or should I just wait for her password?

    My friend needs to upgrade to Yosemite but her network is faulty. I told her I would upgrade for her on my network. I don't have her Apple password at this time so I thought I would use mine. Is it possible to use my password and ID for this download?

    She gave me her ID so everything is going as it should. That's what I thought but in a moment of wait I thought I would ask.
    Many thanks,

  • Hi, I use BootCamp for my windows 7, I have a Macbook Pro 2012, and I want to use a second display, is this possible with my Mac using Windows?

    I just dont see a port usable for a second screen. I want to hook it up to my TV to view photos and movies. What can I do?

    What do you mean you don't see a port? Does your computer have a HDMI or a ThunderBolt/Mini Display port? You can use these to add a second display. Which one you use depends on what input ports your tv has.

  • Using Cascading picklist .. is this possible ..

    The parent picklist consists of several values, let's call them A B C D E and F.
    I only want the subordinate picklist to have values for the parent of E and F. I don't see a way to define the parent of A-D with no values for the related picklist. Am I missing this ?? It would be nice to also have the child picklist only valid when item E or F was selected.
    Any thoughts ?

    Although that is not what I would have like to hear .. thanks for the answer. I must have been thinking of something else (perhaps another product) where the child picklist would only be enabled if certain parent values were selected.

  • Iphone 4s stolen. Selected remote wipe via Icloud. Received email hours later saying it was happening. Here's the problem: according to Verizon, the phone is still using data. How is this possible? Wouldn't the user have to register the device with Apple?

    So, if a remote wipe occurred as the email stated, how did the person with the phone immediately go back to using the data on the phone.  Wouldn't the person have to register the Iphone through Itunes?  I got the email saying the erase was happening at 11:10.  Looking at my cellular data usage, the phone began using data about that time after about a 12 hour break. So it seems like Find my Iphone quickly picked up the phone.  But then the phone continued using data for about 3 more hours.  How could the person be using the phone if it had just been wiped?

    I understand that iCloud's erase function is totally distinct from Verizon's cellular service (i.e. the phone could be wiped and Verizon would never know).  It's been a while since I've activated an Iphone through Itunes, but when you activate the phone don't you have to register it?  If the iPhone was wiped at 11:10, how could it be using data at 11:15 and consistently for the next three hours.  How long does the Itunes registration process take?

  • Using Dynamic Query in For Loop

    I have a doubt whether i can use the result from dynamic query in the for loop.
    for example,
    declare
    v_sql varchar2(1000);
    v_Id INTEGER;
    begin
    v_sql := 'select id from table1 where id in ('||v_Id||')';
    FOR i in vsql LOOP
    dbms_output.put_line(i.id);
    end loop;
    end;
    The above query is possible ?

    And here's a basic example of opening up a cursor for your dynamic query...
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    v_sql varchar2(2000);
      3    v_cur sys_refcursor;
      4    i     emp.sal%type;
      5  begin
      6    v_sql := 'select sal from emp';
      7    open v_cur for v_sql;
      8    loop
      9      fetch v_cur into i;
    10      exit when v_cur%NOTFOUND;
    11      dbms_output.put_line('Salary: '||i);
    12    end loop;
    13* end;
    SQL> /
    Salary: 800
    Salary: 1600
    Salary: 1250
    Salary: 2975
    Salary: 1250
    Salary: 2850
    Salary: 2450
    Salary: 3000
    Salary: 5000
    Salary: 1500
    Salary: 1100
    Salary: 950
    Salary: 3000
    Salary: 1300
    PL/SQL procedure successfully completed.
    SQL>

  • Sort problem on dynamic query !!

    Hi,
    I have a dynamic query written in pl/sql, when I check "Sort" for each field in Report Attribute, error message raised up as "ORA-01785: ORDER BY item must be the number of a SELECT-list expression".
    If I do not check Sort, it works fine. In my apps I need all fields sorted by user, how to fix this problem?
    My query as below:
    declare
    query varchar2(2000):='select';
    s_class varchar2(1000);
    cursor c1 is select * from demo_preference;
    begin
    for c1_val in c1 loop
    if c1_val.login is not null then
    query := query ||' ' || 'login' || ',';
    end if;
    if c1_val.id is not null then
    query := query ||' ' || 'id' || ',';
    end if;
    end loop;
    query := SUBSTR(query, 1, length(query)-1);
    s_class := '(NVL(:P2_class, ''%'' || ''null%'') = ''%'' || ''null%'' OR
    EXISTS (SELECT 1 FROM apex_collections WHERE collection_name = ''P2CLASSCOL'' AND c001 = class))';
    query := query ||' ' || 'from ming.reg_report_view1 where'
    || ' ' || s_class;
    return(query);
    end;

    Maybe the internally mapped column used when you clicked on sort is not shown in the report. Try using aliases when you construct the query string, it could help apex internally in identifying a column even if its order changes for a different user. After all the column order in the code is dynamic and I guess even the no of columns displayed might vary both of which could make sorting on a column identified with a number, invalid.
    How about displaying the report query somewhere, so that you know what is the exact query being processed, it might give you better information about the problem.
    If the problem persists, then use a collection that is fetched those record using the same query string and change the report to refer the collection and then set column sorting on. This way apex would get confused on what columns are being sorted and it would just sort on a c001..c050 column as though it was a string(yes problems with number columns sorting when you do this).

Maybe you are looking for

  • I have bought a new tv and am trying to connect my apple tv(also new) without success

    I have connected plug and hdmi point to tv but keep getting the message you are not connected to internet I have checked my settings and I have the wireless connection so what am I doing wrong -how can i become connected and get full use from my appl

  • Downloading pictures problem

    Hi, I'm using the latest Firefox for Android browser on a Samsung Galaxy S2 Epic 4G Touch. I have an issue when I download an image from a website onto my phone. After I download the image onto my phone by holding my finger on the image and selecting

  • Integrating SAP into a Systems Analysis course

    Hi, I am part of a group putting together a proposal to integrate SAP into our business school courses and join the UA.  The faculty do not have any training in SAP, but we are looking to find out as much as we can about possible course modules for o

  • TreeTable control: where is hasExpander property?

    Hi all, I'm using TreeTable control to show dynamically loaded data. When the first level elements are loaded, I am not loading the whole tree, just the root. The children levels will be loaded when the toggleOpenState event is triggered. I have foun

  • Sync Palm T/X with Vista Outlook 2007 Pro and Xp Outlook Pro

    Help, do anyone have step by step directions on how to make my 2 systems sync with my Palm.  I input most of my data on the XP Outlook 2007 but when I get home I want to sync but I have Vista.  I keep getting error messages no matter how I set my def