How to create a new blank page in iStore module

Hello ,
How to go about creating a new blank page in a iStore minisite in Oracle EBS.
Is there a template that can be used to create a page containing JSP tags needed by iStore.
Thanks

Hello ,
How to go about creating a new blank page in a iStore minisite in Oracle EBS.
Is there a template that can be used to create a page containing JSP tags needed by iStore.
Thanks

Similar Messages

  • When i try to print a perfect bound for my 66-paged document it keeps creating two new blank pages

    When i try to print a perfect bound for my 66-paged document it keeps creating two new blank pages, how do i remove that 2 blank pages?

    That is essentially a 2 up format as shown.
    2 pages duplex will equate to 4 pages per sheet.
    Your document needs to be divisable by 4. Add two blank pages at the end of your document.
    Toggle "Print Blank Pages" from the Print Settings
    Remove the blanks after creating the booklet.

  • Recently when creating a new blank page, application freezes. have been using for years without a problem. Upgrade?

    recently when creating a new blank page, application freezes. have been using for years without a problem. Upgrade?

    When something that used to work stops doing so, the most likely culprit is corrupt preferences. Go to HD > Users > (your account) > Library > Preferences, delete the com.apple.iwork.pages.plist file & then restart Pages. In Finder, hold down the Option key while clicking on the Go menu & your user Library will appear about halfway down the list. Or you can choose Go to Folder from the Go menu in Finder & paste this line in the box:
    ~/Library/Preferences

  • HELP! Full size image is creating a new blank page that I cannot delete.

    Hello,
    I am creating a document where each page has a full size (8.5x11) image that is set to the background. I then have text over the background image. My problem is that when I make the background image and insert another page, I get a blank page that I cannot get rid of. I have made sure that the full size image is not going over the border but it is still creating an invisable character that is a blue line with an icon at the end.
    How can I get rid of this line??
    To insert the large inage, I am creating a square shape and extending it to the edge of the document. I am then filling that shape with an image.
    PLEASE HELP!!!
    Thank you in advance!
    V

    Nevermind! I found the answer!! I had to un-check Object To Wrap in the Inspector.

  • How to create a new blank application

    Seems like a simple request. I don't have a .war or .ear file. I'm creating a new application from scratch. How do I get it set up on 9iAS R2 so I can start developing?

    The easiest way to do this is to use Oracle9i JDeveloper. It's an IDE that let's you do rapid application development. It is Oracle9ias-aware and can deploy to .ear or .war also.
    HTH,
    Ashesh Parekh
    Oracle9iAS Product Management

  • How to create a new creation page from view page itself

    Dear all
    i have view page in that i need to click on new button i need to call new creation page
    here i am writing the code in view page co in pfr
    HashMap h1 = new HashMap();
    h1.put("pmode", "Continue");
    if (pageContext.getParameter("New") != null)
    pageContext.setForceForwardURL("OA.jsp?page=/crm/oracle/apps/xxcrm/crmmgmt/quotationmgmt/webui/xxcrmquotationcreationPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null, h1, false, OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAWebBeanConstants.IGNORE_MESSAGES);
    in creation co i am calling this method
    if (pmode!=null)
    System.out.println("Entered into this block.....");
    am.xxcreatequotation(orgid);//blank record for this
    System.out.println("After this statement......");
    cancel1.setRendered(false);
    System.out.println("After this statement......11");
    in view page when i am clicking the new button the page is calling editable mode
    i dont think so y it is happening like this.
    Regards
    Sreekanth

    Dear Gaurav
    i wrote this code
    public void xxcreatequotation(int orgid)
    xxcrmOpportunityTVOImpl vo = getxxcrmOpportunityTVO();
    OADBTransaction tr = getOADBTransaction();
    int x = 0;
    String lv_current_flag = "Y";
    String lv_opt_flag = "N";
    if (vo.getFetchedRowCount() == 0)
    vo.setMaxFetchSize(0);
    Row createqtn = vo.createRow();
    vo.insertRow(createqtn);
    createqtn.setNewRowState(Row.STATUS_INITIALIZED);
    Number qtnid = tr.getSequenceValue("xxcrm_opportunity_seq");
    System.out.println("The opportunity id is....." + qtnid);
    vo.getCurrentRow().setAttribute("OppoOpportunityid", qtnid);
    vo.getCurrentRow().setAttribute("OrgId", orgid);
    vo.getCurrentRow().setAttribute("OppoRevisionId", x);
    vo.getCurrentRow().setAttribute("OppoCurrentFlag", lv_current_flag);
    vo.getCurrentRow().setAttribute("OppoIsoptional", lv_opt_flag);
    vo.getCurrentRow().setAttribute("OppoBaseOpportunityid", qtnid);
    Regards
    Sreekanth

  • How to create a new aspx page in Pages library using Elements.xml without including any aspx page layout in my feature?

    Is it possible to have the elements.xml file create a page in the Pages (or SitePages) library without actually including any sort of page layout or aspx artifact in the feature?
    I see no reason to add a mywebpartlayout.aspx to my feature just so I can deploy a Home.aspx based on the BlankWebPart.aspx page layout. 
    I'm sure there is something obvious I am missing with regards to the Elements schema (which is why I've almost given up on using it completely and just gone to pure C#) but
    I would really like to do this kind of simple stuff with declarations if at all possible. Must less code to write, debug, test and maintain.

    I don't see how my question keeps getting misunderstood. This seems to be very clear and clearly not answered: "Is it possible to have the Elements.xml file
    create a page in the Pages (or SitePages) library without actually including any sort of page layout or aspx artifact in the feature?"
    I can't be more clear than "without including ANY sort of page layout or aspx artifact (meaning anything ending in aspx) IN THE FEATURE". I am not capitalizing to yell,
    only to emphasize. Your disagreement is based on a link that shows ADDING AN ARTIFACT (the dummy MyPage.aspx) to a feature. I am asking if it
    is possible (again, I cannot be more clear) to just use an Elements.xml file to instruct SharePoint to make a new item in a Pages or SitePages library. 
    Your definition of page includes Page Layouts and what you call Web Part Pages (again, a type of page layout + data in a site pages list that says what webparts
    to display). Page Layouts are clearly NOT items stored inside of a SitePages or Publishing Pages library. Those libraries are just lists whose records
    define the parts to show inside a specific layout.
    When I refer to a Page I mean an entry into a pages (site pages/publishing pages) list. If I wanted to deploy a page layout then, quite obviously, I would need
    to include it into my solution. I think maybe you are assuming that I do not know the difference. I do. The question is, can an Elements file alone be enough to instruct SharePoint to make a new entry into a Pages or SitePages library. 
    Now, your second link does show how to reference an existing Page Layout. Thank you for that. It is excellent. But this still leaves the problem of having to
    add some sort of aspx page into the solution. Let me try to explain why I feel this SHOULD BE unnecessary: The aspx file will not have anything on it if I am referring to the ~sitecollections/.../BlankWebPartPage.aspx layout.
    All web parts and content that should appear on the new page can be described IN the Elements.xml file. Any sort of aspx file is unnecessary, it seems to me.
    So, if I am referencing a ~sitecollections/.../BlankWebPartPage.aspx page layout and specifying the web parts to add to the page, why should there be a
    requirement to have some aspx file within the feature? That's what I am trying to figure out.
    I am not asking for source code as proof. I am asking for an Elements file that does NOT reference anything AT ALL inside the Visual Studio solution for reasons I just described.
    If you do not know how to do it then perhaps it cannot be done but I would like the question to stay unanswered for a little while until someone can demonstrate either a) it CAN
    be done or b) a link to some Microsoft document stating that it is MANDATORY to have a physical element within the feature that gets copied to the environment.
    I think it is important to understand what is being asked before insisting you have answered. It is clear from your posts that you have not fully understood the question yet but
    I am hoping this posts makes it clear. I really appreciate you taking the time to respond, though. You seem to be the only one up for the challenge! :)

  • How to create a new spreadsheet page?

    I've got a spreadsheet I have been using, but have got to the end of the copies I have been using and can't remember how to make more of them. I have saved a copy to My Templates but when I open it it is like the last one I made but has taken that one's place. I am at my wit's end. I think I will have to go back to a paper account book as this is ruining my health.

    Ewan,
    There are multiple ways to add a new empty Sheet to your Document.
    Click the Add Sheet icon
    Select the menu item Insert > Sheet
    Control-Click in the Sheets Pane and Select New Sheet
    If you wanted to add a copy of your existing Sheet, you could Select the existing Sheet in the Sheets Pane, then Command-C, Command-V.
    Does this do what you were asking about?
    Jerry

  • How To Create The New VO in Standered Page?

    Hi Gurus,
    Pl z help me how to create the new Custom VO in slandered page,and how to attach that VO in custom RN in all are slandered page only.
    Regards,
    Srini

    Hi Sara,
    <i>1. Could you please tell me how to create the new webservice in XI?</i>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f3ee9d7-0901-0010-1096-f5b548ac1555
    <i>2. What tools we have to use to create it.?</i>
    /people/community.user/blog/2006/09/19/xi-webservice-studio--a-plain-jane-soap-tool
    http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=65a1d4ea-0f7a-41bd-8494-e916ebc4159c
    Altova is also a good option
    <i>3. How to send the SOAP request to XI?</i>
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    SAP Note 856597
    An Add-on
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    Regards,
    Prateek

  • How to create a new tag in page properties in the sidekick of geometrrix page

    how to create a new tag in page properties in the sidekick of geometrrix pagesame as basic, advanced, blue print??

    Hi prachi,
        Is it tag OR Tab ? Seems like you are looking for Tab. Look at [1] & overlay to custamize per your need. Or define at your page component.
        [1]   /libs/foundation/components/page/dialog/items/tabs/items
    Thanks,
    Sham

  • How to create a new template for pages in iPad?

    How to create a new template for pages in iPad?

    In spite of the latest updates Pages for iPad does not support:
    1) User templates
    2) Headers
    3) Footers
    4) Page numbers
    and it is not compatible with Pages for OSX, a document cannot be edited alternatively on Mac and iPad without destroying headers and footers.
    - The Word export is far from perfect
    - Does not really support Page Layout mode (you cannot duplicate a page at least)
    - Does not have a multi-page overview
    - The spelling support of iOS and OSX is at the level of Apple Maps except 4-5 languages.
    - It takes a long time until it starts
    INSTEAD, according to the latest updates:
    - It can do change tracking
    - Lock and unlock objects
    - Add reflections to shapes
    Dear Apple, please understand:
    - We like iPad and we wish to use it for real work.
    - We wish to have user templates, headers, footers and page numbers.
    - We do not expect all the features of Pages for OSX, but we do expect real compatibility.
    - We do not wish to switch back to Word for Windows unless you force us.
    Please try to concentrate on real development not on unimportant changes like in the latest dissapointing update.

  • How can i open a new blank page, if i open a new tab??

    how can i open a new blank page, if i open a new tab?? because if i click the plus "+" sign(at right corner) it open a website that i don't like.... please help meee....

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Ever since I updated my ipad to iOS 7, I am unable to bring up a new, blank page.  Can someone tell me how?

    Why, once I updated my ipad to iOS 7, am I unable to bring up a new, blank page?

    A new blank page where?  In Pages, in Numbers, in some text editor?

  • Missing? : File- New- Blank Page- Page type (CSS)- Layout is empty!!

    Hello-
    I am just learning Dreamweaver CS3 and I'm wondering if something has gone missing on my installation, or if this is how it's supposed to work...
    If I do File -> New -> Blank Page (then choose CSS in the Page Type window pane) ...  I then find there are no items in the Layout pane for CSS (whereas, under HTML and some others there are lists of items, though others, such as XML, in the list do have items listed.  In all, I think about 1/2 are empty, 1/2 are populated)
    I've attached a screen shot to clarify this!
    Is CSS supposed to be empty, or has something gone missing?  I have the book "Dreamweaver CS3 The Missing Manual" but don't find this referenced.
    Thanks for the help!
    -Ron

    ron_on_adobe wrote:
    Z-
    So, if I understand correctly, the CSS "blank pages" will only become populated as I begin to create CSS styles, and it's normal for this to be an empty pane until then?
    You are correct, there is nothing inside of that pane and no, nothing will populate that window, even if you do create css styles  :-)
    When you create a stylesheet, it will be listed in the CSS panel on the right of the working document, it will not go into that CSS pane at all.
    Good to see you looking 'under the hood', it means you are willing to learn everything you can about Dreamweaver.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • How to create a new session in JSP file

    Usually a child IE window uses same session with parent window. Dose someone know how to create a new session when creating a new IE window by clicking a URL in parent window? The web page is writen by jsp file.

    I am not sure of your question. Are you wanting to have 2 Session objects (one for the parent window and another for the child)?
    A session is usually created once per client and is stored on the server the session id is carried around in a cookie or a URL rewrite so that everytime the user submits a page you will be able to store/access information.
    // this will create a new session object if one doesn't already exist.
    HttpServletRequest.getSession( true );
    Hope this helps

Maybe you are looking for

  • Is there a limit to the number of mail boxes in mail?

    I cannot set up a new mailbox under the mail box menu within Mail. All I get is a "boing.

  • My MacBook pro is running very slow and unresponsive.

    My MacBook pro is running very slow and unresponsive. I have mid 2010 model running on lion. Past few days it looks very unresponsive. Tried to reinstall lion as clean copy. Still no luck. Any help on this is much appreciated ! My model has 4 gb ram.

  • A challenging question on audio streaming

    I'm very curious at this point, if it's possible to directly stream a local mp3 file to an audience using Flash Player & Flash Media Server (through the browser). Thinking at a higher level, this should be possible ---- so if it can make a live strea

  • Why can't I select shuffle slide order in my settings?

    Why can't I select shuffle slide order in my settings. . . I see it there as an option, but it won't let me choose it.  I don't want to manually shuffle 329 slides!

  • Help With Cannon LIDE 600F Scanning

    Aperture 3 (trial version) will not launch CanoScan software. When Import button is selected my Canon LIDE 600F scanner is recognized by Aperture 3 and is highlighted in the Import window, but will not launch the scanner software when selected. I hav