OMPLUS Export security information

On the export Advanced tab there is an option to export additional security information.
Its purpose - Select this option to include security information such as object privileges or role assignments made to users.
Is it possible to do this via OMBPLUS if so what is the command?

Hello Geri,<BR><BR>Currently, Planning 3.5.1 does not have any utility to export security out of planning. <BR><BR>What you can do is this that generated PDF files through the application itself and then convert it in to text files and so on to load security via importsecurity.exe. <BR><BR><BR>Thanks,<BR>Scorpio<BR><BR><BR><BR>

Similar Messages

  • Exporting Asset Informations to Excel

    Hello,
    transaction : S_ALR_87011963 (Asset balances)
    User want to export asset information on excel with the icone "Microsoft Excel" (Ctrl + F7), but when the user click on the excel file icon he has a report concerning programs.
    I know that there is another way to export to excel (List -> export ...), but i want to understand why it doesn't work for that user ?
    Thank you in advance for your help
    Ferdaws

    Hi Ferdaws,
    Have a look at following SAP note:
                                                                                    696069  No data when view Excel Inplace on ALV with Office 2003/XP.
    Please ensure that security settings/options for Visual Basic project      
    and Macros are set according to note 696069 attached.            
    696069    No data when view Excel Inplace on ALV with Office         
    Othere notes that may provide some helpful information in addition:
    635011     ALV: Excel inplace - large datasets                        
    567053     ALV view: Message 0K 413 for ALV print and backgrou        
    552915     Empty worksheet when using Office XP in ALV                
    550563     ALV View: Inc. message 0K 407 with missing authorization                                                                               
    548409     ALV view: Consulting note on Excel Inplace/Template        
    534624     ALV view: Consulting                                                                               
    I hope this helps.                                                                               
    Kind regards,
    Brigitte

  • Export security-Info from planning to flat file

    <p>In planning there's the possibility of <b><span style=" color: #008000;">importing</span></b> security information (assignedaccess) by the utility ImportSecurity.exe.</p><p> </p><p>Is there the possibility of <b><span style=" color:#ff0000;">exporting</span></b> this information (e.g. access todimensions or forms) from planning to flat file.</p><p> </p><p>Note: In shared services there's another utility for import andexport of provisioning information (command-line tool) but thisdoesn't comprise import/export of security info of anapplication.</p><p> </p><p>Regards</p><p>Geri</p>

    Hello Geri,<BR><BR>Currently, Planning 3.5.1 does not have any utility to export security out of planning. <BR><BR>What you can do is this that generated PDF files through the application itself and then convert it in to text files and so on to load security via importsecurity.exe. <BR><BR><BR>Thanks,<BR>Scorpio<BR><BR><BR><BR>

  • Problems Getting Security Information

    SDK:  BI 4.0 SP6 - I have both the server and the client tools apps installed on my laptop.
    I'm working on an application that pulls folder security information (among many other things!) and exports it to a .csv file so that we can analyze it.  However, it appears that the security info is not being pulled correctly.  Here are the various bits of code that I'm using:
    CMS Query:
    Select * from CI_INFOOBJECTS where SI_KIND = 'Folder' order by SI_NAME
    For each folder returned in the above query, information is stored in a FolderInfo object (a class that I've written):
    public FolderInfo (IInfoObject fldr, boolean doAdvanced, boolean favFldr) throws SDKException{
      id = fldr.getID();
      title = fldr.getTitle();
      kind = fldr.getKind();
      cuid = fldr.getCUID();
      folder = qh.getParentPath(fldr, "CI_APPOBJECTS");
      favorite = favFldr;
      loadSecurity(fldr, doAdvanced);
    The loadSecurity() method is this (SecurityInfo is another class that I've created):
    protected void loadSecurity(IInfoObject o, boolean doAdvanced) throws SDKException{
      ISecurityInfo2 si2 = o.getSecurityInfo2();
      IExplicitPrincipals ieps = si2.getExplicitPrincipals();
      for (int i = 1; i <= ieps.size(); i++){
        IExplicitPrincipal iep = ieps.get(i);
        SecurityInfo si = new SecurityInfo(iep, accessLevels, doAdvanced);
        hasAdvancedSec = hasAdvancedSec || si.hasAdvancedRights();
        security.add(si);
    The problem that I'm running into is that getExplicitPrincipals() is frequently returning only one principal and that is null instead of containing the correct object principal information the security that has been assigned.
    What am I doing wrong?  Thanks!
    -Dell

    Hi,
    I just took another look at this,
    IEffectiveRoles eRoles = iep.getRoles();
    for (int i = 1; i <= eRoles.size(); i++){
        IEffectiveRoleeRole = eRoles.get(i);
            if (eRole != null){
                   roles.add(eRole.getTitle());
    eRoles.get(i) - returns the access level with the given id not the access level at position i. So you'll need to use an iterator to loop through the results and extract the roles:
    Iterator<IEffectiveRole> iRoles = eRoles.iterator();
    while (iRoles.hasNext()) {
         IEffectiveRole role = iRoles.next();
    The same applies to the original posting, IExplicitPrincipals.get(i) gets the principal with the specified id, not the principal at position i.
    I should've picked up on this sooner but like you I assumed that .get(i) on the collection would return the object in the collection at position i.
    I haven't tested the above - just going by the javadoc. If correct then we should probably raise a ticket in ideas.sap.com to get the methods renamed to something like getPrincipal(int id) getRole(int id) and leave the standard collection get(int position) method in place to get the object at position x.
    Let me know how it pans out.
    James

  • MaxL - Export Security File Command

    Hi,
    Ours is a planning application - Classic - 11.1.2.0 version.
    I have a requirement where I need to get all the information regarding security defined on dimensions, data forums etc. The reason we are looking for this is so that we can compare the overlap (if any) of security given to any particular user - who mind end up being in two groups (in shared services) but each group has different access/permissions.
    For instance - There is a user who has access to two data forms and say on one form he needs write access to Actuals and on all the other he should just have read access to Actuals. This user is in two groups and in one group he has been given write access to Actuals but in another group he was given read access to Actuals. So, based on this the "Write" permission will be dominant and he would be getting write on both the places which might not be efficient.
    So, to avoid such situations I need to know the all security overlaps in a readable format. I did go through the Export Security File command but I am not sure if it would give me all the details I need. I did read the tech ref but couldn't get all the information. Will this command help to achieve my requirement? Are there any other better methods?
    Please let me know your ideas. Any help is appreciated.
    ~ Adella
    Edited by: Adella on Sep 15, 2011 10:16 AM
    Edited by: Adella on Sep 15, 2011 10:16 AM

    Thank you John for your prompt response.
    I don't know why I didn't think of this when I was thinking about this issue...I mean I knew of this utility but it didn't struck me for some reason...sorry about that but I think this would help me :)
    I also have another question - I don't know if I should have posted it as another post but please let me ask here.
    Does, the dimension level security applied on Planning data forms also work on reporting?
    We have situations where a user needs to work on data forms as well as work on reports. In data forms he should just be able to see part of customers but when working with reports he should be able to see all customers. So, if I have two groups in Shared services - one group for reports and another one for planning and this user being in both the groups how would it work?
    Will it overlap at some point? Or will it be two different things since for once group we would provision him as a planner for an application and in the reporting group he would be playing some other role? I am a little confused on this as ultimately it is the same user.
    Please let me know.
    ~ Adella

  • HT5312 The option to reset security information tab isn't showing up for me, is there I way that I can make it show up. I have a rescue email address and it still doesn't show up. Please help!

    The option to reset my security information tab is not available for me, I have a rescue email address in place and it still doesn't show up. Please help!

    You need to ask Apple to reset your security questions; ways of doing so include clicking here and picking a method for your country, and filling out and submitting this form.
    (96335)

  • I receive Security Information Required message when I try to rent an itunes movie from my apple tv. I rent fine from my macbook, and have sharing turned on, WTH?

    My apple tv appears to work fine, watching netflix and other apps. but when I try to rent an itunes movie I receive the Security Information Required message. I have sharing turned on, the apple tv and macbook are logged into the same apple ID.
    WTH?
    pretty frustrated.

    It's telling you to verify your payment details. You need to go into iTunes on your computer and check that your address and credit card info are accurate. You will also need to make sure you have put in your security code.

  • I want to play music bought from itunes on my new computer but apple id is old email address no longer accessible and password forgotten. Security information date of birth also not accepted

    I want to play music bought from itunes on my new computer but apple id is old email address no longer accessible and password forgotten. Security information date of birth also not accepted. No good apple sending reset information to old email address as I cannot access it

    Welcome to the Apple Community.
    The following article(s) may help you.
    Moving your iTunes library to a new computer

  • How to avoid security information pop up when using BSP in SRM

    Hi. I have created a custom BSP and have flagged it as HTTPS in the properties, and the URL does start HTTPS.
    I have then put this BSP in a role in SRM and can access it from the internal ITS after logging into SRM. Obviously the main SRM URL is also HTTPS. The BSP actually does its job fine.
    However, when I click on the BSP I get the security information pop up telling me that the page contains both secure and nonsecure items every time.
    How can I avoid this?
    I have read the article on the wiki, but it does not apply to my BSP as there are no links at all in my BSP, and everything is HTTPS.
    We can not change the IE settings as all our desktops are locked down and configured in the same way from an outsource company.
    Any help would be greatly appreciated.
    Regards,
    Dave.

    Hi. I'd already seen that, and it is not quite the same as mine. That link is about calling a BSP as a catalog in SRM and switching from HTTPS to HTTP.
    I am calling the BSP direct from the SRM main menu and everything of mine is HTTPS, I am not switching.
    Do you have any other ideas?
    Thanks a lot for your help.
    Regards,
    Dave.

  • HT5622 I want to change my security information so I went to "Manage your Apple ID" but I could not find "Reset your security information" can someone help me to change my security answers. Thanks in advance

    Hello Everyone,
    I want to change my security information so I went to "Manage your Apple ID" but I could not find "Reset your security information" can someone help me to change my security answers.
    Thanks in advance

    call 1-800-275-2273 (1-800-MY-APPLE)

  • Script to export Security file using maxl script

    can anyone provide me the Script to export Security file using maxl script.It should create a log file and a batch file should also be there to schedule the Maxl script.Please help me with this

    Hi,
    You can use something like
    [b]login admin password on localhost;
    [b]spool on to 'c:\temp\log.txt';
    [b]export security_file to data_file C:\temp\sec_file.txt;
    [b]spool off;
    [b]logout;
    Then you can have a batch file that just calls the maxl script
    essmsh name_of_maxl_script.mxl
    The batch script can then be scheduled.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Why wont my security information send to my email

    why wont my security information send to my email?

    From a Kappy  post
    The Best Alternatives for Security Questions and Rescue Mail
    Try calling Apple
    1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    An alternative to using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Didnt send me the instructions on how to reset your security information in my mail

    Yesterday i bought a $15 itunes card and i redeemed it. When i try to buy gems in clash of clan iphone game they asked me to answer 2 security questions but i forgot the anwers so i click on 'Forgot your answers? Send reset security info email to s•••••@hotmail.com'  then it saids ' Email sent. Check your inbox for an email with instructions on how to reset your security information.' But i havent receive it in my mail, i checked spam, trash everywhere but counldnt find it. What am i suppose to do ? Should i call apple ?

    Call Apple and ask for the Account Security team.
    (93848)

  • Can't Purchase anything in App Store, Additional Security Information Needed

    I am trying to make a purchase from the App Store in Snow Leopard 10.6.8, but can't make any purchases. When I try to purchase, I get the message, "Additional security information is needed. To use this Apple ID you must first login to the my info web page then provide additional security information." But when I click on Update Security Info, it brings me to a page at https://myinfo.apple.com/ but the page will not load, and it says that Safari can't establish a secure connection to the server. I have also tried it in Firefox and it does not work there either.
    I went to the Apple Store online, and updated my account info with the proper credit card and information, but it has not helped. What is going on here.
    This is for my bosses account and not my account, and we need to purchase some software for this machine, but are completely unable.
    Any help would be appreciated.

    I'm having the same issue.  We have recently signed up for the Volume Purchase Program.  I created the Facilitator account, logged into the VPP site, then got a message that additional information was needed.
    When I click the link to "Update Security Info", I get an error page on the browser...
    I have tried the same process in Firefox and received a similar message...
    I then proceeded to try the same thing on a Windows 7 computer with Internet Explorer, no good...
    Next, I thought the problem might be related to my firewall, so, I attempted it on a computer OUTSIDE the firewall, no good.
    Then, I tried it from home on my ipad, no good...
    Anyone have any ideas?

  • The requested security information is either unavailable or cannot be displayed

    Hi all,
    I've a file server Windows 2008 (not R2) with Service Pack 2, 32 bit. I've a shared directory this directory is the target of a remote FTP server. In this directory I've some files (that a user has put in via FTP) but if I try to view their NTFS settings
    I get:
    "the requested security information is either unavailable or cannot be displayed"

    Hi Andrea,
    According to your description, it may cause by the UAC was enabled. Please try to template disable UAC for a test, then reboot the server to see if it works.
    For detailed information about UAC, please refer to the following article:
    User Account Control Step-by-Step Guide
    http://technet.microsoft.com/en-us/library/cc709691(WS.10).aspx
    In addition, please try to use Administrator account to access the Security tab. And give the administrators group ownership permission of the folder. Hope it helps.
    Best Regards,
    Aiden
    Aiden Cao
    TechNet Community Support

Maybe you are looking for

  • Scheduling a job in BI Publisher

    Hi All, Is there any configuration file in BI Publisher which I can use to schedule a job. if not can insert the scheduled job directly into database. I noticed that when I schedule a job it is inserted into QRTZ_JOB_DETAILS and also goes to XMLP_SCH

  • Error : Balancing field "Profit Center" in the line item 001 not filed

    Hello The said error have come under Customer credit memo process for retune of excess tax deduction on billing through T/code VF02. Our system had activated GL splitting. The document line item views are Customer  Cr xxxxx To    CS Tax return Dr xxx

  • (For Each) component in OSB

    I am trying to use "For-Each" component to loop through the bulk message to be de-bulked and publish individual messages from the loop. However the loop does not execute multiple times. It goes through the for-each component only once. The bulk messa

  • IPhone 5 Adapter that supports video

    I would like to know if Apple will make an adapter that supports video out.This is pretty important for me because I have an in dash navigation of which has a cable for the iPhone. This cable has support for video out from the iPhone. If anyone has a

  • IDOC Packaging issue

    Hi, We have a requirement to create a single file for all the IDOC process in one day. We are in PI 7.1 and not having EhP1 so canu2019t create sender IDOC channel for packaging. We have another approach of using file port as describe by Stefan  blog