ERP Hub Portal SUM EhP7 Components List in Phase Target System Config.

Dear Colleagues,
during a EHP/ Update of a J2ee HUB Portal in SUM Phase Configuration/Target Systems Configuration/Confirm Components
the Component List pop's up with a list of Components slected for removal.
My Question is, is this valid, I don´t found usefull informations regarding some of the Components, or is there a misconfiguration on Solman for the components of the ERP HUP Portal.
OSS-NOTE: 1395514 - Löschen von Softwarekomponenten in NW CE 7.20 und höher
br
Julius

Hi,
I have checked the link before to open my question, but I can't or don't follow the instructions:
1. Ensure Namespace /RPM is modifiable in SE06
2. Call transaction SE37
3.Enter /RPM/RELATION_MODIFY
4.Select Function module-> Other functions-> Rename
5.Rename it to /RPM/RELATION_MODIFY_OLD
6.Release the request if one was created in the process
7.Restart the phase
The Function Module and the Function Group  does not exist in our system. And when I can to create the Function Gorup, I have the follow error in the SE80: "Namespace /RMP/ does not exist", and when I try to create the namespace /RPM/ I don't have the "repair license".
I'm using the EHPI Upgrade tools for the EHP4.
Regards, Alberto

Similar Messages

  • Oracle Reports Components list not available in BI Publisher

    I have configured the Oracle Report Security settings in oracle Business intelligence publisher, Add oracle report, when i try to ADD report in region, it didn't display Oracle Reports Components list. Pl suggest, what should i do
    Regards,

    I had a similar issue in 10.3.3.1.
    Try this:
    http://oraclebizint.wordpress.com/2007/11/06/oracle-bi-publisher-and-bi-ee-invisible-admin-tab/

  • Auto components list in PM orders?

    Dear experts,
    I'd like to have the components list automatically populated based on the equipment type I referred on the PM order?
    How can it be done?
    Thank you in advance~

    I used maintenance BOM.

  • How can I generate portal report that give list of iviews-roles-users

    Hello,
    I need to generate a portal report that will list all roles and iviews that assigned to them.
    iviews can be assigned direclty or trough worksets/folders/pages.
    Is there a way I can create such a list? Is it requires development? If so, Is anybody already deveopled such a report and can share the code?
    Thanks
    Ami

    Hi Ami,
    I cannot assure that this can be achived with portal application. Coz we are trying to get iviews n role info assigned to users. i.e. Portal object info.which is not stored in d server as it appears to end users. it will be stored as PCD ID based., not name based.
    The requirement might need to develop Portal Applicaion at SAP NWDS but, i am not sure of displaying iviews. Also we can get the Role IDs of assigned role but not Role.
    http://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/UMFactory.html
    Please follow UME API to achive this.
    IUserFactory userfactory =  UMFactory.getUserFactory();
    IRoleFactory rolefactory = UMFactory.getRoleFactory();
    IRoleSearchFilter rolefltr = rolefactory.getRoleSearchFilter();
    rolefltr.setMaxSearchResultSize(2000);
    ISearchResult result = rolefactory.searchRoles(rolefltr);
    while (result.hasNext())
      String uniqueid = (String) result.next();
      IRole role = rolefactory.getRole(uniqueid);
    The same thing can be applied to get users info i.e. Portal users list.
    Hope this helps you.
    Good Luck!
    Regards,
    Shaila

  • FLVPlayback 2.5 not listed in components list in Flash CS5.5

    I'm using Flash CS5.5 and I want to use the Actionscript 3 FLVPlayback 2.5 component but it is not listed in components list. There is one but it's version 2.1.0.23. I've seen elsewhere screen captures show both FLVPlayback and FLVPlayback 2.5 in the components list. In the folder where the video components are stored, there are these files:
    FLVPlaybackAS2.swc
    FLVPlaybackAS3_2.5.swc
    FLVPlaybackAS3.swc
    FLVPlaybackCaptioning.swc
    I assume that FLVPlaybackAS3_2.5.swc is the one I want. How do I get it to show up in the components list???
    Thanks in advance.

    Ask in the Flash forum.
    Mylenium

  • Shared components lists

    hi friends,
    how can i create dynamic shared components lists,ie based on select values from tables.
    is it possible?
    Thanks
    Ash
    Message was edited by:
    user551846

    You could probably create your own "list of links" mechanism with your own table if you like. You just won't be able to use it in the places that Apex typically uses it's lists.
    You would need to create a custom report template that imitates the list templates that are built into Apex. Although I haven't done this start to finish, I think you could get a pretty satisfactory result if you give it enough attention.
    Earl

  • Wireframe Components list smaller than Flash Builder Components list?

    Hi All,
    I noticed that in Flash Catalyst the WIREFRAME COMPONENTS tab only has a limited set of components (Button, Checkbox, Data List, HScrollbar, HSlider, Radio Button, Text Input, Toggle Button, VScrollbar, VSlider). Flash Builder, on the other hand, has other components not in this list (Combo Box, Color Picker, Progress Bar, Tab Bar, etc).
    For all the components in FB not in the wireframe list of FC, is the designer/developer supposed to add custom components in the Library tab of FC? Will Adobe add more to the list of wireframe components in future FC releases?
    Thanks for any inputs!

    Hey FutureSplasher,
    You're right, the Flash Catalyst Wireframe Components list is a subset of the Spark component set exposed in Flash Builder.
    In Catalyst we expose special tooling, properties, and experience around each spark component.
    It is definitely our intent moving forward to continue to expose more and more Spark components, but as opposed to Builder each component we add requires some special work around exposing the user experience of working with, creating and manipulating that component.
    I absolutely encourage you to leverage the fxpl (library) workflows to create and import your own components (and share with other Catalyst friends online if you feel so inclined ).
    In the meantime, if you have specific high priority component requests, we'd love all the feedback we can get.  Feel free to post a list of a couple high priority components here, or post them to the ideas site so we can get other users voting for them: http://ideas.adobe.com/flashcatalyst
    Thanks for posting!
    Tara

  • How do I get  a list of the all systems?

    Hi experts,
    I need to represent in my view a list of the all systems from System Administration->System Configuration->System Landscape->Portal Content.  How can I make that?
    Thank you.
    Raissa

    Hi,
      You can use ILandscapeService for the same.
      Here's a sample code...
    ILandscapeService  landscapeService =(ILandscapeService) ipcRequest.getService(ILandscapeService.KEY);
    Hashtable hashSystem = landscapeService.getAllEPSystems();
    Enumeration allSapSystems = hashSystem.keys();     
    int noOfSystems = hashSystem.size();
    int i = 0;
    int noOfColSystems =0;
         while (allSapSystems.hasMoreElements())
              String elemName = null;
              try{
               elemName =  (String) allSapSystems.nextElement().toString();
              }catch(Exception ex)
                 try{
              IEPSystem iepSystem =
                   landscapeService.getEPSystem(elemName);
         String systemAlias = iepSystem.getAttribute("SystemAlias");
            String systemType = iepSystem.getAttribute("SystemType");
         String systemCreatedBy = iepSystem.getAttribute("com.sap.portal.pcd.gl.CreatedBy");
         Sting personResponible =
                   iepSystem.getAttribute("com.sap.portal.pcd.gl.Responsible");
            String systemTitle = iepSystem.getTitle(locale);
             String systemName=iepSystem.getSystemName();
                    catch(Exception e)

  • Do we have a list of SAP certified system integrators for HANA Enterprise Cloud

    I am in a sales cycle and SAP services estimated price for implementation is to expensive and we are pitching HEC.  Do we have a list of SAP certified system integrators for HANA Enterprise Cloud for ERP (Finance and Merchandising for Retail)?

    Yeah, not sure why they took it out of the cloud interface.
    But if you go to http://www.businesscatalyst.com/partnerportal and login with your cloud ID you will have access to all your cloud sites and many other features.

  • How to get installed application list from a remote system

    i am using.. an windows XP OS.. i want to collect the installed application list(in any accessible format) from my near by system(any system in the network). and need to invoke any application (from the list generated) from my system.....
    please help me. any ideas.....
    Most help full if someone come up with ideas......

    Sir
    i am working on a project..REMOTE APPLICATON DESKTOP SHARING((I am Final Year Engineering Technical Student,......Kerala,India)....
    which brings the application GUI from remote systen to our system.. and workon it(similer to desktop sharing)
    for this i first need which all applications are installed on which on systems...
    thats why i needed the application list..
    if the answer is NO... can u suggest some method or any application through which this can be done...
    no matter which language.....which method....how difficult.....etc
    i need a solution.... Can u help....

  • List of data targets is not visible during data upload

    Hi all,
      I am trying to load user defined transactional data into an info object, i will do all necessary customization steps such as creating application component,assiging data sources,creating info packages and then creating update rules in info cubes, moreover i wrote a routine which calculates sales reveune based on cost and quantity sold.
    My problem is that when i created infopackage , it does not list any data targets, Plz any one can give tips in this regard.
    thanks in advance
    regards,
    a.fahrudeen
    Message was edited by:
            FAHRUDEEN MUSTAFA

    Hi Fahrudeen,
    Am a little confused here... you say you want to load Transaction data and load it into the InfoObject?? what was that??
    You can load the Transaction data only into your data targets such as InfoCube and DataStore Objects... If you are loading the data into your InfoObjects, then that would mean that you are loading the Master data for which obviously you won't have your data targets listed in your InfoPackage... Only in case of loading the transaction data would you have your Data Targets listed in your InfoPackage...
    Regards
    Manick

  • Exporting and Importing Portal users from Source system to Target system

    Hi All,
    I have exported all portal users from source portal in to file Users.txt do i need to convert this file in to some other format so that i can import these users in Target portal.
    any links documents
    Regards,
    Murali

    Hi,
    If you look in to User.txt
    I have role also i have deleted role in User.txt uploded file with rest of the otherdata including group it it able to create users.
    so in Nut shell let's say
    1. UID-Murali
       Role- Manager
      Group- HRGroup
    user existing  in DEV and i want to trnasfer data to PRD
    Role:Manger should exist in PRD, and group is not mandatory optional
    but the link http://help.sap.com/saphelp_nw70/helpdata/EN/ae/7cdf3dffadd95ee10000000a114084/frameset.htm
    says while uploading users role is optional it throws waring but i got error.
    i am bit confused.
    Now let's sau there are 10 users, 10 roles and 2 groups in source system if i want to export all users,roles,groups to target system what sequnce i have to follow without getting any error , warining is there any restriction on number of users, roles, groups i know file size should be less than 1MB.
    Points are on the way.
    Regards,
    Murali

  • Removed from list of loadable targets not loadable

    Hi Gurus,
    I am working on BI NW 2004's.
    <b>Error Message</b>: 1)DataTarget "HRPA_C01"removed from list of loadable targets,not loadable.
    2)DataTarget "HRPA_C01" is Transactional and is on 'Planing mode'.
    I had a cube (0PA_C01) for this it has 2 Infosouce (0HR_PA_1,0HR_PA_0)
    when i load data through info pack it is showing that (HRPA_C01) is remove from the list loadable target.
    But HRPA_C01 is another cube for this UpdateRules are (0HR_PA_1,0HR_PA_0), HRPA_C01 cube is not appearing in datatarget list in Info package.where this target is missing?
    What is the solution for this Error.
    Thanks in advance.

    Hi Raju,
    Go into the context menu for your cube in the RSA1 view.
    Choose "Switch real-time infocube". Put the setting to "Real-Time InfoCube Can Be Loaded with Data; Planning Not Allowed".
    Are you sure you want to use a real-time infocube for
    HR personel data loading ?
    Please assign points for usefull answers!
    Regards,
    Olav

  • 'ODS' removed from list of loadable targets

    Hello Gurus,
    After transporting to Test system.
    I deleted data from Cube and loading from PSA.
    Error
    Data target 'ODS' removed from list of loadable targets; not loadable        @35@
    Help me gurus.

    I dont see any reason for the Scheduling to error if ODS is not existing at all in the system.
    Is that an error or a warning ?
    When you Start the job does it terminate it erroring ?
    Just try clicking on <b>F6</b> / Monitor after it errors or warns.
    Do you have data in PSA ?

  • Not Able to see SAP systems in List of Available SAP Systems for Crystal R

    Hi All,
    We have installed Crystal reports 2008 and SAP integration KIt client software on my machine. I am trying to create Crystal reports based on the BI query and I could see SAP Connections in the 'Create new connections list' but not able to see any SAP systems in the list of 'Available SAP Systems'.
    How to Add SAP systems to this list.
    Thanks,
    Chindam Praveen Kumar.

    1. Define an environment variable (user or system) with the name SAPLOGON_INI_FILE . This variable should contain the path to your saplogon.ini file including the file name eg. if the saplogon.ini resides in the folder c:\windows the variable should contain the following value c:\windows\saplogon.ini
    2. Open your saplogon.ini file using Notepad and go to File->Save as. Choose All Files in the field Save as type and DO NOT change the name of the file. In the field Encoding make sure that UTF-8 is selected.
    ingo

Maybe you are looking for