[bug/question] UIPickerView

I am playing around with UIPickerView/UIPickerTable... and I noticed something strange:
Even though I already set the multiple selection to NO
[[ pickerView setAllowsMultipleSelection: NO ]];
In some cases, I can still select more than 1 row. Let's say I've selected row #1. Now I scroll down the picker until I can no longer see #1. Now the picker displays #2 -> #4, and if I select #4 or #5 etc... then it can be selected!
Screenshot (here I scrolled up a bit to show that both row #1 and #4 are selected:
http://i73.photobucket.com/albums/i215/vieestchien/photo.jpg
Is this a bug or is there anything I did wrong? If it is indeed a bug, where can I report it?
Another question: to programmatically select a row, what method can I use? I tried the following:
[[ pickerView selectRow: 5 inColumn: 0 animated: YES ]]
The picker is indeed scrolled to row 5, but that row is not selected (no checked icon, no highlight).
Message was edited by: vieestchien

Logged Bug No: 5126047 QUOTE IN COMMENTS GETS COUNTED IN ESCAPE PROCESSING SO
BECOMES ':1'
There is a jdbc base bug 3975915 and a workaround suggested (turn off escape processing at a statement level).
--Turloch                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • SQL Plus Bug/Question: 'COMPUTE' command does not work in script.(BUG?!)

    Good Day to ALL!
    I have a script of SQLPlus that creates a report. I have 8/9 numeric columns which are 'SUM'ed up thru 'COMPUTE' command. It works for all BUT 2 columns. If I put these two columns, compute does not take affect. If I remove these two columns ( just cut) 'COMPUTE' works fine!!! These two coulumns use DB Function. But I have other column that also use DB Function. These two columns has some extra additions. Any thing wrong with the script/column defn.
    Thanks - Pradip (Pradip Biswas @Singapore) Could you pl. reply to [email protected]
    Here is bit of script. Sorry about the length of the cut and paste.
    COLUMN OPEN_QTY_BAL           FORMAT 9,99,990          HEADING 'Opening|Qty'           Justify LEFT
    COLUMN OPEN_QTY_VALUE          FORMAT 99,999,990      HEADING 'Opening|S$'           Justify LEFT
    COLUMN PO_RECEIPTS_QTY      FORMAT 99,990          HEADING 'PO Rec|QTY '          Justify LEFT
    COLUMN PO_RECEIPTS_QTY_VALUE     FORMAT 9,999,990      Heading 'PO Rec|S$'           Justify LEFT
    COLUMN MISC_RECEIPTS_QTY     Format 99,990          Heading 'Misc |Qty'          Justify LEFT
    Column MISC_RECEIPTS_QTY_VALUE      Format 9,999,990      Heading 'Misc|S$'          Justify LEFT
    COLUMN WORKORDER_QTY           FORMAT 99,990          HEADING 'WorkOrd|Qty'          Justify LEFT
    COLUMN WorkOrder_QTY_VALUE      Format 9,999,990      HEADING 'WorkOrd|S$'          Justify LEFT
    COLUMN SALES_SHIPMENT_QTY      FOrmat 99,990          Heading 'SalesShip|Qty'          Justify LEFT
    COLUMN SALES_SHIPMENT_QTY_VALUE FOrmat 9,999,990      Heading 'SalesShip|S$'          Justify LEFT
    COLUMN MISC_ISSUE_QTY     Format 99,999          HEADing 'Misc|Qty'          Justify LEFT
    COLUMN MISC_ISSUE_QTY_VALUE Format 9,999,990 heading 'Misc|S$'          Justify LEFT
    COLUMN TRANSFER_QTY          format 99,990          heading 'Transfer|Qty'          Justify LEFT
    COLUMN TRANSFER_QTY_VALUE     format 99,999,990     heading 'Transfer|S$'          Justify LEFT
    COLUMN REVAL_VALUE Format 99,990          Heading 'Reval|S$'          Justify LEFT
    COLUMN ON_HAND_QTY           FORMAT 9,99,990      HEADING 'Closing|Qty'           Justify LEFT
    COLUMN ON_HAND_QTY_VALUE     FORMAT 99,999,999,990      HEADING 'Closing|S$'           Justify LEFT
    REPHEADER on
    REPHEADER left ' GL Period From: &&P_GL_PERIOD_NAME_FROM ' skip left ' GL Period To : &&P_GL_PERIOD_NAME_TO ' skip left ' Inv Org Code : &&P_INV_ORG_CODE ' skip left 'SubInventory Code : &&P_SUBINVENTORY_CODE ' skip 2
    TTITLE left 'H - Inv Inventory Movement Report as at:' TTITLE_DATE RIGHT 'PAGE:' FORMAT 999 SQL.PNO SKIP 2
    BTITLE skip 1 CENTER 'COMPANY CONFIDENTIAL - Printed on ' TTITLE_DATE
    BREAK on REPORT skip 1;
    --rem(1) compute SUM label 'Total' of OPEN_QTY_VALUE PO_RECEIPTS_QTY_VALUE MISC_RECEIPTS_QTY_VALUE WorkOrder_QTY_VALUE SALES_SHIPMENT_QTY_VALUE MISC_ISSUE_QTY_VALUE TRANSFER_QTY_VALUE REVAL_VALUE on report;
    --REM(2) compute SUM label 'Total $S: ' of OPEN_QTY_VALUE REVAL_VALUE on report;
    --REM(3) compute SUM label 'Total $S: ' of OPEN_QTY_VALUE REVAL_VALUE  ON_HAND_QTY_VALUE on report;
    compute SUM label 'Total $S:' of OPEN_QTY_VALUE PO_RECEIPTS_QTY_VALUE MISC_RECEIPTS_QTY_VALUE WorkOrder_QTY_VALUE SALES_SHIPMENT_QTY_VALUE MISC_ISSUE_QTY_VALUE TRANSFER_QTY_VALUE REVAL_VALUE on report;
    WHENEVER SQLERROR EXIT FAILURE
    select
    --     MSI.ORGANIZATION_ID                          ORGANIZATION_ID,
    -- MSI.INVENTORY_ITEM_ID                                   INVENTORY_ITEM_ID,
         MSI.SEGMENT1||'//'||MSI.DESCRIPTION                                   ITEM,
    -- MSI.DESCRIPTION                                             DESCRIPTION,
    All_Item_subinv.SUBINVENTORY_CODE                              SUBINVENTORY,
    MSIV.PRIMARY_UOM_CODE                                        UOM,
         --NVL(MOQ_OPen_BAL.OPEN_QTY_BAL ,0)                               OPEN_QTY_BAL ,
    -- NVL(MOQ_OPen_BAL.OPEN_QTY_BAL,0) * NVL(AVG_ITEM_COST1.ITEM_COST,0)           OPEN_QTY_VALUE,
    (MOQ_OPen_BAL( All_Item_subinv.SUBINVENTORY_CODE,
              MSI.ORGANIZATION_ID,
    MSI.INVENTORY_ITEM_ID,
    '&P_GL_PERIOD_NAME_FROM') )     OPEN_QTY_BAL ,
    (MOQ_OPen_BAL_VAL( All_Item_subinv.SUBINVENTORY_CODE,
              mSI.ORGANIZATION_ID,
    MSI.INVENTORY_ITEM_ID,
    '&P_GL_PERIOD_NAME_FROM')
         )                                             OPEN_QTY_VALUE,
    NVL(AGGREGATED_MTT.PO_RECEIPTS_QTY,0)                              PO_RECEIPTS_QTY,
         NVL(AGGREGATED_MTT.PO_RECEIPTS_QTY_VALUE,0)                          PO_RECEIPTS_QTY_VALUE,
         NVL(AGGREGATED_MTT.MISC_RECEIPTS_QTY,0)                              MISC_RECEIPTS_QTY,
         NVL(AGGREGATED_MTT.MISC_RECEIPTS_QTY_VALUE,0)                          MISC_RECEIPTS_QTY_VALUE,
         NVL(AGGREGATED_MTT.WORKORDER_QTY,0)                              WORKORDER_QTY,
         NVL(AGGREGATED_MTT.WorkOrder_QTY_VALUE,0)                          WorkOrder_QTY_VALUE,
    NVL(AGGREGATED_MTT.SALES_SHIPMENT_QTY,0)                         SALES_SHIPMENT_QTY,
         NVL(AGGREGATED_MTT.SALES_SHIPMENT_QTY_VALUE,0)                         SALES_SHIPMENT_QTY_VALUE,
         NVL(AGGREGATED_MTT.MISC_ISSUE_QTY,0)                              MISC_ISSUE_QTY,
         NVL(AGGREGATED_MTT.MISC_ISSUE_QTY_VALUE,0)                          MISC_ISSUE_QTY_VALUE,
         NVL(AGGREGATED_MTT.TRANSFER_QTY,0)                              TRANSFER_QTY,
         NVL(AGGREGATED_MTT.TRANSFER_QTY_VALUE,0)                         TRANSFER_QTY_VALUE,
         NVL(AGGREGATED_MTT.REVAL_VALUE,0)                              REVAL_VALUE,
              (MOQ_OPen_BAL(All_Item_subinv.SUBINVENTORY_CODE,
              MSI.ORGANIZATION_ID,
    MSI.INVENTORY_ITEM_ID,
    '&P_GL_PERIOD_NAME_FROM')
              +
              nvl(AGGREGATED_MTT.PO_RECEIPTS_QTY,0)      +
              nvl(AGGREGATED_MTT.MISC_RECEIPTS_QTY,0)     +
              nvl(AGGREGATED_MTT.WORKORDER_QTY,0)     +
              nvl(AGGREGATED_MTT.SALES_SHIPMENT_QTY,0)     +
              nvl(AGGREGATED_MTT.MISC_ISSUE_QTY,0)          +
              nvl(AGGREGATED_MTT.TRANSFER_QTY,0)     )                ON_HAND_QTY,
    ((MOQ_OPen_BAL_VAL( All_Item_subinv.SUBINVENTORY_CODE,MSI.ORGANIZATION_ID,MSI.INVENTORY_ITEM_ID,'&P_GL_PERIOD_NAME_FROM'))
    +(nvl( AGGREGATED_MTT.PO_RECEIPTS_QTY_VALUE,0) )     
    +(nvl( AGGREGATED_MTT.MISC_RECEIPTS_QTY_VALUE,0) )
    +(nvl( AGGREGATED_MTT.WorkOrder_QTY_VALUE,0) )
    +(nvl( AGGREGATED_MTT.sALES_SHIPMENT_QTY_VALUE,0) )
    +(nvl( AGGREGATED_MTT.MISC_ISSUE_QTY_VALUE,0) )
    +(nvl( AGGREGATED_MTT.TRANSFER_QTY_VALUE,0) )
    +nvl( AGGREGATED_MTT.REVAL_VALUE,0))                               ON_HAND_QTY_VALUE -- column alias
    FROM
    -- In line View for MSI
    (select distinct MMT.ORGANIZATION_ID, MMT.INVENTORY_ITEM_ID, MMT.SUBINVENTORY_CODE
    From MTL_MATERIAL_TRANSACTIONS      MMT,
    ORG_ORGANIZATION_DEFINITIONS      OOD,
    MTL_ONHAND_QUANTITIES moq
    where
         OOD.organization_code           = '&P_INV_ORG_CODE' --'HS' --'&P_INV_ORG_CODE'
    AND OOD.inventory_enabled_flag = 'Y'
    AND OOD.operating_unit          = fnd_profile.value('ORG_ID') --83 --fnd_profile.value('ORG_ID')
    AND OOD.SET_OF_BOOKS_ID          = fnd_profile.value('GL_SET_OF_BKS_ID') --1 --fnd_profile.value('GL_SET_OF_BKS_ID')
    AND     MMT.ORGANIZATION_ID          = OOD.organization_id
    AND MMT.SUBINVENTORY_CODE          = NVL('&P_SUBINVENTORY_CODE', MMT.SUBINVENTORY_CODE)
    and MMT.ORGANIZATION_ID      = MOQ.ORGANIZATION_ID -- to eliminate consigend items:2007Jan04:PKB
    and MMT.INVENTORY_ITEM_ID = MOQ.INVENTORY_ITEM_ID --,,
    and MMT.SUBINVENTORY_CODE = MOQ.SUBINVENTORY_CODE --,,
    UNION
    Select distinct      MOQ.ORGANIZATION_ID,      MOQ.INVENTORY_ITEM_ID,     MOQ.SUBINVENTORY_CODE
    from      MTL_ONHAND_QUANTITIES                MOQ,
         ORG_ORGANIZATION_DEFINITIONS           OOD2
    WHERE
         OOD2.organization_code           = '&P_INV_ORG_CODE' --'HS' --'&P_INV_ORG_CODE'
    AND OOD2.inventory_enabled_flag      = 'Y'
    AND OOD2.operating_unit          = fnd_profile.value('ORG_ID') --83 --fnd_profile.value('ORG_ID')
    AND OOD2.SET_OF_BOOKS_ID          = fnd_profile.value('GL_SET_OF_BKS_ID') --1 --fnd_profile.value('GL_SET_OF_BKS_ID')
    AND moq.ORGANIZATION_ID          = OOD2.organization_id
    AND moq.SUBINVENTORY_CODE          = NVL('&P_SUBINVENTORY_CODE', moq.SUBINVENTORY_CODE)
    ) ALL_Item_SUBInv,
    MTL_SYSTEM_ITEMS_B MSI,
    Mtl_System_Items_Vl MSIV,
    (SELECT
         MMT.ORGANIZATION_ID ORGANIZATION_ID,
    MMT.INVENTORY_ITEM_ID          INVENTORY_ITEM_ID,
    MMT.SUBINVENTORY_CODE          SUBINVENTORY_CODE,
    -- PO RECEIPTS.
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Purchase order')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('PO Receipt','PO Rcpt Adjust','Return to Vendor')
    THEN
                   --MMT.TRANSACTION_QUANTITY
                   mmt.primary_quantity
    ELSE 0
    END
    ELSE 0
    END ) PO_RECEIPTS_QTY,
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Purchase order')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('PO Receipt','PO Rcpt Adjust','Return to Vendor')
    THEN
                   NVL(MMT.ACTUAL_COST,0)* nvl(mmt.primary_quantity,0)
                   MMT.TRANSACTION_COST * NVL(AVG_ITEM_COST.ITEM_COST,0)
    ELSE 0
    END
    ELSE 0
    END ) PO_RECEIPTS_QTY_VALUE,
    -- MISC RECEIPTS.
    SUM( CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Account','Inventory')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Account receipt','Miscellaneous receipt')
    THEN
                   --MMT.TRANSACTION_QUANTITY
                   mmt.primary_quantity
    ELSE 0
    END
    ELSE 0
    END ) MISC_RECEIPTS_QTY,
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Account', 'Inventory')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Account receipt','Miscellaneous receipt')
    THEN
                   NVL(MMT.ACTUAL_COST,0) * nvl(mmt.primary_quantity,0)
                        MMT.TRANSACTION_COST NVL(AVG_ITEM_COST.ITEM_COST,0)
    ELSE 0
    END
    ELSE 0
    END ) MISC_RECEIPTS_QTY_VALUE,
    -- WorkOrder Qty and S$
    SUM( CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Job or Schedule')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('WIP Assembly Return','WIP Assy Completion','WIP component issue','WIP Component Return')
    THEN
                   --MMT.TRANSACTION_QUANTITY
                   mmt.primary_quantity
    ELSE 0
    END
    ELSE 0
    END ) WORKORDER_QTY,
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Job or Schedule')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('WIP Assembly Return','WIP Assy Completion','WIP component issue','WIP Component Return')
    THEN
                   NVL(MMT.ACTUAL_COST,0) * nvl(mmt.primary_quantity,0)
                        MMT.TRANSACTION_COST NVL(AVG_ITEM_COST.ITEM_COST,0)
    ELSE 0
    END
    ELSE 0
    END ) WorkOrder_QTY_VALUE,
    -- Sales Shipment
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ( 'Sales order','RMA')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Sales order issue','Sales Order Pick','RMA Return','RMA Receipt')
    THEN
                   --MMT.TRANSACTION_QUANTITY
                   mmt.primary_quantity
    ELSE 0
    END
    ELSE 0
    END ) SALES_SHIPMENT_QTY,
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ( 'Sales order','RMA')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Sales order issue','Sales Order Pick','RMA Return','RMA Receipt')
    THEN
                   NVL(MMT.ACTUAL_COST,0) * nvl(mmt.primary_quantity,0)
                   MMT.TRANSACTION_COST NVL(AVG_ITEM_COST.ITEM_COST,0)
    ELSE 0
    END
    ELSE 0
    END ) SALES_SHIPMENT_QTY_VALUE,
    -- MISC ISSUE
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Inventory','Account' )
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Miscellaneous issue','Account issue')
    THEN
                   --MMT.TRANSACTION_QUANTITY
                   mmt.primary_quantity
    ELSE 0
    END
    ELSE 0
    END ) MISC_ISSUE_QTY,
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ('Inventory','Account' )
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Miscellaneous issue','Account issue')
    THEN
                   NVL(MMT.ACTUAL_COST,0) * nvl(mmt.primary_quantity,0)
                   MMT.TRANSACTION_COST NVL(AVG_ITEM_COST.ITEM_COST,0)
    ELSE 0
    END
    ELSE 0
    END ) MISC_ISSUE_QTY_VALUE,
    -- Transfers
    SUM( CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ( 'Inventory' )
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Subinventory Transfer')
    THEN
                   --MMT.TRANSACTION_QUANTITY
                   mmt.primary_quantity
    ELSE 0
    END
    ELSE 0
    END ) TRANSFER_QTY,
    SUM( CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ( 'Inventory')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Subinventory Transfer')
    THEN      NVL(MMT.ACTUAL_COST,0) * nvl(mmt.primary_quantity,0)
                   MMT.TRANSACTION_COST NVL(AVG_ITEM_COST.ITEM_COST,0)
    ELSE 0
    END
    ELSE 0
    END ) TRANSFER_QTY_VALUE,
    -- Adjustment to Cost (Revaluation)
    SUM(CASE
         WHEN MTST.TRANSACTION_SOURCE_TYPE_NAME in
    ( 'Standard cost update','Job or Schedule')
         THEN
              CASE
              WHEN MTT.TRANSACTION_TYPE_NAME in
    ('Standard cost update','WIP cost update')
    THEN
                   --2007JAN03:PKB MMT.TRANSACTION_COST
    MMT.TRANSACTION_COST* MMT.QUANTITY_ADJUSTED
    ELSE 0
    END
    ELSE 0
    END ) REVAL_VALUE
         FROM
         MTL_MATERIAL_TRANSACTIONS                MMT,
         --GL_PERIODS                          GP,
         MTL_TRANSACTION_TYPES                MTT,
         MTL_TXN_SOURCE_TYPES                    MTST,
    ORG_ORGANIZATION_DEFINITIONS                OOD
    WHERE     
    OOD.organization_code           = '&P_INV_ORG_CODE' --'HS' --'&P_INV_ORG_CODE'
    AND OOD.inventory_enabled_flag = 'Y'
    AND OOD.operating_unit          = fnd_profile.value('ORG_ID') --83 --fnd_profile.value('ORG_ID')
    AND OOD.SET_OF_BOOKS_ID          = fnd_profile.value('GL_SET_OF_BKS_ID') --1 --fnd_profile.value('GL_SET_OF_BKS_ID')
    AND     MMT.ORGANIZATION_ID          = OOD.organization_id
    AND MMT.SUBINVENTORY_CODE          = NVL('&P_SUBINVENTORY_CODE', MMT.SUBINVENTORY_CODE)
    -- AND GP.PERIOD_SET_NAME          = 'HF-ACCTG-CAL' -- Hardcoded PKB
    AND
         (     (EXISTS
         ( select GP.Period_name
    FROM GL_PERIODS GP
    where TO_DATE(TO_CHAR(MMT.TRANSACTION_DATE,'DD-MM-YYYY'),'DD-MM-YYYY')
                   >= TO_DATE(TO_CHAR(GP.START_DATE,'DD-MM-YYYY'),'DD-MM-YYYY') --Between GP.START_DATE and GP.END_DATE
         AND GP.PERIOD_NAME      = '&P_GL_PERIOD_NAME_FROM'
              and GP.PERIOD_SET_NAME          = 'HF-ACCTG-CAL'
    AND NVL('&P_GL_PERIOD_NAME_FROM','ALL')      != 'ALL'
    OR (NVL('&P_GL_PERIOD_NAME_FROM' ,'ALL')               = 'ALL')
    AND
         (     (EXISTS
         ( select GP.Period_name
    FROM GL_PERIODS GP
    where TO_DATE(TO_CHAR(MMT.TRANSACTION_DATE,'DD-MM-YYYY'),'DD-MM-YYYY')
                   <= TO_DATE(TO_CHAR(GP.END_DATE,'DD-MM-YYYY'),'DD-MM-YYYY')
         AND GP.PERIOD_NAME      = '&P_GL_PERIOD_NAME_TO'
              and GP.PERIOD_SET_NAME          = 'HF-ACCTG-CAL'
    AND NVL('&P_GL_PERIOD_NAME_TO','ALL')      != 'ALL'
    OR (NVL('&P_GL_PERIOD_NAME_TO','ALL')               = 'ALL')
    AND MMT.TRANSACTION_TYPE_ID          = MTT.TRANSACTION_TYPE_ID
    AND MMT.TRANSACTION_SOURCE_TYPE_ID          = MTST.TRANSACTION_SOURCE_TYPE_ID
    group by
         MMT.ORGANIZATION_ID,
    MMT.INVENTORY_ITEM_ID,
    MMT.SUBINVENTORY_CODE
    )                    AGGREGATED_MTT,
    -- Inline Table for AVG_ITEM_COSTs 2nd time,
    (SELECT
         CIC.ORGANIZATION_ID     ORGANIZATION_ID,
    CIC.INVENTORY_ITEM_ID INVENTORY_ITEM_ID,
    CIC.COST_TYPE_ID COST_TYPE_ID,
    CCT.COST_TYPE     COST_TYPE,
    NVL(CIC.ITEM_COST ,0) ITEM_COST
    FROM
         CST_ITEM_COSTS           CIC,
         CST_COST_TYPES           ccT,
    ORG_ORGANIZATION_DEFINITIONS                OOD1
    WHERE
         CCT.COST_TYPE_ID           = CIC.COST_TYPE_ID
         /*AND (
         (CCT.COST_TYPE          = 'Average' and '&P_INV_ORG_CODE' = 'HS')
              OR
    (CCT.COST_TYPE          = 'Frozen' and '&P_INV_ORG_CODE' = 'HL')
    AND CCT.COST_TYPE_ID =
              ( select      m.primary_cost_method
              from      mtl_parameters m
    where      m.organization_id      = OOD1.ORGANIZATION_ID
         and OOD1.organization_code      = '&P_INV_ORG_CODE' --'HS' --'&P_INV_ORG_CODE'
         AND OOD1.inventory_enabled_flag = 'Y'
         AND OOD1.operating_unit          = fnd_profile.value('ORG_ID') 83 --fnd_profile.value('ORG_ID')
         AND OOD1.SET_OF_BOOKS_ID     = fnd_profile.value('GL_SET_OF_BKS_ID') 1 --fnd_profile.value('GL_SET_OF_BKS_ID')
         AND cic.ORGANIZATION_ID          = OOD1.organization_id
         )                               AVG_ITEM_COST1
    WHERE
    AGGREGATED_MTT.ORGANIZATION_ID(+)          = All_Item_subinv.ORGANIZATION_ID
    AND AGGREGATED_MTT.INVENTORY_ITEM_ID(+) = All_Item_subinv.INVENTORY_ITEM_ID
    AND AGGREGATED_MTT.subinventory_code(+)     = All_Item_subinv.subinventory_code
    AND All_Item_subinv.ORGANIZATION_ID          = MSI.ORGANIZATION_ID
    AND ALL_Item_SUBInv.INVENTORY_ITEM_ID          = MSI.INVENTORY_ITEM_ID
    AND AVG_ITEM_COST1.ORGANIZATION_ID(+)     = MSI.ORGANIZATION_ID
    AND AVG_ITEM_COST1.INVENTORY_ITEM_ID(+)      = MSI.INVENTORY_ITEM_ID
    and msi.ROWID                         = MSIV.ROW_ID
    and msi.ORGANIZATION_ID                    = fnd_profile.value('ORG_ID') --83 --fnd_profile.value('ORG_ID')
    and sysdate between NVL(msi.start_date_active,sysdate -1 )
    and NVL(msi.end_date_active,sysdate+1)
    Order BY
         MSI.SEGMENT1,
    MSI.DESCRIPTION     ,
    All_Item_subinv.SUBINVENTORY_CODE
    /

    Hi Barry and All: This indeed is a bug in SQLPLUS ! Version 9.2.0.1.0 as well.
    Thanks for asking the version no of SQLLPLUs. I was working thru Oracle Apps 11i.10 (concurrent program). So I did not get any message from SQLPLUS.
    I tested independently in SQLPLUS and got the message! Thanks Oracle!!!
    The Bug is in the name of COLUMN NAME or ALIAS Name. I renamed the columns from ON_HAND_QTY and ON_HAND_VALUE to CLOSE_QTY and CLOSE_QTY_VALUE. It worked!! The string 'ON' in the column/alias name is taken as 'ON' keyword/clause for 'compute' statement for SQLPLUS.
    Here is the message from SQLPLUS
    " SP2-0084: COMPUTE ON keyword specified already"
    See these two line and compare
    --compute SUM label 'Total $S: ' of SALARY ON_SALARY  on report;
    compute SUM label 'Total $S: ' of SALARY on report;
    Thanks - Pradip
    Here is the sample code to simulate. (not Big :))
    WHENEVER SQLERROR EXIT FAILURE
    CLEAR computes
    CLEAR BREAKS
    clear column
    TTITLE OFF
    BTITLE OFF
    set verify off
    set feedback off
    set echo off
    set heading off
    set termout off
    set linesize 203
    set pagesize 30
    set termout on
    SET UNDERLINE =
    set heading on
    COLUMN SALARY               FORMAT 9,999,990      Heading 'SALARY'           
    COLUMN ON_SALARY          format 9,999,990 Heading 'ON Salary'
    column ENAME format a20 heading 'NAME'
    COLUMN EMPNO Format 99999 HEADING 'EMPNO'
    BREAK on REPORT skip 3;
    --compute SUM label 'Total $S: ' of SALARY ON_SALARY  on report;
    compute SUM label 'Total $S: ' of SALARY on report;
    WHENEVER SQLERROR EXIT FAILURE
    select empno, ename, sal SALARY, sal ON_SALARY from scott.emp;

  • CC Complete: Resub | bugs & questions

    I just changed my password after the debacle a few months ago and changed my payment info after needing a new VISA and being late with payments...
    After rejoining CC Complete...
    1) It updated a few apps without asking me, like Photoshop CC.
    I had a warning some time ago from a dependable source for an extension or plugin I'm using to NOT update it for now, so "thanks"...
    Maybe it takes a few hours/days for the CC app to update again....? But...
    2) The (updated) CC Cloud / App Manager does not recognise I have Lightroom 5 (5.0) already installed and is showing INSTALL instead of UPDATE for 5.3.
    Don't tell me I have to uninstall ALL programs and reinstall, please? 
    If you recommend that, do tell me...
    It doesn't seem so at the moment, but maybe I have to for Lightroom?
    I'm gonna start with the manual update and see what gives...
    Thank you
    Message was edited by: Signfeld
    Solved 2 of my questions.

    By installing LR 5.3, CC now recognizes the install
    But at the same time I now noticed PS CS6 was also updated BEHIND MY BACK

  • Progress PDA Bug - Question for NI

    Hi,
    Any idea when this problem will be fixed (below)? I was hoping it would be in this quarter's Developer Suite update but the PDA module is still at version 8.6.
    Regards
    Simon
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: 11 September 2008 14:17
    Subject: RE: (Reference#7210373) Standard | DevSuite Support E-Mail:
    LabVIEW
    PDA 8.6 Executable Crash
    Note:  Your reference number is included in the Subject field of this message.  It is very important that you do not remove or modify this reference number, or your message may be returned to you.
    Hi Simon,
    I have created a corrective action request with R&D, #125795. I will let you know once I hear back from them.
    Best wishes,
    Adnan Zafar
    National Instruments
    Applications Engineering
    www.ni.com/support

    Dear Simon,
    On behalf on national Instruments I apologise for this troublesome bug's inclusion in LabVIEW 8.6, and we thank you for bringing it to our attention.
    The corrective action request (CAR) my colleague made on your behalf has been accepted by R&D. This quarter's Dev Suite was what we call a "minor software release" - 8.6.1 being a revision of the 8.6's architecture. The issue has been forecast to be fixed in the next major LabVIEW release. Unfortunately, as we have yet to set official release dates, I am unable to speculate on when this will be available to you.
    I apologise I can not help you further. However, I assure you that the R&D team in the States are working on resolving the issue.
    Best wishes and kind regards,
    Rich R
    Applications Engineer
    National Instruments UK & Ireland

  • [BUG & Question] DC Version 2015.007.20033 - Event ID 16 & AMAZON

    1) Every time the program closes it is entering Event ID 16 into the windows event log with the following message:
    "The description for Event ID 16 from source Adobe Reader cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:"
    2) What is rdrcef.exe and why is it continuously trying to contact amazon?
    C:\program files (x86)\adobe\acrobat reader dc\reader\acrocef\rdrcef.exe

    Happens to me too:
    System
    Provider
    [ Name]
    Adobe Reader
    EventID
    16
    [ Qualifiers]
    49168
    Level
    2
    Task
    16
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2015-04-30T04:20:26.000000000Z
    EventRecordID
    9673
    Channel
    Application
    Computer
    Security
    EventData

  • Tree control bug for vertical scrollbar

    Dear all:
    I meet a problem with  tree control  vertical scrollbar.Pls check the picture
    If set the rows of the properties of the Tree control is a number, also set the vertical scroll bar is visible.
    Then if i set the height  of Tree is unchangeable, then set the Tree childs rows are  much more than the height, The problem is that  the vertical scroll bar doesn't work. The height is increase than what i have set ,Maybe it is a bug? or not.
    Anybody find this?
    Attachments:
    Image000011.jpg ‏66 KB

    Hello,
    I works fine with me.
    But I added my test as attachment, so you can see if you maybe doing something else.
    Kind regards,
    André
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)
    Attachments:
    Tree control bug question.vi ‏20 KB

  • Bug? HTMLDB changing formats when no_translate setting!

    This question relates to version 1.6.1.00.02
    I have my database,apache and DAD set to NLS_DATE_FORMAT='MM/DD/YYYY'
    for the DAD, It is done this way...
    dad calls this procedure for each connect (via "PlsqlBeforeProcedure" in dads.conf):
    PROCEDURE set_dad_nls IS
    BEGIN
    DBMS_SESSION.SET_NLS('NLS_DATE_FORMAT','"MM/DD/YYYY"');
    END;
    It works and is verified if I call a procedure outside of htmldb via the URL method that just does
    begin
    htp.p(sysdate);
    end;
    it prints it in the MM/DD/YYYY format
    however inside HTMLDB, the same print: htp.p(sysdate); in a pl/sql area prints in the DD-MON-YY format.
    If I change my application attribute called:
    "Application Language Derived From"
    from "NO_NLS APPLICATION NOT TRANSLATED" to "USE_APPLICATION_PRIMARY_LAUNGAGUE"
    Then I get the date inside HTMLDB returned in the MM/DD/YYYY format
    However, the first setting is telling it to "not translate" yet evidently HTLMDB is translating.
    What gives? Is this a bug or a misunderstanding.
    I read this and still could not understand:
    http://www.oracle.com/technology/products/database/htmldb/howtos/howto_handle_dates.html
    In addition to the bug question (my primary question), my goal is for everything to default to MM/DD/YYYY. I have many apps, can I set MM/DD/YYYY in one place for all of HTMLDB apps (including PL/SQL areas)...or is some other method I am not following an option.

    Meyer,
    This is not a bug.
    By default, modplsql pools database connections. Every page view in HTML DB uses one of these connections, does its stuff, and then the connection is returned to the pool.
    HTML DB sets the NLS settings (language and territory) for every page view and submission. If it did not, then your page view would "inherit" the NLS settings from some other user's previous page view.
    If your Application Language Derived From is set to "No NLS (Application not translated)", that means that HTML DB will do no processing to derive your application langauge and territory settings. But this doesn't remove the fact that you could still inherit some other user's NLS settings, so we must reset it to something. That "something" is the NLS language and territory of the database.
    The language setting of HTML DB determines how the NLS_LANGUAGE and NLS_TERRITORY will be set for a particular page view. But for all page views in HTML DB, NLS_LANGUAGE and NLS_TERRITORY must be explicitly set to something.
    For evidence of the previous bug in HTML DB where we did not properly reset these NLS settings, check out the first few comments at:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:7913917986287
    So you have at least four choices:
    1) Change the database settings. Via SQL*Plus, you can issue "show parameters nls" to see everything you can set.
    or
    2) In HTML DB, set your application primary language to some language which has territory settings corresponding to NLS_DATE_FORMAT of MM/DD/YYYY.
    or
    3) Add an application level before header process which performs your DBMS_SESSION.SET_NLS procedure
    or
    4) Add an application level substitution string, let's say called DATE_FORMAT with a value of MM/DD/YYYY, then any place you display dates (in reports, as items), set the format mask to &DATE_FORMAT. (including the trailing period).
    Hope this helps.
    Joel

  • Compatibility problem with GoLive 5.0 and Acrobat 6.0 Standard?

    Whenever I add pdf files created with Acrobat 6.0 to the GoLive 5.0 site window a question mark or the little green bug appears next to the file. The bug/question mark does not go away when I link to the file. Moreover, trying to delete it in GoLive's trash is almost impossible. No matter how many times I try, it continues to appear in Site Trash (under the Extras tab). Has anyone out there had problems with pdf files and GoLive 5.0? Thanks for the help!

    Almost all versions of Acrobat came with Distiller since version 1.0. There was a version of Acrobat Approval 5.0 that did not come with Distiller, but that wasn't really a full version of Acrobat.
    ...Mike

  • Java services

    Hi,
    recently i changed my company and had taken charge of the SAP servers in new company(employer).
    i was exposed to windows operating systems, not much on UNIX environment.
    my employer had SAP ECC 6.0 deployed on HP-UX with Oracle 10g.
    here are a few simple questions, hope you people will help me in providing information which will save precious time.
    1* How can i confirm wether SAP ECC 6.0, was with JAVA (i.e... java services are avaliable or not)?
    2* How can i start and stop JAVA services in UNIX environment ?
    3* wether ABAP+JAVA is required to access SAP by browser ?
    4* If my existing SAP ECC 6.0 deployed with out JAVA, how can deploye java ? and what is the importance of this deployment ?
    5* what is Jco ? and its setup in UNIX environment ? wether this will be installed along with installation of ECC 6.0 or do we have to deploye this seperately ?
    6* how to establish connection from webapplication to read SAP data ?
    request you to help with these bugging questions.
    in windows we can find them in MMC (all the JAVA services and ICM etc) where we can check out their status, logs and start / stop those java services.
    thanks in advance
    by
    Harika

    > 1* How can i confirm wether SAP ECC 6.0, was with JAVA (i.e... java services are avaliable or not)?
    ps -ef | grep jlaunch
    > 2* How can i start and stop JAVA services in UNIX environment ?
    Use SAPGUI and SMICM
    > 3* wether ABAP+JAVA is required to access SAP by browser ?
    ?? You can use the internal ITS if you want to display the SAPGUI. All others are scenario specific questions.
    > 4* If my existing SAP ECC 6.0 deployed with out JAVA, how can deploye java ? and what is the importance of this deployment ?
    What is your scenario? Do you need Java for a business case?
    > 5* what is Jco ? and its setup in UNIX environment ? wether this will be installed along with installation of ECC 6.0 or do we have to deploye this seperately ?
    JCo is Java connector - http://service.sap.com/connectors
    > 6* how to establish connection from webapplication to read SAP data ?
    Which webapplication?
    The question is not: When I install X what can I do with it - but rather "I have business case Y, what software do I need".
    Markus

  • Win CS5.5 RAMpreview audio troubles

    Hi
    Hopefully this isn't covered somewhere.  I had a bit of a dig, but I couldn't figure any clear search terms and so on.
    It's sort of a bug question, sort of a request for advice.
    I''ve got this fairly large project I just moved over from AE7 (!) on a different machine.
    I used RAMpreview to check the edit and audio sync periodically, as you do, and it was slow but fine.  I tried the same thing in CS5.5 and it had what my mum would call a pink fit.  Sometimes even crashing.  Mostly it would grind away for minutes on end, indicating only 'Background Process Status: Loading Projects...", before it even started rendering the frames.  Then the preview would seem very confused about which frames it had rendered (green and blue frame cache indicators jumping around and disappearing altogether), the playback would be choppy if at all and the whole program becomes slow-to-unresponsive.
    By the way, Previewing is fine.  It's only RAM preview with audio that this happens.
    The first thing is, turning off multi frame rendering solves the problem and restores the RAMpreview functionality I know and love.  So that's cool.  But I'm still curious as to what's going wrong. I have checked the memory settings guides and reducing the number of cores to use down to two (Quad core Intel i5 system) and adjusting the RAM balance did have an effect.  But the long cruching before rendering and the halting unresponsiveness was still present to some degree.  No multiframe at all is still the most reliable by far.
    Secondly, the size of the project is probably important.  This is a big, messy project. 1080 with lots of media, lots of effects, many nested comps. I just did a much simpler project that had audio synching without any hassles using all four cores (which I'm probably better off not doing, but it worked is the thing).  So it's just this project that the problem has appeared in so far.
    Is there anything I can or should do about it, some box I haven't ticked somewhere perhaps?
    If there's no particular fix, working with multi-frame switched off and then switching it back on for full rendering seems like the thing to do.  Would you agree?
    My system is an Intel i5 quad core, running Windows 7 premium with 8gb
    thanks

    Sorry about the delay.
    Todd:  Yes, disabling the audio (using those two core settings I mentioned) makes it actually start rendering a lot quicker (and the rendering is noticeably faster with multiframe switched on).  There is a still a period where the program seems to halt while multiframe rendering, I assume, boots itself up.  But I suppose that's normal.  RAMpreview rendering with multiframe switched off begins almost instantly, but it wouldn't have to do any special reorganisation of data in that instance I guess.
    When it did manage to render in multiframe with the sound on, the sound and the picture were often jittery and out of synch.  It does seem to be the audio it's having trouble with, yes.
    If it's a known problem then I guess it can't be helped much.
    Mylenium: Hmm.  I'm not sure I read you right, but for the sake of it I'll say there aren't any effects on this audio track.  The project audio settings are the same as the file itself so it shouldn't be being resampled.  A decent amount of my footage does still have embedded audio but it should be switched off and all the layers in the master timeline have their audio switched off, so hopefully it's being ignored even if any is on by mistake.  That may not be how it works however.
    My recent smaller project used pretty much the same working set up and didn't have the same problems.  So I think if it was doing the same things at that point, the smaller project footprint meant it didn't hurt RAMpreviewing as much.  Unfortunately I don't have an intermediate sized project to test with at the moment.

  • Application switching on a shared screen

    I use Back to My Mac to share the screen of my iMac at home, and I am often frustrated with the inability to easily switch between application on the remote screen. I always use Cmd-Tab on my local computer, but in Screen Sharing this generally just brings me to the switcher on my local computer.
    Strangely and inexplicably, however, I occasionally notice that Cmd-Tab switches between apps on the REMOTE computer instead. I have yet to work out why this happens; it's the classic "feature or bug" question. I'm HOPING that it is a feature, and I'm just hitting a key combination for a shortcut of which I'm unaware.
    SO, my questions are:
    Is it possible to use Cmd-Tab to switch between apps on the remote computer by using some preference or keyboard shortcut,
    and if not,
    Is there another way to easily switch between programs besides clicking the dock icon, which can be frustrating on a slow connection (it's like playing a game... which icon am I gonna get when I click...?). Admittedly, I have a LOT of icons in the dock, and use the Genie animation to expand them as I roll over the dock icons.
    Thanks,
    Ric

    It depends on which application has the current focus when you CMD Tab. It's easy to click on the local desktop which switches focus to the local finder still leaving the remote screen apparently on top. In this case the CMD tab switches locally. Anytime the Screensharing app has focus it should switch the remote machine.
    Regards,
    Captfred

  • Cisco Network Assistant errors

    Hi. I'm hoping someone can help me understand some of the errors I've been receiving with CNA version 5.8.8.1. It seems to be working fine with the 2960 Catalyst switch.
    But I see this  Java error "The launching request for Monitor > Event Notification is not supported" and Unsupported Device with the 837 router.
    An older version CNA 5.8.2 can see the 837 no problem.
    Also, just out of curiosity, why is the 2960XM router supported but not the 2960?
    And lastly, is there an alternative software package that provides the same functionality as CNA that would maybe support all of my devices?
    Thank you very much for any help/info.

    I don't have an answer for the bug question but I know the CNA developers watch the Network Management forum. You may have better luck moving your question over there. (You can do this from the actions tile in the top right of this discussion thread.)
    Re an alternative product, There aren't any free ones that will do a better job as far as I know. Cisco's Prime LMS has much more functionality but you need to pay for it. Other 3rd party products have lots of strengths as well but you need to evaluate them against your particular requirements to make an informed decision,

  • Getting Media into Premiere CS3 Issue

    I have several video sources. I have a Sony digital camcorder that produces MPG files that play well with Windows media player. I have a DVD recorder that I can user to convert my analogue videos to DVDs resulting in the usual VOB files. I have a standalone DVD burner that can do the same thing, accept analogue video input and and produce a finished DVD. I have a built in TV tuner with a VCR installed that allows me to input from video tape (VHS and VHSc).
    I've used all of these sources to great success with Premiere Elements for a few years. In the summer I finally upgraded to Premiere Pro CS3 and I've had nothing but trouble since.
    MPG files from my digital camcorder come into Premiere Pro without audio. When I sought support from Adobe the only answer I got was that I didn't set things up correctly, they didn't bother to say what might not be set up correctly. Interestingly, when I import exactly the same file into Encore I have a lovely audio track but a completely distorted video track. It seems that the two programs can't agree on what's wrong with an MPG file that plays perfectly in everything else including Permiere Elements.
    VOB files that come from both of my DVD sources cannot be imported to Premeire at all. the import command doesn't even list them as a legitimate file. When I wrote Adobe for assistance I was simply told that Premiere Pro does not support VOB files even though they actually list these as legitimate files for import.
    As to my TV tuner, Premiere does not recognise this as a device and nothing else that came with Premiere recognizes that device either. Asking for help was useless, I'm told the device is simply not supported.
    Of course I had thought there might be a bug or something so I checked the updates and sure enough I ended up downloading 80 MB of updates but none of them fixed any of these isseus. There have been no updates since. I suspect there also won't be any more updates anyway since they've now announced CS4. Also in keeping with the bug question, I searched the literature and the knowledge base but nothing turned up a solution.
    So ... I find myself with an allegedly advanced and sophisticated classy professional video editor but with nothing to feed into it since it refuses to accept any of the files and sources I have. At the same time when I was using what is a far more primitive consumer product I had no problems using all those sources. What gives?
    To rub salt into the wounds even more, Adobe now says that it will only support CS4. Well I'm not going to upgrade something I've had for four months that refuses to work for me to begin with. And Adobe has not said that my problems would go away with an upgrade anyway so why even consider that risk? But that means as well that now I'm really stuck.
    Any suggsetions on how I can get my video sources into Premiere so that I can finally use this editor?

    Premiere Elements is remarkably functional especially considering its cost. But of course if it was really outstanding there'd be no reason to buy PPCS3. While it has a lot of functionality, there are arbitrary limits to most of the functions that forces you into the more expensive product if you want to do more than just play around.
    Having said that though, what baffles me endlessly is that it is reasonable to assume that the more expensive product, that alleges professional capabilities, has all the functionality of Elements and more. That's how it works going from Photoshop Elements to Photoshop CS3. But clearly that is not to be. What baffles me too is that I fail to see the advantage of having an editor that does not have the capability to accept material to edit.
    I have a workaround by using Premiere Elements to prepare the files for import and then getting them into PP. Alas that's time consuming and should not be necessary. However all is not lost at least it works. Perhaps some day Adobe will advertise in bold healdines that it has an awesome video editor that can actually import video material without having to first convert it using a consumer product. And no doubt they'll flog that as an incredible advance in video editing.
    This has made me aware of Adobe's attitudes towards it's user's needs and frustrations. As a result I've payed a lot more attention to the actual functionality of Adobe products and I now check this against competing products. There's no way I will own their entire creative suite now or ever. A case in point was their Sound Booth, an allegedly easier audio editor for those of us who are not into audio. Well, the way it maintains its simplicity is to allow you only one sound track. The new release, CS4 finally allows more than one track and of course Adobe flogs that as an amazing advance. Well it isn't, I've got a ten year old sudio editor that's been doing that and a lot more ten years ago.
    I've learned now that just because they have a world leader in a product like Photoshop, it does not follow that they are even half as good when it comes to other components. So with the exception of the few Adobe products I do own, I'm avoiding them for my other needs. It seems that competitive products are not as arrogant and tend to provide the needed tools. The also tend to listen to their users a lot mroe as well.
    Thankfully too I've learned this lesson quickly enough before I upgraded Photoshop too. The CS3 version works just fine. The new version (CS4) no longer has an online Help, you have to sign on to the Internet, and a few other functions like PDF presentations have been removed too. There was the odd new goodie added too but only the odd one and none justifies upgrading considering that the things removed are actually functions I use. This too I've discovered in the past couple of years, Adobe does give you new functionality but often at the cost of functions removed. So one needs to be vigilent even when considering an upgrade. They don't tell you what they remove, they only try to seduce you with new things they've added.
    If there is a better product to PPCS3 please let me know and I'll drop the Adobe product completely. In fact I'd be happy to know about any product that is an improvement over Adobe products. In the meantme though, I've got my PP working and I'm staying with CS3 for both that and Photoshop too. Thanks for your thoughts.
    Do have a super day
    ...Claus

  • "Stubru" doesn't play in rhythmbox

    Hello,
    Recently I installed gnome 3.8 and rhythmbox. I can play my entire music library without a problem and also the predefined shoutcast streams work fine. I would however like to listen to "Studio Brussel", a belgian radiostation. They offer a stream: http://mp3.streampower.be/stubru-high.mp3 . When I try to play it in rhythmbox, nothing happens. No error but also no music. I can play the stream using mplayer without a problem. When I try to play the stream on a ubuntu 13.04 installation on the same machine (dualboot) it also fails.
    The archlinux wiki page on rhythmbox advises to a.) install gstreamer0.10-base-plugins-gnomevfs, which seems obsolete now as rhythmbox uses gstreamer1 now (right?) and b.) to install the grilo and grilo-plugins packages, which I did. The stream still doesn't play. Also, it seems te me this is more to be able to browse streams (instead of play them). The stream also fails when I try to open it in totem. I would therefore suspect a problem with gstreamer, but do not know how to investigate this further.
    Now, I would like to know if anybody else can play this stream (which makes it a problem with my particular installation) and if it is a gstreamer problem, how I can investigate it further.
    Regards,
    Rolf
    PS Most other streams I try to add also won't play (but some will!). I haven't found out what is common in the streams that will or will not play. The streams that do play are ogg streams and not mp3

    Nevermind. Seems to be some upstream bug. Will just have to wait until it lands in arch I suppose. See also these Ubuntu 13.04 bug/question:
    https://bugs.launchpad.net/ubuntu/+sour … ug/1153934
    http://askubuntu.com/questions/286659/r … untu-13-04
    [edit] In the mean time you can do killall gvfsd-http to play streams
    Last edited by rolfijn (2013-05-11 08:26:23)

  • Questions, Suggestions, Bugs - results from 7-day workshop

    Last week we (AMIS that is) finished yet another JHeadstart workshop with one of our customer’s development teams. In this workshop we focused on Struts, BC4J and both JSP and UIX. (so no Toplink this time). By the way: we used JHeadstart 9.0.4.5 in conjunction with JDeveloper 9.0.4.
    Over the course of this 7 day workshop we had several discussions, most of these the result of our customer’s ambition to generate all or most of an application they had already developed manually using the Web PL/SQL Toolkit and integrated with Oracle Portal. These discussions resulted in several questions/suggestions/enhancements requests. I list them below to inspire future releases.
    Questions:
    ·     Why does JHeadstart not make use of the UIX-Struts integration (see Chapter 15 of the UIX developer’s Guide)?
    ·     How do you specify which columns/attributes in a Table Layout are sortable?
    Suggestion/Enhancement Requests:
    ·     Offer the possibility to generate Regions “Side by side” instead of always below each other
    ·     Could you provide the same kind of “nested navigation” on persistentAttribute for BC4J as you offer for Toplink, e.g. through the use of Jakarta Commons BeanUtils in DataObjectImpl.getAttribute()?
    ·     Allow Master-Detail with Detail Table-Form layout style and same page is true (at least a recipe, preferably full generation) (I do understand that having multiple Child-table-layouts with Details-buttons on the same Master-page could be an issue due to the conflicting details-events, but surely one can be arranged?)
    ·     Generation of breadcrumbs for JSP
    ·     Allow us to specify for a file upload which attribute will hold the filename; allow us to specify for download which attribute will provide the filename (for the save as dialog in the browser) and possibly the mime-type.
    ·     Allow an Alt-text property to be defined for attributes with Display Type = Image; this alt-text property can refer to another attribute.
    ·     In Jsp: Display Type displayField should generate a <bean:write> instead of a disabled <html:text> field. For domain-based attributes that are normally rendered using a pop-list (Choice), a displayField requires additional logic to display (bean:write) the meaning rather than the value
    ·     Allow the prompt to be empty (if you leave the prompt property empty, the generator will use the attribute name; you can not explictly leave it empy; the workaround is to type a single space for the prompt)
    ·     Provide a way to preview the defaults that the generator will use for properties that are not explicity set OR provide a way to explicitly set those defaults as values on the Entity Object’s attributes
    ·     Allow the Domain and Region-properties to be set through a Combo-box with a list of the available Domains and Regions
    ·     Make the private members in oracle.jheadstart.model.bc4j.handler.DataObjectImpl protected, so that a subclass can access those variables
    ·     Allow us to specify a “split prompt” , for example Weight|kg that would display as Weight …. (field) kg; make the JDG pick up split prompt from Designer and set accordingly in the VO Attribute.
    ·     Allow the definition and generation of separate prompt and hint values for Find, Table and Form-page
    ·     Provide a utility to copy VO Attribute properties between ViewObjects (or even to copy entire ViewObjects)
    ·     Documentation: provide a JDG Reference “to-from” in addition to “from-to”: it is very convenient when trying to generate an application using the JDG if you can easily find out what you have to do set in Oracle Designer in order to achieve some result in the generated application. For example: how do I generate a Table-Form layoutstyle?
    ·     Provide a shortcut to run the JDG again, with the exact same settings as the previous run; this makes incremental development using the JDG a lot more convenient; having to walk through the entire wizard for every little change in Designer is rather a pain.
    ·     Provide properties in the Group, Lookup and Region elements in the Application Structure File (editor) for recording post-generation changes
    ·     Generate Regions (minus Table Summary items) in Detail Disclosure
    ·     Provide (style)Class property on ViewObject Attributes and generate the styleClass property for UIX elements or a class property for JSPs (if the Struts tags do not cater for a Class property, you can also generate a <SPAN class=””> around the JSP items)
    ·     Provide a shortDesc or altText property for VO Attributes; these are turned into popup texts on items and can for example provide popup hints in a Table Layout; generate the UIX shortDesc property.
    ·     Provide preComment and postComment properties on VO Attributes, Groups and Regions; the values of these properties should be generated into the UIX or JSP pages as <!-- preComment value --> and <!-- postComment value -->. Not only does this allow better documentation of the generated sources, it also provides hooks for post-generation utilities.
    ·     Support displayType numberField/numberItem; this in UIX would render a right-aligned input-item
    ·     Allow specification of dateFormat at VO Attribute level (in addition to Service Element)
    ·     Switch to JSTL from the Struts tags – at least for bean:write (c:out) and all logic tags; configure new JHeadstart projects for JSTL (libraries, taglibs, web.xml etc.)
    ·     Allow multiple values to be returned from a List of Values
    ·     Allow an onBlur property on VO Attributes; this property includes a piece of JavaScript to be executed on leaving the item; the code may refer to other items in the same record. Ideally also provide other event-triggers such as onFocus, onMouseOver etc.
    Bugs?? We ran into some issues that may indicate bugs
    ·     The Master-context in UIX pages for Detail Group, Table-Form (same page false) is missing
    ·     Master context in JSP voor Detail Group, Form page (same page false) is missing
      Watch this Topic      Copyright 2004, Oracle Corporation. All rights reserved. About OTN I Contact Us I About Oracle I Legal Notices and Terms of Use I ·     A ViewObject Attribute with displayType File Upload seems to result in a html:file element that pastes the contents of the file into the HTML Page: <input type="file" name="PublisherLogo" maxlength="100" size="30" value="ÿØÿà JFIF H H ÿÛ C ? $.&#39; &quot;,# (7),01444&#39;9=82&lt;.342ÿÛ C etc It would seem that the value attribute of the <html:file> element should explicitly be set to an empty string
    ·     (I am not absolutely certain that this is really the case, but we have seen this behavior several times) The JDG seems to generate a faulty BC4J Design for JDeveloper 9.0.4: when running the JDG for the second time for a Module, a second, similar ViewLink is created where the JDG should overwrite a previously created one. In the BC4J Tester we could still see the data, but in the generated application, we could not find the children of the masters through this duplicated ViewLink. Removing the second viewlink did not solve the problem. Creating the ViewObjects and ViewLinks from scratch in Jdeveloper (i.e. not through the JDG) worked fine.

    In the meantime, I can answer to your questions:
    · Why does JHeadstart not make use of the UIX-Struts integration (see Chapter 15 of the UIX developer’s Guide)?This has been done to allow the same page to be run both with Struts and MVC Framework, without needing to change the page. Using the UIX-Struts integration would have made the pages 'controller aware'.
    · How do you specify which columns/attributes in a Table Layout are sortable?As far as generation is concerned, you can only specify the whole table to be sortable. In case of UIX you can post-gen modify the <sortableHeader> tag of each column separately. In case of JSP you can remove the <a href> tag for each column that you do not want to sort on.
    Jan Kettenis
    JHeadstart Team

Maybe you are looking for

  • Error in updating Chinese and Russian characters

    Hello Gurus, I am Working in oracle 10g R2/Solaris. I am try to update one of my customer table which has Chinese and Russian(basically non-english letters) etc., I have prepare the update statement MS-Excel. it looks correct UPDATE WEBSCHEMA.DPS_USE

  • Error in File scenario

    I am doing File->File Scenarios. There is no Recrod set also. I want to rename the file using XI. No mapping required. To rename the File name we can do the coding related to Dynamica configuration in one UDF and will map to the top node of the targe

  • ITunes freeze when on podcasts tab

    I have a problem with the latest itunes 10.2.  When i load itunes podcast tab it freezes. To sucessfully relaunch itunes, i need to delete the itunes.plist file in library/preferences directory and once i try to reload the podcast folder it freezes a

  • Event cue??

    I have an event structure with a "drag ended" event for my graph.  Everytime when the cursors of the graph (2 separate cursors on the graph) is dragged and dropped, the code within the event case will execute. If the user does two "drag ended" events

  • CS4 : Accessing points on a Curve from keyboard

    No problem in earlier versions (Control-Tab, or Control Shift Tab), unable to do so in CS4 on my MacIntel running 10.5.5. Trying to get acquainted with this version installed on an external drive on which my system is cloned. And while I'm at it, the