How can I select next page when on shopping website

When I'm on a shopping website, like BLoomingdales for example, I can't select next page or page 2.  It only stays on the 1st page.  Why is this?

Hi,
if you have 3 pages in a smartform do this
DATA:L_NAME(17)   TYPE C VALUE '%HEADER-FIRSTPAGE'.
FIELD-SYMBOLS: <FIELD>.
if plant = '1000'. A page -> B page
  ASSIGN (L_NAME) TO <FIELD>.
  IF SY-SUBRC EQ 0.
    <FIELD> = 'PAGEA'.
  ENDIF.
ENDIF.
else               A page -> C page
  ASSIGN (L_NAME) TO <FIELD>.
  IF SY-SUBRC EQ 0.
    <FIELD> = 'PAGEC'.
  ENDIF.
ENDIF.
Thanks,
Nethaji.
Edited by: Nethaji babu on Apr 30, 2008 8:47 AM

Similar Messages

  • After I have converted PDF file to Word how can I select certain pages to save them as a new document? Thank you

    After I have converted PDF file to Word how can I select certain pages to save them as a new document? Thank you

    You've said you have a Word file and want to use some pages in the file to create a new document.
    Use Word to establish a new Word file that has the desired pages for the original Word file.
    You now have a "new document" of the desired pages.
    With Acrobat Standard or Pro installed you can create a "new document" PDF.
    If you do not have Acrobat Standard or Pro or a subscription to an online Adobe service that can create PDF from MS Word you can use the Microsoft process to create PDF that comes with MS Word.
    Be well...

  • New owner here.  How can I select specific pages of a document found on line and print just those pages.  What I see is the ability to select only 1 page at a time and print that one selected page only.   Thanks much.

    New owner here.  I see that in printing I can select one page and print same.  How do I select numerous pages from a document and print only those selected pages? I would not think that I can only select one page at a time.  Thanks much

    Just change the range as illustrated below.  If you don't see that, click the Show Details button.

  • How can I select which page to display based upon a log-in?

    I have created a page where the user will enter one of several codes.  I wanted to use the login function and validate the code against a table that I have pre-loaded with these codes.  The code entered would control which page was displayed to the user. 
    (I have identified a community of potential clients, and this group is broken down into 10 unique sub-groups.  Each person receives a mail that includes one of 10 unique 'codes', which identify the sub-group.  When the recipient calls up my website and enters the code (as a user ID), this will determine which of the 10 pages is displayed.  If someone randomly enters (or mis-keys) a value into the promo field a default error page (page #11) would display.)
    Is this possible using the log-in function.  Now that I'm looking at the function, it appears that any successful log-in will be directed to the same page.  If I can't use the log-in function, how can I accomplish this.  In essence, I am looking for the successful codes to act as an "if . . .then . . .else . . " type of logic.  Or, a successful hit on one of records in my table is akin to making a menu selection (that is not available in any other fashion). 
    Any help on this would be greatly appreciated. 
    BTW - kudos to David Powers and Charles Nadeau for the great tutorial on Setting up a PHP development environment for Dreamweaver!

    Thanks so much for the reply. I chose to go with the array and added the following code (my code is in red) :
       if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl']; 
    $redirects = array('snj830' => 'promosnj830.php', 'snj141' => 'promosnj141.php', ‘snj416’ => ‘promosnj416’);
        header("Location: " . $redirects[$_SESSION[‘MM_Username]] );
      else {
        header("Location: ". $MM_redirectLoginFailed ); 
    The re-direct on a failed logon is working successfully, but if I enter one of my 3 valid codes, the following screen is displayed:
    Index of /boundsauctions.com/promopages
    Name Last modified Size Description
         Parent Directory             -       
         _notes/      15-Oct-2010 17:40      -       
         errorpage.php      13-Oct-2010 17:24      1.9K       
         promo _login.php      15-Oct-2010 17:40      5.6K       
         promosnj141.php      15-Oct-2010 16:00      6.2K       
         promosnj416.php      15-Oct-2010 15:54      4.6K       
         promosnj830.php      15-Oct-2010 15:55      4.6K       
    As you can see, the last three pages here are the ones that I am trying to display.  Can you tell what I'm doing wrong?

  • How can I forward next page, and then pop-up a download dialog box.

    My require is that pop-up a download dialog box after forwarding next page.
    I have read the coding in the processFormRequest of current page like below,
    but I find out that it only can pop-up a download dialog box,
    however, it can't forward the next page.
    pageContext.setForwardURL("OA.jsp?page=/oracle/apps/xxfm/fm002/webui/TEST001PG",
    null,
    OAWebBeanConstants.KEEP_NO_DISPLAY_MENU_CONTEXT,
    null,
    null,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
    OAException.INFORMATION);
    //set default file name: [YYYYMMDDhhmm_IN.EXCEL,FILE_NAME.csv]
    StringBuffer strFileName
    = new StringBuffer().append((pageContext.getCurrentDBDate().toString().substring(0, 16))
    .replaceAll("-","").replaceAll(" ","").replaceAll(":",""))
    .append("_IN.").append(strExcelFileName).append(".csv");
    //give csv file content
    BlobDomain csvFileBlob = (BlobDomain)am.invokeMethod("createCsvFile");
    //setenv
    HttpServletResponse response
    = (HttpServletResponse)pageContext.getRenderingContext().getServletResponse();
    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment; filename="+strFileName.toString());
    System.out.println("fileName : "+strFileName.toString());
    //download
    InputStream fileIn = csvFileBlob.getBinaryStream();
    long fileLen = csvFileBlob.getBufferSize();
    int readBytes = 0;
    int totalRead = 0;
    byte blockgbyte[] = new byte[65000];
    response.setContentType("application/x-msdownload");
    response.setContentLength((int)fileLen);
    while((long)totalRead < fileLen)
    readBytes = fileIn.read(blockgbyte, 0, 65000);
    totalRead += readBytes;
    response.getOutputStream().write(blockgbyte, 0, readBytes);
    fileIn.close();
    response.getOutputStream().flush();
    I don't know what's matter in the app, can you tell me how to deal with it.
    Thanks in advance.

    Hi there,
    I have a similar requirement. User will download search results in a CSV file after which I want either the page to be refreshed or to be able to goto a Confirmation page or navigate to another page.
    I tried using setForwardURL / forwardImmediately / redirectImmediately methods as well as redirectToDialogPage. Since we use pageContext.setDocumentRendered(false); and response.getOutputStream().flush(); methods, the HttpResponse is already committed.
    Hence, the page does not redirect to another page as Request is processed and Response is complete. In case of methods like setForwardURL A JSP forward redirects the same request object to the target URL.
    Can anyone help here to achieve the expected requirement?
    Thanks.

  • How can I change next track when I using head phones ? I mean with out device help with headphone

    HiAm using iphone4 with ios5 I have simple question how can I change to next song when I am using head phone, it's very difficult to open my phone and change to next track Is there any way to do this

    See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security
    Or Here  >  Apple  Support  iTunes Store  Contact

  • How can i reset another page when call it from a page

    I use JDeveloper 10.3 to develop my application. And I want to reset value of UI component (inputtex, selectInputDate . . .) of a page when i call it from another page.
    Thanks!

    You can execute a method in "backing bean/Application module" on page load which can set the value of the UI components. Following link can help you to
    [http://kohlivikram.blogspot.com/2008/10/call-method-on-page-load-in-adf.html|http://kohlivikram.blogspot.com/2008/10/call-method-on-page-load-in-adf.html] .
    ~Vikram

  • How can I select multiple people when filtering media using Photoshop Premier Elements Organizer 11?

    I noticed that in using Photoshop Premier Elements Organizer V10, I was able to select more than a single person when filtering media. For example, I may want to find all of my photos that have me with my cousin, John as well as my friend Norm in them.   With Photoshop Priemier Elements Organizer 11, I can only filter on a single person or filter on a group of individuals.  Using a group does not always match the specific filter that I am looking for.  Was this an oversight in the new version?
    (By the way, this feature is also missing with "Places" as well...  For example, I would like to be able to select Austria, Switzerland, and Germany media when adding an Event for my "Trip to the Alps".  I can only select one country at a time.)
    Any suggestions?  Can we get this feature back?

    Have you opened up the Filter menu, which opens along the top of the Organizer's Media Browser?
    With it, you simply check the filters you want to apply, and the Media Browser will show you all media clips to which those filters applies.

  • How can I centre the page when publishing?

    Hello,
    How can I avoid a big gap on top during preview the site? Or how can I centre the entire page to the screen precisely?
    Thanks.
    Alex

    Make sure your Top padding is set to '0' in your site properties dialogue box. (File/Site Properties)
    Also make sure the check mark is on to Center your site horizontally.

  • How can I select alternative BOM when creating subcontract purchase order?

    In our business, a finish good material always has different production versions at the same time. Each of production versions has its own alternative BOM. When I create a planned order, I can select wanted BOM through specifying production version.
    But, when I creating subcontract purchase order, there is no field for me to specify the production version or which alternative BOM I prefer. In this case, I need to create a planned order at first. And then, convert the planned order to purchase. Only through this way, I can create a subcontract purchase order with my wanted BOM.
    So, I wonder if there is any way to select alternative BOM directly when creating subcontract purchase order.
    Thanks a lot!
    Regards
    Robbie

    Dear Mr. MM
    can you give me additional information about your solution?
    BUT I would not expect the sytem to offer you during the Purchasing cycle the different Production Versions as it is not meant to be. I remember having the same requirement some time ago and we solved it the way I described above, additionally we created a Pop up window with a user exit during the PO creation which offered the different production versions and if the one linked with the quota arrangement, the standard PV, is used in the PO.
    We also have the same problem, we activated businessfunction SCM_GEN_02 so that it is possible to have several production versions for one supplier, but unfortunatly it is not possible to change the production version in the purchase order. (business function does not seem to be very integrated)
    So i would be very interested in your solution because acually it seems that i have to modify the sap standard.
    Thank you and best regards
    Lisa

  • How can configure the default page when the application startup?

    I would like, when i published my application in weblogic, write the context root and automatically start my first page.
    For examples, I have 3 pages in ADF project. The names are: a.jspx, b.jspx and c.jspx
    When I publish I see in Jdeveloper:
    The following URL context root(s) were defined and can be used as a starting point to test your application:
    [02:15:30 PM] http://localhost:7101/myapplication-ViewController-context-root
    but when I write this link in my browser I get an error (404 not found).
    I try http://localhost:7101/myapplication-ViewController-context-root/faces/ but I get the same error.
    I would like that a.jspx runs automatically when I write the context, is possible?
    In adfc-config.xml I just use control-flow-role and in "From Activity ID" i wrote * and in control-flow-case in "To Activity ID" I wrote a.jspx but I think this need when I come to other pages where i do not use outcome and is not correct for the first time when I run the application, is it?.
    Thanks

    I put the view component and in its property Page I wrote /a.jspx but nothing.
    When I deploy in and type http://localhost:7101/myapplication-ViewController-context-root/faces/ the application server change to http://localhost:7101/myapplication-ViewController-context-root/faces/?...
    I don't know where is the mistake.

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • How can i select the next column instead of next row when press enter key

    I need to know how can i select the next column instead of next row when i press the enter key.By default ,when i press enter key the next row is selected and the column remain unchanged but I wants opposite that is the row should remain unchanged but column index will changed.
    Thanks to all.

    Well, the right arrow key will already move you to the next column, so the easiest way to do this is to modify the InputMap to have the Enter key invoke the same Action as the right arrow key.
    You can search the forum for my "Table Actions" (without the space) example that will show you how to do this.

  • How can I get the page to curl when turning to the next page in iBooks author?

    How can I get the page to curl when turning to the next page in iBooks author?

    I don't think you can. If you need that effect, you should use ePub (that can be authored via Pages) not iBA.
    I hope Apple give us the option in the future though.

  • TS2128 How can I select multiple SEPARATE objects/words in Pages (Mavericks version)?

    When I type a document and decide to italicise a couple of separate words throughout the document how can I select them at once? Pressing Shift selects all the words between the first and the second, that does not help me. In Pages 09 it worked with either cmd or ctrl or alt (I don't remember which, but one of them worked) but I tried all of them now and nothing happens.
    Can anyone help me?
    Thank you!

    You can't do it anymore. Pages 5 is a stripped application and has lost about 90 feature that Pages 09 has. Read more about it in other threads in this forum.

Maybe you are looking for

  • ITunes won't open or uninstall

    Yesterday everything was fine. Today iTunes will not open or uninstall. Also, none of my video players will work (Nero or Windows Media player). Help!? I don't know what to do! Thanks

  • Is this true about PS2 devices?

    I just got a new computer. I don't know a lot about hardware, etc. The Mainboard I got is an MSI K8N Neo4 S 939 My PS2 devices are not working and the guy who sold me the computer told me that by unplugging the mouse and keyboard while the system was

  • Job Request - read Z* Jobs and Chains from CPS

    Dear Ladies and Gentlemen, We are establishing Job Scheduling Management, using Job Requests and Job Documentation. In addition CPS (oem) is to be used. If we place a Detailed Job Request, or create a Job Documentation, then we can only select the pr

  • How to uninstall Hyper R2 2012 Sever W/O BACKUP

    Okay, I downloaded Hyper-V R2 2012, I thought it was like a software such as VM-Player and VirtualBox. But it wasn't and altered my Operating System completely, and now I'm stuck on logging into Hyper V R2 2012 Server whenever I start it up. In there

  • Help regarding SAML Assertion

    Can any one tell me what SAML assertion is all about?? and I just want to try out sample steps pertaining to SAML assertion in my policy editor. So Can any one of you kindly tell me a simple use case that you have tried out with SAML assertion. In th