Question related to accessing members through dates

we can access the members in the report through by dates in the sample.basic application through attributes concept. If there is requirement to access the members if it is specified with start date to end date (16/09/09 to 17/09/09)...How can we proceed..?

I'm afraid you're out of luck. Attribute dims don't accept security.
Could you handle this through the front end and custom code?
I wonder if FR would let you limit the scope -- you'd have to try.
Also, if 11x, you might try a Smart Slice in SmartView. Again, you'd have to try.
Regards,
Cameron Lackpour

Similar Messages

  • Issue with accessing members by dates

    Hi,
    i have one issue that Based on the start and end dates ,the qty and cost for a specific product line should be accessed.
    Here is the description...
    START DATE END DATE QTY COST
    RM1 1/9/2009 30/9/09 0.1 2
    RM2 1/10/09 31/10/09 0.2 1.5
    i need to accesss the products(rm1,rm2) based on the start date and end date..
    pls post it with detail....

    As per your dimension members you want to see the numbers for period of fullmonth(01 SEP to 30 SEP).
    For this case you dont need two dimensions, one dimension is enough at month level and you can use the alias name for the reporting purpose.
    If the data is coming for various startdate and end date and you want to see the data for various combinations, you can maintain two calender dimensions.
    Essbase will calculate the aggregated numbers for the various combinations.
    You dont need another time dimension.

  • Error while accessing data from MS Access DB through Window AD architec

    Dear Members,
    Iam having a BO 3.0 installation on a standalone PC with the basic tomcat and mysql setup... As a test environment, Now while designing universes i can easily connect to Oracle EBS structure also SQL server DB ... the problem is when iam linking to a MS Access DB through a network drive (its all ok in the designer) but while in Webi while runnning the query, it throws an error of (WIS 10901 .... database error DSN not specified)
    I have configured ODBC properly also given appropriate rights for the users and strangely the same universe is running well with my thick client desktop and webi rich client
    (so iam sure its not a odbc issue)
    Looking forward for any comments on this problem

    possibly the account running the webi report server doesn't have access to the drive. Is it local system? Try using the same account you are logged into the webi rich client as, but you will most likely need to grant that account local admin on the server so it can run the service.
    Regards,
    Tim

  • I lost my iPhone 4 in Brussels last week. It was in airplane mode when lost. I also use a code to unlock the phone. The phone was off when lost. My question is: Can a person access my personal data on the phone?

    I lost my iPhone 4 in Brussels last week. It was in airplane mode when lost. I also had a code to unlock the phone. The phone was off when lost. My question is: Can a person access my personal data on the phone? Can they take the chip out and place it into another iPhone and access the personal info on the chip or is the personal data on the phone itself and could they put a new chip in and access the data?

    I have Find my iPhone App, but it says that it is offine.
    I've checked all week and it is offline.
    I clicked on erase iphone when phone accesses the internet on the Find my iPhone App.
    I just want to know how safe is my personal information that I have on that iPhone?

  • Again question about restricting access to files through URL?

    I found many topics about this, but every time it is some special case.
    I want to ask it simple. How can I restrict access to some files in my application through entering URL in Browser, no matter if I am logged or not.
    For example I have included JSP files with jspf extension. I don't want to access them through url. How can I do this?

    May be it will work, but it seems somehow workaround decision - one half of jsp files in one place and another part in other place.
    Message was edited by:
    cheltsov

  • Accessing Blackberry synched data through a desktop PC

    Prior to having my Blackberry Storm 9530, I had a regular cellphone and a Palm Pilot.  One useful feature of the Palm software was that I could access the synched data (contact information, calendar, etc) on my desktop.  While I know how to use the Storm as an extra hard drive, thereby accessing photos and documents, I have not discovered any way to access my calendar, memo pad or contacts.  
    Does anyone know how to do this?   Is there a 3rd party software that will do it, if Desktop Manager won't?  I am concerned about the device crashing.  I may not want to buy another Blackberry device after this one, don't really know yet.  But I want to be able to view my data.
    Can anyone help me?

    Hi and Welcome to the Forums!
    Contrary to how others do things, RIM does not provide a desktop PIM. Others force you to use their PIM and only their PIM. RIM provides a conduit software that functions as a bridge between your chosen PIM and the BB. See this KB for compatible PIM's:
    KB12268 Applications supported by BlackBerry Desktop Manager for synchronization
    You can configure the BB to sync with the PIM:
    KB17022 How to configure organizer applications for synchronization using BlackBerry Desktop Manager
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Connecting through Data Source using JNDI

    I would like to connect my application to sql server database through data
    source using JNDI. But when i try to bind the data source object with the
    logical name, i am getting following exception. How can i ger rid of this
    error ? How can i provide the initial context ? I thought Java would create the default initial context by itself. But it doesn't seem to be true. Any type of help would be appreciated.
    -Prashant
    Exception :
    Naming Exception :Need to specify class name in environment or system
    property, or as an applet parameter, or in an application resource file:
    java.naming.factory.initial
    javax.naming.NoInitialContextException: Need to specify class name in
    environment or system property, or as an applet parameter, or in an
    application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:651)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at
    javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:283)
    at javax.naming.InitialContext.bind(InitialContext.java:358)
    at RegDataSource.regDataSource(RegDataSource.java:30)
    at RegDataSource.main(RegDataSource.java:52)
    Source code :
    public class RegDataSource
    public RegDataSource()
    private void regDataSource()
    try
    com.microsoft.jdbcx.sqlserver.SQLServerDataSource sds =
    new
    com.microsoft.jdbcx.sqlserver.SQLServerDataSource();
    sds.setServerName("servername13");
    sds.setDatabaseName("test");
    Context ctx = new InitialContext();
    ctx.bind("jdbc/EmployeeDB", sds);
    catch(NamingException e)
    System.out.println("Naming Exception :" + e.getMessage()
    //+ "\n" + e.getExplanation()
    //+ "\n" + e.getResolvedObj()
    //+ "\n" + e.getResolvedName()
    e.printStackTrace();
    catch(Exception e)
    System.out.println("Exception :" + e.getMessage());
    public static void main(String[] args)
    RegDataSource regDataSource1 = new RegDataSource();
    regDataSource1.regDataSource();

    Thanks you very very much for your prompt reply and helping me out. I have following questions.
    1) Now i am able to bind data source object to the logical name. But the problem is that whenever i try to look up the data source object by providing logical name (i.e. DataSource ds = (DataSource)ctx.lookup("jdbc/EmployeeDB") ), it returns always null. I don't know why it doesn't return the correct data source object ?
    Following is the code used to bind datasource with the logical name
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.fscontext.RefFSContextFactory");
    env.put(Context.PROVIDER_URL, "file:/TEMP/jndi");
    Context ctx = new InitialContext(env);
    //Properties p = new Properties();
    //p.put(Context.INITIAL_CONTEXT_FACTORY,
    // "com.sun.jndi.fscontext.RefFSContextFactory");
    //Context ctx = new InitialContext(p);
    ctx.bind("jdbc/EmployeeDB", sds);
    Following is the code used to look up for the bound object
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.fscontext.RefFSContextFactory");
    env.put(Context.PROVIDER_URL, "file:/TEMP/jndi");
    Context ctx = new InitialContext(env);
    DataSource ds = (DataSource)ctx.lookup("jdbc/EmployeeDB");
    2) I am writing client server application in which my client is going to access the SQL Server 2000 to read/write database related data. The reason behind using the JNDI is that i don't want my client application to kwon which driver (sql) and database i am using. It is going to provide the great flexibility whenever i can make my application to use other database like Oracel, sybase, etc. without changing any code most probably. In this situation, which JNDI service provider to use ? I am not sure about "File System" service provider be the ideal choice for this type of situation. so please let me know which JNDI service provider is the ideal for this situation.
    Any type of help would be appreacited.

  • Accessing BIA through Business Objects - read from Query or InfoCube

    Hi All,
    I've a BObj/BIA question, some similar threads have been posted....
    With a Business Objects front-end, I understand that BIA can be used to access Indexed InfoCube data, and reduce the data manager portion of the overall runtime.
    My question relates to the options of a)Business Objects reading data defined in Queries, or b)BO reading the data from the InfoCubes.
    So my question is:
    a) Is there any difference/benefit in using one option over the other? (queries Vs InfoCubes directly)
    b) Will both methods access the required data through the BIA if it (the data) is available there and indexed?
    Thanks for the help,
    Mk.

    Hello Michael,
    both methods will use BIA. We recommend to use queries since they typically limit the selection criteria through variables and give you the possibility to use restricted and calculated key figures. With direct InfoCube access you run the risk that users try to read the complete InfoCube.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Can not access the Instance Data of a Singleton class from MBean

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

  • Access to Palm data after re-creation of user ID in Win XP Pro

    Hi,
    I am using Win XP Pro on my laptop. I had installed Palm Desktop under my user id e.g "ajitshah". Due to  problem with user profile not functioning correctly, my administrator recreated user profile "ajitshah".
    Now I am able to access all other programs except Palm - unable to access palm desktop or carry out Hotsync operations. Is there any ways to access my Palm data and carryout Hot Sync operations?
    Thanks for your help.
    Kind regards,
    Ajit Shah
    Post relates to: Tungsten E

    Your question is not stated in a way that is easily answered. I suggest you contact Palm support via chat: www.palm.com/chat - the service runs 24/7

  • GRC 10.0 Access Request Creation- Data Source of User Details

    Hi Experts,
    I was doing GRC 10.0 Configuration and found a query which I am not able to resolve.
    While creation of any kind of Access Request in GRC through NWBC> Acces Management Tab>Access Request>Access Request Creation.
    In the user details section, I can see the HR records( like Pernr, position, manager) have been visible to some extent.
    My question is where from these details came in GRC. What configuration we should maintain to achieve these HR records?
    Hope to get a quick response as this is one of the requirement of the implementation which I am doing with my customer.
    Thanks,
    Atanu

    Alessandro,
    Thanks for your response. It helped me to know certain things.
    But when I am navigating to SPRO > GRC > Access Control > Maintain Data Sources Configuration > [User Detail Data Source], it is configured with a ECC system in target connector and User data type is maintained as "SU01".
    Now my question is where from in my case the GRC is pulling the HR records (PA20) like PERNR, POSITION,PERSONEL AREA etc? SU01 does not provide these information. My ECC box is integrated with HR module, so is it taking the data from HR directly?
    Thanks in advance!
    Atanu

  • CoreServicesUIAgent would like to access your calendar data

    Hi all,
    three days ago, I received a strange Mavericks pop-up: "CoreServicesUIAgent would like to access your calendar data".
    Then I went to the Security PrefPane, and saw CoreServicesUIAgent clicked.
    Strange, so I decided to unclick, although I checked within the CoreServices folder that is was still an App by Apple.
    Apparently no change at all.
    However, everytime I change an event in iCal on a googlemail calendar account, it will not appear in iCal anymore.
    Through Google Calendar webview, I can still see it, but not in iCal anymore.
    And I can still see it on my iPhone.
    So I disabled the calendar in iCal through the Internet Accounts settings, rebooted, clicked back on "CoreServiceUIAgent" in the Security PrefPane, rebooted, enabled the calendar back in iCal.
    No change.
    Some questions now:
    - where could I find the preference file associated to Security (in order to check whether the "CoreServicesUIAgent" listed in the PrefPane is indeed refering to the Apple App inside the CoreServices folder)?
    - why is CoreServiceUIAgent trying to get access to my calendar?
    - why did it suddenly appear and not before?
    - why is iCal such a pain now with Google Calendars?
    Any help would be much appreciated ...

    I have been havig trouble with iCal repeatedly prompting me to add a new event on its own.  Recently to try and fix this I deleted my calendars, preferences and caches.  I then picked up my calendars from iCloud.  Within about an hour of running iCal again, I get this prompt to allow CoreServicesUIAgent.app access to my calendar.  I said yes and almost immediately I get one of these unwanted add new event dialogs again.  Ah hah I think.
    I have been unable to find out what CoreServicesUIAgent.app does and why it needs access to my calendar, but it does seem to be the source of my unwanted automatic adding of new events issue.  I went into the Security and Privacy Setting and disabled CoreServicesUIAgent.app access to my calendar.  I am now waiting to see if I get any more of those unwanted adding new event prompts.  If I can't detect any loss of functionality, I will just not give CoreServicesUIAgent.app access to my calendar. 

  • Question related to concept of PCK

    Hi All.
    I am quite a newbie to XI and am only learning it thru online help. I have one conceptual question related to PCK.
    My understanding is that PCK is needed by a small business company to communicate to its larger partner which already has XI running. Correct me if I am wrong here itself.
    Now if the larger business partner already has XI, why does the smaller one need a PCK at all? The XI instance on the larger partner will have all the necessary adapters to understand any format send by the partner. So even if the partner(smaller) sends any format- be it IDOC/HTTP/FTP, the XI instance on larger partner will have its adapters ready to perform the conversion.
    Then why is this PCK needed at all?
    Thanks in advance. Hope my query is clear
    Regards.
    Samant

    Hi Samant,
      Your question is a very good one, Though I have not worked on PCK, I can share my ideas based on some brain storming session I had with our collegues & business partners.
      While executing projects, there are technical & operational issues. For example, when you access any HR related data of a UK based organisation then all those who work on that project have to undertake data security pledge. Like wise there are many constraints on data & system accesses, which vary across organisations.
    When you use PCK*, irrespective of different systems what the small vendors have, you communicate with your Big company's XI system only on the XI's msging protocol http(s)/SOAP. This allows a fair amount of ownership of data/access related issues to the small partners.
    -> you go for PCK, when there is no need for small vendors to go for XI.
    Hope this is of some help. As Michal said there might be much more (or even better) reasons.
    Michal, when you say "all of the mappings and transformations have to be on the small company side", what exactly you mean by this. can you please eloborate.
    Thanks & Regards
    Vishnu

  • Question related to dynami calc

    Hi all,
    I have a question related to dynamic calc members, I read in the dbag saying , it is not possible to add more than 100 members as a children under a
    dynamic calc member...is it right even with 9 and 11 versions.. What are the options we have if we really want to add ....????? I am curious to know about this....
    Thanks

    When you set a member to dynamic calculation (for aggreagtion purposes), it has to look at all of the children in order to calculate. If it is on a sparse dimension, it has to bring multiple blocks into memory to do the calculation. If the dimension is dense, it on;y brings in the single block which is much quicker. as for increasing the block size, If you need the summarization, you have not changed the block size at all. You would have the member regardless. If it is dynamic, you will see the block smaller than if it stored data, but the logical block size (the memory it takes) will be the same size regardless because Essbase expands the block in memory to do the calculations.
    This is the same rational as to why we don't want dynamic calculation on sparse dimensions unless it is comfined to one or two children. The reading of multiple blocks can be very time consuming

  • Accessing Photos Through Other Programs

    Hopefully this is not a stupid question and that it actually makes sense. I recently updated my iphoto library. Yesterday a photo was sent to me through messenger on my iphone. I saved that photo to my phone and then imported it into my computer. Since it's a picture of my relatives and not of me, I don't feel comfortable uploading it to social media and wanted to just share it directly with a friend through skype. However, I find that when I try to locate a file within my mac so that I can upload it to sites and programs of my choosing, I can no longer access my photo library. Oh, I can find the photo library, but it's not accessible from other programs. I don't want to import the photo through iphoto into mail, messages, airdrop, twitter, facebook, linkedin, vimeo, flickr, 'add to photos', or add to aperture or any of the other options. It's my photo so I should be able to do whatever I want with it.
    So, my question is: how in the world do I access the file itself, and send it to somewhere not on the sharing list? And specifically, can I access that file and do anything with it from outside iphoto at all?

    The drag and drop portion of that does work.
    Although I will admit that the accessing them through the 'media' and 'photos' thing when you try to open a file through other programs 100% is no longer an option. The only thing you'll find in there is photo booth. Also the 'Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.' is no longer an option. I don't know about the other options because I didn't try. But so far in order to just be able to access the file however I want to, dragging and dropping it to the desktop is the only thing I've found that works.

