Stumbling and Fumbling with some List calculations . . .

Hello, taking some of our lower-end SP2013 List Development in-house and am stymied by attempting to get some aggregated sums to calculate.
I have a Custom List for tracking material leftovers to be used elsewhere in a warehouse.  These will be stored on racks and need to be very weight conscious.
Used the following Fields:   Rack # (Choice Field), Item Weight (calculated field), Used (Yes/No), Rack Weight (Total) (Calculated Field)
So, what I am looking for is a way to calculate the total weight of items on the particular rack that have "Used" set to YES (TRUE) and display in my Rack Weight (TOTAL) Field
Have tried VLookup and FOR EACH WHERE kind of logic to no avail.  Any direction would be greatly appreciated.
Thanks!

Hi,
To get the total of the "item weight", it is achievable with the OOTB feature in the List View Settings.
The solution will be like this:
1. Add some sample data in this list;
2. Create a new list view called “Rack a”, we need to make changes in the “Filter” and “Totals” settings groups like this:
Then when we switch to the view “Rack a”, it will only display the sum of the “item weight” column with “Used” value is “Yes”.
Best regards
Patrick Liang
TechNet Community Support

Similar Messages

  • Satellite Pro M10 freeze and crash with some programs

    Hi
    I have a Satellite Pro M10...
    a few weeks ago it's freeze and crash with some programs like wmpayer, messenger... I delivered it in the authorized agent and they had not detected no problem.
    Already I formatted it some times, but the problem continues.
    Some ideia of what it can be?
    Thanks

    Hello,
    Sounds to me like you could have a Motherboard problem. Formatting it takes away the chances of it being a software issue. Try taking out 1 stick of ram and testing it with that. If it continues to crash, take out that stick and try the other one. If it does it with both RAM then those are ok. HDD is not the culprit, so now it could either be processor or MB. Find a program to measure the heat of the notebook and run some heavy programs to make it overheat. If the temperature goes up and then it crashes, it could just be overheating. If it continues without overheating you either have a problematic CPU or MB. Hope this helps.

  • [8i] Need help with some workday calculations

    At the beginning of the month, I got help with a workday calculation in: [8i] Help with function with parameters (for workday calculation)
    Now, as it turns out, I was able to locate a function in the database that does what I want, however, it is much slower to use the function than to join two copies of the CALN table (Please see referenced thread for details. I can copy them to this thread if necessary.) I need to verify that the pre-existing function has 'DETERMINISTIC' in it, as I would guess that if it doesn't, it would be much slower than it could be.
    But now, I've come across a situation where I have to do multiple workday calculations in the same query--enough that I have to join 6 copies of my CALN table. I can't imagine that is at all efficient. I believe it was Frank K. who said (in the original thread) that if the function was slow, I should consider alternatives. Can anyone help me identify some of those alternatives? I'm definitely at that point now. (This query is one I'm using as the base for a report in Oracle BI, and let's just say it doesn't like my query, even though my syntax appears to be correct, and I would guess that joining 6 copies of one table is at least partly to blame for this).
    Note: I'm working with Oracle 8i

    OK, I finally have some sample data... I tried to make it thorough. I've included data in the CALN table YTD + tomorrow, so that any workday calculations using SYSDATE will work.
    CREATE TABLE caln
    (     clndr_dt     DATE          NOT NULL
    ,     clndr_yr     NUMBER
    ,     shop_day     NUMBER
    ,     shop_dt          DATE
    ,     shop_wk          NUMBER
    ,     shop_yr          NUMBER
    ,     shop_days     NUMBER
    ,     clndr_days     NUMBER
         CONSTRAINT caln_pk PRIMARY KEY (clndr_dt)
    INSERT INTO     caln
    VALUES (To_Date('12/23/2009','mm/dd/yyyy'),2009,247,To_Date('12/23/2009','mm/dd/yyyy'),51,2009,7631,10950);
    INSERT INTO     caln
    VALUES (To_Date('01/01/2010','mm/dd/yyyy'),2010,0,To_Date('12/23/2009','mm/dd/yyyy'),52,2009,7631,10959);
    INSERT INTO     caln
    VALUES (To_Date('01/02/2010','mm/dd/yyyy'),2010,0,To_Date('12/23/2009','mm/dd/yyyy'),52,2009,7631,10960);
    INSERT INTO     caln
    VALUES (To_Date('01/03/2010','mm/dd/yyyy'),2010,0,To_Date('12/23/2009','mm/dd/yyyy'),1,2010,7631,10961);
    INSERT INTO     caln
    VALUES (To_Date('01/04/2010','mm/dd/yyyy'),2010,1,To_Date('01/04/2010','mm/dd/yyyy'),1,2010,7632,10962);
    INSERT INTO     caln
    VALUES (To_Date('01/05/2010','mm/dd/yyyy'),2010,2,To_Date('01/05/2010','mm/dd/yyyy'),1,2010,7633,10963);
    INSERT INTO     caln
    VALUES (To_Date('01/06/2010','mm/dd/yyyy'),2010,3,To_Date('01/06/2010','mm/dd/yyyy'),1,2010,7634,10964);
    INSERT INTO     caln
    VALUES (To_Date('01/07/2010','mm/dd/yyyy'),2010,4,To_Date('01/07/2010','mm/dd/yyyy'),1,2010,7635,10965);
    INSERT INTO     caln
    VALUES (To_Date('01/08/2010','mm/dd/yyyy'),2010,5,To_Date('01/08/2010','mm/dd/yyyy'),1,2010,7636,10966);
    INSERT INTO     caln
    VALUES (To_Date('01/09/2010','mm/dd/yyyy'),2010,0,To_Date('01/08/2010','mm/dd/yyyy'),1,2010,7636,10967);
    INSERT INTO     caln
    VALUES (To_Date('01/10/2010','mm/dd/yyyy'),2010,0,To_Date('01/08/2010','mm/dd/yyyy'),2,2010,7636,10968);
    INSERT INTO     caln
    VALUES (To_Date('01/11/2010','mm/dd/yyyy'),2010,6,To_Date('01/11/2010','mm/dd/yyyy'),2,2010,7637,10969);
    INSERT INTO     caln
    VALUES (To_Date('01/12/2010','mm/dd/yyyy'),2010,7,To_Date('01/12/2010','mm/dd/yyyy'),2,2010,7638,10970);
    INSERT INTO     caln
    VALUES (To_Date('01/13/2010','mm/dd/yyyy'),2010,8,To_Date('01/13/2010','mm/dd/yyyy'),2,2010,7639,10971);
    INSERT INTO     caln
    VALUES (To_Date('01/14/2010','mm/dd/yyyy'),2010,9,To_Date('01/14/2010','mm/dd/yyyy'),2,2010,7640,10972);
    INSERT INTO     caln
    VALUES (To_Date('01/15/2010','mm/dd/yyyy'),2010,10,To_Date('01/15/2010','mm/dd/yyyy'),2,2010,7641,10973);
    INSERT INTO     caln
    VALUES (To_Date('01/16/2010','mm/dd/yyyy'),2010,0,To_Date('01/15/2010','mm/dd/yyyy'),2,2010,7641,10974);
    INSERT INTO     caln
    VALUES (To_Date('01/17/2010','mm/dd/yyyy'),2010,0,To_Date('01/15/2010','mm/dd/yyyy'),3,2010,7641,10975);
    INSERT INTO     caln
    VALUES (To_Date('01/18/2010','mm/dd/yyyy'),2010,11,To_Date('01/18/2010','mm/dd/yyyy'),3,2010,7642,10976);
    INSERT INTO     caln
    VALUES (To_Date('01/19/2010','mm/dd/yyyy'),2010,12,To_Date('01/19/2010','mm/dd/yyyy'),3,2010,7643,10977);
    INSERT INTO     caln
    VALUES (To_Date('01/20/2010','mm/dd/yyyy'),2010,13,To_Date('01/20/2010','mm/dd/yyyy'),3,2010,7644,10978);
    INSERT INTO     caln
    VALUES (To_Date('01/21/2010','mm/dd/yyyy'),2010,14,To_Date('01/21/2010','mm/dd/yyyy'),3,2010,7645,10979);
    INSERT INTO     caln
    VALUES (To_Date('01/22/2010','mm/dd/yyyy'),2010,15,To_Date('01/22/2010','mm/dd/yyyy'),3,2010,7646,10980);
    INSERT INTO     caln
    VALUES (To_Date('01/23/2010','mm/dd/yyyy'),2010,0,To_Date('01/22/2010','mm/dd/yyyy'),3,2010,7646,10981);
    INSERT INTO     caln
    VALUES (To_Date('01/24/2010','mm/dd/yyyy'),2010,0,To_Date('01/22/2010','mm/dd/yyyy'),4,2010,7646,10982);
    INSERT INTO     caln
    VALUES (To_Date('01/25/2010','mm/dd/yyyy'),2010,16,To_Date('01/25/2010','mm/dd/yyyy'),4,2010,7647,10983);
    INSERT INTO     caln
    VALUES (To_Date('01/26/2010','mm/dd/yyyy'),2010,17,To_Date('01/26/2010','mm/dd/yyyy'),4,2010,7648,10984);
    INSERT INTO     caln
    VALUES (To_Date('01/27/2010','mm/dd/yyyy'),2010,18,To_Date('01/27/2010','mm/dd/yyyy'),4,2010,7649,10985);
    INSERT INTO     caln
    VALUES (To_Date('01/28/2010','mm/dd/yyyy'),2010,19,To_Date('01/28/2010','mm/dd/yyyy'),4,2010,7650,10986);
    INSERT INTO     caln
    VALUES (To_Date('01/29/2010','mm/dd/yyyy'),2010,20,To_Date('01/29/2010','mm/dd/yyyy'),4,2010,7651,10987);
    INSERT INTO     caln
    VALUES (To_Date('01/30/2010','mm/dd/yyyy'),2010,0,To_Date('01/29/2010','mm/dd/yyyy'),4,2010,7651,10988);
    INSERT INTO     caln
    VALUES (To_Date('01/31/2010','mm/dd/yyyy'),2010,0,To_Date('01/29/2010','mm/dd/yyyy'),5,2010,7651,10989);
    INSERT INTO     caln
    VALUES (To_Date('02/01/2010','mm/dd/yyyy'),2010,21,To_Date('02/01/2010','mm/dd/yyyy'),5,2010,7652,10990);
    INSERT INTO     caln
    VALUES (To_Date('02/02/2010','mm/dd/yyyy'),2010,22,To_Date('02/02/2010','mm/dd/yyyy'),5,2010,7653,10991);
    INSERT INTO     caln
    VALUES (To_Date('02/03/2010','mm/dd/yyyy'),2010,23,To_Date('02/03/2010','mm/dd/yyyy'),5,2010,7654,10992);
    INSERT INTO     caln
    VALUES (To_Date('02/04/2010','mm/dd/yyyy'),2010,24,To_Date('02/04/2010','mm/dd/yyyy'),5,2010,7655,10993);
    INSERT INTO     caln
    VALUES (To_Date('02/05/2010','mm/dd/yyyy'),2010,25,To_Date('02/05/2010','mm/dd/yyyy'),5,2010,7656,10994);
    INSERT INTO     caln
    VALUES (To_Date('02/06/2010','mm/dd/yyyy'),2010,0,To_Date('02/05/2010','mm/dd/yyyy'),5,2010,7656,10995);
    INSERT INTO     caln
    VALUES (To_Date('02/07/2010','mm/dd/yyyy'),2010,0,To_Date('02/05/2010','mm/dd/yyyy'),6,2010,7656,10996);
    INSERT INTO     caln
    VALUES (To_Date('02/08/2010','mm/dd/yyyy'),2010,26,To_Date('02/08/2010','mm/dd/yyyy'),6,2010,7657,10997);
    INSERT INTO     caln
    VALUES (To_Date('02/09/2010','mm/dd/yyyy'),2010,27,To_Date('02/09/2010','mm/dd/yyyy'),6,2010,7658,10998);
    INSERT INTO     caln
    VALUES (To_Date('02/10/2010','mm/dd/yyyy'),2010,28,To_Date('02/10/2010','mm/dd/yyyy'),6,2010,7659,10999);
    INSERT INTO     caln
    VALUES (To_Date('02/11/2010','mm/dd/yyyy'),2010,29,To_Date('02/11/2010','mm/dd/yyyy'),6,2010,7660,11000);
    INSERT INTO     caln
    VALUES (To_Date('02/12/2010','mm/dd/yyyy'),2010,30,To_Date('02/12/2010','mm/dd/yyyy'),6,2010,7661,11001);
    INSERT INTO     caln
    VALUES (To_Date('02/13/2010','mm/dd/yyyy'),2010,0,To_Date('02/12/2010','mm/dd/yyyy'),6,2010,7661,11002);
    INSERT INTO     caln
    VALUES (To_Date('02/14/2010','mm/dd/yyyy'),2010,0,To_Date('02/12/2010','mm/dd/yyyy'),7,2010,7661,11003);
    INSERT INTO     caln
    VALUES (To_Date('02/15/2010','mm/dd/yyyy'),2010,31,To_Date('02/15/2010','mm/dd/yyyy'),7,2010,7662,11004);
    INSERT INTO     caln
    VALUES (To_Date('02/16/2010','mm/dd/yyyy'),2010,32,To_Date('02/16/2010','mm/dd/yyyy'),7,2010,7663,11005);
    INSERT INTO     caln
    VALUES (To_Date('02/17/2010','mm/dd/yyyy'),2010,33,To_Date('02/17/2010','mm/dd/yyyy'),7,2010,7664,11006);
    INSERT INTO     caln
    VALUES (To_Date('02/18/2010','mm/dd/yyyy'),2010,34,To_Date('02/18/2010','mm/dd/yyyy'),7,2010,7665,11007);
    INSERT INTO     caln
    VALUES (To_Date('02/19/2010','mm/dd/yyyy'),2010,35,To_Date('02/19/2010','mm/dd/yyyy'),7,2010,7666,11008);
    INSERT INTO     caln
    VALUES (To_Date('02/20/2010','mm/dd/yyyy'),2010,0,To_Date('02/19/2010','mm/dd/yyyy'),7,2010,7666,11009);
    CREATE TABLE ords
    (     ord_nbr          NUMBER          NOT NULL
    ,     sub_nbr          NUMBER          NOT NULL
    ,     ord_stat     VARCHAR2(2)
    ,     ord_qty          NUMBER
    ,     part_nbr     VARCHAR2(5)
         CONSTRAINT ords_pk PRIMARY KEY (ord_nbr, sub_nbr)
    INSERT INTO     ords
    VALUES (1,1,'CL',10,'PART1');
    INSERT INTO     ords
    VALUES (1,2,'CL',5,'PART1');
    INSERT INTO     ords
    VALUES (25,1,'CL',15,'PART2');
    INSERT INTO     ords
    VALUES (14,1,'OP',12,'PART3');
    INSERT INTO     ords
    VALUES (33,1,'CL',25,'PART1');
    INSERT INTO     ords
    VALUES (33,2,'CL',15,'PART1');
    INSERT INTO     ords
    VALUES (33,3,'OP',10,'PART1');
    INSERT INTO     ords
    VALUES (7,1,'PL',18,'PART2');
    INSERT INTO     ords
    VALUES (96,1,'PL',10,'PART3');
    INSERT INTO     ords
    VALUES (31,1,'CL',20,'PART2');
    CREATE TABLE oops
    (     ord_nbr          NUMBER          NOT NULL
    ,     sub_nbr          NUMBER          NOT NULL
    ,     op_nbr          VARCHAR2(4)     NOT NULL
    ,     mach_id          VARCHAR2(4)
    ,     oper_stat     VARCHAR2(2)
    ,     plan_start_dt     DATE
    ,     plsu          NUMBER
    ,     plrn          NUMBER
         CONSTRAINT ords_pk PRIMARY KEY (ord_nbr, sub_nbr, op_nbr)
    -- NOTE:
    -- for the orders with a status of 'CL' or 'PL' in the 'ords' table, I'm not bothering to put
    -- in more than two operations (though in reality more would be there) since they should be
    -- ignored in the final result anyway
    INSERT INTO     oops
    VALUES (1,1,'0010','123A','CL',TO_DATE('01/11/2010','mm/dd/yyyy'),2,0.2);
    INSERT INTO     oops
    VALUES (1,1,'0015','259B','CP',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.15);
    INSERT INTO     oops
    VALUES (1,2,'0010','123A','CP',TO_DATE('01/11/2010','mm/dd/yyyy'),2,0.2);
    INSERT INTO     oops
    VALUES (1,2,'0015','259B','CP',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.15);
    INSERT INTO     oops
    VALUES (25,1,'0005','123A','CP',TO_DATE('01/18/2010','mm/dd/yyyy'),2,0.25);
    INSERT INTO     oops
    VALUES (25,1,'0030','110C','CL',TO_DATE('01/19/2010','mm/dd/yyyy'),4,0.1);
    INSERT INTO     oops
    VALUES (14,1,'0010','127A','CP',TO_DATE('01/11/2010','mm/dd/yyyy'),2,0.25);
    INSERT INTO     oops
    VALUES (14,1,'0025','110C','CL',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.1);
    INSERT INTO     oops
    VALUES (14,1,'0040','050C','CP',TO_DATE('01/13/2010','mm/dd/yyyy'),1.3,0.15);
    INSERT INTO     oops
    VALUES (14,1,'0050','220B','WK',TO_DATE('01/14/2010','mm/dd/yyyy'),4,0.25);
    INSERT INTO     oops
    VALUES (14,1,'0065','242B','AV',TO_DATE('01/18/2010','mm/dd/yyyy'),1.5,0.1);
    INSERT INTO     oops
    VALUES (14,1,'0067','150G','NA',TO_DATE('01/19/2010','mm/dd/yyyy'),2,0.1);
    INSERT INTO     oops
    VALUES (14,1,'0100','250G','NA',TO_DATE('01/20/2010','mm/dd/yyyy'),2.1,0.2);
    INSERT INTO     oops
    VALUES (33,1,'0010','123A','CL',TO_DATE('01/11/2010','mm/dd/yyyy'),1.9,0.2);
    INSERT INTO     oops
    VALUES (33,1,'0015','259B','CP',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.1);
    INSERT INTO     oops
    VALUES (33,2,'0010','123A','CL',TO_DATE('01/11/2010','mm/dd/yyyy'),1.9,0.2);
    INSERT INTO     oops
    VALUES (33,2,'0015','259B','CP',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.1);
    INSERT INTO     oops
    VALUES (33,3,'0010','123A','CL',TO_DATE('01/11/2010','mm/dd/yyyy'),1.9,0.2);
    INSERT INTO     oops
    VALUES (33,3,'0015','259B','CP',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.1);
    INSERT INTO     oops
    VALUES (33,3,'0020','220B','NA',TO_DATE('01/12/2010','mm/dd/yyyy'),1.7,0.15);
    INSERT INTO     oops
    VALUES (33,3,'0030','150G','NA',TO_DATE('01/13/2010','mm/dd/yyyy'),1.3,0.05);
    INSERT INTO     oops
    VALUES (33,3,'0055','150G','NA',TO_DATE('01/15/2010','mm/dd/yyyy'),2.1.,0.1);
    INSERT INTO     oops
    VALUES (7,1,'0005','123A','NA',TO_DATE('01/11/2010','mm/dd/yyyy'),2,0.2);
    INSERT INTO     oops
    VALUES (7,1,'0030','110C','NA',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.15);
    INSERT INTO     oops
    VALUES (96,1,'0010','127A','NA',TO_DATE('01/11/2010','mm/dd/yyyy'),2,0.25);
    INSERT INTO     oops
    VALUES (96,1,'0025','110C','NA',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.1);
    INSERT INTO     oops
    VALUES (31,1,'0005','123A','CL',TO_DATE('01/11/2010','mm/dd/yyyy'),1.9,0.2);
    INSERT INTO     oops
    VALUES (31,1,'0030','110C','CP',TO_DATE('01/12/2010','mm/dd/yyyy'),1,0.1);
    CREATE TABLE mach
    (     mach_id          VARCHAR2(4)     NOT NULL
    ,     desc_short     VARCHAR2(9)     
    ,     group          VARCHAR2(7)
         CONSTRAINT ords_pk PRIMARY KEY (mach_id)
    INSERT INTO     mach
    VALUES     ('123A','desc here','GROUPH1');
    INSERT INTO     mach
    VALUES     ('259B','desc here','GROUPH2');
    INSERT INTO     mach
    VALUES     ('110C','desc here','GROUPJ1');
    INSERT INTO     mach
    VALUES     ('050C','desc here','GROUPK2');
    INSERT INTO     mach
    VALUES     ('220B','desc here','GROUPH2');
    INSERT INTO     mach
    VALUES     ('242B','desc here','GROUPH2');
    INSERT INTO     mach
    VALUES     ('150G','desc here','GROUPL1');
    INSERT INTO     mach
    VALUES     ('250G','desc here','GROUPL2');
    INSERT INTO     mach
    VALUES     ('242B','desc here','GROUPH2');

  • Shutdown of the server and problems with some reports

    Hello,
    A fatal shutdown of the ERP server arrived. Now we have some errors and dumps for some transactions.
    Dumps examples :
    A RAISE statement in the program "CL_GUI_ALV_TREE===============CP" raised the
      exception
    condition "DP_ERROR".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Short description of exception condition:
    A RAISE statement in the program "CL_GUI_HTML_VIEWER============CP" raised the
    exception
    condition "CNTL_ERROR".
    How we can resolve these errors ? Kernel problems or other ideas ?
    Thanks a lot
    Rewards given.
    Regards,

    Hi
    Checkout for SAP notes with the Dump error such as DP_ERROR and the transaction for which dump occerred, you will get more relevant information, as program error could not be just interpreted looking at the dump.
    Still if you are unable to find the reason, raising a message with SAP would be advisable.
    Rahul

  • My macbook pro 15'' 2012 screen remained white and flickering with some colours when i started it. . Please advice

    Macbook Pro, 15'' 8gb
    I started my Mac today and the screen remained white, flickering lights with some colours. I have never had a problem with my macbook and never got any warnings that there could be a problem with my screen. Kindly advice. I do not know my serial number as i can't get any info on my laptop.
    Kindly advice,
    Thank you
    Diandra

    Hello Diandra,
    It may help to reset your Mac's SMC and PRAM.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    Reset your computer’s PRAM
    http://support.apple.com/kb/HT1379
    If the issue continues, the information detailed below can help restore functionality to your Mac's display.
    If you're using an Apple notebook, confirm the AC power cable or adapter is securely connected to the computer and the cable providing power to the display is also secure. It is always good to have your notebook connected to AC power when an external display is in use.
    Confirm display adapters are fully seated in their respective connections and that they are supported models and for the computer and display. Refer to these articles to assist you with adapter compatibility and further configuration information:
    Monitor and Display Adapter Table
    About Mini DisplayPort to HDMI adapters
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    Thunderbolt ports and displays: Frequently asked questions (FAQ)
    Remove all display cable extenders, KVM switches, or other like devices and retest to determine if the issue is resolved.
    Try unplugging the video adapter or cable and then plug it back in.
    If more than one video adapter is in use (or "daisy-chained"), troubleshoot by using only one adapter.
    Example: A mini DisplayPort to DVI adapter connected to a DVI to HDMI adapter is an unsupported configuration because there is a series of adapters in use.
    If available, try using a different display and or adapter (or use a different connector by using DVI instead of VGA, for instance).
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/en-us/HT201177
    Cheers,
    Allen

  • FCP Crash when opening log and transfer with some AVCHD footage on a card

    Hi,
    I'm using a freshly (re)installed version of FCP 7 on a brand new macbookpro loaded with 8gb ram and equipped with a small 2ghz Intel Core i7
    I get footage shot on Panasonic ag-hmr10 minicams coming on SD cards as AVCHD footage. Sometimes the files are quite big, 17gb of compressed footage.
    When I go to log and transfer, to convert the footage in apple prores, the l/t window opens, I see a preview of my footage, than the spinning beach ball of death shows up and FCP crashes every time. I've tried deleting the preferences and reinstalling the software. Still, it keeps crashing. Now the same file on a different computer equipped with FCP will be processed, slowly but surely.
    Now I know I can work around this problem by going to toast as an encoder, but I want to fix this issue so I can operate from FCP. I've seen this problem posted before but never found any good solution.
    Any suggestions?

    Have you tried setting the L&T AVCHD audio conversion prefs to plain stereo?
    Open the L&T window.
    Click on the gear icon towards the upper center of the frame.
    Select "Plain Stereo" For the AVCHD plugin.
    MtD

  • How to fetch the data from a pl/sql table and varray, with some example

    I want to fetch the data using a cursor from Pl/sql table and varry and I want to update the data.
    Please provide me some example.

    PL/SQL Table  - please note that, right term is Associative Array.
    Presumably you are referring to the 'often heated' back-and-forth that sometimes goes on in the forums when people refer to ANY PL/SQL type using a term with the word 'table' in it?
    Curious that you then show an example of a nested table!
    type emp_tab is table of employees%rowtype;
    The 'right term' for that is 'nested table'. The following would be an 'associative array' or 'index-by table'
    type emp_tab is table of employees%rowtype INDEX BY PLS_INTEGER;
    Those used to be called 'PL/SQL tables' or 'index-by tables' but 'associative array' is the current term used.
    Associative Arrays
    An associative array (formerly called PL/SQL table or index-by table) is a set of key-value pairs. Each key is a unique index, used to locate the associated value with the syntax variable_name(index).
    The data type of index can be either a string type or PLS_INTEGER.
    Since the Oracle docs often use 'PL/SQL table' or 'index-by table' it isn't unusual for someone asking a question to use those terms also. Technically the types may not be 'tables' but it's clear what they mean when they use the term.
    In PL/SQL the term 'nested table' is still used even though the PL/SQL collection is not really a table. SQL does have nested tables where the data is actually stored in a table. The PL/SQL  'nested table' type can be used as the source/destination of the SQL data from a nested table so that may be why Oracle uses that term for the PL/SQL type.
    The doc that SKP referenced refers to this use:
    Nested Tables
    In the database, a nested table is a column type that stores an unspecified number of rows in no particular order. When you retrieve a nested table value from the database into a PL/SQL nested table variable, PL/SQL gives the rows consecutive indexes, starting at 1.

  • Windows XP SP2's DEP feature and issues with some CPUs

    Hello all !
    I wanted to start this thread to help out people who are having problems with PC restarts when some applications are launched on a PC with Windows XP SP2. First though, a little technical explanation.
    Windows XP Service Pack 2 added a new security feature called Data Execution Prevention (DEP hereafter) that allowed Windows and a compliant CPU to perform additional checks on memory to help protect against malicious code exploits. New 64-bit CPUs from Intel and AMD support Hardware-enforced DEP and will halt execution of applications requiring access to special memory locations.
    For a very detailed explanation, please look at the following article:
    http://www.microsoft.com/technet/prodtechnol/winxppro/maintain/sp2mempr.mspx
    Though most applications will run fine with the DEP feature enabled, a few can have compatability problems. In most such cases, the PC will either proceed to a blue screen error and restart or just restart directly (depending how error reporting is setup on the machine).
    Here's how DEP can be disabled:
    Method 1: Configure DEP to ignore your application
    =====================================
    - Open the control panel folder and double click the “System” icon
    - Click the “Advanced” tab
    - Click the “Settings” button in the “Performance” area
    - Click the “Data Execution Prevention” tab
    - Click the radio button that indicates you wish to specify programs for DEP NOT to operate on
    - Navigate to the folder where your application is located
    - Click the “Apply” button in all presented dialogs
    - Reboot your PC
    Method 2: Disable DEP completely
    =========================
    This method is used to disable DEP at the boot.ini file level. Please note that this requires very careful editing of the boot.ini file, a single space in the wrong location can prevent your system from starting. Please refer to the same article as above to disable DEP completely through the boot.ini file.
    http://www.microsoft.com/technet/prodtechnol/winxppro/maintain/sp2mempr.mspx
    I would have liked to post this under "Good Articles Forum" section but it seems that there is no way to post a topic there!
    Good luck.

    Quote from: NovJoe on 21-April-06, 14:02:34
    You can PM Bas on this. The Good Article Forum is for Mods and Admins to slot good threads in only.
    Good Thread for sharing.
    I might sound ignorant but who's Bas ?
    Thanks !

  • Flash and aspx with some sites just not loding

    hay all,
    i just installed minefield to day on my Linux pc.
    and i just went on some of my usle sites and i notice that flash content wasn't working or displaying and on aspx sites content was not loading.
    i cheeked that flash player was enabled.
    and one have same issues or know how to fix them?

    hi cor-el yeh checked that flash works on the flash test page , flash works on
    sites like youtube but wont work on sites like bbc iplayer and the site you linked
    http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    won't display.
    rkiga i have the same issue with http://listen.grooveshark.com/ , i don't use ad blocker but read the blog and i can see that the new java engine can crate some issues and i have used the 64 bit flash player gives nothing but headaches gives random crashes spent alot of time trying to get it to work but just gave up and reverted to a 32 bit os.
    i really hope Mozilla find a way to fix thees issues soon i relay like this as a web browser and hope to start using it for testing soon.
    i believe im on the beta 8 version

  • HT1338 I updated my MacBook Pro with Mountain Lion and now it is starting slow and opening with some of the programs. How can I fix the problem?

    I updated my MacBook Pro with Mountain Lion and now it is slow in starting up and loads a number of probrams. How can I fix the problem?

    Have you tried starting in Safe Mode and see if the slowness still occurs?
    Restart holding the "shift" key.
    (Expect it to take longer to start this way because it runs a directory check first.)
    If this works look in System Preferences > Users & Groups > Login items and delete any third party login items (-), you can always add them back with the (+). Also look in /Library/Startup Items. Nothing is put in that folder by default, so anything in there is yours.
    Reboot normally and test.

  • I have photoshop elements3 istalled and have ltos of pictures. Recently changed computer that has windows 8 and problems with some of my photos in that some of these have voicce comments that now cannot connect. Same applies to some 'movie pictures

    currently have elements 3 and recently changed computer that has windows 8 installed. my store of pictures - some appear to be 'corrupted' in that I can see a icon  for the picture but no true picture. Also some of the pictures have a my voice message that now is not available. Also, some are movie pictures that again an icon but nothing else

    If you could remove the card without destroying the laptop, you would then be able to see if the integrated Intel chip works
    Do you currently have the Intel chip turned off in the BIOS... or are you using the switchable graphics feature?
    If you ARE using switchable graphics, that MAY be your problem
    Dual video laptop problems... ignore this if you have the Intel chip turned off in BIOS
    -http://helpx.adobe.com/premiere-pro/kb/error---preludevideo-play-modules.html
    -http://forums.adobe.com/thread/1001579
    -Use BIOS http://forums.adobe.com/thread/1019004?tstart=0
    -link to why http://forums.adobe.com/message/4685328
    -http://www.anandtech.com/show/4839/mobile-gpu-faceoff-amd-dynamic-switchable-graphics-vs-n vidia-optimus-technology/2

  • Video chat not working with some people

    Okay so iChat 4.0.7 works fine on my computer with video chat but when I do video chat with some people on my buddy list alone just me and that person I invite him/her and him/her invites me. But it always says to these people:
    "Starting Video Chat" then after that it says:
    THERE WAS A COMMUNICATION ERROR DURING YOUR CHAT every time I do it. Before that it never did this and all of a sudden...? ...makes no sense!
    And it works fine with everyone else. And she's not even blocked.

    Hi,
    Can you send us a copy of the Log.
    It contains several parts
    A Header listening date and such
    A Failure paragraph listing the Error log code.
    A possible long section that looks like repeats about posts and INVITES and such
    Lastly a section starting "Binary Images for iChat" and continues with a list of everything that is started up on you Mac.
    We (I) don't need or Want the last section.
    Old Logs are stored in your Home Folder/Library/Logs/iChatConnectionErrors by date and time
    Expanded Log with Comments
    Not all are this long.
    More Info http://www.ralphjohns.co.uk/page16a.html
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    10:09 PM Thursday; April 16, 2009

  • Webdynpro table with dropdow list

    hi experts,
    i wanna webdynpro table rows have their dropdow list,and each row have it's own list values
    how can i do
    best regards
    zlf

    Hi,
    I hope you already have a Solution, if not try the following:
    1-Create a node"table"(0-n) in the context_View
    2-Create 2 attribute in this node.
      - The first"List_atr" to show the list
      - The second "save_atr" to save the value selected from the list
    3- Create a Table in the Layout_View, bind it dateSource to the node"table" in context_view
    3.1- Add a Column in the Table (Layout_View),
         + add a TableCelEditor "DropDownByKey" elt to this Column,
         + bind the "selectedKey" of this Elt to  the first"List_atr" in the node"table" in the context Node
         + Add a eventhandler(method)"onvalSelected" to the Events "onSelect" of this elt
    3.1-implement the method "onvalSelected"
        here tel ur view ctrl to save the value selected in the second "save_atr" in the context_View
    example code:
               wdContext.currentTableElement().setsave_atr( wdContext.currentTableElement().getshow_atr());
    So if you know how to populate the first "show_atr" with some list, coo. So if the user selected one value in the dropdown list, the method will save it in the cell of the table row and so on for each rows.
    If you have another questions just asked.
    Best Regards
    Glap

  • Can you do subtractions and divisions with Adobe forms?

    I am converting MS Excel documents into Adobe Forms using Adobe Strandard 9, and I would like to be able to do subtractions and divisions with the form calculation option. Currently the only options I have are 'sum (+), product (x), average, minimum and maximum'. I see that there are 'Simplified field notation' and 'Custom calculation srcipt' options, but I can find no reference to doing subtractions or divisions. Any help would be appriciated.
    Kerry N

    Try these options:
    Under the Calculate tab for the properties for field3
    In the Custom calulation script field, use:
    this.getField("field3").value = this.getField("field2").value - this.getField("field1").value;
    or in the Simplified field notation, use:
    field1 - field2
    Use / instead of - for division instead of subtraction.
    Karl

  • IChat Video Audio: works with some iMacs not others

    I have this strange problem.
    I can chat with everyone.
    I can video and audio with some but not all.
    A person I can video or audio chat with can video and audio chat with our mutual friend.
    I cannot video or audio chat with the mutual friend.
    All machines are iMacs OS 10.4.10 with latest updates.
    There was no problem until 2 weeks ago.
    Does anyone have a suggestion as to how to solve this problem?
    thank you in advance.

    Presuming all have got their System Preferences > Quickitme > Streaming set to 1.5Mbps and restarted IChat then...
    Change the way the ports are opened in the routing device
    http://www.ralphjohnsuk.dsl.pipex.com/page15.html#CertainBuddy
    5:02 PM Thursday; August 23, 2007

Maybe you are looking for