Showing data of two columns in one in the Query

I have two masters with same structures only Key of master is different.
i have created multiprovider on these masters which is used for query purpose.
Here situation is that we have already loaded data in one master structure whcih is not tobe touched.
we can only do chages in second master.
Now in Multiprovider as two key fields for two masters are different we cannot map them in identification of multiprovider.
Now we want only one field on selection screen and also in the report with data for both masters.
can anybody help me in it.

Hi
You can use Constant Selection (Effect like Left Outer Join for different InfoObjects in a MultiProvider). In order to do that, please take the following steps:
1. Create a Restriced Key Figure.
2. In the RKF dialog, drag one of the characteristics (the one that is NOT related to the KF).
3. Right Click on this Characteristic (context menu) and hit "Constant Selection".
This should show you all values in the columns.
Yaniv

Similar Messages

  • Getting data of two columns in one column

    Hi,
    I need to show data of two columns in one column, I also want to insert space between the data of both the columns in the output
    can i use something like this ?
    (IMPORTER_NAME+' '+IMPORTER_ADDRESS) as "Location"

    872435 wrote:
    Hi,
    I need to show data of two columns in one column, I also want to insert space between the data of both the columns in the output
    can i use something like this ?
    (IMPORTER_NAME+' '+IMPORTER_ADDRESS) as "Location"You can either use the CONCAT function or || -
    SQL> select 'Hello'||' '||'World', CONCAT(CONCAT('Hello',' '),'World') from dual;
    'HELLO'||'' CONCAT(CONC
    Hello World Hello WorldHTH
    David

  • Retrieve of data from two columns into one column

    For eg: i have a data in a table with columns A & B of same size
    A B
    1 2
    2
    3 1
    4 2
    5 3
    6 5
    7 1
    8 4
    9
    10 8
    Through a select i want the output of my data in one single
    columns, Well I can do this by using union.
    But my output should be like
    if I select by condition where A=2
    my output should be
    2
    1
    3
    7
    4
    because all these numbers are linked with 2 how do i do this
    because it is like searching the number 2 in two columns and wherever this number 2 is linked i should get all the data relevant to it.
    Hope u got my point what i exactly want
    Can anyone help me it is quite urgent.
    Regards
    Vamsi Mohan

    i do not a concatenated data
    i have a data in a table with columns A & B of same size
    A B
    1 2
    2
    3 1
    4 2
    5 3
    6 5
    7 1
    8 4
    9
    10 8
    if my where condition is 'where A=2'
    my output should be
    1
    2
    3
    4
    5
    6
    8
    10
    i want my query to search as loop so that it keeps on searching
    for related data as in my case it is
    2 is linked to 1
    1 is linked to 3
    3 is linked to 4
    my query should keep on seaching for linked numbers till
    it does not find any mathing linked numbers
    and the resulted output should come in one single column

  • Is it possible to show data from two different sql tables?

    Is it possible to show data from two different sql tables? Either to show combined data by using a join on a foreign key or showing a typical master detail view?
    I have one table With data about a house, and another table With URL's to images in the blob. Could these two be combined in the same Gallery?
    Best regards Terje F - Norway

    Hi Terje,
    If you have a unique key, you could use one of the following functions for your scenarios:
    If you only have one image per house, you can use LookUp:
    http://siena.blob.core.windows.net/beta/ProjectSienaBetaFunctionReference.html#_Toc373745501
    If you have multiple images per house, you can use Filter:
    http://siena.blob.core.windows.net/beta/ProjectSienaBetaFunctionReference.html#_Toc373745487
    Thanks
    Robin

  • ALV Tree, Expanded node do not show data in certain column

    Hi all,
    I need your help regard to below problem.
    I have an ALV grid in which one of the columns has F4 (search help). If search help is called by pressing a F4 button a dialog box will be shown with ALV tree on it.
    The ALV Tree has 2 columns which are: hierarchy column and one other column called WBS column. At the first show, all expanded node show data contained in WBS column, but if I click to expand a collapsed node, data is not shown in WBS column for the new expanded rows, only shows data in hierarchy column. How to show data in WBS column for the new expanded rows..?
    Basically if at the first show I expand all node, data in WBS column are shown for all rows. It seems that the Expand Node event doesn't update all column data to be shown.
    Please share if anyone of you has faced this kind of problem. Thank you.
    Regards,
    Ramses Hutahaean
    Edited by: Ramses Hutahaean on Feb 29, 2012 1:38 PM

    Hi Fenja,
    as the click-events only raise the node_key (at least I couldn't detect another information), I assume the only way is maintaining an internal helper table by yourself which you build up in parallel when creating the tree and its nodes.
    The (hashed) table might contain 2 columns:
    1. node_key (as table key)
    2. reference to an object
    When a click-event is raised, you look up the corresponding object reference in your table.
    Regards,
    Ulrich

  • Need to compare values in two columns of one table against values in two columns in another table

    Hi, as the title reads, I'm looking for an approach that will allow me to compare values in two columns of one table against values in two columns in another table.
    Say, for instance, here are my tables:
    Table1:
    Server,Login
    ABCDEF,JOHN
    ABCDEF,JANE
    FEDCBA,SEAN
    FEDCBA,SHAWN
    Table2:
    Server,Login
    ABCDEF,JOHN
    ABCDEF,JANE
    FEDCBA,SHAWN
    In comparing the two tables, I'd like my query to report the rows in table1 NOT found in table2. In this case, it'll be the 3rd row of table one:
    Server,Login
    FEDCBA,SEAN
    Thanks.

    create table Table1([Server] varchar(50), Login varchar(50))
    Insert into Table1 values ('ABCDEF','JOHN'),('ABCDEF','JANE'),('FEDCBA','SEAN'),('FEDCBA','SHAWN')
    create table Table2([Server] varchar(50), Login varchar(50))
    Insert into Table2 values ('ABCDEF','JOHN'),('ABCDEF','JANE'), ('FEDCBA','SHAWN')
    select [Server] ,Login from Table1
    Except
    select [Server] ,Login from Table2
    select [Server] ,Login from Table1 t1
    where not exists(Select 1 from Table2 where t1.[Server] = t1.[Server] AND Login=t1.Login)
    drop table Table1,Table2

  • Putting two columns in one

    Hey Guys,
    there is my next question on sql.
    It is possible to put two columns in one and when, how do I implement it? If there is an opportunity, may I asked to explain it on a example. =)
    best regards
    wderr

    You can use concatenation:
    SQL> create table a (a1 varchar2(10), a2 varchar2(10));
    Table created.
    SQL> insert into a values ('str1','str2');
    1 row created.
    SQL> select a1, a2, a1||a2
      2  from a;
    A1         A2         A1||A2
    str1       str2       str1str2
    1 row selected.Max
    [My Italian Oracle blog| http://oracleitalia.wordpress.com/2010/02/07/aggiornare-una-tabella-con-listruzione-merge/]

  • Can I make two column in one slide?

    Hello, Everybody, I want to know about can i make two column in one slide. One column is demonstration and second column is to make the assessment that is teaching from one column. I can make one slide is demonstration and second is making assessment. But I don't want to do that for the learners. The learners can learn from the one column and can make assessment in the second column. Is it OK or not. Please give advice. Thanks!!!

    Hi GreenLands,
    Having both demo and assesment action in one slide is not possible in captivate. The learner should watch the full demo and then be tested through assessment or training.
    Thanks
    Devraj

  • I have a one-column table in pages.  Each cell has text and a number separated by a colon.  Can I automatically make it two column with everything to the right of the colon in the second column?

    I have a one-column table in pages.  Each cell has text and a number separated by a colon.  Can I automatically make it two column with everything to the right of the colon in the second column?

    Here's another way that is pretty quick to do.
    Formula in Column B is:
    =LEFT(A, FIND(":", A))
    Formula in Column C is:
    =RIGHT(A, LEN(A)-FIND(":", A))
    You can eliminate the colon from the result in column B by writing:
    =LEFT(A, FIND(":", A)-1)
    Once you do the conversion, you should freeze the result by Selecting columns B and C and then Command-C, Edit > Paste Values.
    Regards,
    Jerry

  • Top x for "show data as % of column"

    I have the below requirement: (obiee 11g)
    Attribute - Value - % of total value
    I am calculating "% of total value" by creating duplicate column and selecting "show data as % of column". This is working fine.
    Now there is an additional requirement to display "top x" values based on "value" column or "% of total value" column.
    If I add filter "top 10" on "value" - % of total value is getting calculated only based on those 10 values but not all values.
    How I can display consistent "% of total value" based on sum of total "value" but not just top x with the ability to show top 5, or top 10 etc.
    Your responses are highly appreciated.
    thanks.
    Edited by: 917421 on May 15, 2012 10:12 AM

    HI,
    Please refer the link.
    http://myobieeworld.blogspot.in/2009/02/dissecting-paint-repository.html
    Hope it help's
    Thanks,
    Satya

  • Switching data between MacBooks (everything from one to the other)

    I need a faster notebook for business. My wife's MacBook is newer than mine and has agreed to switch with me.
    Both laptops are backed up to the same Airport Time Capsule.
    What is the best way to switch the data on both machines, from one to the other?
    Thank you,
    Bill

    There are probably other ways to do this.
    One way to accomplish what you want to do is to make a current backup of both computers. For an option in case there is a Time Machine problem, I would also make a clone of each hard drive and temporarily store the clone on the Time Capsule.
    Boot into the Recovery Volume (hold down command - R or hold down option key) and restart. I would run Disk Utility Repair Permissions and Verify/Repair. Then use Disk Utility to erase the disk. The format is Mac OS Extended (Journaled). Then reinstall the OS.
    Reinstall OS
    Reboot normally and then attempt to inherit the Time Machine backup for the computer you are working on. Use Setup Assistant or Migration Assistant to restore the backup. Using the same user account name as on the old computer may make things easier.
    Inherit a Backup
    Inherit a Backup (2)
    If for some reason you have trouble inheriting the Time Machine backup, attach the Time Capsule to the computer, mount the clone in Finder, and copy the files you want to restore.
    Once everything is completed, you can delete the clones from the Time Capsule to allow more room for the Time Machine backups.
    I would seriously consider buying a 2nd Time Capsule and create two separate backups before attempting anything. One backup isn’t enough because hard drives do fail. Time Machine will allow you to backup to 2 disks and will alternate between them. Instead of using Time Machine on the 2nd hard drive, you might want to consider using the second drive to store a clone on because you can make a bootable clone.
    Cloning programs.
    Clone  - Carbon Copy Cloner (Often recommended as it has more features than some others)
    Clone – Data Backup
    Clone – Deja Vu
    Clone  - SuperDuper
    Clone - Synk
    Clone Software – 6 Applications Tested

  • Stranger than fiction - Two application folders, one within the other

    I have two application folders, one inside the other.
    Can I just delete the one inside the other one of my application folders? I've never seen Tiger do this. I didn't do it so it had to be Tiger software. All the same applications are in both.
    Thanks.

    First, I'd boot from the Install CD/DVD then after you choose your language, a Menubar will show up top, find Disk Utility and run it from there to verify/Repair the HD.
    Might even want to Right Click on it and Archive before trashing, but with duplicate APPs in there... this might be a sign of real trouble on the horizon.
    Be absolutely certain to fix the Disk problem ASAP, I don't think there really are two of everything, just one with 2 lists or pointers !

  • I have two iPhoto libraries: one on the hard drive, and one on an external hard drive.  I cannot access my external hard drive iPhoto library.  Help!

    I have two iPhoto libraries: one on the hard drive, and one on an external hard drive.  I cannot access the iPhoto library on the external hard drive.  Yes, it is plugged in!

    How are you trying to access the EHD library?  Can you open it by launching iPhoto with the Option key held down and selecting the EHD library in the window that appears?
    OT

  • Why am I getting an error when I place two OAM files one after the other in different pages?

    Why am I getting an error when I place two OAM files one after the other in different pages? They do not load or play correctly.  They are both configured to play automatically with a .125 second delay and both have a white rectangle "poster" over for a hidden effect.

    Thanks for the idea, Scott! I initially tried your idea, but my OAM files were still not loading correctly.  I tried other combinations of OAM files, and it seems to work fine.
    Back to my original OAM files: I made sure that my elements in my Edge Animate project had different names. I originally copied parts of some elements from one to another, and I think it was confusing to DPS to read it. 

  • I have a fairly elderly I Mac 7.1 (2.47 Ghz Intel Core Duo) operating OSX v 10.9.5. At the core level I find two Library folders, one within the System Folder and one by itself with the other core level folders - mostly same content. Is this right?

    iMac 7.1 (2.47 Ghz Intel Core Duo w/2GB memory) operating OSX v 10.9.5. At the core level I find two Library folders, one within the System Folder and one by itself with the other core level folders - mostly same content. Is this right or do I have a duplication problem?
    The system is slow.

Maybe you are looking for

  • Time Capsule won't connect to BT Home Hub3

    I was using the TC in Dubai and all was well and I am now back living in the UK. I now have a BT Home Hub 3 but I can't get the TC to connect to the network. Do I need to set the TC up as the primary network? If so, how do I do this? Or do I set the

  • Easy question about JScrollPane issue

    The problem is I do not understand why it is not possible, or what I am doing wrong to not be able to initialize a JScrollPane with a variable and call it later, real easy to see in the code below. NOTE! I CAN use scrollbars, but only without initial

  • Losing Digital Audio Ouput from Mini SPDIF

    I have a 2010 Mac Mini connected to my HDTV/AV Receiver. I send digital audio to the av receiver with an optical cable. I have sleep disabled for OTA DVR. I have not tried to see if it will wake the mini to record. I have it working, but often upon u

  • Error -1 occurred at CDK_Utility_GenerateErrorCluster.vi - IB_Source_Container.lvclass:Report_Preview_Error.vi

    All, I ever built this applicatio software with LabVIEW 2010 successfully. Now I changed to LabVIEW 2013 and want to build this software again, but encountered this undefined error, "Error -1 occurred at CDK_Utility_GenerateErrorCluster.vi -> IB_Sour

  • MP4 file type Codec H.264

    I convert movies to MP4 file types with H.264 codec and they will play in itunes, but they will not load on my ipod. How can I get them loaded onto my ipod?