How to realize the referenced in the BI, similar to EXCEL "vlookup" mode

HI,experts:
My  webi 4.0
Data and  Logical following:
DIM(dimnesion):
one Query is
[dimA]  [dimB] [dimC]  [dimD]
New  add Query is
[dimA]  [Class1]
the two Query are Different  universe model .
THE dimA  is the same data content.
I want to achieve the effect of the following:
[dimA]  [dimB] [dimC]  [dimD]   [Class1]
Error occurred:   #DATASYNC   and    #CONTEXT (Screenshot)
How to realize the referenced in the BI, similar to EXCEL "vlookup" mode?

I get it.thanks
The solution is set up  detail variable
Screen Shot
Regards
wang

Similar Messages

  • How to realize this reqirement in the dashboard prompt in OBIEE 10G?

    Hi,
    I have a new query about dashboard prompt in OBIEE 10g..
    All below is needed to Operator in the dashboard prompt.
    We have 4 columns, 4 columns using multi-select type need to constrain together and need to show value which is related with product..
    e.g.
    Now I display "REGION" column using multi-select in Control, and I need to show data which product name is not null. After I add "where product name is not null" in the SQL results in Show, then I cannot use the Constrain box.. and I cannot set any variable if I using multi-select type..
    So anybody have any idea about this?
    Your reply will be highly appreciate..
    Regards,
    Anne

    Hi Anne
    User Input type as " Multi select prompt" keep it with constrain option then apply below query
    apply like this kind of SQL query in Default selection --->SQL result section
    SELECT "MX_PORTFOLIO_STATIC"."MT_BU_Level1" FROM "Position" where "MX_PORTFOLIO_STATIC"."MT_BU_Level1" is not null
    Thanks
    Deva

  • Call BSP from a funtion module and use results of the BSP in the calling fm

    Hi BSP experts,
    I want to implement following scenario. But currently I've no idea how to realize step 4 of the process.
    1. An ABAP program calls a function module.
    2. The function module calls a BSP page.
    3. In the BSP users will fill out some fields (e.g. name).
    4. After pressing the submit button the BSP should transfer the values to the export parameters of the calling function module. 
    Thanks for your support & Regards

    within the FM code you should call a SAPGUI screen with embedded html viewer control, in which you will show the bsp page and user can enter value and hit submit. you can then collect the user entered value and set it as export value fo the FM. but why do you want to do this?
    Regards
    Raja

  • How Can realize a one-to-many relationship via RIA service in lightswitch

    I have to query a large data and the normal query in lightswitch is so slow that I decided to use RIA service to improve the query.However I am not very good at RIA service. I follow
    this tutorial and set up a very simple RIA service. In my project, I have a one-to-many relationship but I don't know how to
    realize it . here is the Relationship:
    public class CombinedStadium
    private EcoStatus _ecoStatus;
    [Key]
    public int Id { get; set; }
    public string Name { get; set; }
    public string Category { get; set; }
    public string Owner { get; set; }
    public string Street { get; set; }
    public string OrgCode { get; set; }
    public string Place { get; set; }
    public int? FoundYear { get; set; }
    public double? LandArea { get; set; }
    public double? BuildingArea { get; set; }
    public double? SiteArea { get; set; }
    public double? Investment { get; set; }
    public double? Fiscal { get; set; }
    public double? CommonWeal { get; set; }
    public double? SelfRaised { get; set; }
    public double? SocialDonate { get; set; }
    public double? Other { get; set; }
    public double? Longitude { get; set; }
    public double? Latitude { get; set; }
    public string Note { get; set; }
    public byte[] Photo { get; set; }
    [Include]
    [Association("Stadium_EcoStatus", "Id", "EcoId", IsForeignKey = false)]
    public virtual EcoStatus EcoStatus
    get { return this._ecoStatus; }
    set
    this._ecoStatus = value;
    if (value == null)
    this.Id = value.Id;
    I am not sure whether it is right or not. But I want "one CombinedStadium Entity may contains
    more than one(many)EcoStatus Entities.
    I tried the code above and update my datasource, I got the error "the entity
    LightSwitchApplication.Implementation.EcoStatus's property doesn't supported by the type of StadiumEcoReference".
    How Can I realize a one-to-many relationship via RIA and use it in my lightswitch program?
    thx !!!

    namespace WCF_RIA_Project
    public class CombinedStadium
    [Key]
    public int SiteId { get; set; }
    public string Name { get; set; }
    public string Category { get; set; }
    public string Owner { get; set; }
    public string Street { get; set; }
    public string OrgCode { get; set; }
    public string Place { get; set; }
    public int? FoundYear { get; set; }
    public double? LandArea { get; set; }
    public double? BuildingArea { get; set; }
    public double? SiteArea { get; set; }
    public double? Investment { get; set; }
    public double? Fiscal { get; set; }
    public double? CommonWeal { get; set; }
    public double? SelfRaised { get; set; }
    public double? SocialDonate { get; set; }
    public double? Other { get; set; }
    public double? Longitude { get; set; }
    public double? Latitude { get; set; }
    public string Note { get; set; }
    public byte[] Photo { get; set; }
    [Include]
    [Association("Stadium_EcoStatus", "SiteId", "StadiumId")]
    public IQueryable<CombindeEcoStatus> EcoStatus { get; set; }
    public class CombindeEcoStatus
    [Key]
    public int EcoId { get; set; }
    public string StatdiumName { get; set; }
    public int? StadiumId { get; set; }
    public int? Year { get; set; }
    public int? EmployeeNum { get; set; }
    public string OperateMode { get; set; }
    public string OpenStatus { get; set; }
    public double? OpeningDays { get; set; }
    public string ClientCount { get; set; }
    public double? Income { get; set; }
    public double? Expend { get; set; }
    [Include]
    [Association("Stadium_EcoStatus", "StadiumId", "SiteId", IsForeignKey = true)]
    public CombinedStadium Stadium
    get;
    set;
    public class WCF_RIA_Service : DomainService
    private ApplicationData m_context;
    public ApplicationData Context
    get
    if (this.m_context == null)
    string connString =
    System.Web.Configuration.WebConfigurationManager
    .ConnectionStrings["_IntrinsicData"].ConnectionString;
    EntityConnectionStringBuilder builder = new EntityConnectionStringBuilder();
    builder.Metadata =
    "res://*/ApplicationData.csdl|res://*/ApplicationData.ssdl|res://*/ApplicationData.msl";
    builder.Provider =
    "System.Data.SqlClient";
    builder.ProviderConnectionString = connString;
    this.m_context = new ApplicationData(builder.ConnectionString);
    return this.m_context;
    [Query(IsDefault = true)]
    public IQueryable<CombinedStadium> GetAllStadiums()
    var stadiumsQuery = from stadium in this.Context.StadiumSet
    select new
    ID = stadium.Id,
    Name = stadium.Name,
    Category = stadium.Category.Name,
    OwnerParts = stadium.Owner2StadiumMediatorCollection.Select(x => x.Owner.Name),
    Street = stadium.Street.Name,
    OrgCode = stadium.StadiumBase.OrgCode,
    Place = stadium.StadiumBase.Place,
    FoundYear = stadium.StadiumBase.FoundYear,
    LandArea = stadium.StadiumBase.LandArea,
    BuildingArea = stadium.StadiumBase.BuildingArea,
    SiteArea = stadium.StadiumBase.SiteArea,
    Investment = stadium.StadiumBase.Investment,
    Fiscal = stadium.StadiumBase.Fiscal,
    CommonWeal = stadium.StadiumBase.CommonWeal,
    SelfRaised = stadium.StadiumBase.SelfRaised,
    SocialDonate = stadium.StadiumBase.SocialDonate,
    Other = stadium.StadiumBase.Other,
    Longitude = stadium.StadiumBase.Longitude,
    Latitude = stadium.StadiumBase.Latitude,
    Note = stadium.StadiumBase.Note,
    Photo = stadium.StadiumBase.Photo,
    var result = stadiumsQuery.AsEnumerable().Select(x => new CombinedStadium()
    SiteId = x.ID,
    Name = x.Name,
    Category = x.Category,
    Owner = string.Join("/", x.OwnerParts),
    Street = x.Street,
    OrgCode = x.OrgCode,
    Place = x.Place,
    FoundYear = x.FoundYear,
    LandArea = x.LandArea,
    BuildingArea = x.BuildingArea,
    SiteArea = x.SiteArea,
    Investment = x.Investment,
    Fiscal = x.Fiscal,
    CommonWeal = x.CommonWeal,
    SelfRaised = x.SelfRaised,
    Other = x.Other,
    Longitude = x.Longitude,
    Latitude = x.Latitude,
    Note = x.Note,
    Photo = x.Photo,
    }).AsQueryable();
    return result;
    [Query(IsDefault = true)]
    public IQueryable<CombindeEcoStatus> GetAllEcoStatuses()
    var stadiumEco = from eco in this.Context.EcoStatusSet
    select new CombindeEcoStatus()
    EcoId = eco.Id,
    StatdiumName = eco.StadiumEco.Name,
    StadiumId = eco.StadiumEco.Id,
    Year = eco.Year,
    EmployeeNum = eco.Employee,
    OperateMode = eco.OperateMode,
    OpenStatus = eco.OpenStatus,
    OpeningDays = eco.OpeningDays,
    ClientCount = eco.ClientCount,
    Income = eco.Income,
    Expend = eco.Expend
    return stadiumEco;
    protected override int Count<T>(IQueryable<T> queryable)
    return queryable.Count();
    now I have solved my problem, but when I query the data in Lihgtswitch HTMLClient . I can't get the related entities "CombindeEcoStatus" . How can I write the return value of
    GetAllStadiums function to get the related CombindeEcoStatus of each
    CombinedStadium?
    thanks!

  • I have 60 000 songs on a hard drive. The songs are referenced to the media file and not stored in the media file. I have moved the songs to another external drive. The itunes library has lost the link to the media files. How can I restore the links?

    I have all my songs (60 000) on a remote drive. The drive is wireless networked. I installed a new router and had to map the drive again. Once this was done itunes could no longer locate the music. My music is not sitting in my media file but is rather referenced to the location of the music. Now that the location has changed due to the remapped drive how can I link the itunes library to the songs (media)again.
    I have read many help comments and forums but so far nothing specific about relinking once the songs have already been moved and are referenced songs.
    A step by step procedure would be helpful.
    Thank you
    Graham

    I've uploaded a newer version that might catch that error. For some background on the script look at this thread.
    iTunes remembers the location of each file in the database. If you right-click on a missing file, click Get Info, cancel when it asks you to try to find it, then look on the summary tab it will show you the last known location in the form file://localhost/<some path>. If you put the files back where they are expected to be, close iTunes and reopen, then iTunes will find them again. If not my script can attempt the task. When the script asks for a media folder you should respond with Z:\ since that seems to be where the artist folders are located.
    tt2

  • I have created a book  in Photo Essay that is extra large (10 by 13") and I just realized that I want a 8 1/2"by 11" book.  Can I transfer all the pages to the smaller sized book.  If so, how?  Thanks so much for your help.

    I have created an extra large (10"-13") Photo Essay style iBook in Aperture and just realized that all my other iBooks are 8.5"-11".  How can I transfer all the formatted pages to the smaller book size without having to start over?  Thanks so much for your help. 
    Apple Phan

    Apple Phan,
    that will require some extra work. If you change the book size, some of your edits will probably be lost, because texts and photos that will not fit the smaller layout will be removed. The best you can do will be to save your current book, so you can compare. Try the following:
    Create a PDF preview of  the current version of the book and save the PDF, see:  iPhoto, Aperture: Previewing an order in iPhoto or Aperture
    Duplicate the book: File > Duplicate
    Then change the Book Sizeof the copy  (from the Theme Button) and compare, what is missing, hopefully not to much.
    Léonie

  • How to realize the "save as" dialogue box?

    I want to realize this function in my jsp page:
    when I click a button, the system can prompt a new dialogue box which is the same as
    the "save as" dialogue box in windows 2000.
    How to realize it? Can I use JavaScript?

    You are asking about something that happens at the browser, so the question is identical to the one that asks how you can do it in HTML. But what do you expect to save with this dialogue box?

  • How to realize the other three events triggered by a sequence of events occurs?

    How to realize the other three events triggered by a sequence of events that occurs between Labview, and the time interval between three events for the 50ms?
    1110340053

    Are you another student who feels the need to post their "student ID" number as a part of the message?  There is really no need to do that, it is meaningless to us.
    You should ask your instructor to answer your questions rather than allowing them to turn the whole class of students loose on the forums usually asking the same identical question.
    At least in your case, the question is different from most we've seen.  Unfortunately, you haven't asked a clear enough question for us to understand what you are talking about.
    What "events" are you talking about?  Post a VI that demonstrates the code that you have written so far.

  • How do I make attachments I receive in mail appear at the top of my messages?  Sometimes they are imbedded all the way at the bottom of an on going discussion and I don't even realize that there is an attachment.

    How do I make attachments I receive in mail appear at the top of my messages?  Sometimes they are imbedded all the way at the bottom of an on going discussion and I don't even realize that there is an attachment.

    If someone sends you an attachment, it's going to show up where they attached it in their message to you.
    Messages with attachments show a paper clip icon in two places, in the middle column of the Mail window, next to the senders name, and next to the sender's name at the top of the message itself.
    One way to make messages with attachments show more clearly is to create a Mail Rule, like this:
    By setting a colored background to the messages that contain attachments, they'll stand out pretty clearly in the message list.
    Note that there are several different types of attachments in the dropdown menu (where you see Document and PDF above). Keep pressing the plus sign to add different attachment types to your rule so that all will stand out on your list of messages.

  • How do I fix Application error "The instruction at 0x77a42245 referenced memory at 0x77f174e8. The memory could not be read"

    I updated my Firefox to 19.1 and since then Firefox will not respond and gives the following error message ""The instruction at 0x77a42245 referenced memory at 0x77f174e8. The memory could not be read. Clic on OK to terminate the program. When you click OK then Firefox crashes. How do I fix this please?

    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes
    If you have submitted crash reports then please post the IDs of one or more crash reports that have this format:
    *bp-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    *You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter
    *https://support.mozilla.org/kb/Mozilla+Crash+Reporter

  • How to realize the process for having "bottle-washing" service outside

    Dear Gurus,
    Here in our company, we would like to realize the below process in SAP.
    1. We create a Purchase Order(PO) to buy some bottles from the supplyer. (PO Creation)
    2. The supplyer delivers the bottles as per the PO and we receive them. (Post Goods Receipt)
    3. These bottles need to be washed up once we receive them. So we store them as blocked stocks.
    4. In order for the bottles to be washed, we will create another PO to have the bottles washed by the service vendor. (PO Creation)
    5. At the same timing, we pick up those bottles and send the bottles to the service vendor. (Post Goods Issue)
    6. The service vendor washes all the bottles and send them back to our company and we receive them. (Post Goods Receipt)
    7. Once we receive them, we will keep them as unrestricted stocks.
    Number 1 to 3 are nothing but normal process.
    But from 4 to 6, I would like to know how to do so...
    I am assuming the PO to service vendor should be sub-contract one, but in this case the BOM should be recurrsive, because what we send to the service vendor and what we receive are exactly the same bottles, aren't they?
    And since this is just for having outsourced service, we only want to pay for the service itself, not for the price of the bottles.
    Hence I am wondering how to avoid having the bottle price in the condition view and also how to include service price for washing and shipping cost. Do we have to maintein service master for it?
    Please advise me to have those process in our SAP system, hopefully step by step.
    Thank you very much for your support in advance!

    hi dear
    with MM module are you using PP module ?
    if so with the help of control key (PP02) in routing (external activity) you can send and receive materials and respect to that Pr PO will raised as per operations.

  • How to realize the screen-word identification?

    hi ,i am a chinese ,now i am doing a practical software which is named the base-on-pc electron dictionary ,and there is a necessary function which demands that when you move your mouse onto a word ,then ,at once ,there will come out a frame which shows the meaning of the world ,but i don't know how to realize the screen-world identification?
    is there anyone can help me ? god bless you !

    if you are using swing:
    - get mouse pointer screen location
    - get frame/window components and iterate recursively until you find the component
    - depending of the component you must to use some of its method to search de word, p.e
    - then you can obtain the definition and show a tooltip
    but think:
    - this solution is bounded to your app
    - it's no generic, you must define the "searchable" components and code it
    There area another more generic solution(and difficult, and interesting), if i remember right, the app babylon dictionary works capturing the area of the screen at the mouse pointer and then appling OCR technics to recognoice the word... it was good!

  • How to realize in the  manger's desktop can see all company employees?

    Hi,
    now I want to realize one user who enter in the manager desktop can see  the whole company  employees?
    below is my step:
    1 create a user use "SU01" ,name "Olivia".
    2 PA30 at the person "Olivia"  infotype "0105"  ,subtype "sy-uname" assign the user name "Olivia".
    after finish above steps ,I enter "PPMDT", but find only can see herself.
    how can I make the user see the whole company use tcode "ppmdt'?

    Hi,
    Please make Olivia in the Org. Structure as the Chief Position of the Department which creates a relationship as A 012 Manages the Org. Unit.
    After this now, check with PPMDT.
    Regards
    Team Member.

  • I started downloading a movie but then realized it was not the english version. How do I correct and then download the right version?

    I started downloading a movie from ITunes but then realized it was not the English version. I stopped the download. How do I return/cancel and instead download the English version? Thanks.

    Are you sure there is an English language version available?
    You'll just have to continue with the download and then delete the movie.
    Technically all sales are final.  You can ask Apple for a refund but they aren't obligated.
    How to report an issue with your iTunes Store purchase - http://support.apple.com/kb/HT1933 - working through iTunes application and iTunes Store interface.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html

  • HT1420 Feeling really stupid with my new MAC - I can't find the "Store" menu in iTunes as referenced in the support article on how to authorize a computer.  Where is that menu option?  I've looked all over the page, in my account, etc.

    Feeling really stupid with my new MAC - I can't find the "Store" menu in iTunes as referenced in the support article on how to authorize a computer.  Where is that menu option?  I've looked all over the page, in my account, etc.

    Authorization and Deauthorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.
    More On De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

Maybe you are looking for

  • Does Thunderbolt work with the Mini Displayport to DVI adapter?

    I just ordered a new 13" MacBook Pro with Retina Display to replace my Mid-2010 15" MacBook Pro.  I've been using the Mini Displayport to DVI adapter to extend my screen to an older 20" Cinema Display.  From what I can find online, and I'm here askin

  • Need to warn user of session timeout in BSP app hap_document......

    Hi, We're using the hap_document app to allow employees to change appraisal documents in ESS and for managers to create them thru MSS.... When employees have their documents open for more than 1 hour, the next time they click on save, it takes them t

  • Update J2ME Apps (Updating Existing jar with latest updates)

    Hi , I am new to J2ME. I had created a jar(One J2ME App). I need to update the existing jar with some of my newly added & edited class file. I can do this for desktop apps "jar uf jar-file input-file(s)", there is an option to put all the updates in

  • Issue with setting Polish keyboard.

    Hi, I manage to set keyboard in X11 but have an annoying problem. Generally combination of 'Alt + character' should give polish sing, but only for few characters (a,e,o,l,c,n,z,x,). Now it works with each character on my keyboard and gives signs/symb

  • Problem with .avi files playing as video

    I'm trying to use photoshop elements 8 to make and burn a dvd movie, I've added the movie file in avi format and made the disc menu.When I try to play it back it looks all jumpy like its playing a slideshow of stills from my movie and not as a video.