Issue concerning command procedures and resultant selection set

I have created acommand procedure which returns a set of records (correctly). I would like to use the ID from the set as a link to a detail page. The ID is corectly returned to me.  However, when I try to create the detail page it appears to only be possible if the set of records is from a recordset query.  So - how can I add the link to my results page ID so I can pull up a detail page on the item?
Thank you.

On you results page you'll need a query to pull the record from the database and in your SQL statement the WHERE statement will be dynamically populated by a URL variable. You'll pass the ID in your URL to the Results page to provide this variable.
Just how you do this varies a little depending on which language you are using - PHP, ColdFusion, ASP - but the principle is the same for all.
Lawrence   *Adobe Community Expert*
www.Cartweaver.com
Complete Shopping Cart Application for
Dreamweaver, available in ASP, PHP and CF

Similar Messages

  • Moving buttons between submenus - and resulting selection order

    OK, I thought I knew how iDVD sequenced its button selections - essentially by cartesian (x, y) coordinates across the screen.
    However in a current project I have cut-and-pasted chapter buttons and groups of chapter buttons from one submenu to another, then arranged them freely to give the appearance I want.
    But when I create the disk image and test the DVD, the button sequence is often all over the place, eg pressing "up" from the forward arrow button selects the second chapter title in the list of five above, rather than either the first or the last.
    So, is there any way in iDVD to force a certain button selection sequence, or to-reorder the button sequence (without of course changing what those buttons point to)?
    Unfortunately myDVDedit does not (yet) allow you to modify the button selection sequence of an existing DVD image, so I need to get it right before I create the image.
    Thanks for any help.

    Sue,
    Thanks - the FAQ got me part of the way there - at least far enough that I could work out the rest myself.
    The problem comes about because pasting a button from one menu to another in "free placement" mode results in a difficult-to-predict button number being assigned to the pasted button.
    The way to fix it is to reselect "snap to grid" on any menu where you have cut-and-pasted buttons. The buttons will drift back to their grid positions in the order that iDVD has assigned. It will then be clear which buttons, if any, are out of sequence. You can then drag buttons while in "snap to grid" mode to reorder them how you want.
    Finally, when done, you can turn off "snap to grid" and place the buttons freely, while still retaining the sequence set by snap to grid.
    Thanks!

  • How to find stored procedures and functions having SET Ansi_Nulls OFF?

    I have query below to find objects with ansi nulls ON. How can i find sql objects with ansi nulls off?
    SELECT
        SCHEMA_NAME(s.schema_id)  + '.' + s.name AS name,
        s.create_date,
        s.modify_date,
        OBJECTPROPERTY(s.object_id,'ExecIsAnsiNullsOn') AS ExecIsAnsiNullsOn
    FROM sys.objects s
    WHERE
        s.type IN ('P','FN')
        AND OBJECTPROPERTY(s.object_id,'ExecIsAnsiNullsOn') = 0
    ORDER BY SCHEMA_NAME(s.schema_id)  + '.' + s.name DESC

    I think my technet article on this topic will be helpful (check script at the end):
    SET
    ANSI_PADDING Setting and Its Importance
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Issue with a procedure and IN operator...

    Hi,
    Data
    Service_Request_id function_activity_ids
    102092     2     2 -- Query works fine as v_function_activity_ids(i) = 22
    102094 24,25,29 -- Query does not work and returns null as v_function_activity_ids(i) =24,25,29 is passed.
    102152 23,24 -- Query does not work and returns null as v_function_activity_ids(i) =23,22 is passed.
    CURSOR c_service_request_null IS
    SELECT service_request_id,function_activity_ids,service_region_id      
           FROM temp_sop_service_request
           WHERE function_activity_ids IS NOT NULL AND SERVICE_REQUEST_ID IN ( '102092','102094','102152');
    <all the relevant vars. declared here...>
    begin
    OPEN c_service_request_null;
      LOOP
        FETCH c_service_request_null
        BULK COLLECT INTO v_service_req_id,v_platform_type,v_service_country,v_service_state,
                          v_function_activity_ids,v_service_region_id
        LIMIT 500;
        EXIT WHEN v_row_count = c_service_request_null%ROWCOUNT;
        v_row_count := c_service_request_null%ROWCOUNT;
    FOR i IN 1..v_service_req_id.count LOOP
            SELECT  max(decode(upper(trim(region_id)),NULL,'UR',upper(trim(region_id))))
            INTO v_region_id(i)
            FROM SOP_REGION_ACTIVITY_MAP
         WHERE
         (UPPER(TRIM(ACTIVITY_NAME)), UPPER(TRIM(SUB_ACTIVITY_NAME))) IN
                   (SELECT UPPER(TRIM(ACTIVITY_NAME)), UPPER(TRIM(SUB_ACTIVITY_NAME))
                      FROM SOP_FUNCTION_ACTIVITY_MAP
                     WHERE TRIM(FUNCTION_ACTIVITY_ID) IN (TRIM(v_function_activity_ids(i)))); --> Problem Here
    END LOOP;
    END;Now, when variable v_function_activity_ids(i) contains string 24,25,29 the above query does not give anything..i.e. it does not find the match and hence v_region_id(i) is returned as null.
    But when request contains function_activity_ids as single i.e. 25 it works and v_region_id(i) is returned correctly.
    Also, If I hardcode the value as under then it works :
      SELECT  max(decode(upper(trim(region_id)),NULL,'UR',upper(trim(region_id))))
            INTO v_region_id(i)
            FROM SOP_REGION_ACTIVITY_MAP
         WHERE
         (UPPER(TRIM(ACTIVITY_NAME)), UPPER(TRIM(SUB_ACTIVITY_NAME))) IN
                   (SELECT UPPER(TRIM(ACTIVITY_NAME)), UPPER(TRIM(SUB_ACTIVITY_NAME))
                      FROM SOP_FUNCTION_ACTIVITY_MAP
                     WHERE TRIM(FUNCTION_ACTIVITY_ID) IN (TRIM(24,25,29)));Can you pls help me with this..
    Thx..

    Looks like You totally misunderstand the IN() clause.
    In your scenario resulting query looks like
    ... in ( '24,25,29' ) - that's why You will never get result if two or more values comes from function.
    Two solutions:
    1) You can put values in the temporary table or table pl/sql and rewrite query appropriate way:
    ... in (select value from my_temp_table)
    ... in (select value from table(my_plsql_table))
    2) While using 10g, You can format regexp pattern instead of 'val1,val2,val3' and use
    ... regexp_like(FUNCTION_ACTIVITY_ID, PATTERN)
    regexp docs: http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/conditions007.htm#SQLRF00501

  • [JTable] prepareRenderer() override and foreground selection setting

    Hello,
    I can't solve this problem :
    To get a JTable's cell blinking in different colors, I overrided the JTable's prepareRenderer() method : this works fine.
    "But", because there's always a butt, if I restore the cell default background and foreground color when I want the cell to stop blinking, I lose the cell selection foreground color. If I don't restore those colors, the cell selection foreground color (translucent blue) is kept, but cell background and foreground colors will remain in the last blinking state.
    Can you see why or should I submit it as a Java bug (I already read and followed other topics on cell blinking, but it doesn't cover this very point) ?
    Here is the problematic code snippet (to get this method called, I manually and regularly trigger a fireTableCellUpdated() in a thread). The alternative issue is commented in it :
            public Component prepareRenderer(TableCellRenderer renderer,int row,int column) {
                Component res;
                res = null;
                res = super.prepareRenderer(renderer,row,column);
                // conditions required to make the cell blink
                if(
                   (isRunningThreadNewLog) &&
                    (row == 0) &&
                    (column == 0)
                   (! isCellSelected(row,column))
                    res.setBackground(newItemColor[0][lastItemColorIndex]);
                    res.setForeground(newItemColor[1][lastItemColorIndex]);
                    lastItemColorIndex = (lastItemColorIndex + 1) % newItemColor[0].length;
                * Here is where the problem occurs :
                *  - if I build ans runs as it, cell selection foreground will be painted with the default translucent blue color, but cell background and foreground colors won't be reset
                *  - if I uncomment, build and run, ccell background and foreground colors will be paint, but cell forground will be lost, or exactly, it will be painted to the cell foreground color, not the cell selection foreground color
               else {
                    res.setBackground(defaultItemColor[0]);
                    res.setForeground(defaultItemColor[1]);               
                return res;
            }Thanks for help :)
    Edited by: Rockz on Mar 5, 2009 1:19 PM

    or should I submit it as a Java bugLets see, you write some custom code and it doesn't work the way you want it to, so it must be a Java bug?
    Did you ever think it might be a problem with your code?
    First of all, whats with all the brackets in the if statement? Why do you try to group the row and column test?
    So lets take a look at your code. You have 4 conditions. If any one of them fail then you will go into the "else" which automatically resets the foreground and background colors "even" if the isCellSelected() test is true.
    Basically, the isCellSelected should be a separate test. Maybe something like:
    if (! isCellSelected(...))
        if (isRunningThreadNewLog
        && row == 0
        && column == 0)
            // do something
        else
            // do something else
    }If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.

  • Issues with White Balance and other camera setting...

    I have found a glitch with the camera on the Lumia 800: When you try to change a different white balance setting- (try it with incandescent so you can see the difference) as well as changing the scene (ie to portrait mode) it will flip back to auto white balance, although it will say that it is still incandescent.  If you change the scene first and then the white balance and save those settings, it will take one picture like that and then revert back to auto white balance again for the next shot, but again it will tell you that it is still incandescent. (You can clearly see the white balance difference between the 2 shots, even though the camera settings say they should be the same). The whole point of saving settings is so that you can take multple shots with the same settings.  I have spent hours on the phone to Nokia trying to explain this to them and they have assured me that it will be fixed in the next update.  I took the phone back to the Orange shop and we tried 3 different handsets and they all had the same problem.
    I also have the same problem with video autofocus that  lots of people have mentioned.  Has anyone found a solution yet?  The main reason I got this phone (only last week) was for the camera so I am diappointed.  I am a photographer so I am really fussy about cameras!  They have said in the Orange shop that I can change the Lumia for another phone, such as a Galaxy S2, which is also an awesome phone.  The thing is, I really love the Lumia otherwise.  I really like the fact that I don't have an iPhone anymore, for a start!!
     Does anyone think the network you are on makes a difference? It's just that several people have suggested that there could be a conflict with the Orange software and the Nokia/Windows software.  Does anyone else have this problem who is not with Orange?

    Thanks for all of your valuable suggestions.
    The problem was compounded when there were drastic shifts in the levels of ambient light also occuring at the same time.
    Happy Holidays to everyone.
    Bruce

  • Does Illustrator have Selection Sets?

    Anyone ever used 3ds Max?  Know what a Selection Set is?  Does Illustrator have them? 
    For those that don't know what I'm talking about, it's the ability to save a multi-state selection, by name (or any other identifier) for later easy re-selection.
    Ideally, and this is going a bit far, applying each Selection Set to a Shortcut, like [SHIFT + COMMAND + 1,2,3,4 etc] can be really fast for bigger things, or iterating through ideas and variations.

    You can't even begin to imagine! 
    I've been fighting, kicking, screaming, punching and mauling, tackling and generally brutalising my way through Adobe's UI clusterfuck. 
    Nice to see something implemented well.  And the selection sets seem to be GREAT!

  • Dynamically calling stored procedure and getting result set c++

    Hello,
    I am trying to write some c++ code that will dynamically bind values to a stored procedure and excute the procedure and get back a resultset. The problem I am running into is how to get back the resultset. Any help or example would be highly appreciated.

    int main(int argc, char* argv[])
    OCIError* pOciError;
    char* pConnectChar = "dbname";
    char* pUsernameChar = "scott";
    char* pPasswordChar = "tiger";
    int answer;
    OCIStmt* pOciStatement;
    char* sqlCharArray = "BEGIN :success := sp_ListEmp; END;";
    int id;
    char ename[40];
    OCIEnv* g_pOciEnvironment = NULL;
    OCIServer* g_pOciServer = NULL;
    OCISession* g_pOciSession = NULL;
    OCISvcCtx* g_pOciServiceContext = NULL;
    sb2* pIndicator=0;
    sb2* pIndicator2=0;
    sb2* pIndicator3=0;
    OCIDefine* pOciDefine;
    OCIDefine* pOciDefine2;
    OCIBind* pBind;
    OCIStmt* cursor;
    answer = OCIInitialize(OCI_THREADED, NULL, NULL, NULL, NULL);
    answer = OCIEnvInit(&g_pOciEnvironment, OCI_DEFAULT, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&pOciError, OCI_HTYPE_ERROR, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&g_pOciSession, OCI_HTYPE_SESSION, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&g_pOciServer, OCI_HTYPE_SERVER, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&g_pOciServiceContext, OCI_HTYPE_SVCCTX, 0, NULL);
    answer = OCIServerAttach(g_pOciServer, pOciError, (unsigned char *)pConnectChar, strlen(pConnectChar),
    OCI_DEFAULT);
    answer = OCIAttrSet(g_pOciSession, OCI_HTYPE_SESSION, (unsigned char *)pUsernameChar, strlen(pUsernameChar),
    OCI_ATTR_USERNAME, pOciError);
    answer = OCIAttrSet(g_pOciSession, OCI_HTYPE_SESSION, (unsigned char *)pPasswordChar, strlen(pPasswordChar),
    OCI_ATTR_PASSWORD, pOciError);
    answer = OCIAttrSet(g_pOciServiceContext, OCI_HTYPE_SVCCTX, g_pOciServer, 0, OCI_ATTR_SERVER, pOciError);
    answer = OCIAttrSet(g_pOciServiceContext, OCI_HTYPE_SVCCTX, g_pOciSession, 0, OCI_ATTR_SESSION, pOciError);
    answer = OCISessionBegin(g_pOciServiceContext, pOciError, g_pOciSession, OCI_CRED_RDBMS, OCI_DEFAULT);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)(&pOciStatement), OCI_HTYPE_STMT, 0, NULL);
    answer = OCIStmtPrepare(pOciStatement, pOciError, (unsigned char *)sqlCharArray, strlen(sqlCharArray),
    OCI_NTV_SYNTAX, OCI_DEFAULT);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)(&cursor), OCI_HTYPE_STMT, 0, NULL);
    answer = OCIBindByPos(pOciStatement,&pBind, pOciError, 1, &cursor, 0,SQLT_RSET,
    pIndicator2, 0,NULL, 0,0,OCI_DEFAULT);
    answer = OCIStmtExecute(g_pOciServiceContext, pOciStatement, pOciError, 1, 0, NULL, NULL,
    OCI_COMMIT_ON_SUCCESS);
    answer = OCIDefineByPos(cursor,&pOciDefine, pOciError,2,&id,sizeof(int),
    SQLT_INT,pIndicator, 0, 0,OCI_DEFAULT);
    answer = OCIDefineByPos(cursor,&pOciDefine2, pOciError,1,ename,40,
    SQLT_STR,pIndicator3, 0, 0,OCI_DEFAULT);
    if (answer == 0)
    while ((answer = OCIStmtFetch(cursor,pOciError, 1,OCI_FETCH_NEXT,OCI_DEFAULT)) == 0)
    printf("fetched id %d and name %s\n",id,ename);
    answer = OCIHandleFree(pOciError, OCI_HTYPE_ERROR);
    return 0;

  • Procedure and Function-Memory issue

    Hi,
    I have got code for maintaining cube.This code is generated by AWM while maintaining cube.This is nothing but the PL/SQL block with generated SQLs using following package and procedure.
    dbms_lob.writeappend
    I am running this PL/SQL block by putting in procedure.It is working perfectly in procedure but due to system requirement I need to turn procedure into function.When I run the same PL/SQL block in function,it gives following error:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.OutOfMemoryError
    What is the difference between function and procedure when same set of SQLs are running successfully in procedure and giving error in function.
    Can someone help me in this?
    Thanks

    When talking about PL/SQL only, everything that can be achieved with a function can also be achieved with a procedure using out parameters, thus you don't really need functions.
    However, a function may be used as a "syntactical convenience" in that you can write expressions like this in your PL/SQL code:
    total_salary := get_total_salary(dept_id => my_dept);
    (assuming you have defined the function get_total_salary).
    You may find this more readable than writing
    get_total_salary(result => total_salary, dept_id => my_dept);
    (assuming you have defined the procedure get_total_salary with an out parameter result).
    This is the same as with e.g. the CASE statement. You don't really need it, every CASE statement might be expressed with IF .. THEN statements as well. However using CASE may be more convenient and make your code more readable. Another example are loops, where you have different flavours, while everything might be expressed using one sort of loops (e.g. WHILE).
    In addition, you may use functions in SQL, while this is not possible with procedures, i.e. after defining some function f, you may write SQL like this:
    select * from t where f(id) = 0;

  • TTClasses interface for PL/SQL procedure and fetching its results

    Hi experts,
    I am using TimesTen Release 11.2.1.3.0;
    I created a simple PL/SQL procedure as follows in timesten-
    Command> create or replace procedure employee(eno in emp.empno%type) is
    > e_name emp.ename%type;
    > begin
    > select ename into e_name from emp where emp.empno = eno;
    > dbms_output.put_line(e_name);
    > end;
    > /
    And then I call it through TTClasses as
    TTCmd cmd, compilecmd;
    compilecmd.Prepare(conn,"alter procedure employee compile;",status);
    cmd.Prepare(conn,"begin employee(1020); end;",status);
    cmd.Execute(..);
    cmd.FetchNext(..);
    Here fetchNext is returning an error -
    [TimesTen][TimesTen 11.2.1.3.0 ODBC Driver]Invalid cursor state
    *** ODBC Error/Warning = 24000, TimesTen Error/Warning = 0
    *** Unable to fetch row for statement: <begin employee(1020); end;>.terminate called after throwing an instance of 'TTError'
    Aborted
    How can I run PL/SQL procedures/functions on TimesTen through TTClasses interface?
    Any help or input would be of great value.
    Thanks

    The issue here is nothing to do with TTClasses. Your PL/SQL procedure executes a SELECT statement (that returns just one row) using an implicit cursor within the PL/SQL procedure and retrieves the value of the ename column into the PL/SQL variable. However it does not them do anything with that value such as pass it back to the caller...
    Similarly, the TTClasses code executes a statement that it is expecting to create an ODBC level cursor 9which thsi PL/SQL invocation will not of course) and it is then trying to fetch from a cursor that does not exist.
    I would recommend that you take a look at the TimesTen PL/SQL documentation (Oracle® TimesTen In-Memory Database PL/SQL Developer's Guide Release 11.2.1) and refer to the section on IN, OUT and IN/OUT parameters. This will show you how you can use OUT parameters to return values to the caller. This technique works fine for ODBC, JDBC and OCi programs but does not sadly currently work with TTClasses. TTClasses has not yet been enhanced to support OUT and INOUT parameters. Of course as you have the source code for TTClasses you could make the necessary modifications yourself.
    I will open a bug requesting that TTClasses support OUT and INOUT parameters but in the meantime if you need this kind of capability you will need to either modify TTClasses yourself or switch to using a different API.
    Chris

  • Combination of Submit report with SELECTION-SET and WITH is not working

    I tried all possibilities to make the additional parameter also pass to the report along with variant but it just does not work. Anybody faced this issue before?
    Code snipped which is not taking pernr parameter along with variant 'Report Dis'.
    SUBMIT H99CWTR0 USING SELECTION-SET 'REPORT DIS'
           WITH pernr = pernr-low
           EXPORTING LIST TO MEMORY
    AND RETURN.

    Hi,
    THis sample code worked for me
    data:params type rsparams.
    data:it type table of rsparams.
    params-low = '2003'.              "In variant ZSURESHPAGA the actual value is 2004, but it got executed for 2003.
    params-kind = 'P'.
    params-option = 'EQ'.
    params-sign = 'I'.
    params-selname = 'P_YEAR'.
    append params to it.
    CALL FUNCTION 'SUBMIT_REPORT'
      EXPORTING
        report                 = 'Z12256_TASK1'
       VARIANT                = 'ZSURESHPAGA'
       SKIP_SELSCREEN         = 'X'
    TABLES
       SELECTION_TABLE        = it
    EXCEPTIONS
       JUST_VIA_VARIANT       = 1
       NO_SUBMIT_AUTH         = 2
       OTHERS                 = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SUBMIT H99CWTR0 USING SELECTION-SET 'REPORT DIS'
    WITH pernr = pernr-low       "<----check this statemnent
    EXPORTING LIST TO MEMORY
    AND RETURN.
    Edited by: Keshav.T on May 13, 2010 4:07 PM

  • Stored procedure with ORDER BY and results to DataTable

    I Don't need the result as a bound data for what I'm needing to do here.
    I have a datatable created by using a SQL stored procedure, and am using the code below to verify Product data. The stored procedure has an ORDER BY issueDate at the end of it. If I'm transfering the results to a DataTable with a DataTable.SELECT
    statement I'm not getting the sorted results that I thought would happen when the DataTable is created. I need the earliest date results and it's getting the first occurance of the product.
    Product LotID  issueDate
    901417 37140 2013-12-02
    901418 37140 2013-12-02
    901419 37140 2013-12-02
    901417 37140 2013-12-01
    901418 37140 2013-12-01
    901419 37140 2013-12-01
    // "yyyy-MM-dd"
    string sortOrder = "issueDate";
    DataRow[] Check = schemaTable.Select(string.Format("productID = '{0}' AND lotID = '{1}'", product, lotNum), sortOrder);
    if (Check == null)
    return null;
    return (Check.Last<DataRow>());

    // "yyyy-MM-dd"
    string sortOrder = "issueDate";
    //DataRow[] Check = schemaTable.Select(string.Format("productID = '{0}' AND lotID = '{1}'", product, lotNum), sortOrder);
    DataRow[] Check = schemaTable
    .AsEnumerable()
    .OrderBy(row => row[sortOrder])
    .Select(string.Format("productID = '{0}' AND lotID = '{1}'", product, lotNum), sortOrder);
     .OrderBy(row => row[sortOrder]) was listed as an error however I add .AsEnumberable() and then the line .Select shows a syntax error.  What should this code look like?

  • Displaying long text maintained for selected set codes in result recording

    Hi Gurus,
    I have maintained qualitative mic.For this mic i have defined selected set codes & for these selected set codes i have maintained long text.
    My client requirement is that this long text should be visible while doing result recording for the mic.Is this possible.
    Regards
    Amit

    How can they expect that?  Long text can be... well.. long.......  How can you include that on the same screen as results recording.  What if you have 5 charac with long text?  What if each selected set choice has long text and you had two choices for each?  That's ten sections of long text on one screen?   Impossible.
    Printing the long text on the cert shouldn't be a problem.  You just have to get someone to code it into the layout set.
    Craig

  • Catalogs and Selected Sets for end user

    Hi
    When we enter a code in Char. Attribute catalog or a selected set code, the system requires transport request. How can my end user maintain, catalogs and selected sets after go live?

    See following steps.  You will need BASIS people to set this up.  Also check OSS notes as they have some notes on this.
    FF
    How to make updates to Quality Catalogs not require a transport.
    1. In IMG, find the configuration line for the object (EDIT CATALOGS) and just u201Chighlightu201D the object: (like Quality Management> Quality Planning> Basic Data> Catalog> "EDIT CATALOGS"
    2. From the EDIT menu, select u201CDisplay IMG Activityu201D.
    3. Select the Maint. Objects Tab, then double-click on one of the u201Ccustomizing objectsu201D (in this case V_QPGR_CL).
    4. On the resulting screen, make sure the u201Ccurrent settingsu201D check box is checked.
    5. Do the same for the other customizing objects listed (in this case V_QPAM_CL).

  • Questions regarding TARGET DATA of a selection set and usage of extracts

    1. In iSetup Users Guide (121azug.pdf), pg5-4, under 'Viewing a Selection Set',
    it has the following lines:
    Supports Update: If the data object updates the target data during load,
    then the Support Update flag appears
    There is no explanation on "target data" in earlier section.
    Can someone explain what this target data is?
    2. In iSetup Users Guide (121azug.pdf), refer to the image on pg5-14, there is a download link
    in order to download extract. What is the downloaded extract for? Is there any documents
    explaining how to use the downloaded extracts? I am thinking that this downloaded extract
    can be used to upload in other env but I am not sure how to use these.
    Any advise?
    Thanks.

    You are on the right track!
    +--the entire iTunes folder found in My Music+
    This contains the itunes library database files (iTunes Library.itl which has metadata on ratings, play counts) and all the itunes library content files (Artist/Album, movies, etc.)
    The lyrics are inside each songs' file.
    The Artwork should also be in this folder.
    +-User Name\Application Data\Apple Computer+
    +-User Name\Local Settings\Apple Computer+
    These include the backups you need for the ipod and apps data.
    You don't need to deauthorize if you are simply reinstalling itunes. You only need to deauthorize if you are reinstalling Windows itself.
    +--Can I copy the iTunes folder from the external HDD and paste it back into the same location after I recover my laptop+
    Yes
    +if the version of iTunes is slightly different (I have 10.1.0.54)?+
    If the new version is at least 10.1.0.54
    It won't work to go backwards to an older version such as v9.0

Maybe you are looking for

  • How to get installed application list from a remote system

    i am using.. an windows XP OS.. i want to collect the installed application list(in any accessible format) from my near by system(any system in the network). and need to invoke any application (from the list generated) from my system..... please help

  • CF 9 issue with cfinvoke

    I ran into a really odd behavior using cfinvoke in CF9. This came up for an application that has run fine on earlier version of CF and then broke on CF9. The basic error comes up when we do something like (not actual code, but what seems to cause the

  • Change Date Format in MSDS report

    SAP EHS expert: I would like to change Date Format when printing MSDS in different languages. For example, print date in MM.DD.YYYY format when printing MSDS in English, but print date in YYYY. MM. DD format when printing MSDS in Chinese.The Generati

  • Problem using Apple External Modem in France

    Hi, My dad lives in France but purchased his MacBook and Apple External USB modem here in the US. He has been unable to get a reliable dialup connection with the Apple modem, though his older PC laptop routinely gets a solid connection. I know about

  • Weird Errors coming up. 1017s & 5000s

    I am a complete nuff nuff when it comes to AS3 so bare with me. I had a website skeleton made by a scripter. He made lots of AS files that call to each other with a few movie clips that are populated via the As files. This worked fine for me, I could