Maybe you are looking for

  • How to format date with in the file

    Hi, I have the below data in a file, 101 02100002111406893401207310900A094101xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 5200xxxxxxxxxx D18000_1 CCDXXXXXXX JUL 31201207 1140689340000001 622113010547999999999003 000333333334RE 00030137 onee S

  • Jagged vector graphics from Illustrator in Indesign

    Using CS3, Leopard, have all updates. I'm having problems with vector graphics created in Illustrator getting jagged when dragged from Illustrator to Indesign (or copied and pasted or placed as Illustrator file). They look jagged (stair stepped) in I

  • Data Blocks and the Elapsed Time

    Hi, I have created 3 tables with one column only. As an example Table 1 below: SQL> create table T8k( x char(2000)); So 3 tables are created in this way i.e. T8k,T16K and T4K T8 = in the default database tablespace of 8k (11g v11.1.0.6.0 - Production

  • Mystery IP address that cant get it to go away

    hi. I am having issues using some applications bcs of a mystery IP address that keeps showing up in my network preferences. its actually under my ethernet network but it is inactive yet it keeps assigning an IP address and therefore causing issues wi

  • Placed Photoshop Images

    I'm sure this question has been asked many times and I'm sorry if I am repeating a post that has already been answered. My problem is this: When I place a Photoshop PSD file into my InDesign CS4 document, all the other images on that particular page