Concatenation according to condition

Hi All,
I ahve to concatenate the rows based on other row values....
example:
Col1 Col2
A X
A Y
B Z
B Y
needs to load into target table as:
Col1 Col2
A X:Y
B Z:Y
concate col2 accoring to col1
Thanks

1. What are your source and target databases? Are they on same instances if they are of the same technology type?
2. I would not go to an interface if the tables are on the schema and technology would be Oracle with version later than 9i. In that case, I would use the following SQL
INSERT INTO t2 (col1, col2)
SELECT col1, REPLACE(WMSYS.WM_CONCAT(col2),',',':')
FROM t1
GROUP BY col1;
There is a way to code this in an interface but a procedure would be simplest.
3. In case, assumptions in point 2 failed, there is a long road to the general solution. The solution above will give you answers if you have maximum two rows with same col1 value. I am interested to explore what happens if there are n rows with same column value when n being a random number? In the following steps, I would try to outline how we need to proceed, but because this is complicated, you may have to work with me here (t1 is source, t2 is target and tech is Oracle):
A. Create a variable v_MaxRows. In the refresh block, write:
WITH temp AS (
SELECT col1, count(*) as cnt_rows FROM t1 GROUP BY col1)
select MAX(cnt_rows) FROM temp
If technology is not Oracle, you have to adjust SQL a bit to make it work. This variable holds maximum no of rows a particular value of col1 is repeated in source t1.
B. Create a variable v_UseRow and do not create a refresh block for it. The default value should be 1.
C. Create a temp table (or temp tables based yellow interface) called t3 with columns col1, col2 and nrows (numerical value). Create an interface I1 with t3 as target. col1 and col2 should be mapped directly. Mapping for nrows column should be -> dense_rank() OVER(partition by col1 order by col2).
D. 1. Create interface I2. t3 should be the target.Update key for table t3 should be (col1,nrows).
2. Bring t3 two times to the source side (with alias t31 and t32), join them using col1. Mark the join as Left Outer Join on staging.
3. Create a filter on t31 as t31.nrows = 1 (executable on source)
4. Create a filter on t32 as t32.nrows = #v_UseRow+1 (executable on source)
5. On target, map for col1 should be t31.col1, map for col2 should be -> t31.col2||(CASE WHEN t32.col2 IS NOT NULL THEN ':'||t32.col2 ELSE '' END)
6. Column nrows should be mapped to 1.
E. Load target t2 using interface I3 and source t3. Direct mapping should work.
F. Create a package. Refresh #v_MaxRows and then call I1. Then define a loop where v_UseRow is set to 1, call I2, increment v_UseRow by 1, see if that is less than *#v_MaxRows*, then call I2 again else call I3 and exit. That way interface I2 would be called #v_MaxRows -1 times and all repeating values would be concatenated together.
I am interested to know the result. Please let me know the result.

