What is page processor component

Hi friends,
  Can anyone tell me whats the page processor component and what is abstract portal component , jspdyn page, dynpage and difference among each?
Thanks in advance.
Regards
Sireesha.

Hi,
This give a good overview:
http://help.sap.com/saphelp_nw2004s/helpdata/en/68/ff3c41325fa831e10000000a1550b0/frameset.htm
AbstractPortalComponent is a Standard portal application.
DynPage/JSPDynPage(PageProcessorComponent) are HTMLB portal application
Also check this:
Abstract Portal Component VS Dynpage
Greetings,
Praveen Gudapati
[Points are welcome for helpful answers]

Similar Messages

  • What is Module Processor

    Hi All,
    What is Module Processor ??
    When We Use it
    Regards
    Vamsi

    Hi,
    In simple terms Module Processor is a component of Adapter framework.
    We can use the existing module processor for a particular purpose.
    For example File content Conversion in File adapter is a module which helps in content conversion.
    We also have a provision for developing our own and to use the same in your scenarios.
    For more information on Module Processor please go tru the below link,
    http://help.sap.com/saphelp_nw04/helpdata/en/cd/5af7c0c994e24fb0d0088443513de2/content.htm
    Hope this helps.
    -Prasad Babu.

  • I have an early 2008 macbook pro that is running slow after upgrading to lion. Is there anything I can do? this is what I have,Processor  2.4 GHz Intel Core 2 Duo, Memory  2 GB 667 MHz DDR2 SDRAM.

    I have an early 2008 macbook pro that is running slow after upgrading to lion. Is there anything I can do? this is what I have,Processor  2.4 GHz Intel Core 2 Duo, Memory  2 GB 667 MHz DDR2 SDRAM.

    First, back up all data immediately, as your boot drive may be failing.
    Launch the usual set of applications you use when you notice the problem.
    Step 1
    Launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the page that opens.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. What approximate values are shown for Reads in/sec and Writes out/sec?
    Step 2
    You must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way as above. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Post the 50 or so most recent messages in the log — the text, please, not a screenshot.
    Important: Some personal information, such as your name, may appear in the log. Edit it out before posting.

  • Using the XSQL Page Processor Programmatically Issue

    HI,
    I am using the oracle class "oracle.xml.xsql.XSQLRequest " to make use of the XSQL Page Processor from within a Java program and generate a diffenent format files (i.e. HTML, PDF). Everything works fine from the jdeveloper ,but when i deploy the code to Tomcat, I am getting the following error when I click on a submit button(The calls to Java code):
    java.lang.RuntimeException: java.lang.RuntimeException: Fatal error. Cannot create connection manager factory: oracle.xml.xsql.XSQLConnectionManagerFactoryImpl
    Here is the java code for rerfernce:
    // Construct the URL of the XSQL Page
    URL pageUrl = new URL("file://"+ContextPath+"invoice_html.xsql");
    // Construct a new XSQL Page request
    XSQLRequest req = new XSQLRequest(pageUrl);
    // Setup a Hashtable of named parameters to pass to the request
    Hashtable params = new Hashtable(1);
    // pass the invoice value
    params.put("Invoice",rs.getString(3)); //Invoice Id
    // Create a invoice file
    File invoiceFile = new File(rs.getString(7)+rs.getString(3)+rs.getString(5));
    // Create an Output Stream
    FileOutputStream outStream = new FileOutputStream(invoiceFile);
    // Filter bytes to ASCII
    PrintWriter out = new PrintWriter(outStream);
    // Generate a HTML invoice for each account
    req.process(params, out, new PrintWriter (System.err));
    // Close the PrintWriter
    out.close();
    Any Solution or comments will be really appricated.
    Thanks
    Mohammad

    I have fixed the problem.

  • Ajax4Jsf won't work if I have page fragment component.

    I am trying to use Ajax4jsf on my JSC project. This is bizarre but when ever i have a page fragment component in my page the ajax4jsf stops re-rendering. The code is as following.
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:a4j="https://ajax4jsf.dev.java.net/ajax" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
    xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{Page1.page1}" id="page1">
    <ui:html binding="#{Page1.html1}" id="html1">
    <ui:head binding="#{Page1.head1}" id="head1">
    <ui:link binding="#{Page1.link1}" id="link1" url="/resources/stylesheet.css"/>
    </ui:head>
    <ui:body binding="#{Page1.body1}" id="body1" style="-rave-layout: grid">
    <ui:form binding="#{Page1.form1}" id="form1">
    <ui:staticText binding="#{Page1.staticText1}" id="staticText1" style="left: 408px; top: 240px; position: absolute" text="#{RequestBean1.text}"/>
    <a4j:commandLink action="#{Page1.setText}" reRender="staticText1" style="left: 240px; top: 240px; position: absolute" value="thif"/>
    <div style="left: 0px; top: 0px; position: absolute">
    <jsp:directive.include file="topMenu.jspf"/>
    </div>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>
    If iremove <div>....</div>(which is 7 line from the end) then everything works fine otherwise re-rendering of statictext component stops.
    Message was edited by:
    Sapan

    Hi Sapan
    I am a newbie to AJAX4JSF . I think it provides Rapid Application Development just by using tags like a4j: without the need to develop complex JSF Custom Components as shown in BluePrints Catalog
    https://bpcatalog.dev.java.net/ajax/jsf-ajax/
    Pl suggest
    Regards
    Bansi

  • Page Layout component

    Hi,
    I'd like to implement a simple page layout component in my application. Users should be able to put text and image elements on a page, scale the image within a frame etc.
    I can start developing such a component but I wondered if there are any free or commercial components on the web somewhere?
    I did a search but found nothing.
    Anyone an idea?
    thx,
    Dany

    Kindly go through below link:
    [Web Dynpro ABAP Configuration|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/43/e86de5008b4d9ae10000000a155369/frameset.htm]
    Also check following things (which are generaly not required in normal enviornment):
    1) Check host file entry with server addres and server name
    goto start-> run-> type 'drivers' ->etc-> open host file in note pad -> make server entry
    2) check proxy settings of browser
    tools->internet options->connections->lan settings-> advanced->exceptions
    Regards,
    Saket

  • Page-Flip component: Varying page sizes?

    Hi all, I have a question for you about the page-flip
    component. Is it possible to make the pages within a single book
    different sizes? In other words, could I have a cover page that's
    500 x 500, and behind it a page that's 550 x 500, and behind that
    one a 600 x 500 page, and so on? The idea would be that you could
    see a bit of some of the pages before actually reaching them.
    According to the manual, there seems to be some kind of page
    height and page width functions, but I'm not sure how to use them.
    Any advice?
    Thanks!

    Not quite sure about Page Flip component,
    See example05, is that something you need?
    http://blog.ggshow.com/index.php/extensions/2007/04/02/gg_book_pf2

  • Oracle XSQL Servlet Page Processor 0.9.9.1 (Technology Preview)

    I trying XSQL Servlet in oracle8.1.6,Java Web Server.
    When I access http://localhost:8080/xsql/index.html
    I am getting this error.
    "Oracle XSQL Servlet Page Processor 0.9.9.1 (Technology Preview)
    XSQL-013: XSQL Page URI is null or has an invalid format."
    Any suggestion....
    null

    JWS is not one of the supported Servlet Engines in 1.0.0.0 please see the release notes for supported engines (there are lots of them).
    The XSQL 1.0.1.0 release will support and
    additional set of engines that cause XSQL-013 errors becuase the return null for
    the Servlet API call:
    req.getRealPath(req.getServletPath());

  • HT201300 What is the processor in MacBook Pro (13-inch, Mid 2012).

    Can anyone please let me know , how to find what is the processor present in macBook Pro (13 Inch) Basic model ?

    Apple Menu / About This Mac / More Info...
    Can even proceed to System Report... if you need more gory details.

  • What is "Pages created in the cache"?

    Looking at these two DBs in my environment:
    Pool File: x.db
    8192    Page size
    0       Requested pages mapped into the process' address space
    78M     Requested pages found in the cache (34%)
    149M    Requested pages not found in the cache (149056231)
    884390  Pages created in the cache
    149M    Pages read into the cache (149049683)
    11M     Pages written from the cache to the backing file (11213750)
    Pool File: y.db
    4096    Page size
    0       Requested pages mapped into the process' address space
    626M    Requested pages found in the cache (77%)
    181M    Requested pages not found in the cache (181920907)
    2013    Pages created in the cache
    181M    Pages read into the cache (181778435)
    75M     Pages written from the cache to the backing file (75856843) Yes, the cache size needs to be increased. But customers tend to be less than satisfied with answers like "keep increasing it until the hit rate levels off."
    I think I understand "found" and "not found" and "read into", but what does "Pages created in the cache" mean?
    What can we conclude from the first one having 149M pages not found in cache, and 884K pages created,
    while the second one has 181M pages not found in cache, but only 2K pages created??

    Can we determine how many unique pages are involved? How many of those "Pages read into the cache" are the same pages being read multiple times because they were flushed out in between? As compared to pages read into the cache, and then only used once?

  • What is the standard component configuration for tuition fee reimbursement   in sap webdynpro?

    what is the standard component configuration for tuition fee reimbursement  in advance claims  in hrms in webdynpro?

    Hi Debo,
    What is your exact requirement?
    Are you trying to find the standard configurations available for a webdynpro application? then, use t-code SE15 and open the application name and use the tree structure to find out the available configurations under WD application.
    sample:
    Regards,
    Rama

  • What is  the application component no  fico & asset

    what is  the application component no  fico & asset

    Can you explain your question? 
    Do you want to know where in the application component hierarchy you can find datasources for FICO and Asset ?

  • I CAN'T GET THE "WHATS NEW" PAGE FROM COMMING UP FIRST. I CHANGED THE HOME PAGE IN THE PREFERENCES, IT DIDN'T HELP...

    I CAN'T GET THE "WHATS NEW" PAGE FROM COMING UP FIRST. I CHANGED THE HOME PAGE IN THE "GENERAL SETTING" IN PREFERNCES, I RESTORED THE "DEFAULT HOME PAGE" NOTHING HELPS.
    IF I CLICK IN ANY WEB LINK THE "WHATS NEW " PAGE KEEPS COMING UP FIRST. I THEN HAVE TO "X" IT OUT AND RE-CLICK ON THE WEB LINK FOR IT TO RELOAD. I HAVE TRIED EVERYTHING. WHAT THE HELL AM I DOING WRONG?

    See this article for some suggestions: [[Firefox has just updated tab shows each time you start Firefox]]
    See also http://kb.mozillazine.org/Preferences_not_saved and [[Preferences are not saved]]
    * [[How to set the home page]] - Firefox supports multiple home pages separated by '|' symbols

  • What are the Processor, Operating system, hard drive device, Total Memory, Network card, System Graphics of the Silver ipad air

    what are the Processor, Operating system, hard drive device, Total Memory, Network card, System Graphics of the Silver ipad air?

    "Memory" in this case means RAM, the working space for the processor in the iPad. It is different from storage space, the latter being what is referred to by the "32GB", "64GB" etc. specification.
    Regards.
    Message was edited by: varjak paw

  • Way to check what tab page I am on????

    Hi,
    I have a tabbed canvas and I when I move into a particular tab I want to query block within that tab. Is there a way that I can check what tabbed page I am currently on???
    TIA

    use following code
    DECLARE
    tp_nm VARCHAR2(30);
    tp_id TAB_PAGE;
    tp_lb VARCHAR2(30);
    BEGIN
    tp_nm := GET_CANVAS_PROPERTY('emp_cvs', topmost_tab_page);
    tp_id := FIND_TAB_PAGE(tp_nm);
    tp_lb := GET_TAB_PAGE_PROPERTY(tp_id, label);
    IF tp_lb LIKE 'Sa%' THEN
    <Action>
    ELSIF tp_lb LIKE 'Va%' THEN
    <Action>
    ELSE null;
    END IF;
    END;

