Transfer State from one WAD to another

Hello friends.
I have a trouble using the command TRANSFER STATE in BW 7.0
I need to trasfer the navigation state of one dropdown box from wad 1 to wad 2.  I already do that, but the problem is that when the second wad is open, the dataproviders that exists in wad are not being filtered by the characteristic of the dropdown box.
I'm using a variable in the dropdown box. I'm using the same variable in both wads (and in both dropdown boxes) but the dataproviders of wad 2 ar not being filtered when I trasnfer the status.
How can I get the dataproviders filtered with the value of the dropdown box when transfer state ????
Thanks in advance.

Hi,
the command TRANSFER_STATE will copy the items / data providers  with the same logical to the target web template (if you have choosen to transfer them in the command settings). Meaning, that if you have a data Provider DP_1 in both Web Templates, DP_1 in the target Web Template will have exactly the same state (and therfore also the filter values, as well as the drill down, ... are the same)
So in fact in your case TRANSFER_STATE should be done (if this is really the correct scenario) for the Data Provider and not for the item, as the Dropdown will always reflect the state of the underlying data provider.
What you want to achieve sounds more like a RRI (jump to another Web Template while transfering all the filter values, variables, ...)
Heike

Similar Messages

  • How to transfer DATA from one machine to another using  DBlink

    I want to transfer data from one machine to another both having oracle 8.0.5 with AIX operating system using DB link. CAn any one help me in this task

    Step one - Create and test SQLNet connections between the databases.
    Step two - Create at least on database like from one database to the other:
    CREATE DATABASE LINK linkname
    CONNECT TO user identified by password
    USING 'tnsnamesentry';
    Step three - use the dblink linkname in dml statements eg:
    insert into emp@linkname
    (select * from emp);

  • How do i transfer music from one account to another?

    I want to transfer music from my account to my friends account, how do i do that?

    You can't transfer content from one account to another.

  • How can I transfer work from one computer to another?

    How can I transfer work from one computer to another?

    Welcome to the forum.
    I can think of three basic ways to accomplish what you wish to do:
    Use the Project Archiver to archive your Project (and check the box to gather the media files), to an external HDD. Probably the easiest way to do it.
    Copy the Project and ALL media files to an external HDD, but be prepared to relink the media files to the Project, as the drive letter (part of the Absolute Path) will have changed.
    Edit loosely, and Share to an AV file, which will be Imported into a New Project on that second computer. Or, edit VERY tightly, and do the same. I like the first, as removing, replacing Transitions, etc., can be much more difficult, unless that "tight edit" is 100% done.
    Good luck,
    Hunt
    Message was edited by: Bill Hunt to correct formatting

  • How can I transfer information from one ipad to another?

    how can I transfer information from one ipad to another ?

    What kind of information? You can sync things like Contacts and Calendars by using iCloud. You can backup one iPad to iTunes on a computer and then sync the backup to the other iPad. You can configure your iTunes content and sync the same content to both iPads.
    It is based on what you want to do. Or are you looking for a way to send files from one iPad to another wirelessly? There are apps to do things like that, as well as cloud services, such as DropBox.

  • Can i transfer music from one ipod to another?

    Can i transfer music from one ipod to another?

    No. You can only do it via iTunes or by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Can i transfer everything from one ipad to another so both have exactly the same things

    Can i transfer everything from one ipad to another so both have exactly the same things?

    Yes. Copy your apps and other iTunes purchases/downloads to your computer's iTunes via File > Transfer Purchases (File > Devices > Transfer Purchases if you have iTunes 11 on your computer), then backup up the first iPad and restore that backup onto the second iPad.
    Backups and restores : http://support.apple.com/kb/HT4079
    Things that aren't included in a backup include the contents of the Music and Videos apps (but they should be on your computer's iTunes) and photos that were synced from a computer. Also you will need to enter your passwords (email, wifi, website) on the second iPad - they won't be restored onto a different device, only back onto the device that the backup came from.

  • Can I transfer pictures from one iPad to another without going over iTunes?, can I transfer pictures from one iPad to another without going over iTunes?

    can I transfer pictures from one iPad to another without going over iTunes?, can I transfer pictures from one iPad to another without going over iTunes?

    Yes, use 3rd party apps like Photo Transfer App.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/69507ce7f854c405f54 77bea99f4d498.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/79b3173fda7b6a6e148 5b463198f6acf.jpg

  • Can I transfer info from one macbook to another by using a firewire cable?

    Can I transfer info from one mac to another by using a firewire cable?

    You can boot the computer that you would like to get the file from into target disk mode.
    This document will help you.
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8443.html

  • HT5035 How do I transfer credit from one account to another?

    How do I transfer credit from one account to another.  I have 2 IDs because we have a lot of devices.  I want to transfer credit from one Apple ID to another Apple ID.

    You don't.
    (72323)

  • HT201209 Can I transfer money from one account to another?

    Can I transfer money from one account to another?

    No; if the balance includes a completely unspent gift card, the iTunes Store staff can put that money back onto it.
    (96104)

  • Transfer data from one database to another without identities but keep the relation b/w PK and Foreign key

    Hi,
    I need to transfer data from one database to another database (both are identical databases). 
    1. Not transferring identity columns (primary keys). the destination table might have the same key.
    2. keep the PK's and FK's relation b/w parent and child table
    3. I have 4 levels 
    Example: tableA (col1 int identity(1,1) , col2, col3)
    tableB (col1 int identity(1,1) ,
    col2 , col3) -- col2 has the foreign key relation with tableA.col1
    tableC (col1 int identity(1,1) ,
    col2, col3) -- col2  has the foreign key relation with tableB.col1
    tableD (col1 int identity(1,1) , col2, col3) -- col2  has the foreign key relation with tableC.col1
    please advise me.
    Thanks in advance

    Try the below:
    /********************************SAMPLE TARGET***************************************************************/
    Use MSDNSamples
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'R1'
    Insert into TableA(name) Select 'R2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Childname1',1
    /********************************SAMPLE TARGET***************************************************************/
    /********************************SAMPLE SOURCE***************************************************************/
    Use Sample
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'C1'
    Insert into TableA(name) Select 'C2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Kidname1',1
    /********************************SAMPLE SOURCE***************************************************************/
    USe MSDNSamples
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    --Migration table
    Create table Mg_TableA(LevelValueId int, NewValueId int)
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    MERGE INTO TableA
    USING sample.dbo.TableA AS tv
    ON 1 = 0
    WHEN NOT MATCHED THEN
    INSERT(name) Values(tv.name)
    Output tv.levelValueId ,inserted.LevelValueid INTO
    Mg_TableA;
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    Insert into TableB (name,LevelValueID)
    Select A.name,B.NewValueId From sample.dbo.TableB A
    Inner join Mg_TableA B on A.LevelValueID = B.LevelValueId
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    /********************************TEST THE VALUES***************************************************************/
    Select * From TableA
    Select * From Mg_TableA
    Select * From TableB
    /********************************TEST THE VALUES***************************************************************/
    Drop table TableB,Tablea,Mg_TableA
    Use Sample
    Drop Table TableB,Tablea

  • How do I transfer music from one computer to another with ratings?

    How do I transfer music from one PC to another along with the ratings and # plays?

    Refer to these articles:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751

  • Can you transfer music from one ipad to another

    can you transfer music from one ipad to another??

    Are you trying to share music with a friend or are you putting music from an old ipad to a new one?

  • How do i transfer music from one phone to another

    how do i transfer music from one phone to another? i cannot get it to stay on itunes

    You don't.  It's a one-way sync itunes to iphone.