Similar Messages

  • CPU according to conditions used to warm?

    CPU according to conditions used to warm? - Temperature 78% - Fan 90% - due to risk not updated BIOS - that makes a difference? - Fan grilles are free !!
    I have until December 2015 TOSHIBA International Warranty - please advise - PC info and conditioning in Annex

    Hi
    The CPU temperature depends on the notebook usage.
    If you run some applications which would load the CPU a lot, then the CPU temperature could increase to a higher level.
    To decrease the heat dissipation, it could be advisable to decrease the max CPU performance (< 90%).
    This can be done in the Windows Advanced Power options.
    I don’t know if it would be the option for you but it seems that the change of thermal grease (for example: arctic mx4) could also help to improve the cooling performance.
    see other thread:
    https://forum.toshiba.eu/showthread.php?82427

  • Changing row color according to condition statement

    Hi,
    Is there a way that I can color a row or field in a report according to a condition? For example, can I color red all rows where an amount is over 1,000? Or can I just highlight the field that answers to the criteria?
    Thank you.
    Leah

    Hi,
    The row cannot be colored
    just the cell that match the criteria
    tamir

  • Display rows according to conditions

    Hi
    I have a requirement where i need to display the rows and corresponding values depending on the condition.
    I need the Count of As and Bs whose aggregate spend sum for transactions in the specified calendar year falls within spend ranges. The ranges will continue to increment by 500 until all As and Bs are accounted for.
    for example there are 20 transactions falling within the zone of 100-500, 10 transactions falling with in the range of 501-1000 this will continue untill all the records are checked. the catch here is the MAX value range that we can get is unknown. it may be 1000, 5000 or 10000. So, the row has to be displayed dynamically along with their corresponding counts.
    each range is displayed in each different rows.
    Any help is much appreciated.
    Thanks,
    Raj

    Could you edit your post (edit button in top right of your post) and put {noformat}{noformat} tags around your data and query.
    So you've shown use what output you are getting, how about showing us, or highlighting which of the rows you want returned so it's clear to us.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Two query result rows in single report according to condition

    Is it possible to have a report where the first rwo of the report will display the result of query1 and second row will display the result of query2.
    The query1 and Query2 are as follows:
    SELECT BNO, DATA1 FROM TABLE1 ;
    SELECT RNO, DATA2 FROM TABLE2
    The matching condition is BNO = RNO(+)
    Kindly suggest ?
    Sanjay
    CREATE TABLE TABLE1
    BNO          NUMBER,
    DATA1        VARCHAR2(20)
    CREATE TABLE TABLE2
    RPNO           NUMBER,
    RNO         NUMBER,
    DATA2       VARCHAR2(20)
    INSERT INTO TABLE1(BNO, DATA1) VALUES(111,'200');
    INSERT INTO TABLE1(BNO, DATA1) VALUES(112,'400');
    INSERT INTO TABLE1(BNO, DATA1) VALUES(113,'500');
    INSERT INTO TABLE2(RPNO,RNO,DATA2) VALUES(10,111,'100');
    INSERT INTO TABLE2(RPNO,RNO,DATA2) VALUES(11,111,'100');
    INSERT INTO TABLE2(RPNO,RNO,DATA2) VALUES(12,111,'100');
    INSERT INTO TABLE2(RPNO,RNO,DATA2) VALUES(13,112,'400');
    INSERT INTO TABLE2(RPNO,RNO,DATA2) VALUES(14,113,'500');

    One option can be UNION ALL
    SELECT
         BNO,
         DATA1
    FROM
              SELECT
                   BNO, DATA1,rownum as rn
              FROM
                   TABLE1
              UNION ALL
              SELECT
                   t2.RNO as BNO, t2.DATA2 as DATA1, rownum as rn
              FROM
                   TABLE2 t2
              WHERE
                   EXISTS
                        SELECT
                             1
                        FROM
                             table1 t1
                        WHERE
                             t1.bno = t2.RNO
              ORDER BY
                   1,3
    BNO                    DATA1               
    111                    200                 
    111                    100                 
    111                    100                 
    111                    100                 
    112                    400                 
    112                    400                 
    113                    500                 
    113                    500                 
    8 rows selected

  • Diplaying Pictures according to conditions....

    hiii all ,
    I am trying to display the stamp of each doctor on the Prescription at the bottom of the page to the left ...........what i did is ???i put all the signatures in the apatche folder then i am calling each picture according to the doctor ID :-
    DECLARE
    q VARCHAR2 (1000);
    BEGIN
    q := q || 'SELECT 15000,dr_id, DECODE(dr_id, ';
    q := q || '750, ''<img src="/i/elina2.gif" >'', ';
    q := q || '20, ''<img src="#IMAGE_PREFIX#bullet2.gif" >'', ';
    q := q || '30, ''<img src="#IMAGE_PREFIX#bullet3.gif" >'', ';
    q := q || '40, ''<img src="#IMAGE_PREFIX#bullet4.gif" >'') ';
    q := q || 'image, dr_name FROM dr ';
    q :=
    q
    || 'WHERE CASE WHEN TO_NUMBER (:p7_dr_id) != -1 THEN dr_id '
    || 'ELSE 1 END = CASE WHEN TO_NUMBER (:p7_dr_id) != -1 '
    || 'THEN TO_NUMBER (:p7_dr_id) ELSE 1 END';
    RETURN q;
    END;
    but the signature it is coming in the middle i want it to be in the left ...
    and one more question i tried to write this code in the region footer or in the page footer coz i couldnt do it there is any way to add it to the footer ,coz it is to important to me ,,,
    Thanks in advance
    Ahmed.

    Hi
    The CPU temperature depends on the notebook usage.
    If you run some applications which would load the CPU a lot, then the CPU temperature could increase to a higher level.
    To decrease the heat dissipation, it could be advisable to decrease the max CPU performance (< 90%).
    This can be done in the Windows Advanced Power options.
    I don’t know if it would be the option for you but it seems that the change of thermal grease (for example: arctic mx4) could also help to improve the cooling performance.
    see other thread:
    https://forum.toshiba.eu/showthread.php?82427

  • Condition type wise report

    can we have condition type wise report of all billing documents executed
    thanks
    srinivasan

    See u r prices are in KONV & Billing Tables are VBRK & VBRP
    VBRK is Header Table
    VBRP is Detail table
    Now enter billing document number in VBELN field of VBRK & extract KNUMV i.e Document Condition.
    Also enter billing document number in VBELN field and material number in field of MATNR & extract Item Number POSNR,
    So now u are having Document condition & item number
    Put this two things in KNUMV & KPOSN fields of KONV & u will get all values in KWERT according to Condition Type.
    I hope this will help u.
    Regards
    SWAPNIL

  • Pricing date in condition type

    Hi All,
    I just wanted to know what is use of "pricing date" + '' quantity conversion" field in condition type.
    How and what is the functionality of this field.
    Thanks in advance.
    Cheers!

    > I am trying to find out what is the difference if I  am going to sellect Billing date (KOMK-FKDAT)....instead of Price date (KOMK-PRSDT).
    If you will give the date Billing date, then the value of condition type will be effective only on the billing date, and not on the Pricing date.
    For example :
    You made the sales order on date 20.06.2009  for the 10 Qtys at the rate of 10 Rs Per qty
    Did the PGI on 23.06.2009
    Invoice on 23.06.2009
    Now say for a specific condition type the record get changed on 23.06.2009 ( Like fresigh surcharge) then the new record will be effective if you have choosen the option billing date in Condition type. and if you have choosen the option of Price date than the date from the sales order pricing date will come into picture.
    Hope its clear.
    > QTY Conversion.
    >
    > Prasanth you mention ''condition bases'' ...................if you could what exactly you mean by that OR is there any other way to understand this more clearly.
    As you might be knowing in pricing procedure we give Alternative condition base value......... So if quantity conversion is ticked here then the conversion of quanity will takes place accordingly.
    Condition bases in nothing but Alternative condition base value in Pricing pricedure.
    Thanks,
    Raja

  • How to set discount condition for distount condition?

    Hellow!
    We use price condition ZP01 (base price)
    Then discount condition ZDI1 (discount for customer group and material group) is implemented for base price
    This works fine.
    But now I need to implement extra condition to correct discount. It is percent condition which redice discount for customer.
    Example
    base price ZP01
    100 EUR
    discount  ZDI1
    cust group 01 material group 01  - 10%
    cust group 01 material group 02 - 20%%
    DISCOUNT CORRECTION (ZDK)
    cust 1001 0,7 (or 30%)   (cust 1001 in 01 customer group)
    It means that discount in sale document for material group 01  should be 7% and for mat group 02 14% . So condition ZDK reduce discount perchens but not item price.
    Please  help me, how ZDK should be inserted into price procedure.
    Andrey Garshin.

    Hi Andrey,
    Are there any logical reasons behind the reduction as follow:
    1) 10% --> 7% (Material Group 1)
    2) 20% --> 14% (Material Group 2)
    If there are logic to these reduction, you can proceed to write a routine in VOFM and assign it accordingly for condition type ZDK in your pricing procedure.  However, this does not seems to be a standard practice and business wise this would also appear to be rather inflexible and are constrained by the routine you built alone.
    Alternative to the above, I would recommend that you could also consider using the standard condition type PMIN (minimum pricing) given in the standard pricing procedure.  The reason you are probably reducing (or correcting) the discount is also because too much discounts are granted in any sales transaction and therefore you may want to establish a control that there should be a minimum price for a particular material sold. This can be achieved automatically using the PMIN condition type. 
    As such, if the minimum price is not met during pricing in sales order transaction, then the system automatically determines the difference using condition type PMIN.
    Example:
    Condition record PMIN: USD 1,000
    Sales Order Pricing:
    PR00 (Basic Price) = USD 1,250
    K007 (Customer Discount) = USD 300
    PMIN (Minimum Price) = USD 50
    Net Value = USD 1,000 (as per PMIN condition record USD 1,000)
    Whenever minimum price for a material change, you can just change the condition record to quickly change your requirement without changing the configuration.
    Hope the above helps give an idea on how to approach your discount design.
    Thanks.

  • Condition Type Difference

    Hi Guru's
            can any one explain me about the difference between HEADER CONDITION TYPE and ITEM CONDITION TYPE.
    BYE
    Edited by: Raghavendran Velusamy on Dec 29, 2008 2:51 PM

    Dear Raghavendran,
    -->Header condition value will apllicable to all items(applicable to whole document)
    -->Item condition value will apllicable only specific item(not applicable to whole document)
    Header and Item Conditions
    Use
    The standard system includes condition types that you can only apply at the header level, the header conditions. Condition types that you can only use for items are called item conditions. The standard system also includes some condition types that can be used both at header and item level: Percent from gross (RA01) Absolute discount (RB00) Weight discount (RD00).
    Header Conditions
    Automatic pricing does not take header conditions into account; you can not create condition records for them in the standard system. Header conditions are entered manually in order processing. R/3 includes the following header conditions:
    Percent discount (HA00)
    Absolute discount (HB00)
    Freight (HD00)
    Order value (HM00)
    Item Conditions
    In the standard system, most condition types are defined as item conditions. Examples of item conditions are:
    Material discount (K004)
    Customer/Material (K005)
    Customer discount (K007)
    Material price (PR01)
    Displaying Header and Item Conditions
    From the header and item pricing screens, you can branch to detailed information about each condition type that appears. From the header pricing screen, place the cursor on the condition for which you require detailed information.
    In the header price screen, choose Condition detail. The system displays data it uses to calculate the amount of the condition (for example, the kind of pricing scale, quantity conversion, the scale base value, the document currency, and so on). From the details screen, you can choose Goto--> Condition record to see the specific condition record that the system accesses. From the item pricing screen, select the condition for which you require detailed information.
    Accordingly choose Condition detail in the item price screen. To see the specific condition record that the system accesses, choose Goto --> Condition record.
    I hope this will help you,
    Regards,
    Murali.

  • Hiding a Maintenance View in a View Cluster

    Hello ABAP Experts,
    We have a scenario where we would like to hide a maintenance view to an existing view cluster based on condition.
    Is it possible via events of a view cluster, where i can hide the view at runtime based on some condition before the view cluster is displayed ?
    Is there any way as well, which help achieve this hiding of views ?
    For example in the below View Cluster, i would like to hide "Define object links" view from the main view cluster "Define document Types".
    Thanks,
    Naresh

    Hi Naresh,
    Yes, you can do it in events of a view cluster, define a subroutine and bounding it to event(02) in SE54,
    when you define the subroutine, it will ask you creat a mian program, in this main program, you need  'INCLUDE lsvcmcod'.
    Then you can access some standard data, http://help.sap.com/saphelp_nw04/helpdata/en/62/c302c7de8e11d1a5960000e82deaaa/frameset.htm
    INCLUDE lsvcmcod.
    FORM yourSubroutineName.
    DATA: viewname TYPE vclstruc-object,
            error_flag TYPE vcl_flag_type,
      viewname = 'ZTEST_VIEW1'.
    *  PERFORM vcl_set_table_access_for_obj USING    viewname
    *                                       CHANGING error_flag.
      ----> according your condition to change the view.
    IF xxx = yyy.
      DELETE vcl_struc_tab WHERE object = viewname.
    ENDIF.
    ENDFORM.
    regards,
    Archer

  • How many computers can you use one copy of Photoshop Elements 11 on please?

    I intend to purchase Adobe Photoshop Elements 11 for my two student children.  Could you tell me if they will both be able to install in on their respective computers?

    One copy of the software can be installed and activated on two computers but a) they must be used by the same person and b) not at the same.
    Your intended use is not in accordance with conditions set out in the End User License Agreement (EULA)
    http://www.adobe.com/products/eulas/pdfs/Gen_WWCombined-MULTI-20111031_1230.pdf
    2.1.3 Portable or Home Computer Use. Subject to the restrictions set forth in Section 2.1.4, the
    primary user of the Computer on which the Software is installed under Section 2.1 (“Primary User”)
    may install a second copy of the Software for his or her exclusive use on either a portable Computer
    or a Computer located at his or her home, provided that the Software on the portable or home
    Computer is not used at the same time as the Software on the primary Computer.
    You should purchase two copies of the software giving each of your children the ability to use the software on two computers.

  • Hiding  a Equipment  view  in a  transaction iq01

    Hai Friends,
                 How to hide a Equipment view in a transation for create material serial number (iq01).
    Regards,
    Sathis Kumar R

    Hi Naresh,
    Yes, you can do it in events of a view cluster, define a subroutine and bounding it to event(02) in SE54,
    when you define the subroutine, it will ask you creat a mian program, in this main program, you need  'INCLUDE lsvcmcod'.
    Then you can access some standard data, http://help.sap.com/saphelp_nw04/helpdata/en/62/c302c7de8e11d1a5960000e82deaaa/frameset.htm
    INCLUDE lsvcmcod.
    FORM yourSubroutineName.
    DATA: viewname TYPE vclstruc-object,
            error_flag TYPE vcl_flag_type,
      viewname = 'ZTEST_VIEW1'.
    *  PERFORM vcl_set_table_access_for_obj USING    viewname
    *                                       CHANGING error_flag.
      ----> according your condition to change the view.
    IF xxx = yyy.
      DELETE vcl_struc_tab WHERE object = viewname.
    ENDIF.
    ENDFORM.
    regards,
    Archer

  • Error During Creation of  Table Value Request /Simple Value Request Express

    Hi,
    I am on SAP CRM ABAP 7.0 with enhancement pack 2.0.
    The requirement is to create a decision table which would have value(search helps) requests for some of the condition columns in it. For example, Value Request for condition column Y would come according to condition column X  . As per my understanding,this could only be achieved by maintaining foreign key relationship. So I tried to create a  Table Value Request  which I could assign in the domain values in the data object of the corresponding condition column.
    But,when I am trying to create a Table Value Request or Simple Value Request in BRF+ application, it is throwing an error message "Table FDT_EXPR_1950S is not part of the Customizing object FDT0001 T".
    Could you please help me out !!

    Hi Carsten,
    Thanks for your quick response.
    Just wondering whether or not I can achieve the requirement without Table Value Request. Do you have any idea on this?

  • How to Hit Request of Invoice NO In print Option Conditionaly

    Dear Friend
    i want display to my print option enable and disable according to condition.So i have done some code in my Sql Query.Print Option is display me enable and disable condiotanly correctly but where Print option is ebalbe to print ,When i press print Link then it does not display me invoice details in PDF File to print .My Invoice no do not Hit invoice no as request to Print.
    What Shou.ld i do to pass invoice no to print Invoice.
    My print code which i have use to print
    CASE
                  WHEN NVL(VID.CONTROLSUM, 0) = NVL(VID.SUM, 0)
                  THEN
                     '<a href=http://org:1545/reports/rwservlet?SERVER=rep_inv_ora10gias+REPORT=REP_667.RDF+DESTYPE=CACHE+DESFORMAT=PDF+USERID=UDS/UDS@PROD+P_SBU_CODE=0002+P_INVOICE_NO=INVOICE_NO>Print</a>'
    WHEN NVL (VID.CONTROLSUM, 0) <> NVL (VID.SUM, 0)
                  THEN
                     'PRINT'
               END
                  AS the_PRINT,
    Here Request of inoice No Does not Hit.
    *P_SBU_CODE=0002+P_INVOICE_NO=INVOICE_NO*My Code
    This is my View code which i use in my Sql Query Report.View Name *VW_INVOICE_DTL_REPORT*
    SELECT   am.INVOICE_NO,
               CASE WHEN am.INVOICE_TYPE = 'C' THEN 'BLUE' END the_color,
               CASE
                  WHEN am.CURR_CODE = 'GBP' THEN 'GREEN'
                  WHEN am.CURR_CODE = 'EUR' THEN 'purple'
               END the_gbp,
               am.INVOICE_NO AS invoice,
               am.INVOICE_TYPE,
               am.INVOICE_DATE,
               am.CONSULTANT_NAME,       
    DECODE (am.INVOICE_TYPE,
                       'I', (NVL (SUM (al.AMOUNT), 0)),
                       (NVL (SUM (al.AMOUNT), 0)))
                  AS SUM,
               um.user_name,
               cm.name,  
             NVL (am.inv_dtl_amt, 0) AS CONTROLSUM,
               CASE
                  WHEN NVL (am.inv_dtl_amt, 0) <> NVL (SUM (al.AMOUNT), 0)
                  THEN
                     'RED'
               END
                  the_sum, 
               Inv_in_apps (Am.Invoice_no) AS apps_FLG
        FROM   AR_INVOICE_MAS am,
                AR_INVOICE_DISTRIBUTION_DTL al
       WHERE       am.invoice_no = al.invoice_no(+)
    GROUP BY   am.ID,
               am.invoice_no,
               am.INVOICE_TYPE,
               am.INVOICE_DATE,
               am.inv_dtl_amtThis is my Report SQL Query
    select
    VID.*
                  CASE
                  WHEN NVL(VID.CONTROLSUM, 0) = NVL(VID.SUM, 0)
                  THEN
                     '<a href=http://org:1545/reports/rwservlet?SERVER=rep_inv_ora10gias+REPORT=REP_667.RDF+DESTYPE=CACHE+DESFORMAT=PDF+USERID=UDS/UDS@PROD+P_SBU_CODE=0002+P_INVOICE_NO=INVOICE_NO>Print</a>'
    WHEN NVL (VID.CONTROLSUM, 0) <> NVL (VID.SUM, 0)
                  THEN
                     'PRINT'
               END
                  AS the_PRINT,
    CASE VID.APPS_FLG
                  WHEN  'N'
                  THEN
                     '<a href="f?p=&APP_ID.:5:&SESSION.:MODIFY:&DEBUG.:5:P5_SBU_CODE,P5_INVOICE_NO:
                     || VID.SBU_CODE
                     || ','
                     || VID.INVOICE_NO
                     || ':"><img src="#IMAGE_PREFIX#edit.gif" alt="Edit"></a>'
                  WHEN 'Y'
                  THEN
                     '<img src="#IMAGE_PREFIX#edit.gif" alt="Invoice Transfered">'
               END
                  AS the_Edit,
               CASE VID.APPS_FLG
                  WHEN 'Y'
                  THEN
                     '<font color ="Gray"></b>Revenue</b></font>'
                  ELSE
                     '<a href="f?p=&APP_ID.:41:&SESSION.:MODIFY:&DEBUG.:41:P41_sbu_code,P41_Invoice_no:'
                     || VID.SBU_CODE
                     || ','
                     || VID.INVOICE_NO
                     || ':">
    <font color =GRAY><b>Revenue</b></font></a>'
               END
                  AS Revenue
    FROM VW_INVOICE_DTL_REPORT VIDHow to Do This ?
    Thans
    Edited by: Vedant on May 17, 2013 12:03 AM

    I can, but I am usually not using my mbp at home and I wouldn't like to carry a keyboard around with me just to hit a right alt key. I am sure there's a solution for this...
    Thank you

