Two different 0CALDAY from 2 different dates

Hi all,
In my infocube, I've 4 different date fields :
0CRM_ACFR_K (Actual Start Date)
0CRM_ACTO_K (Actual End Date)
0CRM_PLFR_K (Planned Start date)
0CRM_PLTO_K (Planned End date)
In a BEx query, my customer wants to use selection screen for both planned and actual 0CALMONTH interval. They dont want to input start date and end date. They'll use 0CALMONTH like 200601 - 200603 for each actual and planned interval of data.
But, as you know infocube can include only one 0CALMONTH. How can i handle this problem.
Thanks,
Yiğit

Hi Yigit,
Try to use the same 0CALDAY and 0CALMONTH for all data, introducing another Characteristic (0VTYPE) for distinguish beetween ACTUAL and PLAN data, like in CO area. You can distinguish in BEx Actual from Plan building Restricted KF on 0VTYE.
Ciao.
Riccardo.

Similar Messages

  • How to merge two search button from different criteria

    How to merge two search button from different criteria
    this image show the question
    http://s24.postimg.org/4algthuj9/1111.jpg
    two different criteria for the same view and I need to merge it in one button as when I click
    on the button search result give from two criteria parameters

    You can!t using af:query. the af:query component comes as is. If you can't do it through the properties, you probably can't do it at all.
    As in your other thread, the way to go is to program your own search form. This way you can use a layout and functionality you like.
    For this you create a form with input fields for the values you are searching for, put them on hte page in a way you like and in the end by hitting on a button (e.g. called Search) map all inputfields to parameters of a service method you defined in your application module or VO. This service method then executes a view criteria returning all matches in the default iterator (just as if you had used af:query.
    Timo 

  • How to connect two different tables from different server?

    Dear all expert,
    I need to develop a report where i need to connect 2 different tables from 2 different servers. For examples:
    BUT000 tables from CRM and KNKK from R3.
    Is it possible to do so? Because i try to link these 2 tables together and when i preview the report, it run very slow and sometime it hang. I did not get any result.
    Thank You.

    Moved to SAP Integration kit forum
    Appears you are using SAP data sources.
    And yes you can but the linked field types must match and be able to be converted into the WHERE portion of the SQL. Click on Database, Show SQL... and see if there is one. If not CR can't figure out how to so it brings all data client side and filters on the second pass.
    Thank you
    Don

  • Is there any way to merge two WorkSpace screens from different projects

    Is there any convenient way to merge two WorkSpace screens from two different VS projects?
    Thanks.

    I just looked, the property inside the .nivsscreen file for the workspace layout is a big variant... so this won't work.
    Sorry!
    Stephen B

  • Syncing two video clips from different cameras.

    When both video clips are on the timeline filmed with two cameras to get different angles, is there a a keyboard shortcut to move either clip one frame at a time, or while listening to the audio a way to move the clips incremently until both videos are in sync. Some of the filming I used a 'clap' method, but wasn't able to always do this. Basically I think I am asking for fine adjustments along the timeline via the keyboard, frame by frame.

    You can select the clip in the timeline and press:
    "." (dot) to move right by 1 frame
    "," (comma) to move left by 1 frame
    ":" (colon) to move right by 5 frames
    ";" (semicolon) to move left by 5 frames
    If you keep the key pressed the clip will slowly move either wy.
    You can also select one clip in the timeline and type a number n: this will appear in a small window labeled Move; when you press Enter the selected clip will move n frames to the right. For example type 8 and Enter and the clip will move right by 8 frame. To move left by 8 frames type 8, left arrow, "-", Enter (to enter negative numbers (to move left) first enter the value and then add a "-" in front of the number).
    Make sure the tool is the Selection Tool (arrow) otherwise instead of moving the clip you apply other actions (slip, roll, etc.).
    Piero

  • How to pick different files from different locations

    suppose ur having multiple files(csv) from different locations,then how do u move those files to the SAP system.Please expalin me the scenario

    Venu,
    If the files are present in different folders, then you need different sender communication channels to bring this data to XI. Regarding connection with SAP, you can go for a proxy (If the webAs version is > 6.2) or else go for an IDOCor RFC adapter.
    Regards,
    Jai Shankar

  • In a single program how to lookup different EJB from different application

    Hi,
    I have deployed two applications app1 and app2 on oc4j.
    There is a stateless session bean in a1 called ejb1.
    And there is also a stateless session bean ejb2 in app2.
    I write a test jsp in app1 to lookup ejb1 and ejb2 as an application client. So I need to create an application-client.xml for it.
    <?xml version="1.0"?>
    <!DOCTYPE application-client PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN" "http://java.sun.com/j2ee/dtds/application-client_1_2.dtd">
    <application-client>
    <display-name>ejbs</display-name>
    <ejb-ref>
    <ejb-ref-name>ejb1</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>class_of_ejb1Home</home>
    <remote>class_of_ejb1</remote>
    </ejb-ref>
    <ejb-ref>
    <ejb-ref-name>ejb2</ejb-ref-name>
    <ejb-ref-type>ejb2</ejb-ref-type>
    <home>class_of_ejb2Home</home>
    <remote>class_of_ejb2</remote>
    </ejb-ref>
    </application-client>
    However, When I run the test.jsp, It will report following error:
    javax.naming.NamingException: Error reading application-client descriptor: No location specified and no suitable instance of the type 'class_of_ejb2' found for the ejb-ref ejb2
    In fact, if I only lookup any of the ejb and the application-client.xml just specify only the according ejb-ref, everything is alright.
    But how to construct the application-client.xml so that it can suitable for 2 different ejb in different application? Do I miss something in doing it?
    Kindly advice!
    Queeny Tang

    Hi Debabrata Panda,
    I did add parent in web.xml, but it still encounter
    "Error reading application-client descriptor: No location specified and no suitable instance of the type 'class_of_ejb2' found for the ejb-ref ejb2"
    In my program, a jsp in app2 will lookup ejb1 of app1. In the same way, a jsp in app1 will lookup ejb2 of app2.
    if I declare in server.xml
    <application name="app2" path="../applications/app2.ear" parent="app1" auto-start="true" />
    <application name="app1" path="../applications/app1.ear" parent="app2" auto-start="true" />
    That will cause error reading application-client.xml for all
    ejbs.
    How to solve this.
    Thanks in advance!
    Yours Queeny

  • Different results from Different Printers

    I have noticed that the horizontal location of my fillRect() will vary from printer to printer, but the location of my drawString() works
    consistently, why is this? Thank you EXTREMELY much if you can help me out.
    AC

    AC,
    The problem is because device-space varies from printer to printer, monitor to monitor, etc. Graphics2D has classes that you can use to make your application independant of devices, so that the output is consistant no-matter what you look at it on.
    Try looking into documentation/APIs for:
    java.awt.GraphicsEnvironment
    java.awt.print.Printable
    java.awt.print.PageFormat
    java.awt.print.PrinterJob
    You should be able to make it look the same on any printer, if you factor in the graphics environment into your code.
    Although, I'm not sure why fillRect and drawString both do not render on different spots on different printers.
    Alex

  • I need to consolidate two iTunes libraries from different countries.

    I have been struggling for approximately 5 years now to resolve an issue which it seems is normal for those Apple users who move countries from time to time.  Specifically, I have ended up (inadvertantly in the first instance) with two distinct iTunes accounts -- one in Australia (which cannot be changed to UK as I don't have an Australian credit card and the balance at $1.04 is non-zero) -- and another in the UK (which I use all the time).
    I have tried again and again to get this straightened out with Apple, with iTunes support, with Genius Bar people, store managers and on and on -- however, for some reason which is beyond my humble comprehension -- and despite being a significant (£30k) personal Apple customer over recent years -- I cannot get anything other than "passing the buck" between the Apple Store and Geniuses to iTunes Customer Support online -- who, frankly, have demonstrated a complete lack of ability to 1) understand the problem in the first instance without a lot of going backwards and forwards, 2) fail to provide any suitable or acceptible answers that would help -- instead repeating (as if in a different conversation) the same words again and again (via text emails -- which I'll happily share further with all who are interested); 3) fail to demonstrate any capability of elevating this so that the issue is solved once and for all.
    I have a large library of music and music video's purchased in the UK and Australia (and some which was purchased in the USA when I was there -- thankfully without this particular set of problems).  The Australian account cannot be changed to UK as it has a non-zero balance of $1.04 -- and so I cannot hope to put a UK credit card on file in order to achieve my first goal of upgrading the music and music videos to non-DRM, high resolution, explicit etc. etc. and also sychronising with iMatch alongside my UK content.
    Every single time I attempt to do something with iTunes or my MacBook Pro (either of them), my iPad, my iPhone 5, my AppleTV, my Mobileme account etc. etc. -- it does not work properly due to the "split nature" of the music catalogue -- and the different countries which each are registered to -- where-as I am based in the UK (although may move back to the USA in some time again).
    I would appreciate a full refund of all of the content which was bought in Australia -- so that these purchases can be transferred or remade with my current account.  I also want to know how I am to manage this situation the next time I move country.  So far, it would be easier to steal the music via P2P than to continue paying over the odds for content which is not being "handed over" to me in a reasonable way. 
    I love my Apple experience so much other than this particular issue -- please can somebody help me fix this.  It is central to my whole experience of the vast investment I have made with joinging the "Apple Adventure"..
    Grant Warrell

    if you're on iTunes 9, the easiest way would be to drag & drop the contents of the (external ?) hard drive into the *automatically add to iTunes* folder inside the iTunes folder of the target machine.
    you will have duplicates, which can be deleted later on (or kept and filtered using smart playlists).
    JGG

  • How do I make two audio clips from different mics sound the same in premiere?

    I have a video I am working on. we used two different mic and camera options. One is a lavaliere mic that was too hot and picked up a lot of fuzz, and the other was an on board mic that was just a little echoey from the office walls. I found that some clips were better on different versions. so I want to put the two different sets next to each other in video and make the sound be the exact same. That way no one notices the differences in audio.
    Any help is appreciated.

    Hi. Although not perfect, I'd add an audio mixer effect and adjust the highs, mids & lows on both of them to help their audio, respectively, sound more similar. Often when I shoot, my Boom mike (backup) is much fuller sounding than the lavs. are. Lavs are inherently lacking in the low end, and the boom is often too hot on the low end. So I would add Audio Mixer effect, and lower the low end on the boom slightly, and highten the low and mids just a bit on the lavs. Even taking a little highs off the lavs makes it sound a bit more like the boom. 
    As far as echo is concerned, you probably can't do to much about that unless you have an external graphic equalizer/limiter. Lot's of times I just add  some music in the background, which helps a lot to hide echo from the mics.
    Finally if you tape/record/film in a location that has lots of background noise like, background people, cars or rain or wind or general white noise "hiss", then you should record a minute or two of the location without any dialogue. This is is known as "Wala" recording. You can add a little of this to your whole track, or just on the mike track that doesn't seem to pick up the ambient sound, thus making it sound more like your other mike.
    I hope this helps.

  • How do i superimpos​e different charts from different sequences and get them to show up while i am taking data

    I have six different frames in a sequence and I have a Build XY Graph express icon in each frame.  I want to display only one graph on the front panel, and want the data to superimpose when I go through each frame of the sequence.  I want the graph to update while I am taking data.

    Here is an example in 8.2 of how I would do it, this method may have performance issues with large data sets.
    Andrew Alford
    Production Test Engineering Technologist
    Sustainable Energy Technologies
    www.sustainableenergy.com
    Attachments:
    Superimpose XY Example.vi ‏37 KB

  • How to set two values equal from different recordset?

    I have created a posts recordset and a comments recordset
    the comments table has a post_id to link the comment to a specific post through setting it equal to the id field in the posts table
    so that whenever a post loads the comment whos post_id is equal to the id of the post should load
    I know that if one advanced recordset combining the two tables is created I can set the values to be eqal in the where clause but doing so causes an error in the url parameters of the page.
    Plz help guys and thanks in advance.

    Just do this in advanced recordset
    SELECT *
    FROM posts JOIN comment
    ON posts.post_id = comment.post_id
    WHERE posts.post_id = colname
    Add 1 variable
    name: colname
    type: numeric
    default value: -1
    runtime value: $_GET['pid']
    so in browser URL it will be post_view.php?pid=1

  • Compare two Request/Task from different systems

    Hi all,
    Before I post my question, here is a small introduction to the scenario.
    We have 300 transports among this transports we have Function Modules, Reports and Classes. We are planning to migrate these transports to a new environment and we would like to compare these objects from E1 (Environment 1) with E2 (Environment 2 - New Environment) in a dynamic way (instead of doing it manually).
    So the question is: Does anyone  knows if there is program to do this comparison?
    Thanks in advance,
    -C

    Hi Tina,
    You can use a trnasactions like SCMP, SADJ or SCU0 - all tools to do comparison of customizing objects across clients/systems using RFC.
    Details of these tools, their usage and functionalities are available in the Help Portal -
    [http://help.sap.com/saphelp_47x200/helpdata/en/70/1accb7fab511d18e0f0000e8a48612/frameset.htm]
    Best Regards,
    Rekha

  • Two Blackberri​es from different companies- can"t send emails on one

    Hi,
    I have owned a Bell 8330 Curve for a few months and had it running smoothly.  I just purchased a new on through Telus for myself and set up the old one for my wife.  The Bell one I have running smoothly, but the Telus one won't send emails and has no email settings icon.
    Other threads I have read suggest playing around with the redirector icon on the Desktop Manager, but there isn't one.
    Does anybody have any advice?

    swinguru wrote:
    Hi,
    I have owned a Bell 8330 Curve for a few months and had it running smoothly.  I just purchased a new on through Telus for myself and set up the old one for my wife.  The Bell one I have running smoothly, but the Telus one won't send emails and has no email settings icon.
    Other threads I have read suggest playing around with the redirector icon on the Desktop Manager, but there isn't one.
    Does anybody have any advice?
    Hi swinguru.
    The first thing to do is check that you are getting the "EVDO", data signal indicator in the top of your screen.  If that is good go Options | Advanced Options | Host Routing Table | Press Menu key and select "Register Now".
    If the data indicator is not there, you will need to talk with Telus to confirm that the device has been configured for BIS services.
    ===========================================================
    If I've helped, please click the Kudos button.
    If your issue has been resolved, please mark it as solved.
    Joe
    ===========================================================

  • Is there a simple way to merge two iTunes libraries from different drives?

    I have an iTunes library or, more significantly, an iTunes music folder, on a hard drive I haven't used in a while. I'd like to merge it into the one I'm using now.
    Is there an easy way to do this, and what about duplicates and, especially, variant encodings of the same title?

    if you're on iTunes 9, the easiest way would be to drag & drop the contents of the (external ?) hard drive into the *automatically add to iTunes* folder inside the iTunes folder of the target machine.
    you will have duplicates, which can be deleted later on (or kept and filtered using smart playlists).
    JGG

Maybe you are looking for

  • Email response management system in crm 5.0

    hi buddies, preasently i am working on email response management system in crm 5.0 for auto routing and auto respounding of emails.can any one suggest me the document or customization steps for that thanks in advance manav Edited by: manav on Mar 8,

  • Can I transfer apps from my earlier 3GS to my new 4?

    I have a new Iphone 4 and want to transfer my apps from my Iphone 3GS.  Can this be done?

  • NT and Unix clusters

    Is it possible to cluster NT and Sun machines in a weblogics cluster? We want to run graphics packages on the NT server and run other packages on the UNIX boxes. Of course all in Java all in the weblogics framework. Thanks. Yoo-Shin

  • Error while configuring VM for SOA 11g

    Hi, I am getting below error message while running the VM after +" Import the VM (File-->Import Appliance)+ +Click Choose... to browse the file system and select the file vbox-oel5u4-soabpm-11gr1ps2-bp1-otn.ovf+ +Click Next "+ Can someone pls help me

  • UltraSearch schedules always remain in "LAUNCHING" state

    Hi, We configured ultrasearch in our 10.1.4 portal to search among our portal pages. Our problem is that each time we create a new schedule, it always remains in state "LAUNCHING". We are under a linux server with 3Go RAM. Thanks for your help, Best