WebDynpro development similar to WebDynpro of the portal SEARCH USER

I must realize the same application WebDynpro of the portal (ADMINISTRATION USER - > SEARCH USER.  Where I can find the code of this WebDynpro?

Hi mario,
1. Are you sure it's Web-Dynpro? (check the code link of the iView under portal content).
I Can't check it right now, but I would be surprised if it is.
2. In any way you'll implement it (Web-Dynpro or not), You'll need to use the User Management API.
See this pdf for a good documentation:
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/webinars/using the user management api with ep applications.pdf
Hope that helps,
Yoav.

Similar Messages

  • How we Can find out How many Users Logon into the Portal those users Names.

    Hi Friends
    I have one doubt in Portal,
    How we can find how many Users Logon into the Portal and how we can find that users Names in Portal.
    Regards
    Vijay Kalluri

    Hello Vijay,
    If you are at all interested in a 3rd party application to make your life a bit easier getting stats on your users, you could check out Click Stream by Sweetlets.
    Click Stream uses the Usermanagement (UME) API to get more information about the user, groups, roles, LDAP attributes etc. and offers you the ability to filter this information in nearly any report at the click of a button.
    Click Stream also uses the PCD API to get information about the pages your users are visiting too.
    In the very near future Click Stream will also have iView recording to monitor iViews, telling which iViews have been clicked, etc.
    Here are some reviews on the SAP EcoHub from people who have used it: http://ecohub.sdn.sap.com/irj/ecohub/solutions/clickstream
    Please just let me know if you have any question or if you are open to test drive Click Stream. We will certainly help as best as we can.
    Good luck.

  • When will the wiki compontent be available in the portal?

    Hello,
    does someone knows when the portal will have the wiki feature? When is it shipped to the public?
    Thx, Vanessa

    Hi Vanessa,
    The problem with none-Java solutions will be that you might run into issues with SSO2, especially. I don't know if there is any straight-forward solution to read SSO2 cookies in PHP... That is for me the primary reason to look out for Wikis based on Java.
    The second reason is that if you have developers at hand who program some stuff on the portal server, they speak Java. So you already have developers who also might dig into the wiki's server code and extend this for example to interpret the SSO2 ticket - or whatever is needed.
    The third reason is that you might be lucky to be able to integrate the wiki solution on the WAS itself. Of course this depends much an wiki solution and the WAS you are running on (both running on the same JDK?). But if you get this, you get a seamless integration, technically. How beautiful... (in comparison to a small PHP box in the corner... ).
    Integrating the search is also very dependent on the target wiki system. One solution might be just to crawl the HTTP as every other webserver (with a web repository in KM). Other solutions might be more differencing, for example with permissions etc.
    It might be meaningful not to integrate the search "too deep" into the portal, as users also might want to seperate between portal results and wiki results; a fast but nice solution I am just developing for example is a simple button/link in the standard search mask which starts a search in the backend system (wiki or something similar) in a new window, on this other system. Really not deep, but maybe useful...
    Hope it helps
    Detlev

  • What are the steps for publish applications WD ABAP in the portal

    Dear Experts.
    The developers created an appplications WD ABAP. And my work is publish this development in the Portal of ESS.
    Anyone can help me with the steps for publish the development(applications WD ABAP) in the portal.
    Thank in advance for your help,
    Best Regards
    Carmen.

    Hi ,
    Please follow the below links for creating ABAp web dynpro iview in portal.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/1d/e4a34273f60b31e10000000a1550b0/frameset.htm
    http://www.sapdev.co.uk/sap-webapps/sap-portal/iview-wdp.htm
    Also you have to ensure that the system is created in portal and also check the system connectivity with backend.
    You need to select this system while creating iview.
    The below links will help you to create systems in portal.
    http://wiki.sdn.sap.com/wiki/display/EP/11Systems-+Creation
    http://wiki.sdn.sap.com/wiki/display/EP/SystemCreationin+portal
    http://wiki.sdn.sap.com/wiki/display/EP/HowtoCreateSystemObjectinthePortalforConnectingtoSAPbackend+System
    Hope these will help you.
    Regards,m
    Sandip

  • Form Authenticating the portal or jsp page

    Before accessing a jsp page, I want the user to authenticate using login.jsp using the user role I created in console.
    But when I hit the page, its not going to login.jsp. Instead its going directly to it. Please find the web.xml and weblogic.xml that I changed below,
    --web.xml
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>webtest</web-resource-name>
    <url-pattern>/portlets/tools/wnxinterface/wnxInterface.jsp</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>wnuser</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <!--turn on identity assertion-->
    <login-config>
    <auth-method>CLIENT-CERT,FORM</auth-method>
              <realm-name>myrealm</realm-name>
    <form-login-config>
    <form-login-page>login.jsp</form-login-page>
    <form-error-page>error.jsp</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
              <role-name>AuthenticatedUserRole</role-name>
    </security-role>
    <security-role>
              <role-name>wnuser</role-name>
    </security-role>
    --weblogic.xml
    <wls:security-role-assignment>
    <wls:role-name>AuthenticatedUserRole</wls:role-name>
    <wls:principal-name>AuthenticatedUsers</wls:principal-name>
    </wls:security-role-assignment>
    <wls:security-role-assignment>
         <wls:role-name>wnuser</wls:role-name>
         <wls:principal-name>wngroup</wls:principal-name>
    </wls:security-role-assignment>
    I created the wnuser in myrealm in my console. So I am trying to password protect the wnxInterface.jsp page.
    Actually I have this wnxInterface.jsp as a portlet inside my portal. Is it similarly possible to authenticate the portal itself?
    Thanks in advance

    1. yes: URL u = new URL(this.getCodeBase(),"../relativeFolder/file.whatever");
    http://javaalmanac.com/cgi-bin/search/find.pl?words=URL
    2. yes: using JSObject you can call javaScript methods that can do it for you or retreive the
    componenet directly.
    http://forum.java.sun.com/thread.jspa?threadID=598123&messageID=3180053

  • Users details not getting populated in the portal tables..

    Hi,
    We have implemented single sign on (SSO) and we do not create users in the portal as user/pwd come from OID.
    Now becoz of this the portal tables are not getting populated.I require that all the users of the OID to be populated in the portal tables. How can I do it.I depserately require it.

    You can use the function wwsec_api.activate_portal_user to create the shadow records in the portal repository.
    Ref. : http://www.oracle.com/technology/products/ias/portal/html/plsqldoc/pldoc1014/wwsec_api.html

  • How to change the portal role presentation based on users BW authorization?

    Hello,
    I have created 3 BW Roles, each one contains an iView with a certain report.
    For simplicity let's name the Roles A,B,C and assume that in order to see the proper report the user needs to be assigned to the matching group (A,B,C) at the BW side.
    I have imported these 3 roles to the portal as worksets, created new pcd role, placed these 3 worksets inside the new role and assigned this role to a certain group of users in the portal (these users are ABAP users so they are the same at the BW side as well).
    What I would like to do is this: I would like that each user that I have assigned this new role to will see only the worksets that he/she allowed to see based on it's BW authorization. Meaning, if I have been assigned roles A and B at the BW I will see only worksets A and B inside the role.
    The problem is this: From the portal I cannot assign the users to the BW groups and from BW I cannot control pcd roles so this kind of change requires me to make two modifications: One for authorization from the BW and one for presentation from the portal. I would like to manage it just from one place, either from the BW or from the portal, I don't care.
    How can I achieve this?

    I think I have found a solution: Export it as a role instead of a workset and do one to one assignments with the BW groups.

  • Clearing all the sessions at log off of the portal

    Hi All
        I am working with Enterprise Portal. My problem is when one user logs off the portal and again log in then all the previous data of  user remains their on the portal.how to clear the session/cookie of the portal when user log off the portal.
    Please help me.

    Hi MIchael
           I got same problem even if all the windows are closed.
          is there any configuration settings that i missed to do.
         can we write code using JavaScript to do the same and if yes then where  should i write that code?

  • Portal search from an external website

    We have a requirement to extend the portal search capability to other websites. I'm wondering if anyone else has done this.
    Basically the client has an Aqualogic 6.1 portal and also hosts a number of websites on a separate (i.e.: non portal) web server. They are unhappy with the search provided by MS Index Server and would like to use the Portal search from these static websites.
    My thinking is that we can crawl the content of these websites into Aqualogic and use the PRC (search API) from these websites to execute the user search. I'm figuring that this should be possible if we install the ALUI API service on these web servers (effectively making then Remote Servers?)
    Any thoughts?
    thanks in advance
    Simon

    Let me see if I understand this. The client has a few static HTML websites that have no relation to the ALUI portal, but you want to you the portal search engine to search those sites?
    Yes, your proposed solution is certainly possible. You could crawl the contents of those websites into specific folders in the KD and set the security so only a specific user (which you would use to authenticate in the custom search page) can see them. You don't even need to install the ALUI API service on those web servers to do this. The API endpoint URL of the portal needs to be accessible from those web servers, and you just need to reference the portal IDK dll or jar files when you write your custom search page.
    I have done something similar to this, but the static web site was actually migrated in to be a part of the portal. Still a separate URL and look and feel, but hosted on the portal. However, I did crawl all the pages in and have a custom search page using PRC to search for documents. It works like a charm.
    DJ Dewey | VHA Inc. | [email protected]

  • Extending Portal Search

    I am looking to extending the Portal search facilities to allow for searching of our own bespoke content which is accessible from custom urls such as http://server:port/pls/portal/custompkg.disp_our_content?id=123
    I had a brainwave that by adding a URL item when our content was added then the Intermedia search would index this content automatically. Unfortunately the lack of content area APIs to add an item has foiled my plan.
    Has anyone got a way of either getting intermedia to index these urls where I can do this programatically? ie by adding to the already generated Portal index??
    Thanks & Regards
    Jenny

    Jennifer
    I would suggest that your first solution would be the way to approach the problem. The URL content that gets indexed comes from the URLs in the Portal URL table, but these are only meaningful as search results if they are associated with an item, i.e. a URL item.
    What Portal version are you using? It may be possible to find more information on the situation with the content are APIs for you.
    The alternative solution might be to use Ultra Search. This is an Internet Search solution and comes as part of iAS. This could be used index you URLs. It offers some Portlet based search UI so that you can search and see the results in the Portal.

  • How to get Portal Login user ID and Groups using UME API in JSPDynpages

    Hi Experts,
    How can I get the portal logged user ID and bsed on that ID need to get his assigend groups.
    For this Initially I need to get the logged user ID using UME API.
    Can you drop the code to write and display using JSP Dynpages?
    Thanks
    Venkat.

    Hi,
    Try the below code
    IUserFactory userfact=UMFactory.getUserFactory();
    IUser user=userfact.getUserByUniqueName(request.getUser().getUserId());
    String usrid=user.getUniqueName();
    And also you can get the groups assigned to user by using the below code
    Iterator groups = user.getParentGroups(true);
    while (groups.hasNext()) {
         String groupstr = (String) groups.next();
         IGroup g = UMFactory.getGroupFactory().getGroup(groupstr);
         response.write("Group name "g.getUniqueName()"<br>");
    Regards
    Suresh

  • How to get the Wiki search functionality working?

    hi,
    Another Wiki question regarding the 7.1u1 Portal wiki functionality: What is necessary to get the wiki search functionality working? Right now when using the wiki search page all it does is return to the search form, no errors but no hits either. I guess some additional administrative work is needed to get search working?
    thanks, tom

    haven't touched anything except for the wiki template jsps to change the design. it is a linux rh4 install. there are no communities on that server (yet), just the wiki portlet in a tab so far. is the wiki search dependent on the portal search server or totally separate (ie self contained wiki search)? any additional services or such that need to be started for it to work?

  • Search of forums using global portal search (TREX) finds no results

    Hello,
    we are running EP 7.00 SP 12, and have installed and configured the forums application.
    According to [http://help.sap.com/saphelp_nw2004s/helpdata/en/47/17904a21fa3696e10000000a11466f/content.htm], it is also possible to search the forums using the global portal search.
    After the forums installation, the index and queue were automatically created for the forums. TREX Delta indexing of forum object is enabled in  System Configuration -> Knowledge Management -> Content Management -> Repository Managers -> Forum Repository. As I understand it, this should be enough for TREX to be able to index forum objects. There exist some simple threads in the forums, but when searching in the portal for some keywords that exist also in the threads, I get no results.
    I looked at the queue of the forums index, and there have been only 6 entries, so I performed a reindexing and got now about 24 entries, but still the portal search returns no result.
    Is there anything that I've missed or any further suggestions to test for?
    P.S. I am quite new to the SAP (NetWeaver) domain, maybe I missed some mandatory settings or configurations...

    Hi Martin,
    thanks for your reply.
    Till now, I didn't manage to solve the problem. I was away the last week, so I didn't had any time for working on this issue.
    Currently I am not able to test your suggestions, because there is a new problem with the index. The index has now the state "pending". Because of this state I am not able to perform any further actions like re-indexing and so on. On help.sap.com there is only little information about this state. But for me it looks like, that there has to be performed some actions in the TREX Admin Tool, so that this index can be used again.
    I tried also the following on the portal:
    - Delete this forum index
    - Disable TREX delta indexing in the forums repository manager
    - Enable TREX delta indexing in the forums repository manager.
    This caused the creation of a new index for the forum. This new created index had however the initial state of "pending"...
    Has anyone further suggestions on this topic?
    P.S. Has someone successfully implemented such a scenario in his portal? (global portal search for forums)

  • Portal Search Engine

    When using the Portals search engine, does it search the descriptions or does it search for the name of the folders, iViews, and pages?  It seems that it searches what ever is in the description.  For instance, if your search paramenters is "News and Announcements", it will search for all the folders, iViews, and pages that have "News and Announcements" in the description.
    Message was edited by:
            Francis Cung

    Francis,
    as per the Help documentation it should search name, id or description of the iViews if correctly configured. See the documentation quoted below:
    <b>Searching For Portal Pages and iViews</b>
    <i>This function is only available if configured for your system. The system searches for all portal pages and iViews in the roles of the logged-on user.
    In the search field in the portal header, enter the name, ID, or description of a portal page or iView. Open the Search Options dialog box and make sure that the checkbox for the corresponding search area or index is active.
    In the search results list, you only have to click a hit to navigate to the corresponding portal page.</i>
    You can find the whole documentation <a href="http://help.sap.com/saphelp_47x200/helpdata/en/7e/5e115e4a1611d1894c0000e829fbbd/content.htm">HERE</a>
    Regards,
    Shubhadip

  • WebDynPro ABAP iViews not picking the portal look and feel

    Hi,
    In our case , WebDynPro ABAP iViews not picking the portal look and feel.
    Is there any way to provide the custom developed portal theme link or css file to the WebDynPro application.
    Can it be done programmatically in the WD ABAP application.
    Best Regards
    Sid

    Look at the below link, it will answer your question:
    Re: EP 7 Portal stylesheet with WD ABAP
    Raja T

Maybe you are looking for

  • New IMac 24" problems!

    I previously used Windows XP but decided there were too many headaches with their OS. So after watching and reading ads and reviews for iMAC decided to buy it. I ordered it on the launch day of Leopard. When I received it, I found out I needed to ins

  • Delete all call logs

    I can't find a way to delete all call logs. It only allows to delete logs for one call at a time. In SMS it allows highlighting of all messages (which is quite painful BTW) and then delete. Not so in call logs. Seems arcane that BB does not have a me

  • Itunes 11 not syncing photos to iphone

    I am not able to transfer photos from a folder on my Macbook to my ipone 4s.   Here are the steps I followed: 1. the phone is connected via a cable to my computer 2.  I selectedPhotos and select the photos button. 3. I selected a folder to sync with

  • Ipod nano 6th gen unresponsive touch after lcd change

    hello people, i just changed the lcd/digitizer over on a nano 6th gen and now the touch is completely unresponsive. the screen is a-ok im just wondering if theres some kind of magical 'thing' someone could suggest. ive tried the power/volume reset an

  • Closing of periods

    hello,        please tell me , how can we correct the period of material document if we do post in wrong period.