Maybe you are looking for

  • How do you pass more than 3 items to another page via a Column Link?

    I know this is a simple question, but I don't see it covered in the manual. I have a report on page 1, when the user clicks on a column link, I'd like to pass 4 items to the page that is called. The Column Link area allows you to specify 3 items. How

  • IMac G3 Gray screen w/logo & Spinning Progress Wheel only!

    When turning on my iMac G3 DV SE 400, Slot-Load, Graphite (1999-10), OS 10.3 (Panther), it only goes as far as a gray screen with the Apple logo and the spinning wheel (gear) (Progress wheel) below the logo, and that's it. I've started up in Target M

  • Subscribe to podcast issue

    Hi, I'm sure this question has been posted a lot elsewhere, but I can't find a solution that works. So... When I (or my mates) attempt to subscribe to my podcast (I'm using firefox), a page with the following text appears "This XML file does not appe

  • OC4J_HOME and J2EE_HOME settings

    hello, i use oracle 10g enterprise edition and oracle application server 10g. i am not able to view the demos in datasource named mvdemo. probably, my problem is classpath settings. i have to configure the classpath settings for OC4J_HOME and J2EE_HO

  • [svn] 854: Update AIR and Flash Player builds

    Revision: 854 Author: [email protected] Date: 2008-03-18 13:43:42 -0700 (Tue, 18 Mar 2008) Log Message: Update AIR and Flash Player builds AIR: 031608apms Player:r119 Modified Paths: flex/sdk/branches/3.0.x/frameworks/libs/player/playerglobal.swc fle