Portal Books

Can you please suggest some books for enterprise portal sap:
For configuration
For use
For pdf forms
etc

Hi Stilianos,
For book, check sappress
http://www.sappress.com/product.cfm?account=&product=H966
1) SAP NetWeaver Portal: by Valentin Nicolescu, Katharina Klappert, and Helmut Krcmar
A must-read for SAP Professionals who are looking to take their SAP NetWeaver Portal implementations to the next level. Using this book as your exclusive guide, explore the various architectural and developmental impacts of implementing NetWeaver Portal content for several SAP applications, including Composite Applications and Business Packages. Readers will learn the intricate details of Federated Portals and where it makes sense to use them related to portal content integration scenarios such as Business Intelligence, Employee & Manager Self Service, SRM, and more. In addition, readers can leverage the book's examples as a basis for their own specific requirements.
2) Succeeding with your SAP NetWeaver Portal Project - Best Practices for Design, Composition, and Operation
by Boris Otto, Sven Winkler, and Jörg Wolter
Enterprise portals are one of the most important IT developments in recent times. Although they represent an innovative class of information systems, which can address the needs of the majority of employees within an organization, new technical and organizational requirements must be met in order to effectively implement and utilize their vast capabilities.
This exclusive technical guide helps you avoid typical pitfalls when implementing SAP NetWeaver Portal across various departments in your company. Readers uncover proven techniques for developing successful portal strategies and business cases, delve deeply into the details of portal governance, and learn how to design their own processes and structures, based on tried and tested organizational models. Equipped with key insights and exclusive best practices you're able to optimally tailor your portal to meet user requirements and thus set the course towards leveraging optimal change management processes in your company. Using the information in this invaluable guide, you can turn any SAP NetWeaver Portal project into a sure-fire success.
3) Content Integration with SAP NetWeaver Portal:by Marty McCormick and Matt Stratford
This book is a must-read for SAP professionals who are looking to take their SAP NetWeaver Portal implementation to the next level.
First, the authors introduce you to fundamental portal concepts and the challenges facing project teams today. Then, you'll explore the various architectural and developmental impacts of implementing SAP NetWeaver Portal content for several SAP applications, including Composite Applications and Business Packages. You'll familiarize yourself with the intricate details of Federated Portals and where it makes sense to use them in relation to portal content integration scenarios such as SAP NetWeaver Business Intelligence, Manager & Employee Self Service, SRM, and more. In addition, you'll benefit immediately from best practices for using Adobe Document Services, the System Landscape Directory, and SAP NetWeaver Development Infrastructure, and from the book's detailed examples, which show you how best to configure your SAP system to integrate content for multiple SAP products.
4) The Developer's Guide to SAP NetWeaver Portal: by Marcus Banner, Berthold Latka, Roland Schroth and Michael Spee
From a strategic perspective, SAP NetWeaver Portal is perhaps the most important product of the SAP NetWeaver family. The Portal is essential to all processes within SAP NetWeaver, serving as the fundamental platform that provides a condensed overview of all information and enabling central access to all applications in the enterprise. In addition, the Portal provides the infrastructure for cooperation within and across company borders. This book provides the highly advanced functional knowledge required to correctly set up, operate, administer, and program the SAP NetWeaver Portal.
5) Maximizing Web Dynpro for Java: by Bertram Ganz, Jochen Gürtler, and Timo Lakner
This book has it all - everything you need to know in order to get the very most from your Web Dynpro applications - straight from the developers at SAP.
Based on interesting (and surprising) sample applications, such as GameStation, Google Search, and MusicBox, this unique reference helps you easily memorize the vast array of Web Dynpro for Java capabilities in an engaging and entertaining manner. Readers learn about the dynamic creation of UI components and how to access web services and get details on the integration of Web Dynpro applications into SAP NetWeaver Portal, the componentization of applications, navigation options between different Web Dynpro applications, display techniques, and much more. An entire chapter is devoted to the installation, configuration, and administration of the Web Dynpro runtime. In addition, this comprehensive book provides you with many tips and tricks to increase the speed, security, and structure of your Web Dynpro applications, as well as key insights on troubleshooting and performance optimization.
6) SAP Authorization System - Design and Implementation of Authorization Concepts for SAP R/3 and SAP Enterprise Portals
by IBM Business Consulting GmbH
This practical guide offers you a detailed introduction to all the essential aspects of SAP Authorization management. Take advantage of a proven Phase Model to help you navigate through all of the stages leading up to the implementation and deployment of an authorization concept, from the procedural steps, to the production phase, and lastly, to the supervision phase. In addition, you'll quickly learn how to set up authorization via the SAP R/3 Profile Generator, and benefit from in-depth coverage of the special security requirements of the SAP Enterprise Portal as well as the SAP R/3 standards and infrastructure, which serve as a framework to develop and support SAP Authorization concepts.
There are also "The SAP NetWeaver Portal Collection", which offers special pricing on this collection to get all the information you need to plan, execute, and succeed with your most important SAP NetWeaver Portal projects.
There are more books when you click teh link provided above about Portal.
Hope that helps and award p[oints for helpful suggestions.
Ray

Similar Messages

  • How to implement multlingual on bea portal books and pages

    Hi
    We are are using BEA weblogic portal.
    Now we want to use multilingual on bea portal.
    Ho we can change the portal book's name and pages according to languages.
    Regards
    Paramdeep Singh

    In your browser, you maintain your list of desired languages. This is an ordered list with the first language/locale in the list being the primary. This list of languages is passed to the server in as header. The portal server uses this header as the default mechanism to determine the language to serve back to the browser, although this behavior can be changed for your implementation if you wish. The server will look for a matching resource bundle based on the order of preference in your list of accepted languages.
    So, if you want to receive fr_FR responses, ensure the fr_FR is listed first in your browsers list of languages and that you have created fr resources in your portal.
    Brad

  • Creating Portal Books and Pages dynamically

    How do i create Portal Books Dynamically from a backingfile (preRender Method). And still be able to dynamically embed a portlet instance on each page created.
    very urgrent

    Hello,
    You would want t use the methods available on the BookDefinitionManager and PageDefinitionManager EJBs to add a new book or page definition. then use the methods from the IPageInstanceManager and IBookInstanceManager interfaces implemented by the PortalCustomizationManager EJB to add the book / page under an existing book / page / desktop.
    For the javadoc for all of these EJBs, see:
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/javadoc/com/bea/netuix/application/manager/persistence/package-summary.html
    Then, to access the EJB in your code, you can do the following (this example is for PageDefinitionManager, but it would be similar to all the other EJBs):
    import com.bea.netuix.application.manager.persistence.PageDefinitionManagerHome;
    import com.bea.netuix.application.manager.IPageDefinitionManager;
    import com.bea.p13n.management.ApplicationHelper;
    import com.bea.netuix.application.manager.CustomizationContext;
    import javax.naming.InitialContext;
    import javax.rmi.PortableRemoteObject;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    // Access the PageDefinitionManager EJB
    InitialContext context = new InitialContext();
    String lookupName = PageDefinitionManagerHome.LOOKUP_NAME;
    String applicationName = ApplicationHelper.getVersionedAppName();
    if((applicationName != null) && (applicationName.length() > 0))
    lookupName = applicationName + "." + lookupName;
    Object home = context.lookup(lookupName);
    home = PortableRemoteObject.narrow(home, PageDefinitionManagerHome.class)
    IPageDefinitionManager pageManager = ((PageDefinitionManagerHome)home).create();
    Kevin

  • The enterprise portal book

    hi all
    Which is the best book available on Enterprise Portal something that is an equivalent to "Inside Webdynpro for Java"?
    As i understand from the forums, EP is diversified thus i dont mind if you people can enlist books on all the classifications. More, please include the cost of the books as well. ( kindly mention only books and not help links.). Thanks a lot.
    regards
    vln

    Hi,
    The books offered by SAP Press for EP development:
    SAP Enterprise Portal Technology and programming
    A. Goebel, D. Ritthaler 
    SAP PRESS
    Grey Matter Price: £44.30
    Knowledge Enterprise Portals
    By Amacom
    Grey Matter Price: £31.21  
    Regards,
    Pooja.

  • Anyone know a good Weblogic 8.1 Portal Book our there?

    I've searched Amazon, B&N, Wiley, WROX, etc. Can only find a single book with BEA WebLogic Portal in the title, and it pre-dates 8.1 release and appears to reference 7.x in the sample pages. Not that the BEA docs are bad, I'm just looking for additional resources.
    Regards,
    Mike Pinter, Sr.

    Nope.. none there. I've talked to a couple publishers and they are not even inclined to publish one :(
    Regards,
    Kunal

  • Portal, Book and pages enumeration

    Hi, I´m having a bit of a problem using Bea Workshop 8.1.5.
    I´m building a Portal which has inside books and pages.
    The pages can hold inside books.
    The problem is that I ´ve using the methods
    DesktopBackingContext dbc=DesktopBackingContext.getDesktopBackingContext(this.getRequest());
    BookBackingContext books=dbc.getBookBackingContextRecursive(rama);
    List lista=books.getPages(); //Here is the list of the books and pages that it contains.
    where "rama" is a String containing the Definition label of the book where I want to start the enumeration.
    If the portlet that contains the .jpf ,where the previous code is, is placed outside the main book, it works perfectly but if that same portlets is placed inside the main book o the books that it contains it won´t work.
    I debugged it and it seems that this
    books.getPages(); is returning null (as it has no books or pages, but it does!).
    Does anybody knows what I am missing here?
    Best
    Alejo

    You need to set the portal property Tree Optimization to false, this way you force the portal to create instances of all the trees but you´ll loose performace.

  • LSO- Portal booking-e Learnig courses

    Hi Folks,
    When i tried to book the elearning courses in portal it is directing to the classroom courses instead of online courses. I have done booking by searching the eLearning course giving seach criteria then it is directed to the prebook page instead of booking option.I fo not get the booking option in portal but i can do the booking in  the back end under participation menu.
    Could any one pleae let me know the possibilitis of getting this page because a course is already completed or not yet schduled.
    Thanks in advace
    Kumar

    check the config for coursetype wether you marked for prebookign option
    check the config for coursetype wetehr you selected webbased training or class room training

  • What are the major logic steps of WL Portal Server process a portal request

    Hi,
    I comes from IBM and we provided a product to monitor most types of J2EE App Server about transactions and performance.
    we will monitor WebLogic Portal Server in next release.
    So would you please tell me:
    How Weblogic Portal handles a page request from browser, what are the major logic steps that a page requests are fulfilled, which areas in Weblogic Portal are most likely to cause response time problem. For example, We monitor WebSphere Portal Server as the following major steps:
    Portal Page loading, Model building, Page rendering, portlet action, etc....
    we look forward to get your developer helps since we cann't find related documents over your website.
    Thank you very much
    Edited by wutingbin at 12/28/2006 12:35 AM

    WebLogic Portal, if Desktop enabled, it will render from Desktop->Portal->Books->Pages-->Portlets. You can get these information from WebLogic E-Docs.

  • Global error page for portal project

    Hi
    This is regarding weblogic 8.1.
    We have a portal project which contains several portlets. For handling exceptions
    in a page flow we have a global error page at the project root level and each
    portlet redirects to this error page /error.jsp in case of any errors.
    When the user is redirected to this error page the page is displayed in the portlet
    context. How can we make this error page to take up the whole screen and display
    it outside of the portlet context so that all other links within the portal (books
    and pages) are not displayed to the user.
    In all cases, the redirection to the error page occurs from a page flow.
    Thanks in advance,
    Sameer

    Sameer,
    Please post this question to the weblogic.developer.interest.portal
    newsgroup.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Sameer Dalal" <[email protected]> wrote in message
    news:3f4bd37f$[email protected]..
    >
    Hi
    This is regarding weblogic 8.1.
    We have a portal project which contains several portlets. For handlingexceptions
    in a page flow we have a global error page at the project root level andeach
    portlet redirects to this error page /error.jsp in case of any errors.
    When the user is redirected to this error page the page is displayed inthe portlet
    context. How can we make this error page to take up the whole screen anddisplay
    it outside of the portlet context so that all other links within theportal (books
    and pages) are not displayed to the user.
    In all cases, the redirection to the error page occurs from a page flow.
    Thanks in advance,
    Sameer

  • Global Error page in portal

    Hi
    This is regarding weblogic portal 8.1.
    We have a portal project which contains several portlets. For handling exceptions
    in a page flow we have a global error page at the project root level and each
    portlet redirects to this error page /error.jsp in case of any errors.
    When the user is redirected to this error page the page is displayed in the portlet
    context. How can we make this error page to take up the whole screen and display
    it outside of the portlet context so that all other links within the portal (books
    and pages) are not displayed to the user.
    In all cases, the redirection to the error page occurs from a page flow.
    Thanks in advance,
    Sameer

    Also, you could do this:
    * @jpf:catch type="Exception" method="handleAllExceptions"
    * @jpf:exception-handler
    * @jpf:forward name="errorPage" path="/error.jsp" redirect="true"
    protected Forward handleAllExceptions( Exception e, String actionName,
    String message, FormData form )
    return new Forward( "errorPage" );
    In this case, handleAllExceptions() will redirect to the error page, which
    will bring you out of the portal.
    Rich
    "Subbu Allamaraju" <subbuATbeaDOTcom> wrote in message
    news:3f4cdefa$[email protected]..
    Sameer,
    The portal rendering framework renders the error page inside portlet
    windows to address the most common scenario, where failure in a given
    portlet won't stop users from interacting with other portlets.
    Here are the options you've to address your use case:
    - Handle the exception in the pageflow itself, and do a sendRedirect()
    to the error page. This would bypass rendering of other portlets, and
    user will be redirected to the error page.
    - If the source of the exception is the JSP, you'll have to add some
    javascript in the error page to do a redirect or, better yet, replace
    the markup.
    Subbu
    Sameer Dalal wrote:
    Hi
    This is regarding weblogic portal 8.1.
    We have a portal project which contains several portlets. For handling
    exceptions
    in a page flow we have a global error page at the project root level andeach
    portlet redirects to this error page /error.jsp in case of any errors.
    When the user is redirected to this error page the page is displayed inthe portlet
    context. How can we make this error page to take up the whole screen anddisplay
    it outside of the portlet context so that all other links within theportal (books
    and pages) are not displayed to the user.
    In all cases, the redirection to the error page occurs from a page flow.
    Thanks in advance,
    Sameer

  • Entitlement on book not working correctly

    Hi,
    This is a werid problem. We are using weblogic 8.1 with SP3. We have created a role and assigned it to a portal Book so that only user in the role can see that book. When we login as a user who is in that role, we did not see the book. But when I do a refresh on the page, the book shows up.
    Here are some more details: In the file \framework\skeletons\singlelevelmenu.jsp, we get a list of PagePresentationContext and BookPresentationContext. And for each context, we call context.isVisible() to determine whether to show the context or not. So if the context is a BookPresentationContext, the method isVisible() will return false if the page is hit for the first time, but it will return true if the page is hit after the first time.
    BookPresentationContext book = BookPresentationContext.getBookPresentationContext(request);
    Iterator pages = book.getEntitledPagePresentationContexts().iterator();
    while (pages.hasNext()) {
    PagePresentationContext pageCtx = (PagePresentationContext) pages.next();
    if (pageCtx.isVisible()) {//this return false if the page is hit for the first time, but it will return true for all request after the first request
    //show the context
    Any one has any ideas why this is happening? Looks like this happens only in SP3.

    The issue is not with your entitlements. It is with your login. The login is not causing the page to refresh.
    Look at the BEA samples for login. I am using the backing file login, with a postbackaction.
    See my article on Portal Tips and Tricks in WLDJ. It might help u.

  • RE: Help on Development Consultant SAP Netweaver 2004 u0096 Enterprise Portal

    Hi ,
      I am planning to take Certification on Certification ID for Development Consultant SAP Netweaver 2004 – Enterprise Portal  {(Booking code): C_TEP15_04}. Can someone help me regarding the material availability.
    Thanks
    Venkat

    Hello Venkat,
    Exactly what kind of "material" are you looking for? The following site, https://www.sdn.sap.com/irj/sdn/developerareas/ep, has a Sneak Preview of SAP NetWeaver for downloading and eLearning material for you to go through to prepare yourself by going through the sample.  Does that help?
    Regards,
    John Ta

  • Jsps from pageflow portlet in navigation (or from portlet to book pages)

    Hi all,
    I'm a Weblogic newbie. I was wondering if anyone could please tell me how to get the name or title of a jsp from a pageflow portlet in navigation?
    I have page1.jsp (title: "Step 1"), page2.jsp ("Step 2") and page3.jsp ("Step 3") in a page flow that goes from page1.jsp to page2.jsp to page3.jsp. This page flow is made into a portlet. This portlet is the ONLY thing on the page in the portal book and the ONLY way to get to page3 is from page2 and to get to page2 is from page1, although you can return to page1 at any point.
    I would like my navigation programming--the single level across the top--to show the name of the jsp that is showing or the title. I've seen how to get the book and the pages of the book in the navigation, but not how to get further than that.
    Has anyone else done this?
    Thanks so much in advance.

    Have you resolved this problem? I'm stuck at the same place.
    <br>
    Thnx, Rajiv

  • Planning on using Oracle Portal

    I'm a web developer and our company is planning to use Oracle Portal. I am now doing my research as to what book should I be reading or online trainings that I ahould be attending. Please note that I have not tried any Oracle software yet. I dont have any knowledge about Oracle Technology. Given this scenario, Can I just go directly and study Portal or should I attend other Oracle Training first before doing so? What kind of training should I go into and what books would you recommend?
    I hope to hear from any of you..
    Romel Rayala

    Oracle9iAS Portal Bible by R. Greenwald en J. Milbery (ISBN: 0-7645-4749-6) is a beginner's level Portal book.
    You can download Portal from the website (it goes with 9iAS, iirc), but it's quite a big installation. You could also go to otn.oracle.com and in the left navigation bar, 3rd section, click 'Portal Studio'. Look around there, you can get a free login to a Portal installation and play with it.
    Hope that helps!

  • Search Integration Issue - Portal 10.2

    Hi All,
    I am trying to integrate Search in weblogic portal 10.2.
    After some trials , i was able to search the published content in the admin console.
    And if any content is created , that content is getting indexed ,,I have seen from following URL.
    http://localhost:9014/action=list
    But the problem is
    I want to integrate this search facility in my portal application.
    And this search has to search the list of pages in the portal apllication.
    How this can be acieved , because content is dynamically populating in my portal application using content selectors.
    Simply:
    If I am searching with the word "xyz" in my application , It has to display the list of pages in the application containing the text "xyz".
    Because content is getting displayed using content selectors.
    Thanks & Regards,
    Srinivas

    pls suggest me, how to display search results which points to application pages , which satisfies search criteria , as we wll get in Google.Hi Srinivas,
    as Brad already pointed out, this is a complicated problem in the case of portal and cms, mostly due to the fact that there is no out of the box glue layer between cms hierarchy and portal hierarchy. Because of personallization, content selectors, etc. it is not a one-to-one mapping. However, this is merely a technological issue and a business requirement similar to yours keeps popping up in real world projects including a few of the ones I've been involved with. There are some workarounds, but so far I've not come up with a "perfect" solution. I would <strong>love</strong> to hear from someone who has an elegant solution.
    One approach is to define a "home" location in the portal hierarchy for a piece of content in CMS using metadata. A simplistic approach to this would be to e.g. set a metadata attribute that specifies the instance label of a page that is guaranteed to have a portlet that displays the content item. A variation is to use a CMS site hierarchy (or folder hierarchy) that mimics the portal book/page hierarchy. The "home" location in this case can be deduced from the CMS hierarchy. As you will notice, both of these approaches require that CMS is kept in sync with the portal hierarchy. Also, if you have multiple desktops and reuse a piece of content across them you need to modify this scheme with additional metadata and/or site hierarchy setup. Yet another approach is to have a separate mapping layer that maps the content node id's and/or hierarchies to portal hierarchy. This mapping layer can be anything from a properties file to an elaborate DB based application...
    With these approaches when you get a search result node you need to retrieve either the metadata item or the folder hierarchy or the mapping layer translation and then set up a page change event to take the user to the proper page.
    One of the many issues with these approaches is that when you move content display portlets around you need to update stuff elsewhere (CMS or mapping layer). Depending on your content display portlet mechanism you can also consider setting a portlet preference that points to a cms folder or node. You can then traverse the desktop hierarchy using presentation contexts while extracting the cms contexts from the portlet properties. This way you can semi-automatically create a cms-to-portal mapping which serves as a lookup table for the search results. Obviously, this time around the challenge is keeping the portlet preferences in synch when stuff is moved around on the cms side :) To overcome this, you would probably need to hook into the content events inside the repository and modify the portlet preferences on the fly when stuff is moved around. This would be quite hard core in my opinion and I've never gone that far in a real world project....
    Summa summarum: there are no low-hanging fruits here, but what you describe can (and has been) achieved to a certain degree with some serious admin/management headaches. Sometimes the business requirement is set in concrete and it overrides the admin concerns :)
    Hope this helps, I'll be happy to elaborate on the thoughts above since this is one of my pet peeves when doing architectural design for a new portal project :D
    Best regards,
    Petri
    Edited by: Petri Pellinen on Nov 5, 2008 10:32 PM

Maybe you are looking for

  • Please help! MBP 15" 2011 will not boot at all

    Hi, My 15 inch early (May) mbp 2011 will not start up. Here is what I have observed so far: 1) When power button is pushed (without MagSafe attached) hard drive will spin up and about after 3-5 seconds it will turn off (hard drive spins Down, no furt

  • Animated gif only plays one time??

    An animated gif created in Photoshop and exported with 'loop forever' output only loops once on my home page. I have not resized, cropped it or added any effects but as it plays once Muse can't have rasterized it. I am using adobe muse cc 7.1 build 3

  • Copy and Clear in ASO

    I'm very used to doing copy and clear in BSO calc script. When it comes to ASO, I'm not sure where and how I can do that? Any help would be appreciated. Thank you!

  • File Upload and download from a central repositiory.

    Hi experts,   I  have written the following code in webdynpro for abap...But it is giving error as "Access Via Null Object Not possible" This code runs perfectly fine in abap. I dont know what is the problem in webdynpro . Code :    data: ifile1 type

  • Safari does not open in any desktop of mission control.

    Recently installed Lion on MacBookPro. By first start up of laptop, Safari is opened bu is ' floating ' around between the desktops. You can see a full screen background image of Safari when switching back and forth between desktops in Mission Contro