Passing Multiple rows from one external webpart list to another

Hi Folks,
                I have almost spent 1 week looking into this without any success. I have an external list "List A"  (in a webpart) with one of the columns as "State".
Another external list "List B"  (in a webpart ) has state and user as columns. In some case I want to pass 1 state and in another I want to pass multiple state.  Passing one state from List A to List B works fine. But Multiple state does
not work because the webpart list has the property "Send First row to connected web parts when page loads".  If I disable this option then the web part does not pass anything. Is there a way to pass multiple rows from one Webpart
external list to other?

http://www.sharepointanalysthq.com/2010/07/bcs-external-list-limitations/
No Lookups
Unfortunatly the only thing that you can do a look up on in an external list is on the ID column, anything else and you are out of luck.
http://social.technet.microsoft.com/Forums/en-US/615771a0-ba78-4e38-9e2d-ded0204173ba/external-list-referenced-as-sharepoint-lookup?forum=sharepointgeneralprevious
Try below webpart. it should help
http://www.sparqube.com/SharePoint-Lookup-Column/
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • Passing multiple rows from one action to another

    Hi,
    I've build a Guided Procedure Process with two actions. Both actions call a Visual Composer Model (deployed as Flex).
    The Processdesign is:
    Process
    ---Block
    Action 1
    CO 1 as VC Model (Flex)
    Action 2
    CO 2 as VC Model (Flex)
    From the first vc model I want to pass multiple rows (its a vc table) to the second vc model. Therefor I've group the out-going parameters from model 1 with the in-coming parameters from model 2 at the block-level.
    Now, when I start my process I have two results in the table of  vc model 1 and will pass them to model 2. But only one record (always the first) is shown at model 2.
    Can you say me the reason for this? Have I configured the parameter-grouping false? Or isn't it possible to pass multiple rows at guided procedures?
    I'm using Visual Composer 7.0 and Guided Procedures 7.0 technology.
    Thanks in advance
    Claudia

    hi,
    Do structure mapping to pass row values
    Thanks
    Gopal

  • How can i copy files from one external hard disk to another using macbook pro with retina display

    How can i copy files from one external hard drive to another using macbook pro with retina display?

    That's odd - if you open Disk Utility (Applications->Utilities) and select the disk(s), how are they formatted? If you're only going to be used with your Mac, they should be formatted as "Mac OS Extended (Journaled)".
    Clinton

  • I transferred my iTunes library from one external hard drive to another and added more music on the same day. How do I get rid of my duplicate files without going through them one by one which would take forever?

    Please help. I have transferred my iTunes library from one external hard drive to another plus added additional music now I have duplicates of the same music in many albums. How do I delete the duplicates without going through them one by one which would take forever? I understand how to get the "show exact duplicate" feature up on iTunes but, because they were added to the library on the exact day I can't seperate them I'm that manner. So each duplicate is right next to eachother in the exact duplicate screen.

    My DeDuper script is designed to help clean up. See this thread for background.
    tt2

  • How do I move my iphoto library from one external hard drive to another?

    how do I move my iphoto library from one external hard drive to another?

    Drag it there in the Finder and then launch iPhoto with the Option key held down. Point it to the new instance of the library.
    (58012)

  • How do I move data on time machine from one external hard drive to another

    How do I move data on time machine from one external hard drive to another?

    Although the documentation says you can copy Time Machine backups in the Finder, it's very slow and sometimes doesn't work at all.
    Launch Disk Utility, open the built-in help, and search for the term "Duplicate." Follow the instructions. Turn Time Machine OFF in its preference pane while copying the volume.

  • Cannot copy itunes from one external hard drive to another.

    I have been using an external hard drive for storing my itunes and iphoto for a while now. I have never experienced any issue copying it to a larger drive for back up. My current drive is only 80 gigs (LaCie) and is almost out of space. I bought a new g-tech 500gig mini drive to replace it. Every time that I try to move the files from the old drive to the new one, I get the following error message 10 gigs into the transfer-
    [You can’t copy “Music” because it has the same name as another item on the destination volume, and that volume doesn’t distinguish between upper- and lowercase letters in filenames.]
    There is nothing on the new drive. I even took the iphoto folder off to make sure there was nothing on it to cause this message.
    Is this an external drive issue or a Finder issue? I had no issue moving the iphoto library onto the new drive, fwiw...

    I am getting exactly the same problem. It's just with the music folder. I dont get the problem copying other folders over. It gets about 22gb into copying 100gb from one external hard drive to another then I get the error message "You can’t copy “Music” because it has the same name as another item on the destination volume, and that volume doesn’t distinguish between upper- and lowercase letters in filenames." So I tried just copying the itunes folder and I still get the same message. Any advice welcome.

  • Generating multiple rows from one physical row

    I was wondering if anyone has done or knows how to generate multiple rows for one physical row. In my query "SELECT Cust_No, Amount from Balances" if the amount is > 99,999.99 I want 2 rows returned, one with an amount of 90,000.00 and the other with an amount of 9,999.99. I'm thinking I need to use a view or function to return a result set but I'm not sure how.
    Thanks in advance,
    Allen Davis
    [email protected]

    James,
    Well your right in that you need a function, but also 3 views to accomplish that. I just wrote up the sql below and tested it. Basically you want the first view to return all records less than your cap of 99,999, thoes that exceed that will always return as 90,000 (see example on record PK 774177177). The second view returns money that remains AFTER the cap (in your case 9,999). The second view though also has to excude the ones less than the CAP.
    DATA and TABLE layout
    1) Table is called T1, columns are PK : primary key value, and N2 : some number column holding the MONEY amount
    2) data is below fromtable called t1 (10 records) ...
    select pk,n2 from t1 order by pk
    PK     N2
    117165529     100
    274000876     200000
    350682010     9999
    737652242     90000
    774177177     99999
    1369893126     1000
    1663704428     100000
    1720465556     8888
    1793125955     0
    1972069382     1000000
    Now see the records with money at 99,999 (just like in your example). You want 2 records, so the VIEWS now come into play. The view itself CALLS the function, this occurs when you select from the view. The function will either return 90,000 (your defined cap) or the remained after subtracting the money from 90,000. The 3 views are defined below (the FUNCTION which is shown after will have to be compiled first) ...
    --[VIEWS START]
    CREATE OR REPLACE VIEW VIEW1
    (PK,SHOW_MONEY)
    AS SELECT PK,FN_TRIM_MONEY(N2,1) FROM T1;
    CREATE OR REPLACE VIEW VIEW2
    (PK,SHOW_MONEY)
    AS SELECT PK,FN_TRIM_MONEY(N2,2) FROM T1 WHERE N2 >= 99999;
    CREATE OR REPLACE VIEW VIEW_ALL
    (PK,SHOW_MONEY)
    AS
    SELECT * FROM VIEW1
    UNION ALL
    SELECT * FROM VIEW2;
    --[VIEWS END]
    OK now for the actual function ...
    --[FUNCTION START]
    CREATE OR REPLACE FUNCTION
    FN_TRIM_MONEY
    PI_MONEY NUMBER,
    PI_VIEW_ID NUMBER
    RETURN NUMBER AS
    LS_TEMP VARCHAR2(2000);
    LI_TEMP NUMBER;
    LD_TEMP DATE;
    LI_CON_MONEY_MAX CONSTANT NUMBER := 90000;
    LS_RETURN VARCHAR2(2000);
    BEGIN
    IF (PI_MONEY > LI_CON_MONEY_MAX) THEN
    IF PI_VIEW_ID = 1 THEN
    LI_TEMP := LI_CON_MONEY_MAX;
    ELSIF PI_VIEW_ID = 2 THEN
    LI_TEMP := (PI_MONEY - LI_CON_MONEY_MAX);
    END IF;
    ELSE
    LI_TEMP := PI_MONEY;
    END IF;
    IF LI_TEMP < 0 THEN
    LI_TEMP := 0;
    END IF;
    LS_RETURN := LI_TEMP;
    RETURN LS_RETURN;
    END;
    SHOW ERRORS;
    --[FUNCTION END]
    I compiled the function and views with no errors. This is what I get when I query the 3 views ...
    --[VIEW 1]
    PK     SHOW_MONEY
    117165529     100
    274000876     90000
    350682010     9999
    737652242     90000
    774177177     90000
    1369893126     1000
    1663704428     90000
    1720465556     8888
    1793125955     0
    1972069382     90000
    --[VIEW 2]
    PK     SHOW_MONEY
    274000876     110000
    774177177     9999
    1663704428     10000
    1972069382     910000
    --[VIEW ALL]
    PK     SHOW_MONEY
    117165529     100
    274000876     90000
    274000876     110000
    350682010     9999
    737652242     90000
    774177177     90000
    774177177     9999
    1369893126     1000
    1663704428     90000
    1663704428     10000
    1720465556     8888
    1793125955     0
    1972069382     90000
    1972069382     910000
    So notice the PK entry 774177177 listed twice, once with 90,000 and other with 9,999. Also notice we now have 14 records from the original 10, meaning 4 records qualified for the split (all data from VIEW 2).
    This is why Oracle kicks ass, views and functions are very powerful when used together and can return pretty much anything.
    Thanks,
    Tyler D.
    [email protected]

  • Pass multiple rows from sp to calling prog

    I have a stored procedure using cursor to get multiple rows from the db, how can I pass these rows to the calling prog? Is the out variable returns the last row only?
    This is what I did:
    Create or replace procedure mysp (
    var1 in number,
    var2 OUT number,
    ) as
    Cursor mycor is
    select * from emp;
    begin
    for cors in mycor loop
    var2 :=cors.ename;
    end;
    Thanks
    null

    I think you need to do in similar way as follows:
    CREATE OR REPLACE PACKAGE sp_dev_sel_all_devicesPKG AS
    TYPE RT1 IS RECORD (
    sp_dev_id tbl_device.dev_id%TYPE,
    sp_dev_name tbl_device.dev_name%TYPE,
    sp_err_code tbl_error_messages.erm_id%TYPE,
    sp_err_msg tbl_error_messages.erm_msg%TYPE
    TYPE RCT1 IS REF CURSOR RETURN RT1;
    END;
    sho err
    CREATE OR REPLACE PROCEDURE sp_dev_sel_all_devices (
    in_usr_id IN tbl_user.usr_id%TYPE,
    in_session_id IN tbl_user.usr_curr_session_id%TYPE,
    RC1 IN OUT sp_dev_sel_all_devicesPKG.RCT1
    ) AS
    ls_err_hint tbl_error_log.erl_err_hint%TYPE := 'BEGINING';
    ls_err_code tbl_error_messages.erm_id%TYPE;
    ls_err_msg tbl_error_messages.erm_msg%TYPE;
    BEGIN
    ls_err_hint := 'Check the timeout status of the user';
    sp_utr_chk_timeout(UPPER(in_usr_id), in_session_id, 'sp_dev_sel_all_devices', ls_err_code, ls_err_msg);
    ls_err_hint := 'Getting all Devices from tbl_device';
    OPEN RC1 FOR
    SELECT dev_id,
    dev_name,
    ls_err_code err_code,
    ls_err_msg err_msg
    FROM tbl_device
    ORDER BY dev_name;
    RETURN;
    END;
    sho err
    Hope this works
    r@m@

  • Pass multiple rows from sp to the calling prog

    I have a stored procedure using cursor to get multiple rows from the db, how can I pass these rows to the calling prog? Is the out variable returns the last row only?
    This is what I did:
    Create or replace procedure mysp (
    var1 in number,
    var2 OUT number,
    ) as
    Cursor mycor is
    select * from emp;
    begin
    for cors in mycor loop
    var2 :=cors.ename;
    end;
    Thanks
    null

    George:
    You can use CURSOR VARIABLE to pass this
    data type among PL/SQL or Java:
    create or replace package pkg_a
    as
    TYPE c_emp REF CURSOR;
    PROCEDURE mysp (var1 IN NUMBER,
    c_var2 OUT c_emp);
    END package pkg_a;
    CREATE OR REPLACE PACKAGE BODY pka_a
    AS
    PROCEDURE mysp (var1 IN NUMBER,
    c_var2 OUT c_emp)
    IS
    BEGIN
    OPEN c_var2
    FOR
    SELECT * FROM emp;
    END mysp;
    END pkg_a;

  • I get error 8062 when trying to copy files from one external hard drive to another. It starts out copying files, but after 10 minutes or so it stops and I get the error 8062. The hard drive tech support says the problem is in my Macbook Air.

    I cannot copy my doc and photos and videos from one external hard drive to a second external hard drive -- both plugged in to my MacBook Air -- I get Error 8062 and the copying (which seemed to be going on for 10 minutes) stops and nothing gets copied.
    As any Macbook Air owner knows, there is SO LITTLE storage capacity on the computer that you have to back up big files onto an external hard drive to avoid getting the other annoying error that says you have no more memory/storage capacity/whatever the proper term is, and you cannot use the computer.
    Backstory: Before this error cropped up, I had backed up lots of files to an external drive and then removed them from my computer. But then the external hard drive got corrupted and I could not access my entire photo library. Had to pay $850 to Kroll Ontrack to recover those files. I have now bought 2 new external 1 Terrabyte  hard drives as protection against another such disaster. BUT I cannot copy the files from the first hard drive where all my reovered files now sit, to another backup hard drive.
    Feeling vulnerable. Please help.
    SusaninNY

    From the menu bar, select
     ▹ System Preferences ▹ Energy Saver ▹ Power Adapter
    and uncheck the box labeled Put the hard disk(s) to sleep when possible, if it's checked.
    If the drive has more than one interface (USB, FireWire, Thunderbolt, eSATA), try one of the other interfaces.
    Check that the data cable is securely inserted at both ends.
    Try a different cable.
    If you're connecting the drive through a hub, connect it directly to a built-in port on the Mac.
    If you're connecting it directly, try a different port.
    Disconnect all other devices on the bus, or as many as possible.
    Test the drive with another Mac. Test another drive with this Mac.
    If the drive is bus-powered, but has an AC adapter, connect the adapter.
    Start up in Safe Mode and test.
    If the drive doesn't work under any of the above conditions, and if another drive does work with the same Mac, then the drive has failed. You may be able to salvage the mechanism by removing it from the enclosure and installing it in another one, or in a drive dock.

  • Can't get LR3 to import photos from one external hard drive to another?

    I'm wanting to move thousands of raw photos from a folder in one external hard drive to another folder in a different external hard drive so all my photos are in one photo folder instead of two.  I've gone through the importing routine inside of lightroom to move the folder over to the new hard drive.  However, the photos don't move because they still show up on the old hard drive and not the new one.  What's weird is when I try to import it again, the grid view shows all the photos I'm wanting to import and when I move my cursor over any of the photos they are faded out and it says the photos are already imported.  However, if this is true why aren't they showing up in the new folder on my new external hard drive?  I know the new external hard drive works fine because I've successfully been putting all my newer photos there since I started using LR about one year ago.  The one's I'm trying to move over are older photos I shot try to using LR.
    I'm stumped and need some help.  Thanks in advance.

    You wrote
    "Are you saying while I'm in LR just grab the folder I want to move and drop it into the new hard drive"
    Yes, that's the way to move photos & folders from within LR.
    LR will then update its catalog with the new location and everything should be fine.
    Importing is not a good way for moving photos / folders. Since the photos are already in the catalog you had to uncheck <Don't import suspected duplicates> or all the photos will be greyed-out in the import dialog. If you did that LR would import the photos from drive A and put it on drive B. But they would still be on drive A, so you'd have the photos on both drives and would have to delete them on drive A.
    But more important: By default LR saves all edits in the catalog, they are not saved with the images themselves. That means by doing an import instead of a drag-and-drop move you'd lose your edits.
    You can save your edits to xmp, a side-car file that is stored together with the image file, and the xmps would be imported. But LR does not store everything as xmp. For instance Virtual Copies, Collections, Stacking are saved only in the catalog, so by doing an import you'd lose these things.
    Unless you know LR very well, it's best to use the Import Feature only for images that are NOT yet in LR.
    And another thing: Before doing major operations like moving big amounts of photos, it's best to backup your catalog first.
    WW

  • How do I copy my  music from one external hard drive to another one?

    How do I copy my itunes library from  one external drive to a bigger drive?

    Drag the entire iTunes folder to the new HD.
    MJ

  • Passing multiple rows from VC to GP

    Hi,
    I am trying to implement a GP process where I want to get a list of structure from a VC UI.
    Basically, this is what I want to go:
    a. Present a GP CO with a VC UI with a table to allow user to insert rows of information
    b. Transfer these rows of information to GP context
    c. Present the same rows of information in another GP CO for approval.
    The question is: how to pass the rows of information from the VC table into the GP context as output parameter of the VC CO?
    Thanks.

    Found my solution by referring to this thread: how to pass tables in Guided Procedures from VC
    Basically I just set the Multi-selection to true.
    I hit another issue, but was resolved with this thread: To Work with Guided procedure

  • Unable to backup from one external USB drive to another

    Hi all, this one's been doing my head in for a few days and now I'm waving the white flag of surrender and deciding to ask on here.
    I'm trying to backup some of my video files off one of my external HDDs onto another external HDD (or DVD - more on that in a minute) but I don't appear to be able to do so. The files I'm attempting to back up are either my own DVD rips or iTunes Movie purchases, since we don't yet have Movies in the Cloud in the UK. At various points during the copy procedure I get the following messages:
    The Finder can't complete the operation because some data in <<various names>>.m4v can't be read or written. (Error code -36)
    then, after clicking OK, I get:
    The operation can't be completed because one or more required items can't be found (Error code -43)
    If I use Finder to navigate to the offending named file, there it is in its original place on external disk 1 all nice and happy. In iTunes the file is in the playlist and is perfectly playable. I have turned off "enable disks to sleep where possible" in Preferences to see if one or the other may be going to sleep during the operation. If I use Disk Utility to verify the two HDDs in question both come up as OK. User Permissions are of course off for the external drives and I have tried reformatting the 2nd drive jsut in case. Obviously I can't reformat drive 1 since it contains the data I'm trying to back up and since I can't back it up......you get the idea.
    If I try to use a DVD to backup the media files I'm getting the same errors, along with (in the case of an external DVD drive) something about comunnication between the computer and the drive has failed. Now I'm fairly sure I should be able to backup my data for archiving purposes so does anyone have any idea what could be casuing this problem?
    I'm currently trying again, using yet another external drive and to copy just over 18.5GB it's giving me an estimated completion time of 15 hours and has seemingly frozen on 50.3MB copied! Now I know USB 2.0 is slow by today's standards but still I feel this is a little excessive. It's now down to 3 hours estimated but keeps pausing and climbing to 15+ then back down again. I'm guessing it's either a read error from disk 1 or a write error to disk 2 but since Verify Disk is showing both are OK I'm not sure how to tell which. And now I just got the error messages quoted at the top of the page again.
    OK, ideas anyone.....

    You can copy the entire  to a file.  Use the dmg extension.  Double click on file to mount.
    Perhaps you should run disk utility on the drive. Maybe the filesystem is mess up.
    Do a  bit-by-bit copy
    You can use the following command to display all partitions:
    Macintosh-HD -> Applications -> Utilities -> Terminal
    # This is a little deep.
    #It is  best to do the pdisk command before you eject the external hard drive. Now, eject the external hard drive.  Do another pdisk command to see what drive name has disappeared.  The disappearing name is the name of your external hard drive.
    sudo pdisk -l
    #for details...
    man pdisk
    # Do a  bit-by-bit copy.
    #eject the partition in the normal GUI
    Macintosh-HD -> Applications -> Utilities -> Terminal
    dd if=/dev/disk0s10 bs=4096 | gzip | dd of=~/disk0-s10 bs=4096
    #this can take awhile. Open another window and do ls -l ~/disk0-s10
    # Here is  how to restore the partition.
    dd if=~/disk0-s10 bs=4096 | gunzip | dd of=/dev/disk0s10 bs=4096
    Don't zero out your unused records, since you are having problems with your disk.
    Here is another way to run the command. When you run the command in the background you can question how for the process has gotten.  Adjust or eliminate count as needed.
    mac $ dd if=/dev/zero  bs=1024 count=1kx1k of=/Volumes/MacOSFirewire/zero&
    [1] 510
    mac $ man kill
    mac $ kill -s siginfo 510
    953197+0 records in
    953196+0 records out
    976072704 bytes transferred in 82.524495 secs (11827673 bytes/sec)
    mac $ 1048576+0 records in
    1048576+0 records out
    1073741824 bytes transferred in 89.700333 secs (11970322 bytes/sec)
    Here are two utilities for making a complete backup of your internal hard drive.  I've recommend using one of these so that you can create a bootable system  on your external hard drive. ( PPC require a firewire connected drive. )  Once created, you can run your system from the external drive.  Hold down the option key on your keyboard then power on your machine.  This will bring you in startup manager click on the drive image you wish to boot then click on the arrow key to the right.
    "Clone, synchronize, backup. Schedule and forget it."
    http://www.bombich.com/software/ccc.html
    "SuperDuper is the wildly acclaimed program that makes recovery painless, because it makes creating a fully bootable backup painless."
    http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html

Maybe you are looking for

  • Photos are "damaged" once they are sent to iphone.

    Photos on my computer are fine. when they are sent to my iphone via standard sync, they become distorted. The pictures have green "blobs", black lines and "macroblocking". example. Photo on my computer. http://members.aol.com:/phansson/iphonegood Dam

  • Adding video to iTunes but keeping it in a folder when iTunes organizes your folder automaticly

    Hi, I've recently added a video to my iTunes librariry (on Windows 7) so that I can view it through my AppleTV, I was able to add it to the library and change it's type from Movie to TV Show but when I look at the folder structure, it puts it to the

  • Windows Mail server error 501

    Every time I foreword an address or web page etc. using the "File" E-Mail Link the following happens. The e-mail is sent but there are five old error messages shown below. The e-mail goes trough but I have to hit the [close] box to clear the sent mes

  • Periodic application, conversion on ytd value

    Hi all, I have SAP BPC 7.5.108 MS, I need to do a periodic application,but I would like to do a conversion applied on YTD value. Do you know if it's possible in the business rules? I know that it's possible, in the Ytd applciation, to apply the conve

  • Import Standard Purchase Orders and matching to the invoice

    Hi Experts, Can we import standard purchase orders into oracle from 3rd party systems. And also there's a requirement to match the relevant invoice in AP to the purchase Order automatically when the PO is transferred. We are on 11.5.10.2 Regards, Mig