*Ignore Security in NW Logic

Hello all,
Does anyone know if there is a replacement key word in BPC NW for *Ignore_Security. I've used this several times in my custom logic on the MS platform. Thanks for the help.

Andrey,
You can take a look at a How To Guide that works around that issue [HOW-TO WRITE TO SECURED DIMENSION MEMBERS IN DEFAULT LOGIC|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/207995e8-deb8-2d10-3cb9-8ab146c95a09].
Gersh

Similar Messages

  • Loader, Unload SWF and Warning: Ignoring 'secure' attribute........

    Hey all
    I was just simply trying to load one swf into another.  in my document class I have the following line of code in my constructor.
    var loadBoard:LoadBoard = new LoadBoard("Directory.swf");
    in my LoadBoard class:
    package com.myproject
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.net.URLRequest;
         public class LoadBoard extends MovieClip
              public function LoadBoard(nameOfBoard:String)
                   var boardLoader:Loader = new Loader();
                   addChild(boardLoader);
                   boardLoader.load(new URLRequest(nameOfBoard));
                   trace("swf should be loaded");
    In my console I get the following when I debug"
    [SWF] U:\fullPath\Directory.swf - 69,058 bytes after decompression
    [SWF] U:\fullPath\Directory.swf - 2,067 bytes after decompression
    [SWF] U:\fullPath\Directory.swf - 322,606 bytes after decompression
    [SWF] U:\fullPath\Directory.swf - 112,558 bytes after decompression
    [Unload SWF] U:\fullPath\Directory.swf
    Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml.  The 'secure' attribute is only permitted in HTTPS and socket policy files.  See http://www.adobe.com/go/strict_policy_files for details.
    Not sure why I am getting this warning, when I googled it, the erro has to do with trying to load a file from another domain. My Directory.swf file is in the same location as my main swf, the bin-debug folder.  Also the Directory.swf does not seem to load into my main swf as I don't see it show up in the flash player when i run my app.   I am also a little confused on the [Unload SWF], I am not doing anything to tell it to Unload my swf.
    I am using FB to do all my coding and debugging if that matters.
    Does anyone have any ideas.
    thanks,

    Apparently I was, so I changed it to classic text in my Directory.fla and that seemed to remove the weird error.  However it seem that my swf is still not loading.  any Ideas why that might be?
    [EDIT]  Ok, my Directory swf is defenatly loading. but not showing up in the display list. I updated my LoadBoard to the following.
    package com.aces
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.events.Event;
         import flash.net.URLRequest;
         public class LoadBoard extends MovieClip
              public function LoadBoard(nameOfBoard:String)
                   var boardLoader:Loader = new Loader();
                   boardLoader.load(new URLRequest(nameOfBoard));
                   boardLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, finishLoading);
              public function finishLoading(loadEvent:Event):void
                   addChild(loadEvent.currentTarget.content);
                   trace("swf should be loaded");
    any Ideas?
    Thanks,

  • How to ignore special characters in Logical SQL.

    Hi Experts,
    I am using Logical SQL generated from BI Answers in dataset of BIP Data model.
    The column name or presentation table name contains special character as “&, %’
    So when I try to create dataset using suppose following Logical SQL, I am getting prompt/error as
    “Please enter values for lexical references in SQL
    *~ description"."security name" s_9, ”
    Could you please suggest what should I do to ignore these special characters?
    SELECT
    0 s_0,
    "TEST_RPD"."Account"."As Of Date" s_1,
    "TEST_RPD"."Security Identifier & Description"."Security Name" s_9,
    "TEST_RPD"."Statistics"."Quality - S&P Rating" s_26,
    "TEST_RPD"."Statistics"."Yield To Maturity" s_27
    FROM "TEST_RPD"
    WHERE
    (("Account"."As Of Date" = date '2011-01-31') AND ("Account"."Report Account ID" = '1733'))

    Thanks..That is what we did in RPD.
    I was looking for any other approach as our RPD is shared between OBIEE and BIP.

  • Ignoring security in JAAS based on Subject

    Hi,
    I'm using JDK1.3 and I've JAAS-jar installed into JAVA.HOME\jre\lib\ext\.
    I tried to make simple JAAS-based application.
    Below is the code:
    package security1;
    import javax.security.auth.*;
    import java.security.*;
    public class Main {
    public static void main(String[] args) {
    Subject subject = new Subject();
    Principal principal = new com.sun.security.auth.NTUserPrincipal("testUser");
    subject.getPrincipals().add(principal);
    Subject.doAs(subject, new PrivilegedAction() {
    public Object run() {
    System.out.println("User.home: "+System.getProperty("user.home"));
    return null;
    In addition to this code I have two files:
    1. The first file is sample_java2.policy with the following content:
    grant codeBase "file:${java.home}/lib/ext/*" {
    permission java.security.AllPermission;
    grant codebase "file:d:/winnt/profiles/pledniko.000/jbproject/security1/-" {
    permission java.security.AllPermission;
    2. The second file is sample_jaas.policy with the following content:
    grant principal com.sun.security.auth.NTUserPrincipal "testUser" {
    permission java.util.PropertyPermission "user.home", "read";
    To run my app I use the following string:
    D:\jbuilder5\jdk1.3\bin\java -classpath
    "D:\WINNT\Profiles\pledniko.000\jbproject\Security1\classes;D:\jbuilder5\jdk1.3\demo\jfc\Java2D\Java2Demo.jar;D:\jbuilder5\jd
    k1.3\jre\lib\i18n.jar;D:\jbuilder5\jdk1.3\jre\lib\jaws.jar;D:\jbuilder5\jdk1.3\jre\lib\rt.jar;D:\jbuilder5\jdk1.3\jre\lib\sun
    rsasign.jar;D:\jbuilder5\jdk1.3\lib\dt.jar;D:\jbuilder5\jdk1.3\lib\tools.jar;D:\j2sdkee\lib\j2ee.jar;D:\orant\ora817\jdbc\lib
    \classes12.zip;D:\jbuilder5\jdk1.3\jre\lib\ext\jaas.jar" -Djava.security.manager
    -Djava.security.policy==d:\winnt\profiles\pledniko.000\jbproject\security1\config\sample_java2.policy
    -Djava.security.auth.policy==d:\winnt\profiles\pledniko.000\jbproject\security1\config\sample_jaas.policy security1.Main
    It works good and prints: "User.home: D:\WINNT\Profiles\pledniko.000"
    But when I comment string "permission java.util.PropertyPermission "user.home", "read";" in the second file and
    run my app again it again prints: "User.home: D:\WINNT\Profiles\pledniko.000" instead of throwing access denied exception.
    So it seems that security based on Subject is ignoring.
    Can you please explain what's the problem or what I'm doing wrong?
    Any suggestions would be greatly appreciated.
    Pavel Lednikov,
    Software developer.
    [email protected]

    Privet Pavel!
    See thread
    http://forum.java.sun.com/thread.jsp?forum=60&thread=169227
    I think the cure there is the same as for your problem.
    So use
       Subject.doAsPrivileged(subject,action,null);instead of
       Subject.doAs(subject,action);see documentation of doAsPrivileged.
    Happy coding,
    Kullervo

  • Mavericks ignores security settings

    I've set OS X 10.9.3 Mavericks to 'require password 1 hour after sleep or screensaver begins' in the Security & Privacy section of System Preferencen. Time before log out is set to 360 minutes in the advanced panel.
    In the Energy Saver section i've set OS X to turn off the display after five minutes of inactivity, and when i turn the screen back on within the hour i'm very often required to enter my password.
    Anyone has an idea what can cause this behaviour?

    Thanks had the same problem but can now fix it.

  • Firmware Password Ignored (Security Flaw?)

    I'm following Apple's instructions for setting a firmware password on my late 2009 MacBook Pro.
    These are detailed in the knowledge base article here: http://support.apple.com/kb/ht1352
    Per the instructions, I'm booting from my Snow Leopard DVD, running the Firmware Password Utility, and entering/confirming the password.
    When I reboot, I am still able to 1) Hold the T key and enter target disk mode, 2) Hold the C key and boot from my Snow Leopard install disk. At no point do I see a password challenge. The chart in the KB article clearly lists these actions as things that are supposed to be blocked by the firmware password.
    Has anybody else tried the same thing with a recent Intel-based MacBook Pro?

    I have a MBP and just set a firmware password a few hours ago. To make sure it took, I held down option key and also did the keys for open firmware (O + F), C for startup from CD/DVD and T for Firewire target disk mode and nothing worked as it should.
    Here's one option for you. Open Terminal. on the command line type: nvram -p
    This is the unix command for working with open firmware. The '-p' prints the values of the public variables to the terminal window. Amongst all the gibberish, look for the following line:
    security-mode [value here]
    If the [value here] on your system says 'none' then, for some reason open firmware didn't take.
    If the value is 'command' then it should be working correctly
    Also, if you have replaced your internal optical drive with an extra hard disk, make sure you have the volume you want to boot from set correctly in Startup Disk. Amongst the variables that Open Firmware stores is the startup disk. So if you have two internal drives and you set the firmware password on one and you normally boot your computer with the other drive, that could be why its not working for you.
    At the very least, I would take the time to try it one more time via the DVD utility. Startup off the DVD, turn off firmware password, restart the machine, startup off the DVD again and set a firmware password and then restart again. I would think it would be fine at that point.
    Two cautions:
    1) Be careful where and with whom around you use this command as the open firmware password you chose is not encrypted, it is only obfuscated. Unix is actually showing you your firmware password in hexadecimal notation so it could be deciphered by someone who knows how.
    2) While you can use sudo with nvram to change open firmware variables, I do not recommend it as I have not tried it and I don't know how your system would behave. So if you choose to do this you do so at your own risk.
    Let us know what happens.

  • Problem with security in Weblogic 8.1

    Hi, my name is Jesús Chávez Reyes and it is my first time in this forum.
    My problem is related with security in WL 8.1 because I am new in this matter. My problem is :
    I work in change completely the security of an enterprise application that is deployed in WebLogic 8.1 and your security is a based in a RDBMS Custom Realm in Compatibility Security.
    This application is composed by 18 EJB and 4 web applications.
    The objective of this change is:
    1.- Use a external system for authentication (though a web service).
    2.- If is possible: unbind security of WL for in a future deploy the application in other Server(Jboss for example).
    I'm trying to implement security with Acegi and Spring in a one of the four web applications. I deleted all it has to do with security in deploy descriptors and deleted the realm.
    At this point I can login in , using the Web Service of the external application, without difficulty.
    The problem arises when the application makes an instance of the EJB's. This is the way how the application makes the instances of the EJB:
    InitialContext context = new InitialContext( null );
    Object   = context.lookup(name); // name=GroupSessionFacade   (JNDI Name of EJB)
    EJBHome home = (EJBHome) objref;
    +...+
    GroupSessionFacadeHome home = (GroupSessionFacadeHome) objref;
    groupFacade = home.create();
    In this point GroupSessionFacadeHome home = (GroupSessionFacadeHome) objref the application throws ClassCastException. This happens with all EJB.
    The application work fine before of to use Acegi and remove all it has to do with security. I inspect the Object " objref " before and after and this happen:
    BEFORE
    Class Name: control.ejb.GroupSessionFacadek1696tHomeImpl
    SuperClass : weblogic.ejb20.internal.StatelessEJBHome
    Implement : weblogic.ejb20.internal.StatelessEJBHome , control.ejb.GroupSessionFacadeHome
    AFTER
    Class Name: control.ejb.GroupSessionFacadek1696tHomeImpl
    SuperClass : weblogic.ejb20.internal.StatelessEJBHome
    Implement : weblogic.ejb20.internal.StatelessEJBHome
    Here The object no implements the InterfaceHome "control.ejb.GroupSessionFacadeHome" !!!!!!!!!, this is the cause of ClassCastException.
    What is the problem? Is it a security problem? and if so what do I need to remove or add in the application and has no dependence on anything for the security of Web Logic?
    The deploy descriptors are:
    IN THE WEB APPLICATION
    web.xml
    +<ejb-ref>+
    +<description>Reference to the GroupSessionFacade</description>+
    +<ejb-ref-name>ejb/GroupSessionFacade</ejb-ref-name>+
    +<ejb-ref-type>Session</ejb-ref-type>+
    +<home>control.ejb.GroupSessionFacadeHome</home>+
    +<remote>control.ejb.GroupSessionFacade</remote>+
    +</ejb-ref>+
    IN THE EJB
    ejb-jar.xml
    +<?xml version="1.0"?>+
    +<!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar20.dtd'>+
    +<ejb-jar>+
    +<enterprise-beans>+
    +<session>+
    +<description>GroupSessionFacade</description>+
    +<ejb-name>GroupSessionFacade</ejb-name>+
    +<home>control.ejb.GroupSessionFacadeHome</home>+
    +<remote>control.ejb.GroupSessionFacade</remote>+
    +<ejb-class>control.ejb.GroupSessionFacadeEJB</ejb-class>+
    +<session-type>Stateless</session-type>+
    +<transaction-type>Container</transaction-type>+
    +<ejb-ref>+
    +<ejb-ref-name>ejb/UserManager</ejb-ref-name>+
    +<ejb-ref-type>Session</ejb-ref-type>+
    +<home>control.ejb.UserManagerHome</home>+
    +<remote>control.ejb.UserManager</remote>+
    +</ejb-ref>+
    +<resource-ref>+
    +....+
    +     </enterprise-beans>+
    +<assembly-descriptor>+
    +<container-transaction>+
    +<method>+
    +<ejb-name>GroupSessionFacade</ejb-name>+
    +<method-name>*</method-name>+
    +</method>+
    +<trans-attribute>NotSupported</trans-attribute>+
    +</container-transaction>+
    +</assembly-descriptor>+
    +</ejb-jar>+
    weblogic-ejb-jar.xml
    +<?xml version="1.0"?>+
    +<!DOCTYPE weblogic-ejb-jar PUBLIC+
    +"-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB//EN"+
    +"http://www.bea.com/servers/wls810/dtd/weblogic-ejb-jar.dtd">+
    +<weblogic-ejb-jar>+
    +<weblogic-enterprise-bean>+
    +<ejb-name>GroupSessionFacade</ejb-name>+
    +<transaction-descriptor>+
    +<trans-timeout-seconds>600</trans-timeout-seconds>+
    +</transaction-descriptor>+
    +...+
    +<enable-call-by-reference>True</enable-call-by-reference>+
    +<jndi-name>GroupSessionFacade</jndi-name>+
    +</weblogic-enterprise-bean>+
    +</weblogic-ejb-jar>+

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Visio, I'll move your question to the SSIS forum
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlintegrationservices
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • Security updates in Reader 6-7-8-9-10 series

    Using this link for reference:
    ftp://ftp.adobe.com/pub/adobe/reader/win/
    It looks like the 6-7 series are no longer being updated. The last 7 series update was an 7.1.4 incremental update on 10/13/2009. Correct?
    The 8-9-10 series were all updated on 6/14/2011 to 8.3, 9.4.5, and 10.1. I need to be clear about this... All of the advertising says to update to 10.1 in order to get the latest security updates. However my impression is that 8.3 and 9.4.5 contain the same security fixes, and are equally as secure as 10.1. Correct?
    Re trailing dot zero (.0) in version numbers:
    In different places I see the last 8 series update variously referred to as version numbers 8.3 and 8.3.0. Are those the same? I also see version numbers 10.1 and 10.1.0. Are those the same thing?

    Thanks for the reference. I read it...
    There is no mention of the 6-7-8-9 Reader series therein. It says that a "protected mode" was instituted in the 10 series, which I intuit to mean (in absence of explicit language) was not available in the prior versions series, and that this is the basis for the above "inherently more secure" description of the Reader 10 series. If I got that correct...
    It's a rather complicated tech article with a lot of exceptions, especially for the Windows XP op system which I'm running. So I'm not sure protected mode would run on my 8 year old XP computer, in any case. I can't remember the exact details from when I had Reader 10.1 installed.
    I don't like the 9-10 series GUI so uninstalled Adobe Reader and experimented with some .pdf reader substitutes such as Foxit and PDF-XChange reader for awhile. I didn't like their GUI's and/or features either, so reverted to an older Adobe Reader version in the 7 series, ignoring security considerations. Then after discovering the 8-9-10 series were all updated with security patches on 6/14/2011, I installed 8.3 which has a marginally acceptable GUI. I really like the Reader 6-7 series GUI best, so compromised a little. That's where I stand, with the Adobe Reader 8.3 version installed, and I'm not willing to go higher because I dislike the GUI changes in the 9-10 series.
    I note in passing that my free avast antivirus software includes an autosandbox feature which I have enabled, and wonder if that might be a substitute for the protected mode of the Reader 10 series(?). I also wonder if turning off javascript in the Reader, and disabling the opening of .pdf files inside browsers, might have a similar security effect as the new protected mode(?). However I'm not going to pursue it further. I really have very little use for a .pdf file reader or manipulator so my interest is exceeded already. Mostly I just need to be able to read the .pdf user manuals provided with various hardware/software, and financial statements provided by banks, credit cards, utility companies, etc. Those are generally very safe sources of .pdf files. I don't need all of the extra features included in current Adobe Reader versions, nor the fancy new GUI with invisible floating hover/unhover disappearing/reappearing toolbars. Mostly I just need something simple and stable. The recent use of gray scales rather than colors is also less legible on my CRT monitor, and was apparently designed entirely on/for LCD monitors.
    Sorry to ramble on, but that explains how it stands at this end, and why I came here in the first place. Thanks for your responses and help.

  • Can I set the iPhone to ignore my neighbour's locked WiFi Network?

    I know you can set the iPhone to "forget" a network you've previously joined. But, how about my neighbour's network that's locked, that I've never joined, and keeps prompting me to join it? Can I tell the iPhone to ignore it?
    I know I can choose to turn “Ask to Join Networks” on or off but I want to leave it on for when I'm out and about.
    Thanks.

    Maybe if enough people voice the request for this feature, Apple will finally implement it. Add one more user to that list.
    It seems backwards to me that you can only "forget" a network that you have already joined. Why would I want to do that?? I want to "forget" the annoying secured network next door that I CAN'T join, because it pops up and asks me every single day of my life, and I want to block it while still automatically joining unsecured networks. If Apple can't figure out how to do that, then they should at least add the option to ignore secured networks.

  • Security and Attachments (p?n)

    Currently all attachment URLs can be cut and pasted into any browser for file download. For public accessible applications, this is fine. For secure applications, this is not good.
    I have looked at modifying the p procedure, but its apparent, APEX session information is not available. Is there a way to bring security/APEX session logic into the p procedure.
    Any help would be appreciated.

    Hi,
    you could write your own procedure and use this instead of P.
    Example on how to call a user defined procedure: http://daust.blogspot.com/2006/04/xe-calling-stored-procedures.html
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com

  • Row-base security - mulitiple dimensions

    Hi
    I filter data using the row-wise initialization.
    In groups, in security filter, the logical SQL is eg.:
    Group "Region 1" has filter: DM."Dim Region"."rg_id" = VALUEOF("R1")
    Group "Region 2" has filter: DM."Dim Region"."rg_id" = VALUEOF("R2")
    R1, R2- are static variables containing numeric IDs of regions.
    User belongs to one or more groups.
    That works good for one dimension Region and the condition in sql is like:
    WHERE Region.rg_id in (1,2)
    When I've added next serveral groups for second dimension, eg.:
    Group "Category 1" has filter: DM."Dim Category"."Ct_id" = VALUEOF("C1")
    Group "Category 2" has filter: DM."Dim Category"."Ct_id" = VALUEOF("C1")
    generated sql has the condition like this:
    WHERE
    Region.rg_id in (1,2)
    OR
    Category.Ct_id in (1,2)
    But, I'd like to have logical sum:
    WHERE
    Region.rg_id in (1,2)
    AND
    Category.Ct_id in (1,2)
    regards
    Harnas

    Hi
    Thanks, I am able to figure out that.
    But I am stuck in performance issue with this approach, I am applying filter on my fact table , but my issue is that for a given user, filter values are in thousands, so OBIEE is putting them in a IN Clause(1,.... 20000) and when the actual query get executed it had performance issue.
    Is there any way where I can write subquery on fact table instead of storing multiple values in dynaic variable.
    Another issue is that when user log in , this variable get initialize which result in delay in login for the user.
    Deepak

  • Prblem with testing container-based security apps with JSC/AppServer 8...

    not sure whether this is a JSC or an AppServer issue, correct me if neccessary...
    I'm using container based security to dicate logic based upon user names & roles for my test JSC app. The problem is that when I run the app by autodeploying it to my Sun AppServer 8 instance (same machine, WinXP Pro) the security settings eems to be cached. That is, if I change the security roles or permissions in the container by editing the web.xml file the changes aren't reflected in the app upon redeployment. I have to copy it to a new directory and deploy as a new app to see any security change. It seems that the old usernames and roles are cached -even if I manually restart the app server. Is this a JSC or an ApPServer issue? Am I missing something? Is there an easier way for me reset security data when testing an application? Thanx in advance...
    -J

    while your solution may technically work, it is unusable to me because I can't successfully deploy a war file using JSC after I've manually added container-based descriptors to the web.xml file. In order for me even to be able to deploy the app I need to modify web.xml and sun-web.xml by hand in the build directory

  • Why does using TLF text in an fla for Air yield a security warning?

    I'm trying to prepare an fla in Flash for an Air Application.  I included in the first frame a TLF text field.  when I run the TestMovie in Air Debug Launcher I get a warning:
              Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml.  The 'secure' attribute is only permitted in HTTPS and socket policy files.  See http://www.adobe.com/go/strict_policy_files for details.
    If I then proceed to compile the application, install it and run it, it crashes.  It seems to be the TLF text field because when I remove it works fine.

    I ran the posted example.  Is it just a missing initialization or am I missing something?
    I get an error here:
    package com.test
        import flash.display.MovieClip;
        import flash.text.TextField;
        public class TLFText extends MovieClip
            public var tlf_txt        : TextField;
            public function TLFText()
                tlf_txt.text = "success";
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at com.test::TLFText()[C:\textflow\testprojects\bug_tlf_embed\src\com\test\TLFText.as:12]
        at bug_tlf_embed/onLibraryLoaded()[C:\textflow\testprojects\bug_tlf_embed\src\bug_tlf_embed. as:33]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.zora.util::FlashLib/onLibraryLoaded()[C:\textflow\testprojects\bug_tlf_embed\src\com\ zora\util\FlashLib.as:40]
    tlf_txt is indeed null.  Besides the variable being named "tlf_text" I don't see any TLF classes here.

  • ACL or Accounts-Security

    Hi Experts,
    Is there any advantage of using accounts over ACLs. Using either of these, the security requirements of the client can be achieved. However if I use accounts , a large number of WLS groups are required. Which one would be better choice?
    Regards,
    Rekha

    Yes, the main advantages are performance and usability.
    With ACLs each document can have different security settings.
    As for performance, if you enter a query like "what document can a user read?" it requires to check all ACLs (not sure if it is still true, but I think in earlier versions ACLs were implemented as comma-separated strings, so this query was quite costly). With accounts, or security groups, the logic is much closer to relational database, so even though the queries require few OUTER JOINs, in the end they are much faster.
    As for usability, imagine a scenario like "I want to replace a person X with a person Y" - with accounts you do it in one place, with ACLs I do not know (not sure if there is anything like "mass ACL update" available).
    Note that "a large number of WLS group" should be auto-generated, ideally, in cooperation with an IDM solution.
    In general, I'd recommend ACLs only for very specific situations - namely, if security settings change during items lifetime (in 10g, they were a part of a component called Collaboration Manager, and it meant that a user might be granted access to an item only for the sake of a workflow, which is something you cannot do with accounts/security groups - or to be precise, you cannot do it easily).
    I have also heard, with no further details, that recently ACLs were redesigned, so some statements above might become obsolete.

  • Where to download SAPK-75009INCPMBPC

    Dear All,
    from this url
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/spat/index.htm?sp1=SAPK-75009INCPMBPC|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/spat/index.htm?sp1=SAPK-75009INCPMBPC]
    show all notes that will include in BPC7.5 sp9
    but i can't find SAPK-75009INCPMBPC in SAP Service Download Page (Support Packet and Patch)
    below are notes,
    1586567     Analyzer cannot access BPC because of member access profile
    1607266     Custom dimension properties cannot be used in MDX
    1611688     Generation Error on Basis 731
    1613088     BPC Report folder unsorted
    1618447     Syntax error in class CL_UJA_HIER_WRITER_T
    1620487     Fix CHECKMAN errors in previous Support Packages
    1610665     MBR_SEQ invalid when restore master data
    1612263     Short dump when re-generating cache file for APPSET
    1596352     Source cube was deleted when copy application
    1609031     Add dimension hangs if dimension member is empty
    1609243     Process dimension will change CALC to NO ignoring children
    1610540     Cannot process members with hierarchy
    1611669     Inconsistent content of YTD/QTD time hierarchies
    1612685     CALC are not correctly update for all parent node
    1614252     Process dimension: Hierarchy and Attribute updates wrongly
    1615304     Wrong member sequence after adjusting member sequence
    1619066     Can not process dimension in Non-Unicode system
    1597940     K2: Extend TMVL offset limitation into -9999 to 99999.
    1598517     K2: Script logic program eat errors raised by work status
    1598685     Member access issue of *LOOKUP
    1607231     K2: script logic can not save ZERO data.
    1608581     K2: Handle error records received from the Write Back.
    1611066     K2: Support custom measure in script logic
    1597418     Incorrect result on the store entity for groups
    1604350     Incorrect consolidation result with type E or P
    1610683     ENHANCEMENT:PROP(acc) not working in business rule
    1598951     BPF: Incorrect authorization in 'ALL' open-criteria
    1603563     BPF:Allow ActionCV shows 4 options when noncontrolling appl
    1604477     BPF: Reopen a given step region via a selection screen.
    1606254     BPF: Support not to show URL in the BPF emails
    1597987     Support non-modifiable namespace when restoring BPC appset
    1598053     Invalid value of dimension member XXX when restoring Appset
    1601811     Failed to restore comment or archived audit
    1602680     General Error message when AppSet failed to restore
    1621375     Backup&Restore should support across release 750 & 750_730
    1599550     Copy comments for process chain 'CPMB/COPYCOMMENTS'
    1599188     Add a new process chain for 'Copy Comments'
    1603530     Enhance program UJD_TEST_PACKAGE
    1606159     DM Upload causes ORA-01653 error - Unable to extend table
    1598448     Column index out of range in import master data from file
    1599753     Same master data ID and text node in hierarchy of InfoObject
    1604853     Rejected data are not stored in log if max count reached.
    1606726     Multi-members or mix-case memeber issues in UJ_VALIDATION
    1609666     Rule always broken if Multi-members set for logic dimension
    1601205     Memory issue when posting huge data into BPC application
    1608557     Pass the MDX statement to BPC client if error occurs
    1612606     Separate value functions by worksheet
    1613715     No value retrieved on node members with space in member ID
    1592735     Enhancement for Auto-reversed journals for BPC 7.5
    1598475     New journal template overwrites the existing one
    1621562     Journal status not rolled back when posting to BW fails
    1583788     Dump when downloading large files with transaction UJFS
    1597990     Ignore security in consolidation package
    1604465     Dump on calling consolidation from a different application
    1604798     Change of scope leads to wrong flow for all most all data
    1607106     Consolidation reads data from FX_SOURCE_CATEGORY
    1607562     DUMP in validation when 'I' dim. missing in an application
    1609577     Dump and bad performance in carry-forward
    1618464     Validation difference are always positive
    1618910     R_SELECTION doesn't support DIMLIST values in validation
    1597983     Errors from write-back if FORCE_DESTINATION_MEMBER is filled
    1615629     Consolidation dumps if there is more than 1 periodic rule
    1620613     Data duplicated in balance carry-forward

    Hi,
    Are you talking about the NW version? I guess you should have posted it in the BPC NW forum.
    By the way, for the download, you need to go to
    software download -> support packages and patches -> SAP Application Components -> SAP BPC FOR SAP NETWEAVER -> SBOP PC 7.5 FOR SAP NW -> SAP CPM BPC ABAP 7.5
    You should be able to see it there.
    Hope this helps.

Maybe you are looking for

  • Error while opening LabView files - Bei der Weitergabe des Befehls an das Programm ist ein Fehler aufgetrete​n

    Hy Forum Some times ago i had some troubles while opening files in labiew.... I want to open a LabView file (no matter if *.vi or *.lvproj file) from a network path (mapped network drive). The Windows User Account Control (Windows 7, 32bit) appears t

  • Recording VHS to DVD

    Hello all, I have been wanting to make dvd copies of my mom and dad's old home movies that they put to vhs. The original home movies were on super 8mm but my dad had them copied to vhs some years ago. Now it looks like vhs is going out and dvd's are

  • Iphoto won't open or close

    iphoto will not open nor close

  • Clearing up free ram is a nuisance

    You would think that such an advance machine and from Apple that it should be able to do it on its' own. I downloaded Memory Clean to see what's going on in the Ram dept. And I am disappointed time and time again as I have to manually clear up the ra

  • Regular expression  * vs +

    Hi, I want to write a program to replace "0" character at the end of a string with "" (empty). Pattern p = Pattern.compile("0*$"); Matcher m = p.matcher("10.10"); String t = m.replaceAll(""); This is the code I wrote and it works. I also can use "0+$