Duplicates when binding ArrayCollection to List

Hi,
I'm working on a flex application.
There is a DataManger object that loads some XML data and store it in an ArrayCollection by doing something like that (code is simplified) :
private var _xmlLocations:XMLListCollection;
private var _countryList:ArrayCollection;
_xmlLocations = new XMLListCollection(data..location);
_countryList.addAll(_xmlLocations.list)
Then the DataManager send back the ArrayCollection to a component with a list using the Source setter.
<mx:ArrayCollection id="arrayData" />
<mx:List id="listMenu" dataProvider="{arrayData}">...</mx:List>
public function set Source(data:ArrayCollection):void{
     arrayData.source = data.source;
When I look at my ArrayCollection in the debugger, it first look like this :
But after the binding to the List, the ArrayCollection arrayData has every entry duplicated...
I'm probably doing something wrong... but what?
Thanks for any lighting or advices

I cannot confirm your issue, I've created simple test MXML application  to validate it
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                layout="absolute"
               creationComplete="onCreationComplete()">   
    <mx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
            protected var initArr : Array = new Array(1, 2, 3);           
            protected var initCollection : ArrayCollection = new ArrayCollection(initArr);
            [Bindable]
            protected var dataCollection : ArrayCollection = new ArrayCollection();
            public function set source(data:ArrayCollection):void {
                dataCollection.source = data.source;
            private function onCreationComplete() : void {
                source = initCollection;  
        ]]>
    </mx:Script>
    <mx:List dataProvider="{dataCollection}"/>
</mx:Application>

Similar Messages

  • How to bind an aggregated list to a variable in an IN or ANY clause

    Hello, and thank you for helping -
    I have a process that involves a parameter assertion, the result of which is a string for an IN or ANY clause. I am not able to figure out how to bind the result of the assertion to to executable SQL. The actual business process is long and laborious and, I decided, not worth explaining for the purpose of this forum. I have abstracted the process into some dummy data. The goal is to bind v_any_condition to :a. I could certainly build the SQL without the binding, but I would be very interested to know just the same what I am missing here (I'm sure something simple, or just a basic SQL rules that I have missed).
    Thanks!
    DECLARE
    -- The goal is to bind v_any_condition in an ANY clause
    v_any_condition VARCHAR2(30) DEFAULT '4,9,d'; -- the three rows to return from the sample data
    -- v_any_condition VARCHAR2(30) DEFAULT DBMS_ASSERT.ENQUOTE_LITERAL('4')||','||
    -- DBMS_ASSERT.ENQUOTE_LITERAL('9')||','||
    -- DBMS_ASSERT.ENQUOTE_LITERAL('d');
    v_sql varchar2(2048);
    -- We'll create a simple cursor of VARCHAR2(1) just like DUAL.DUMMY
    rc sys_refcursor;
    rc_record dual%ROWTYPE;
    v_counter NUMBER DEFAULT 0;
    BEGIN -- Build the SQL. In this example, we decompose an aggregated string
    -- containing the first 16 hex numbers. The result is a simple 16-row table
    -- from which we will attempt to return the three rows by binding
    -- v_any_condition to ANY in the SQL below.
    v_sql := '
    SELECT token
    FROM ( -- materialize the list
    WITH t AS (SELECT ''0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f'' AS txt FROM DUAL)
    -- then decompose the list into rows
    SELECT REGEXP_SUBSTR (txt, ''[^,]+'', 1, LEVEL) AS token
    FROM t
    CONNECT BY LEVEL <= LENGTH(REGEXP_REPLACE(txt,''[^,]*''))+1
    /* WHERE token = ANY(''4'',''9'',''d'') */ -- hardcoding works
    WHERE token = ANY(:a) -- binding does not work; the goal is to get this to work '
    OPEN rc FOR v_sql USING v_any_condition; -- when binding, we never even enter the loop
    LOOP
    v_counter := v_counter + 1;
    FETCH rc INTO rc_record;
    EXIT WHEN rc%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE (v_counter || ': '||rc_record.dummy);
    END LOOP;
    END;
    Edited by: ltps on Jan 9, 2012 4:28 PM

    Superb. Thank you very much.
    For anyone who is interested in the solution I chose, here is the revised SQL that accepts a list as a bind variable after casting the list as a table. The "split string" code is below that. (What look like double quotes in the block below are actually consecutive single quotes.)
    DECLARE
    v_any_condition VARCHAR2(30) DEFAULT '4,9,d';
    v_sql varchar2(2048);
    rc sys_refcursor;
    rc_record dual%ROWTYPE;
    v_counter NUMBER DEFAULT 0;
    BEGIN
    v_sql := '
    SELECT token
    FROM (
    WITH t AS (SELECT ''0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f'' AS txt FROM DUAL)
    -- then decompose the list into rows
    SELECT REGEXP_SUBSTR (txt, ''[^,]+'', 1, LEVEL) AS token
    FROM t
    CONNECT BY LEVEL <= LENGTH(REGEXP_REPLACE(txt,''[^,]*''))+1
    , TABLE(CAST(XX_SPLIT_STRING(:a,'','') AS XX_SPLIT_TABLE)) cst
    WHERE cst.column_value = token'
    OPEN rc FOR v_sql USING v_any_condition;
    LOOP
    v_counter := v_counter + 1;
    FETCH rc INTO rc_record;
    EXIT WHEN rc%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE (v_counter || ': '||rc_record.dummy);
    END LOOP;
    END;
    -- And the main SQL, just for clarity:
    SELECT token
    FROM (
    WITH t AS (SELECT '0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f' AS txt FROM DUAL)
    SELECT REGEXP_SUBSTR (txt, '[^,]+', 1, LEVEL) AS token
    FROM t
    CONNECT BY LEVEL <= LENGTH(REGEXP_REPLACE(txt,'[^,]*'))+1
    , TABLE(CAST(XX_SPLIT_STRING('4,9,d',',') AS XX_SPLIT_TABLE)) cst
    WHERE cst.column_value = token;
    CREATE OR REPLACE FUNCTION XX_SPLIT_STRING (
    p_string VARCHAR2
    , p_delimiter VARCHAR2 DEFAULT ','
    RETURN XX_SPLIT_TABLE PIPELINED
    IS
    l_idx PLS_INTEGER;
    l_string VARCHAR2(32767) := p_string;
    l_value VARCHAR2(32767);
    BEGIN
    LOOP
    l_idx := INSTR ( l_string, p_delimiter );
    IF l_idx > 0 THEN
    pipe ROW ( SUBSTR ( l_string, 1, l_idx - 1 ) );
    l_string := SUBSTR ( l_string, l_idx + LENGTH (p_delimiter) );
    ELSE
    PIPE ROW ( l_string);
    EXIT;
    END IF;
    END LOOP;
    RETURN;
    END XX_SPLIT_STRING;

  • Lion Clients 10.7.4 show network accounts are unavailable and server is not responding when binding to Snow Leopard server 10.6.8

    Hello,
    I am running Snow Leopard Server 10.6.8 and my clients are Lion 10.7.4.  While testing I had no issues binding 10.7.4 to our 10.6.8 server's OD.  I created a 10.7.4 image to push to all of our machines and in the beginning of last week I was able to push the image and get the machines to bind with OD and apply preferences on these machines through workgroup manager.  Towards the end of the week though this stopped working.  Now any time I bind a 10.7.4 client to OD it allows me to perform an authenticated bind and the machine shows up in workgroup manager but immediatley after binding the client the status jelly next to the OD server in the directory list is red and says "This server is not responding".  If I reboot the client I get a notification that "Network accounts are unavailable" at the login screen.  My preferences from workgroup manager are also not applying, which is my main concern because without workgroup manager my mac server is somewhat pointless as we use it for very little else. 
    I've since tried to bind a snow leopard machine (10.6.8) and this still is working with a green status jelly.  I've also built a lion machine from scratch, updated to the 10.7.4 combined update and am still getting the same issue where it shows the server is not responding when binding to OD.  I then applied the subsiquent OS update after the 10.7.4 combined update but the problem still persists.
    Is anyone else having this issue?  Any help would help me keep my sanity.
    Thanks,
    Dane

    Have you had any luck finding a solution to this?  The only thing I have found was to unbind and then bind without authentication.  Any help with progress on your end would be appreciated!
    Nick.

  • OCI-21500 when binding a collection

    Hello all:
    I've got a very strange behaviour when binding a collection. If I try to bind an empty collection, my program runs. BUT when I add one element to the collection, I've got a SIGSEGV and this message appears:
    -21500: internal error code, arguments: [kohrsc153], [], [], [], [], [], [], []
    Errors in file :
    OCI-21500: internal error code, arguments: [kohrsc153], [], [], [], [], [], [], []
    ----- Call Stack Trace -----
    Error: stisini(),13 - Can't open /oracle1/app/oracle/product/9.2.0.1.0/bin/oracleError: Stack Initialization Failure
    Error: ssdinit() failed 13
    calling call entry argument values in hex
    location type point (? means dubious value)
    ----- Argument/Register Address Dump -----
    ----- End of Call Stack Trace -----
    Any idea?

    This is my code:
    CREATE TYPE my_collection IS TABLE OF my_element;
    I'm trying to call to a PLSQL procedure:
    PROCEDURE get_collection(
    v_collection IN OUT my_collection
    Then, in the C program:
    sword code = OCI_SUCCESS;
    OCITable pList              = (OCITable )0;
    char *statement_sql      = "begin package.get_collection(:list); end;";
    code=OCITypeByName(
    envhp,
    errhp,
    svchp,
    (CONST text *)ORA_SCHEMA,
    (ub4)ORA_SCHEMA_LEN,
    (CONST text *)("MY_ELEMENT"),
    (ub4)strlen("MY_ELEMENT"),
    NULL,
    (ub4)0,
    OCI_DURATION_SESSION,
    OCI_TYPEGET_ALL,
    &(DataClass)
    code=OCITypeByName(
    envhp,
    errhp,
    svchp,
    (CONST text *)ORA_SCHEMA,
    (ub4)ORA_SCHEMA_LEN,
    (CONST text *)("MY_COLLECTION"),
    (ub4)strlen("MY_COLLECTION"),
    NULL,
    (ub4)0,
    OCI_DURATION_SESSION,
    OCI_TYPEGET_ALL,
    &(DataListClass)
    code = OCIObjectNew(
    envhp,
    errhp,
    svchp,
    OCI_TYPECODE_NAMEDCOLLECTION,
    (DataListClass),
    (dvoid *)0,
    OCI_DURATION_DEFAULT,
    TRUE,
    (dvoid **)&(pList)
    /* Add one element */
    code = OCIObjectNew(
    envhp,
    errhp,
    svchp,
    OCI_TYPECODE_OBJECT,
    (DataClass),
    (dvoid *)0,
    OCI_DURATION_DEFAULT,
    TRUE,
    (dvoid **)&(elemData)
    code = OCIStringAssignText(
    envhp,
    errhp,
    (text *)"Name1",
    (ub4)strlen("Name1"),
    &(elemData->dataName)
    code = OCICollAppend(
    envhp,
    errhp,
    (CONST dvoid *)&(elemData),
    (dvoid **)NULL,
    (OCIColl *)(pCollection)
    code = OCIStmtPrepare2((OCISvcCtx *)svchp,(OCIStmt **)&stmtp,
    (OCIError *)errhp, (unsigned char *)statement_sql, strlen(statement_sql),
    NULL,0,OCI_NTV_SYNTAX,OCI_DEFAULT);
    /* Bind */
    code = OCIBindByPos(
    stmtp,
    &bind,
    errhp,
    (ub4)1,
    (dvoid* *) NULL,
    (sb4) 0,
    SQLT_NTY,
    (dvoid *) 0, (ub2 *)0, (ub2 *)0,
    (ub4) 0, (ub4 *) 0, (ub4) OCI_DEFAULT);
    code = OCIBindObject(
         bind,
    errhp,
    DataListClass,
    (dvoid **) &pList,
    (ub4 *) 0,
    (dvoid **)0,
    (ub4 *) 0);
    /* Execute */
    code = OCIStmtExecute(svchp, stmtp, errhp, (ub4)1, (ub4)0,
    (CONST OCISnapshot *) NULL,(OCISnapshot *) NULL, OCI_DEFAULT);
    I'm trying to run this code in an Oracle 9i environment.
    Thanks in advance.

  • Binds 2 Observable Lists throwing java.lang.UnsupportedOperationException

    Below is a simple code
    private ListProperty<String> list = new SimpleListProperty<>();
    private ListProperty<String> list2 = new SimpleListProperty<>();
    Bindings.bindContentBidirectional(list,list2);
    I want to bind both the Lists. But for some reason it throws: java.lang.UnsupportedOperationException at the Bindings Line.
    What is the issue with it?

    SimpleListProperty implements ObservableList, so the types are just fine.
    The problem is that the default constructor new SimpleListProperty() creates a ListProperty that wraps an empty list; effectively it's equivalent to
    new SimpleListProperty(FXCollections.emptyObservableList());
    The list returned by FXCollections.emptyObservableList() is unmodifiable; the binding will attempt to call setAll(...) on one of the lists (passing the content of the other). Of course, an unmodifiable list will throw an UnsupportedOperationException when you try to set elements in it.
    You need to create the SimpleListProperty with a modifiable list:
    private ListProperty<String> list = new SimpleListProperty<>(FXCollections.<String>observableArrayList());
    private ListProperty<String> list2 = new SimpleListProperty<>(FXCollections.<String>observableArrayList());
    Bindings.bindContentBidirectional(list,list2);

  • Double host/port name when binding

    Hi,
    Can anyone answer why I get this:
    //localhost:7899///localhost:7899/my_warehouseI create a registry and bind my application to it:
    warehouse = new WareHouse();
    registry = LocateRegistry.createRegistry(7899);
    registry.rebind("//localhost:7899/my_warehouse", warehouse);Then from the client when I do a lookup:
    server = (WareHouse)Naming.lookup("//localhost:7899/my_warehouse");I get this:
    java.rmi.NotBoundException: my_warehouseAnd when I do a listing:
    String[] list = Naming.list("//localhost:7899/");
    for (int i=0; i < list.length; i++)
        System.out.println("i " + i + ": " + list);
    I get this:
    i 0: //localhost:7899///localhost:7899/my_warehouseHow come?
    Why do I get "double host/port" names?
    Is it because I do createRegistry inside the code?
    /Fredrik

    registry = LocateRegistry.createRegistry(7899);
    registry.rebind("//localhost:7899/my_warehouse",
    warehouse);Don't use a URL when calling methods on a Registry object. The bound name here is the entire URL, all you want is the my_warehouse part. You've already specified the hostname:port when you got the Registry stub from LocateRegistry.
    server =
    (WareHouse)Naming.lookup("//localhost:7899/my_warehouse");Do use a URL when calling methods on Naming. The above is correct but it is looking in a Registry at //localhost:7899 for a name 'my_warehouse'.
    java.rmi.NotBoundException: my_warehouseExactly.
    Re the listing, Registry.list() returns values that can be plugged straight into Registry.lookup, i.e. no URL part. Naming.list() returns values that can be plugged straight into Naming.lookup(), i.e. with a URL part.

  • Did a clean install 10.9.4. on a stock Fusion HD.  When I run "diskutil list" via Terminal, everything is wrong.  I have "EFI" and "apple Boot Boot OSX in every dev/disk** How do I fix? Any help would be much appreciated, thank you

    Did a clean install 10.9.4. on a Apple Stock 1TB Fusion Hard Drive.  When I run "diskutil list" via Terminal, everything is wrong.  I have "EFI" and "apple Boot Boot OSX" in every dev/disk**  Everything is out of place, How can I repair? Im willing too reformat if need be, however thats what I did in the first place.  Any help would be much appreciated, thank you.
    I know this cannot be correct
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *121.3 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         121.0 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:          Apple_CoreStorage                         999.3 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Fusion                 *1.1 TB     disk2
    /dev/disk7
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                                                   *121.9 GB   disk7

    It appears as if my startup disk has been reversed and not using the fusion ssd portion as it should.  At least its now reversed as to what it used to be originally before.  the 128gb ssd used to be on top.  Is my mac booting fusion correctly?  Thank you for responding as I was about to reformat.
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group C2619AFE-0EB5-4721-8C50-3F3DBA520D1B
        =========================================================
        Name:         fusion
        Status:       Online
        Size:         1120333979648 B (1.1 TB)
        Free Space:   114688 B (114.7 KB)
        |
        +-< Physical Volume 583AAEA9-E333-4A83-9BE3-E937396E9248
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     120988852224 B (121.0 GB)
        |
        +-< Physical Volume B0C1CB16-D46F-4387-A679-B55392BB7934
        |   ----------------------------------------------------
        |   Index:    1
        |   Disk:     disk1s2
        |   Status:   Online
        |   Size:     999345127424 B (999.3 GB)
        |
        +-> Logical Volume Family FB42B9F4-CB77-4162-831B-7DCB7816E760
            Encryption Status:       Unlocked
            Encryption Type:         None
            Conversion Status:       NoConversion
            Conversion Direction:    -none-
            Has Encrypted Extents:   No
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume C0B8479B-C51C-45BF-B59B-1AA5DF3A3B83
                Disk:                  disk2
                Status:                Online
                Size (Total):          1111826497536 B (1.1 TB)
                Conversion Progress:   -none-
                Revertible:            No
                LV Name:               Fusion
                Volume Name:           Fusion
                Content Hint:          Apple_HFS
    FoHeazys-Mac-mini:~ FoHeazy$ diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *121.3 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         121.0 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:          Apple_CoreStorage                         999.3 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Fusion                 *1.1 TB     disk2

  • Error message when installing Flash Player : List of actions not found

    I get an error message when trying to install Flash Player.
    I use Windows 64 bit with Internet Explorer 64x.
    I'm able to download, the installation starts but it stops before completing.
    I get this error message (loosely transalated) :
    Installation encountered errors
    List of actions not found
    How can I fix this ?
    Thank you
    Annie

    I solved my problem by installing the Flash Player from home.
    The network security at work prevented me from completing installation.
    Thanks for your help.
    Annie
    2012/9/26 Pat Willener <[email protected]>
       Re: Error message when installing Flash Player : List of actions not
    found  created by Pat Willener <http://forums.adobe.com/people/pwillener>in
    Installing Flash Player - View the full discussion<http://forums.adobe.com/message/4728064#4728064

  • I have different account ID's with my iphone and computer. I would like to standardise both to just the one. One of the ID's doesn't work, when I tried to list the second email with the preferred one a message telling me that this email is already in

    I have different account ID's with my iphone and computer.
    I would like to standardize both to just the one.
    One of the ID's doesn't work, when I tried to list this second email with the preferred one a message telling me that this email is already in use pops up.. yes it is, with me??
    Is there an easy to fix this please, Fabfitz

    If the email address you want to use is being used as the primary email address on a different ID you have to manage that ID and change it to a different primary email address.  This explains how: Change your Apple ID - Apple Support.
    If it is being used as an alternate or rescue address on a different ID, you manage the ID and either remove it or change it to a different email address.  This explains how: Manage your Apple ID primary, rescue, alternate, and notification email addresses - Apple Support.

  • Aperture Not Recognizing Duplicates When Importing From iPhone. PhotoStream is Involved.

    Apple makes great software. Aperture is not some of it.
    Here's my setup:
    '11 MacBook Air OS X Lion
    Aperture 3.2.2
    iPhone 4 ios 5.0
    1.5 TB External Drive. Aperture Masters and Library reside there, separate from each other.
    I keep my photos in a structure such as: Aperture Masters > Year > Month > Date > original_photo_name
    I'm running into trouble with Aperture not recognizing what photos are duplicates when it comes time to import photos. My workflow is that I'll import photos every so often, leaving them on the iPhone, and delete them twice a year.
    ISSUE 1 (The Annoying One):
    Aperture is showing a lot of photos that have already been imported even if I select "Don't Import Duplicates". Aperture has done this for a long time. I know that when it comes time to importing them, it doesn't import the duplicates, but this is just a sign that something doesn't work very well. (Maybe it's because I switched to an iPhone 4S and then back. I synced all my photos, and then back again to my iPhone 4, so the sequential number of the photos remained intact. I don't think that's the problem though.). This is just a minor annoyance that shows that Apple can suck at software (remember MobileMe?).
    ISSUE 2 (The serious one):
    short version: Some photos on my iPhone won't sync to my Aperture library because it thinks they've been synced through PhotoStream. They are not in my Aperture Library or in my Aperture Masters in the filesystem. How can I fix this. What bloody file do I have to delete for Aperture to stop being confused?
    longer explanation: When iOS 5 came out, I was excited by PhotoStream. I had enabled it on my MBA, through iPhoto (I hadn't installed Aperture on it yet, as I was using an iMac to manage my Aperture Library). I believe it synced a bunch of photos from my iPhone, but then I stopped using it on my mac. Left it on on my iPhone. Installed Aperture. I initially enabled PhotoStream but swiftly disabled it once I was not sure how it would deal with photos being uploaded from my mac etc - just seemed like too much magic was going on. I then proceeded to sync my iPhone, not importing duplicates, and it synced a bunch of photos, but didn't sync some of them, displaying the following message:
    Any tips on how to fix this and be able to import those images would be greatly appreciated.
    P.S. - I thought that iPhoto might be causing the problem. I checked there and there were some images imported through PhotoStream, but not some of the ones which were not imported on Aperture. Putting that another way: the iPhoto library accounted for some of the images that were not imported, but not all of them. I deleted the iPhoto Library and tried reimporting with Aperture. Still no luck.

    I have precisely the same problem. Very annoying. Worked fine with iPhoto, borked with Aperture 3.

  • Microsoft Dynamics AX WebSession() is null in Enterprise Portal when running from a List Page.

    Microsoft Dynamics AX WebSession() is null in Enterprise Portal (EP) when running from a List Page.  
    The WebSession() works for a detail page, but nor a list page in EP.
    Does anyone know of a workaround to this issue?
    Thanks.
    Scott

    Hello,
    You should ask in the Microsoft Dynamics Community Forums.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Does my ipad make duplicates when i put photos in albums?!

    Hi,
    Does my iPad make duplicates when i put them in albums? They apear on filmrol(photolist?) and when i try to delete it says: "delete everywhere?"
    Another aspect (probably a bigger concern) of why this has my concern, is that it says i have 7.2 GB of photo's while i only have a 1000 or so photos on it! Even a digital illiterate like me knows 7.2MB per photo isnt normal. Most of them taken on a digital camera btw..
    Can someone tell me whats going on and how i can solve/prevent this problem?
    Thanks in advace

    Thizzaaa wrote:
    I am using a FujiFilm F80EXR, 12 Mega Pixels, JPEG, 4:3 medium(?)
    ( http://www.fujifilm.com/support/digital_cameras/specifications/f/finepix_f80exr/ )
    I use the SD cardreader of the iPad Camera Connection Kit.
    Is this information helpfull?
    Yes. using the CCK, it transfers the compressed jpeg which should be about 2.5MB plus the raw file which according to your camera link is around 5MB.  So the math makes sense.
    The following thread deals with the Raw portions of the images, and gives a few suggestions of how to get rid of them on the iPad.
    https://discussions.apple.com/thread/3671950

  • Limit when input mail address list to "TO" field in Delivery function of BI

    Hi all,
    I am deploying BI Publisher for my partner. I have troubled when put mail address list to "TO" field in Delivery function in BI Publisher. May be serverlet had limted it. I know that I can write a address mail list directly to DELIVERY_PARAMETERS in XMLP_SCHED_JOB which has BLOB type.
    But I am thinking that, If i buy license of BI Publisher, how i can do it earsier?
    Thanks all.
    Please send your solution to my email: [email protected]
    Edited by: user6064593 on Jul 23, 2009 1:03 AM

    Hi vlp,
    You can achive it with BAdI:CRM_ORDER_FIELDCHECK. Actually I've implemented the similar case  with this BAdI. This BAdI is called many times because it always works when any field is changed. So you should restrict the timing your logic works.
    Regards,
    Masayuki

  • Binding Drop Down Lists

    Hello,
    I am trying to figure out how i can bind drop down lists. I want it so if you choose a certain selection in drop down list 1, then you are only able to pick a certain selection out of drop down 2. So basically each selection in drop down 1 will give you different options to select in drop down 2. Sorry if i made that really confusing. Thanks
    -Aaron-

    Hi,
    Here is a mock-up version of the spreadsheet.
    The first dropdown has the nine categories set in the Object / Field tab. Also have a look in the Object / Binding tab as there are values specified for each of the nine categories. These will be used later in the script.
    The second dropdown does not have any values specified in the Object / Field tab.
    Instead there is script in the exit event of the first dropdown. This is a switch statement that first of all looks at the bound value ("9030") of the choice that the user has made ("9030 National Marketing"). The statement then looks at each case until it gets to one that matches; then it runs the script for that case and then breaks from the switch statement.
    Each case starts off with:
    DropDownList2.clearItems();
    DropDownList2.rawValue = null;
    This is important because this clears the list in dropdown2 and sets its value to null. These two lines are then followed by a series of addItem() script which goes through all of the types in that category.
    I have scripted all of 9030 and the first five lines of 9031. This should get you out of the traps. It is a bit of a pain, but just copy and paste downwards.
    Each case ends with a "break;" and the last "}" closes the switch statement.
    Good luck,
    Niall

  • When synching iPhone4s capacity lists "other" as 28.9GB.  What's with that?  There's not much on my phone.

    When synching iPhone4s capacity lists "other" as 28.9GB. What's with that? There's not much on my phone.

    To fix this you need to restore your phone: first try restoring from backup. Follow this by syncing your iTunes content back to your phone. That should fix things. If not, you will have to restore as a new device,

Maybe you are looking for

  • Connecting Mac to TV

    I am running OS X Mountain Lion 10.8.5 and I'm trying to connect my Macbook Pro (2011) to my computer via an HDMI cable and the belkin mini DisplayPort to HDMI adapter. The TV only says 'No Signal' and my computer doesn't seem to recognize the connec

  • HT201210 how do i resolve error 3014?

    how do i resolve error message 3014?

  • Photo from Lightroom2 Bridge InDesign and retain edits

    I use a Mac, CS3 and LR2. I am can view edits from photos (JPG, TIFF, or DNG) in LR in Bridge. The problem arises when I try to import/place/drag those images into inDesign - the edits do not follow with the image.  Is there something I have to chang

  • Macbook Pro Retina 2013

    Bonjour, bonsoir J'ai acheté mon Macbook Pro Rétina en octobre 2013. Aujourd'hui je constate que mon alimentation s'est complètement ouverte. Pourtant celle-ci est toujours enroulé autour de son chargeur proprement (en laissant toujours un peu de fil

  • BOINC Manager, where is it?

    Is it me or is the BOINC Manager not installed with BOINC? WxGTK is a dependency, so one would expect it to be there, but it seems to be missing. Unless I'm an idiot and I'm overlooking something...