Standard Security Package

I am aware of the ability to apply the security rules associated with an apps user responsibility to discoverer custom folders/workbooks.
Does anyone know how to do this?
I am using Oracle R12 & Disco 10g.
Many thanks
Jo

Hi Rod,
I have one question regarding same security in discoverer. Here is my explanation for that.
fnd_product_initialization table contain following values
SQLGL -- GL_SECURITY_PKG.INIT
AR -- FII_GLOBAL.INIT
IGI -- IGI_SLS_CONTEXT_PKG.SET_SLS_CONTEXT
PER -- HR_SIGNON.INITIALIZE_HR_SECURITY
fnd_product_init_dependency table is having the following values like
SQLGL -- AR
AR -- IGI
AR -- PER
In this senario , If i login into the discoverer using Oracle general ledger responsibility The discoverer post login trigger will execute the security initializtion procedures in the following order.
1. IGI_SLS_CONTEXT_PKG.SET_SLS_CONTEXT
2. HR_SIGNON.INITIALIZE_HR_SECURITY
3. FII_GLOBAL.INIT
4. GL_SECURITY_PKG.INIT
Here the procedure FII_GLOBAL.INIT code is as follows
CREATE OR REPLACE PACKAGE BODY FII_GLOBAL AS
/* $Header: FIIINITB.pls 120.1.12000000.2 2007/02/23 20:56:21 hlchen ship $ */
-- Name : INIT
-- Type : Procedure
-- Description : This procedure initializes MO Security when the user logs into
-- discoverer
PROCEDURE INIT IS
l_application_short_name varchar2(15);
l_init_function_name varchar2(240);
BEGIN
l_application_short_name := fnd_global.APPLICATION_SHORT_NAME;
--mo_global.init(l_application_short_name);
-- Added for bug 5240018 by MMANASSE
SELECT UPPER(init_function_name) INTO l_init_function_name
FROM fnd_product_initialization
WHERE application_short_name = UPPER(l_application_short_name);
IF ('FII_GLOBAL.INIT' = l_init_function_name) THEN
mo_global.init(l_application_short_name);
END IF;
EXCEPTION WHEN NO_DATA_FOUND THEN
NULL;
END;
END;
If we go through the above procedure it is selecting the init function name from the follwing query.
SELECT UPPER(init_function_name) INTO l_init_function_name
FROM fnd_product_initialization
WHERE application_short_name = UPPER(l_application_short_name);
If we login to GL Responsibility it always returns the "GL_SECURITY_PKG.INIT" value for GL and the next step "IF ('FII_GLOBAL.INIT' = l_init_function_name) THEN" is failing to initialize the mo_global security package.
And this was modified for the bug bug 5240018. I could not able to find this bug in metalink.
I have some reports which uses the both GL and AR tables. For AR tables i have applied the mandatory condition to the folders from the table "mo_glob_org_access_tmp"(This is actually a global temporary table populated the org informaiton at the time of Mo Global security initialization) and for GL tables i have applied the condition on gl_security_pkg.validate_access.
If i login with general ledger responsibility, MO Global package is not initializing. I have explined this reason above in the package.
Please provide me any alternate solution.
Message was edited by:
ramakrishna@oracle
Message was edited by:
ramakrishna@oracle

