Error Provisioning the Federated roles from CUP to enterprise portal

Hi Gurus,
Need help. I am trying to provision the roles to enterprise portal using GRC CUP. I have created the connectors and field mapping and the connection is successful. We have a enterprise portal with producer consumer relation ship. The Enterprise portal acts as consumer for the BI portal. The BI portal Roles are federated to Enterprise portal and i get an error "noSuchIdentifier" when I try to provision the federated BI Portal role on the Enterprise portal. I can successfully provision the local portal roles and UME roles on the enterprise portal. I get the error only when trying to provision the roles which are from BI portal.
Appreciate any help, in this regards.
Thanks,
Pavan

Hi Alma,
This is one of the security issue.We had faced it sometime back.We searched some CSN's and found a solution.
Go to Service Market palce and download the latest Cryptographic Tool kit (Service Market place---->software downloads)
You will get a sca/sda something like tc/iaik./security(something like this)
Deploy this on to your instance using your SDM.
After that,Restart the Portal patching.It will go fine.
reward points if helpful................

Similar Messages

  • Error reading the standard sequence from the document tables

    Hi PM Experts,
    Please help!
    Recently SAP patching is carried out in our R/3 environments. Before patching, all our customized RFCs were working correctly.
    We are using BAPI ''BAPI_ALM_ORDER_GET_DETAIL'  in a RFC.  After the patching, the version date  of  the BAPI ''BAPI_ALM_ORDER_GET_DETAIL'   is changed to new date of patching.
    Now, when we are calling the customized RFC,  ''BAPI_ALM_ORDER_GET_DETAIL'  is returning an error  'Error reading the standard sequence from the document tables'.
    This comes when we are pasiing any order with Order type 'ZM02' ( Maintenance Order - Preventative). It is working absolutely fine with Order Type ZM01(Maintenance Order - In Hours Opex).
    Sometime, when RFC is run individually, it works fine with same data and sometime it is throwing this error with the same data. Very Inconsistent.
    Please advice whether patching is the reason.
    Any advice..is welcomed.
    Many Thanks,
    Rohit
    Edited by: Rohit Kumar on Jan 14, 2009 3:50 PM

    Thanks a lot.
    We found that the flow of the code(RFC) was making a situation  where even correct order id was passed to this BAPI, the result was an error 'Error reading the standard sequence from the document tables'. we reverted the RFC to it's earlier version. now that problem is not there.

  • SAP Patch :'Error reading the standard sequence from the document tables

    Hi Experts,
    Please help!
    Recently SAP patching is carried out in our R/3 environments. Before patching, all our customized RFCs were working correctly.
    We are using BAPI ''BAPI_ALM_ORDER_GET_DETAIL' in a RFC. After the patching, the version date of the BAPI ''BAPI_ALM_ORDER_GET_DETAIL' is changed to new date of patching.
    Now, when we are calling the customized RFC, ''BAPI_ALM_ORDER_GET_DETAIL' is returning an error 'Error reading the standard sequence from the document tables'.
    This comes when we are pasiing any order with Order type 'ZM02' ( Maintenance Order - Preventative). It is working absolutely fine with Order Type ZM01(Maintenance Order - In Hours Opex).
    Sometime, when RFC is run individually, it works fine with same data and sometime it is throwing this error with the same data. Very Inconsistent.
    Please advice whether patching is the reason.
    Any advice..is welcomed.
    Many Thanks,
    Rohit

    We found that the flow of the code(RFC) was making a situation where even correct order id was passed to this BAPI, the result was an error 'Error reading the standard sequence from the document tables'. we reverted the RFC to it's earlier version. now that problem is not there.

  • Error: prevented the text engine from being initialized

    I am getting the following error when attempting to use the text tool with my photoshop (12.0) - windows 7.
    "could not complete your request because something prevented the text engine from being initialized"
    I've attempted to follow some posts from others to fix without success.
    There are two fonts in my fonts folder that are shortcuts - and the fonts don't exist in the folder. Also, I can't delete the shortcut font from the fonts folder.
    (I'm posting this now... and might have a solution. Just in case, I want this conversation started.)
    TIA,
    Greg

    Usually that means that you have a corrupt font or a corrupt OS font cache.
    See this document for more troubleshooting steps: http://helpx.adobe.com/photoshop/kb/troubleshoot-fonts-photoshop-cs5.html
    Also, make sure you have all the Photoshop updates installed.

  • Deleting roles from CUP

    Gurus,
    We accidently synced CUP with our EP which points to an ABAP stack (therefore tens of thousands of roles!). There are over 6,000 pages of roles in CUP that need to be deleted. Do we have to do this page by page or is there another way?
    Thanks,
    Grace Rae

    Hi Grace,
    Role deletion in CUP can be either rolewise or pagewise. However there is an easier method where you can disable the Roles in one go. The Disabled Roles do not get displayed to Users at the time of Request creation.
    The Role Upload Template which is used for importing these Roles in CUP would be needed here. There is a 5th field for Systems in the template, which had to be modified.
    If the System for these Roles is EP then just replace it with EP(D) in the Role Upload Template. After this modification import the Template again and check the Overwrite Existing Roles option.
    Hope this will minimize your efforts in deleting Roles.
    Regards,
    Nikita.

  • How can I fetch all the PCD roles from EP!

    Hello,
    I need to fetch all the available pcd roles in EP. Right now I am trying to fetch pcd roles under Portal Content directory. I need a clarification whether this is the only place the pcd roles are available or is there any other location where rest of the pcd roles are available?
    Thanks in advance,
    Prashanth V Swamy

    Hi Prasanth,
    See the code below to retrieve all the pcd roles.
    public List getPCDContents(IPortalComponentRequest request) throws Exception{
                   try{
                        Hashtable env = new Hashtable();
                        env.put(IPcdContext.SECURITY_PRINCIPAL, request.getUser());
                        env.put(Context.INITIAL_CONTEXT_FACTORY,IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
                        env.put(com.sap.portal.directory.Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
                        InitialContext ctx = null;
                        DirContext dirCtx;
                        List roleList = null;
                        ctx = new InitialContext(env);
                        dirCtx = (DirContext) ctx.lookup("pcd:portal_content/");
                        PcdSearchControls pcdSearchControls = new PcdSearchControls();
                        pcdSearchControls.setReturningObjFlag(false);
                        pcdSearchControls.setSearchScope(
                             PcdSearchControls.SUBTREE_WITH_UNIT_ROOTS_SCOPE);
                        dirCtx.addToEnvironment(
                             Constants.APPLY_ASPECT_TO_CONTEXTS,
                             Constants.APPLY_ASPECT_TO_CONTEXTS);
                        NamingEnumeration ne =
                             dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.role)",
                                  pcdSearchControls);
                        iViewList = new ArrayList();
                        while (ne.hasMoreElements()) {
                             IPcdSearchResult searchResult =
                                  (IPcdSearchResult) ne.nextElement();
                             String location = "pcd:portal_content/" + searchResult.getName();
                             //Get the full pcd path of the iview.
                             roleList.add(location);
                        return iViewList;
                   }catch(Exception e ){
                        throw new Exception(e);
    Hope it helps.
    Regards,
    Karthick

  • ALC-FUT-001-007: Syntax error in the regular expression *. from File Utilities - Find in ES2

    Has anyone encountered the above error when trying to use the Foundation - File Utilities service Find?
    This is occuring in ES2, and I have tried using an asterisk, as well as the exact file name I know exists.
    I have tried literals in the Process Properties, as well as passing it in via string variables.
    Any help is appreciated.
    Thanks
    Mark

    Thanks for your response.
    Here is what we have learned:
    We should not put the regular expression value in single quotes - eliminates the error.
    The problem is, the Find operation always returns an empty list no matter what criteria we enter - even C:\ with criteria = *.*
    ES 2 is running on a Windows 2003 machine.
    Thanks Again
    Mark

  • IView Template used when uploading role from R/3 to Portal

    Hi all,
    I was wondering what iView template is used when you upload a role from R/3 that contains Web Dynpro ABAP applications.  I want to change some of the default parameters in the template, more importantly, close the Detailed Navigation panel on the left.
    Hope this makes sense,
    Thanks,
    Kevin

    Hi Kevin,
    From your explanation, it seems you can see the iViews in Portal role editor under Content Administration.
    Under Content Administration
    Open the Role for Editing
    In the Editor, select the iview and Click on OPEN button.
    Now, you should be able to see the properties of the iView in the Editor.
    Please check for the property "Code link", which give you the details of the class or template in use.
    Hope, this will help
    Cheers!!!
    Biroj

  • Error publishing SSRS Report in Dynamics AX 2012 Enterprise Portal

    Good morning.
    I have a problem ad i'll appreciate so much your help. I made a SSRS Reporting project with Business Intelligence Development Studio (through the template "Business Intelligence --> Report Server Project). Once deployed to report server, the report
    successfully works. I Want to publish this report in Dynamics AX 2012 Enterprise Portal, through the web part "SQL Server Reporting
    à SQL Server Reporting Services Report Viewer", but when i select the .rdl file from the list, i receive the following error:
    An error occurred during local report processing.
    An error has occurred during report processing.
    Cannot create a connection to data source 'DataSource1'.
    An attempt has been made to use an unregistered data extension, 'OLEDB-MD'. To use this data extension, it must be registered in the Web.config file of this Web application.
    I've Checked the config file and the specified handler is correctly set. I read in a forum that the problem may be caused by the fact that the database of the report server is set as "Native" instead of "Sharepoint Integrated". Is it
    possible? just in case, there's the possibility to display a ssrs report in EP in "native mode"?
    Thank you so much in advance
    Simone

    Hi Katherine.
    Thank you so much for your reply. You understood perfectly what I mean. I followed the instructions in the document, but the installation of te .cab file won't work. I tried with the Sharepoint Management Shell and with STSADM.EXE, but in both cases i receive
    an error like this:
    PS C:\> Install-SPWebPartPack -LiteralPath "C:\Program Files (x86)\Microsoft SQL
     Server\110\Tools\Reporting Services\SharePoint\RSWebParts.cab" -GlobalInstall
    Confirm
    Are you sure you want to perform this action?
    Performing operation "Install-SPWebPartPack" on Target "C:\Program Files
    (x86)\Microsoft SQL Server\110\Tools\Reporting
    Services\SharePoint\RSWebParts.cab".
    [Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help
    (default is "Y"):y
    Install-SPWebPartPack : Failed to extract the cab file in the solution.
    At line:1 char:1
    + Install-SPWebPartPack -LiteralPath "C:\Program Files (x86)\Microsoft SQL
    Server\ ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidData: (Microsoft.Share...tallWebPartPack:
       SPCmdletInstallWebPartPack) [Install-SPWebPartPack], SPException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletInstallW
       ebPartPack
    PS C:\>
    I checked the directory and the .cab file is in the right position. Am I doing something wrong?
    Thanks a lot in advance.
    Simone

  • Error while calculating SPS for NW 7.3 Enterprise Portal

    Hello,
    I have a Solution Manager 7.01 SPS 28 (ST     400     0028     SAPKITL438     SAP Solution Manager Tool)
    I want to download via MOPZ the newest SPS for NW 7.3 with Enterprise Portal.
    I configured the SLD on the NW 7.3 side successfully.
    The NW 7.3 transmitted the data to the SMSY.
    I can create the system also successfully in the "Product Systems" and "Technical Systems"
    and also created successfully the "Logical Components" and can assign to a "Solution"
    When I try to calculate the SPS automatically for the NW 7.3 Enterprise Portal, the following
    error Messages appears.
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Process Integration not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 PDF Export not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Advanced Adapter Engine Extnd not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Demo Applications not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 BPM not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 NWDS Update Site JEE not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Composition Platform not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Guided Procedures not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Enterprise Services Repository not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Composite App. Framework not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 AS Java Extensions not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 PI Adapter Engine (Java EE) not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 EP Core - Application Portal not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Composition Voice not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Central Process Scheduling not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Mobile not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 BI Java not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Business Intelligence not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 PI Partner Connectivity Kit not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Development Infrastructure not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Adobe Document Services not assigned!  Display Help
    System P73: Installed Product Instance SAP NETWEAVER 7.3 Application Server ABAP not assigned!  Display Help
    Can anybody please help me ?
    Best regards
    Alex

    Hello Alexander,
      I was having a similar problem, but only with the abap-related NW 7.3 components.
      Please check the following note: Note 1595918 - JSPM: Validation fails due to mismatch at software features
       Do a backup of your BC_SL_SWFEATURE, delete those components you don't have, according to the usage types you have installed.
       In the portal, go to NWA -> Configuration -> Infrastructure -> SLD Data Supplier Configuration and click "Send and Collect Data".
      Verify that the data is refreshed in your SLD.
      In the SMSY,  unassign the system from all the logical systems, delete the system, delete the technical java component and run the Setup System Landscape to create the system from your SLD.
      After the system is generated, assign it to your Logical Component and try again.
       Or, instead of deleting / creating the system, maybe you can just refresh it using the steps from the note Note 1468559 - SMSY: Single system update from SLD
      Regards

  • Error 2170 in Cross Domain Policy deployed in Enterprise Portal

    Hi All,
    We are facing an Error # 2170 for the Cross Domain Policy in Enterprise Portal.
    We developed the dashboard using 2 web service connections (using ECC Remote Enabled Functon Module). The Web services were made Public so that they can be accessed from any network. We developed the dashboard using the public enabled webservices and exported to the SWF file which is working fine.
    But when we place the dashboard SWF file in the Enterprise portal it gives the error " Cross Domain Policy Error #2170" .
    We Placed the Cross domain Policy file in ECC Server in the root directory and placed the same in Enterprise portal C drive.
    But still it shows the same error when we preview the dashboard in Enterprise Portal.
    The Cross Domain Policy File that we are using is as follows:
    -<cross-domain-policy> <site-control permitted-cross-domain-policies="all"/>
                <allow-access-from secure="false" to-ports="" domain=""/>
               <allow-http-request-headers-from secure="false" domain="" headers=""/>
               <allow-https-request-headers-from secure="false" domain="" headers=""/>
    </cross-domain-policy>
    Please let us know if the cross doamin file is correctly coded and suggest us with suitable solutions for this problem. Also let us know if there is some alternative solution to this issue.
    Thanks,
    Malla Reddy D

    Hello Malla,
    Maybe SAP Note 1240810 helps... Anyway, I would say that if your issue is with the direct SAP NW BI connection, through BICS, the only file which is relevant is bicsremotecrossdomain.xml, which should be located on your server HTTP root.
    Another check you can perform is if you have both portal certificate entries as per SAP Note 1508663.
    Kind Regards,
    Marcio

  • Is there User Group and Role Reporting in SAP Enterprise Portal?

    I want to know if there is a way to pull users statistics our of SAP Enterprise Portal like you can out of the R3 backend systems.
    I would like functionality similar to the SUIM transaction. I know through user administration you can access any user, even a list of all users, and you can do similar lists with roles and groups. You can then access any of these things individually and look at their assignments. However, I want to do this on a large scale. I want to know for example every group that has a user assigned to it. Evergroup that has roles assigned to it. Or groups that have no user or role assignments. We have approximately 1904 groups in our Production Portal system and I am trying to clean up the groups that have no user assignment, but I don't want to look through them one by one.

    Hi Chris,
    There is no standard report available for this purpose. However all this information is stored in table UME_STRINGS.
    You can write your own SQL queries to generate such reports. However please note that this table is not normalized, and it's a master UME table. You should use it strictly for READ ONLY purpose.
    For a sample code you which i wrote some time back, you might refer:
    http://forums.sdn.sap.com/thread.jspa?threadID=2088099&messageID=10859334#10859334
    Thanks
    Prashant

  • Error when configuring Web Dispatcher for SSL with Enterprise Portal

    We are in the process of configuring the Web Dispatcher using SSL to connect to our Enterprise Portal (the Web Dispatcher will be in the DMZ).  We have followed all of the help.sap.com guides and now have SSL listening on the EP side (port 8103).  We are now receiving this strange certificate error when we start the Web Dispatcher:
    [Thr 5332] Tue Mar 20 00:36:23 2007
    [Thr 5332]   MatchTargetName("<FULLY QUALIFIED HOSTNAME>", "CN=XXX, OU=XXX, O=XXXX, C=XX") FAILS
    [Thr 5332]   SSL socket: local=<IPADDRESS>:4742  peer=<IPADDRESS>:8103
    [Thr 5332] <<- ERROR: SapSSLSessionStart(sssl_hdl=009D7670)==SSSLERR_SERVER_CERT_MISMATCH
    [Thr 5332] *** ERROR => IcmConnInitClientSSL: SapSSLSessionStart failed (-30): SSSLERR_SERVER_CERT_MISMATCH [icxxconn.c 2005]
    [Thr 5332] *** ERROR => IcmConnClientRqCreate() failed (rc=-14) [icrxx.c      4919]
    [Thr 5332] *** ERROR => Could not connect to SAP Message Server at <FULLY QUALIFIED HOST NAME>. URL=/msgserver/text/logon?version=1.2 [icrxx.c      2301]
    [Thr 5332] *** ERROR => rc=-1, HTTP response code: 0 [icrxx.c      2302]
    [Thr 5332] *** ERROR => see also OSS note 552286 [icrxx.c      2303]
    We have gone through the trouble shooting note 552286 as listed in the error above.  Any assistance is appreciated.

    Hello, did you receive any resolution for this problem?  We are receiving a similar error and I am unsure of how to resolve.

  • "Distribution Certificate is not valid" - error downloading the ZIP file from App Builder

    Hello everybody,
    I'm trying to download the Distribution App (.ZIP) from App Builder.
    - The App is made with a Professional account
    - The app is a Multi-folio for iPad-iPhone
    - The App has the Push notifications option activated
    - I made a couple of Push Certificates (production + developing), I checked on Apple Keychain and they are valid (green dot)
    - I made a new App ID with Push Notification option enabled
    - I made a couple of mobileprovision files (production + developing) based on the App ID and
    - I download the .IPA and it work
    The App Builder report this error: "This is not a valid Apple Distribution Certificate"
    Any ideas?
    Is this related to the Pro account and the fact that I made another App for Android?
    Has someone the ability to try using the same settings to understand if it is a bug or a real issue?
    Thanks,
    Andrea Spinazzola
    Ps.: Obviously, we are on deadline...

    Hi Neil,
    as you can imagine reading my list, I already do everything you suggested to me.
    So It's not my mistake, I need to know if it is a bug or a known behavior.
    When I'm talking about Pro Account and Android App, I mean that a Pro Account is for only one "project" (no more infinite Apps as in the past) and due to a content issue, I had to create two Application Account with two different Adobe ID and emails.
    Is this the cause?
    I appreciate every help that could solve my problem but just to let you know, I work on DPS since it start and this is about the fifteenth apps that I did in the last 5 years, so I know exactly how it works.
    Have you tried to reproduce my list of thing?
    It works for you?
    Yes?
    No?
    I have a problem, i can't generate with DPS App Builder "App distribuzione.zip" to be sent to Apple to publish APP, this is the error message: is not a valid distribution certificate Apple. What do I do?
    Same problem, same answers, same unsolved problem.
    I made new certificates (it was the first thing I did) and It doesn't work.
    Thanks.
    Andrea

  • JNI FindClass Error: Using the Invocation API  from visual C++

    I am using JNI invocation api in microsoft visual c++ to invoke java. When I use the FindClass method, I get a return value of 0. I have verified that the class "a" exists and believe have set the java class path appropriately. A valid jvm and jenv are created. The program fails at the FindClass call and returns 0.
    std::string classPath = "c:\\work\\java;C:\\j2sdk1.4.2_08;C:\\j2sdk1.4.2_08\\bin;C:\\j2sdk1.4.2_08\\lib";
         vmArgs.classpath = classpath;
         jint res = JNI_CreateJavaVM(&jvm, (void**)(&jenv), &vmArgs);
         if (res < 0)
              cout << "Error!! Cannot create jvm" << endl;
    jclass jFixEngineClass1 = jenv->FindClass("a");
         if (jFixEngineClass1 == 0)
              cout << "Error could not find a class" << endl;
         else
              cout << "a class found" << endl;
    thanks in advance,
    hcg

    Jschell,
    Thanks for your help.
    I found the error. I was using JDK1_1InitArgs for my vm_args. Since, I am using JDK 1.4, the classpath I was setting was not getting picked up. I changed the vm_args type as in the code below and it worked.
    JavaVMInitArgs vmArgs;
         JavaVMOption options[1];
         char classPathDef[1024];classPathDef[0] = '\0';
         sprintf(classPathDef, "%s", "-Djava.class.path=");
         sprintf(classpath, "%s%s", classPathDef, NYSE_FIX::userClassPath.c_str());
         options[0].optionString = classpath;
         cout << "Option string is:" << options[0].optionString << endl;
    vmArgs.version = 0x00010004;
    vmArgs.options = options;
    vmArgs.nOptions = 1;
    vmArgs.ignoreUnrecognized = JNI_TRUE;
         jint ret = JNI_GetDefaultJavaVMInitArgs(&vmArgs);

Maybe you are looking for

  • How to add new data type

    I need to add new data type like SDO_GEOMETRY in spatial Oracle. I don't mean the User-Defined Datatype but new datatype imbed in the database. It might be written in C++ or Java but I do not know how. Any hints and help will be appreciated. Thanks,

  • All files saved to external HD in last 2 days are gone or corrupt.

    The last couple days I've had specifically two whole folders and all files inside either go corrupt or missing on my external hard drive. At first I thought my external was just failing so I recreated one of the projects and saved to another external

  • Need Help Adding Text To A Template

    I am using this template: http://www.templatemonster.com/flash-templates/21091.html I would like to add text as it opens, going across the flag, something like this.... Sam Young. Not Uncle Sam, but here to serve you! Now, obviously, that's not what

  • Creating movement type

    is it possible in SAP-PP module or in MM module to create a movement type and cutomize it.

  • Reading xml in java

    please help me how to read xml file in java how to parse xml file thanks