Maybe you are looking for

  • Problem with GPS in Nokia 5800

    I'm in Nokia Maps, I click in "my position" and it shows me the red dot in south of Portugal (Algarve). Well, that would be cool if I were there, but I'm not! I'm in the north (Braga). I want to connect via sattelite and not via internet, cause I wan

  • Problem with selecting texts

    My iphones note app just started giving me problem today, it crashes everytime i try to select texts same problem occures when i try to select texts in other apps like opera mini and safari can someone pls help me with this i already tried rebooting

  • Photoshop CS fails to install

    This is on a an Acer Veriton DuoCore with 1 GB RAM. I've never had PSCS2 or any beta versions. I ran the CS3CleanUp [level 2] because I failed to install PSCS3 months ago and gave up. I downloaded a new copy of PSCS3. Installer runs smoothly but ends

  • Photoshop hanging every few seconds on 2011 Mac with 12 GB RAM and 2.7 Ghz Intel Core I5

    My photoshop begins to hang and freeze as soon as it is opened.  Cant even open a file without getting the spinning wheel.  Any ideas on how to fix this issue?

  • Changed my email for my apple ID and I don't know how to change it on my iPhone.

    So as the title says I changed my email for my apple ID because I'm getting rid of an old email account.  My iPhone is still trying to use my old email as the login ID so it doesn't work obviously.  How can I change my apple ID in my iPhone?