Similar Messages

  • How can I use the security package in JCOP41V2.2?

    Hi all, I'm a newbie in javacard programming. I'm trying to develop a project with RSA_signature. But I found, the exception NO_SUCH_ALGORITHM will be thrown out when I new an instance of KeyPair.
    My java file Temp_1.java following:
    package temp;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.framework.APDU;
    import javacard.security.*;
    * @author lujj
    public class Temp_1 extends Applet {
    KeyPair myKeyPair = null;
         public static void install(byte[] bArray, short bOffset, byte bLength) {
              // GP-compliant JavaCard applet registration
              new Temp_1().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
         public void process(APDU apdu) throws ISOException{
              // Good practice: Return 9000 on SELECT
              if (selectingApplet()) {
                   return;
              byte[] buf = apdu.getBuffer();
              if(buf[ISO7816.OFFSET_CLA] == (byte)0xEE)
                   try
                        myKeyPair = new KeyPair(KeyPair.ALG_RSA, KeyBuilder.LENGTH_RSA_1024);
                   catch(CryptoException e)
                        ISOException.throwIt((short)(0x6F00+e.getReason()));                    
                   return;
              switch (buf[ISO7816.OFFSET_INS]) {
              case (byte) 0x00:
                   break;
              default:
                   // good practice: If you don't know the INStruction, say so:
                   ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    This package can be upload and the applet can be installed successfully.
    But if I send the apdu "EE 00 00 00 00" after selected the applet, "6F 03" will be returned.
    Is there anyone can help me? Thanks a lot.

    Thank you so much~
    Actually, it's only an applet for test. I cannot get the error code if I new the KeyPair in install function or Applet construct function. It will return "6A 80" when install the applet.
    And, I found that it support few algorithm. For example, it does not support ALG_DES_MAC4_ISO9797_M2,etc. Is there anything I can do if I want to use the algorithm? Shall I rewrite security package by myself?
    5555, security package is the standard package in JAVACARD API 2.1.1.

  • NWDS - Importing standard SAp packages

    Hi,
          I am new to NWDS java developmennt.
    I have succesfully developed, deployed a demo EJB to J2EE and also able to execute it from my SAP portal server.
    I am trying to use the user management API ot Portal (like package com.sap.security.api), however when I write the following statement, it gives an error on my local NWDS build.
    import com.sap.security.api;
    Question is how do I refer to this remote package (or any other SAP package) which is lying on J2EE on my local NWDS software build.
    Thanks,
    Amit Jain

    This is answered. The standard SAP packages are available on local machine.
    Right click on project->properties
    Selectr Java Build path-> Libraries->Add Variable->Select ECLIPSE_HOME
    Hit Extend
    Select Plugins
    Select com.sap.security_2.0.0
    Now the import com.sap.security.api.* statement will not give any syntax errors.
    Closing the thread.

  • SharePoint Reporting Services, No Credentials are available in the security package

    Hi all, 
    I have problem to solve regarding rendering Reports inside SharePoint. Scenario as follows.
    1. There are two domains with two-way trusted connections. We have confirmed it finding users for both domains in the people pickers
    2. Kerberos has been configured in SharePoint
    3. Users from the domain that SharePoint is installed can render reports inside SharePoint but users from the other domain get following error when they try render reports.
    4. users from the other domain can render reports when they browse direclty to the admin tool of reporting-services server.
    5. users from the other domain can run klist and get a about 15 tickets.
    this is the error the users from the domain get when they try render report inside SharePoint.
    An Error has occured during reporting processing (rsProcessingAborted)
       Cannot create a connection to data source 'theSourceSSAS' (rsErrorOpeningConnectiong)
         Authentication failed
            No Credentials are available in the security package
    Thank you very much for your help and appreciate all kind of advice.

    Hi Medes,
    From the error message, it seems that the issue is due to the accounts in another domain has no permission to access the data source theSourceSSAS.
    I recommend to use Stored credential when creating the data source and then check the results.
    Please also check if the Claims to Windows Token Service is running with Local System account.
    If not, please make sure that the account running this service has the permission below:
    Act as part of the operating system.
    Impersonate a client after authentication.
    Log on as a service.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Available Services in Standard Business Package

    Hi All,
    What are all the services(applications) provided by MDM standard Business Package? Are there any links which clearly states the list of services supported.
    Thanks in Advance!!
    Regards,
    Revathi Raju.
    Edited by: Revathi Raju on Mar 11, 2009 8:45 AM

    Hi Revathi,
    Are you asking about the Standard Business content provided by SAP or the Standard Business package?
    Standard Business Content:
    SAP has provided Std Business content with the MDM 5.5 and 7.1 MDM server.These are nothing by predelivered SAP repoitories archives for different masters like Customer,Material,Vendor,Article,Product,Employee etc.All you have to do is unarchive these rep contents on to your MDM server and then you can work with them .
    The Services that they provide are:
    - You will get teh entire MDM rep ready to use
    - With this comes the XML Schema,Import and Syndication Maps
    - Remote systems and ports
    - And all such configurations predefined
    - So your data modelling work is almost done and you can work with your master data directly on the repositories.
    To know more on the Business Content please refer the below link;
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1035773 - Business partner
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1252846 - Products
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1252884 - Customer
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1255401 - Material
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1252883 - Vendor
    https://websmp202.sap-ag.de/~sapidb/011000358700001119642007E - Article
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1268212 - Employee
    The other thing is the standard Busines Package:
    These are the SAP predelivered Content to be used with MDM and other Netweaver components.
    - Like for example you have some predelivered sca files and Business contents to work with portal and MDM
    - SRM -MDM Buisness content to work with MDM and SRM catalog
    - MDM with GDS
    etc
    The features provided by these business packages is taht it enables easy to connect and use efficient integration between MDM and the other components.
    You can refer the scenario guide to know more on this:
    https://websmp209.sap-ag.de/~sapidb/011000358700001119482007E
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • Adobe Acrobat 6.0 Standard font Package

    All
    Any body can help me to get Adobe Acrobat 6.0 Standard Font Package?

    Which is the latest version of Acrobat that you have purchased?
    If version 6 then 6.06 is the latest free update that you can download.
    Versions 7, 8, 9, X were all paid-for upgrades.
    The current version is XI but only versions 8, 9 and X are eligible to upgrade to XI.
    http://www.adobe.com/products/acrobatpro/buying-guide-upgrade-pricing.html

  • Windows 8 Remote Desktop Error "The Requested Security Package Does Not Exist"

    When my remote host (win server 2008 R2) is configured to use SSL for security layer, RDP from my Windows 8 gets  
    "An authentication error has occurred. The requested security package does not exit."
    When the host is set to use RDP security layer, it works fine. 
    Registry key solution for Win7 suggested on other posts does not seem to apply to win8.
    This is a Lenovo desktop, I uninstalled silverlight and bunch of other OEM installed programs.

    This fixed my problem in Windows 8 while connecting to a Windows 7 host.  I needed the pku2u entry.  I decided to look it up and here's the info for anyone that's interested.
    Introducing PKU2U in Windows
    Applies To: Windows 7, Windows Server 2008 R2
    This product evaluation topic for the IT professional describes the Public Key Cryptography Based User-to-User (PKU2U) security support provider (SSP) that is new in Windows 7 and Windows Server 2008 R2.
    PKU2U protocol
    The PKU2U protocol in Windows 7 and Windows Server 2008 R2 is implemented as an SSP. The SSP enables peer-to-peer authentication, particularly through the Windows 7 media and file sharing feature called Homegroup, which permits sharing
    between computers that are not members of a domain.
    How PKU2U works
    Windows 7 and Windows Server 2008 R2 introduce an extension to the Negotiate authentication package, Spnego.dll. In previous versions of Windows, Negotiate decides whether to use Kerberos or NTLM for authentication. The extension SSP for Negotiate,
    Negoexts, which is treated as an authentication protocol by Windows, supports Microsoft SSPs including PKU2U. You can also develop or add other SSPs.
    When computers are configured to accept authentication requests by using online IDs, Negoexts.dll calls the PKU2U SSP on the computer that is used to log on. The PKU2U SSP obtains a local certificate and exchanges the policy between the peer computers. When
    validated on the peer computer, the certificate within the metadata is sent to the logon peer for validation and associates the user's certificate to a security token and the logon process completes.
    For more information about developing SSPs, see
    Custom Security Packages in the MSDN Library.
    For more information about the Negotiate extensions (Negoexts), see
    Introducing Extensions to the Negotiate Authentication Package.

  • Error with standard Copy package

    Hello!!
    When I run the standard copy package selecting the option "Replace & clear data values" the execution finishes with status error and I receive the next error message in the log:
    Item has already been added. Key in dictionary: '[Invalid time Member] - EN_NONE|DSP_INPUT|2004_UPA_SEPT|'  Key being added: '[Invalid time Member] - EN_NONE|DSP_INPUT|2004_UPA_SEPT|'
    If I run the package with the option "Merge" it executes OK.
    Anybody help?
    Thank you in advance
    Pedro
    Edited by: Pedro de las Heras on Aug 7, 2009 3:16 PM

    Hello,
    You probalby get this error message beacuse you have not setup the Work Status for this application. Please defined the Work Status you want to use on the appset level and then define the dimensions you want to use to control the work status on the application level. That should solve your issue.
    Regards,
    Marcel

  • Changing in standard Business Package

    Hi
    I need to change the web dynpro component supplied in stanadard business package. These web dynpro component are called from portal Iviews.
    Should i make the Z copy of the webdynpro or starightway change to standard business package.
    How will it effect during upgrade or modification by SAP
    Best Regards
    Naresh

    Hi Naresh,
    when you create a z copy you must change the business package at least at the point where the WD application is called. So there are two points where SAP modifications will impact your changes.
    My suggestion: if you can't avoid using the portal at all, avoid at least making modifications.
    In the backend use the enhancement framework in order to be independent of SAP modifications. I put an example in the WD4A book, that shows how to work with the enhancement framework.
    regards, Ulli

  • Download Standard Business Packages of MM,SD for IViews

    Hi Experts,
    I want to download the Standard Business Packages for MM, SD Etc Modules.
    So from where i can get this, such that i am able to use them in Portal.
    Pls help me out.
    Regards,
    DS

    Hi,
    You can get them from the market place
    https://www.sdn.sap.com/irj/sdn/contentportfolio
    Regards
    Ayyapparaj

  • If I download the new version it says it will block my security package?

    My Mozilla keeps crashing and it was suggested that I download the new version but when I tried that it said it would block my Norton Security package that is provided by my internet service. I don't want to do this Is there a way around it?

    hello, first of all firefox won't block or affect your normal norton protection service that is running on your computer and scans for malware, but only the norton toolbar-part which hooks into firefox and offers a few gimmicks but which isn't necessary for your protection.
    and according to norton the toolbar is already compatible with firefox versions up to firefox 24. please run the norton liveupdate utility repeatedly & until all components are up-to-date. in addition make sure that the toolbar is enabled under ''firefox > addons > extension'' afterwards.
    for more information please refer to http://community.norton.com/t5/Norton-Toolbar-Norton-Identity/Firefox-24-and-Chrome-30-Support-for-Norton-Toolbar/td-p/1022717

  • Security package specific error occurred when trying to connect to Orchestrator with remote Runbook Designer

    When I try to connect to Orchestrator server with Runbook Designer installed on my laptop I get an error saying "A security  package specific error occurred.".
    Entry from Designer log file is below. I've tried to set error level to 3 and 7 but got no additional info about the error. I'm unable to find any details of the error on server or client side in any logs (Event Log or Orchestrator trace logs).
    Connecting to Orchestrator Management Server with local Designer installed on the server works fine. 
    Orchestrator is installed in AD environment and security groups are properly configured.
    Can anybody help?
    2012-06-12 11:35:51 [7472] 1 Exception caught in long __cdecl `anonymous-namespace'::connectCommunicator(struct HWND__ *,const class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &)
    Connections.cpp(238):
    <Exception>
    <Type>Opalis::Exception</Type>
    <Location>
    void __thiscall ServiceCommunicator::connect(const class std::basic_string<wchar_t,struct std::char_traits<wchar_t>,class std::allocator<wchar_t> > &)
    ServiceCommunicator.cpp(118)
    </Location>
    <MsgCode>A security package specific error occurred.
    </MsgCode>
    </Exception>

    I'm having a similar issue with one of our runbook servers. i cannot deploy any IPs to it. I get the error "A security package specific error occurred". I can open the designer on the runbook server, connect to the management server, and look at
    runbooks. They wont run on the server without the IPs though, but it doesnt seem like a connection issue. i have also tried uninstalling/re-installing the runbook server and i get the same. 
    Has anybody else run into this? 
    Edit:
    Heres an error fromthe event log:
    The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server <Service Account>. The target name used was HOST/server.domain.domain.com. This indicates that the target server failed to decrypt the ticket provided by the client. This can
    occur when the target server principal name (SPN) is registered on an account other than the account the target service is using. Please ensure that the target SPN is registered on, and only registered on, the account used by the server. This error can also
    happen when the target service is using a different password for the target service account than what the Kerberos Key Distribution Center (KDC) has for the target service account. Please ensure that the service on the server and the KDC are both updated to
    use the current password. If the server name is not fully qualified, and the target domain (domain.domain.COM) is different from the client domain (domain.domain.COM), check if there are identically named server accounts in these two domains, or use the fully-qualified
    name to identify the server.
    So maybe I was just given the wrong account.
    - Slow is smooth and smooth is fast.

  • Where are the standard java packages io,util etc found in JRE

    hello,
    can u guys tell me where the standard java packages io,util found in the JRE.
    is it the rt.jar file??
    as i need to set the path in my applicaion to it coz, my application after running generates a .java file and then compiles it and creates a .class file on the local machine every time it is run.

    You want the <JRE Home>\bin directory as your path if you use the JRE to run the class. Eyeball the SDK bin directory, find the same directory in the JRE structure, and set your PATH to it.

  • Style sheet of the SAP standard ESS package.

    Hi,
    Our client installed the standard ESS package and after adding a theme to portal the dropdowns , calendar widgets doesn't take the style sheet correctly and therefore the dropdowns , calendar widgets  and other display attributes doesn't appear properly.
    It would be great if any one provide the solution why this is occuring.
    Thanks
    Ritushree Saha

    Hi Ritushree,
    we experienced the same thing a couple of month ago. Some of the ESS/MSS GUI elements were not properly rendered after we applied a new SP (SAP NW 7.0 SPS 9 or SPS 11). As far as I remember SAP promised to fix the probleme in the next SPs.
    As a workaround we configured the affected ESS/MSS iViews in a way that they did not use the Portal Theme. As a result the iViews had a slightly different design but the GUI elements were working again.
    Best regards,
    Martin

  • Is there any standard sap package which contains examples of web dynpro

    Hi experts, Is there any standard sap package which contains examples of web dynpro.

    Hi Jrockman,
    SWDP_DEMO_TUTORIALS package also contains some demo web dynpro components. There are many standard wd component which you can refer, all of them start with the name WDR, so you can also serach for components starting with name WDR_*.
    I hope it helps.
    Regards
    Arjun

Maybe you are looking for

  • Thumbnail images are very poor, is there a way to improve them ?

    I've just started using Lightroom 5, and right after importing them I noticed the images are of very poor quality. If I try and blow them up bigger using the slider they get even worse. I've used Bridge in Photoshop to do this before and the images l

  • How can I make PLAY button be selected by default in top menu?

    Hi, I usually have the PLAY button and all the scene selection buttons show up in the same top menu on my DVD's. Is there a way to have the PLAY button be the one that is initially selected when the DVD starts up. In other words, I don't want people

  • Launch of BEx Analyzer via RRMX, other transaction?

    Transaction RRMX has been a common means for us to launch the BEx Analyzer in our BW 3.x system.  After upgrading to NW04s, transaction RRMX continues to call the 3.x BEx Analyzer.  Is there a way to have this call the new NW04s (7.0) BEx Analyzer or

  • Folders all messed up on import

    Two things: first, anyone who hasn't imported yet, make sure you unplug peripherals that may have a backup. My import seemed to choose folders randomly from either the real library or one of two or three different backups (some just references to fol

  • IDOC for changing user status to 'HIST' on Functional Location

    Hi. Can anyone please support me with an inbound IDOC for changing status on existing Functional Location? Thanks.