Maybe you are looking for

  • Movie moving in Mac Book from Sony HD TG3E

    Hi guys , I bought Sony TG3E a month ago and still not able to use it with my mac book. I did research and found that i movie 08 is compatible with AVCHD ( not sure about TG3E).Has anyone got an experience of Mac book with sony high definition TG3E?

  • New Oracle User Report...

    Ok so here's an easy one for you lovely people. I have a need to run a report that will show all the new Oracle users created from Jan 1, 2007. I'm not sure where I would pull this information from. Anyone have any ideas? Thanks. Luke

  • Trying to add a Google Apps email account and it will not auto add. It use to???

    I got another pre and updated to 1.1.  I'm not able to add a Google Apps email account????  Is this a new problem? Post relates to: Pre p100eww (Sprint)

  • Number Range Query

    Hi, I have a requirement that number range for sales order and delivery to be same but it is not possible in SAP. Request if anyone can guide for solution like maybe prefix etc. The requirement is that when we look at delivery number we should know t

  • How to stabilize parts of a multi-cam sequence ?

    I want to stabilize parts of a multi-cam-sequence. So I right-klick the clip to send it to Aftereffects. But this will end up in sending the whole multi-clip (two povs, 30 minutes of length). How can I extract parts of the multi-cam-sequence I want t