New eCATT page on SDN / eCATT forum

Hi all,
we have recently created a new SDN page on eCATT: [eCATT: The Extended Computer Aided Test Tool.|eCATT: The Extended Computer Aided Test Tool]
Comments and proposals for improvement are welcome.
Additionally eCATT related questions should in the future be posted in the eCATT forum
[ECATT|ECATT] instead of the SAP GUI forum.
Best regards,
Frank
Edited by: Frank Krause  on Oct 15, 2008 11:50 AM

now i got a few minutes to work on this.
here is a sample code.
in the layout of the flow logic:
i am using button for example,
1) <htmlb:button id = 'CONTINUE'
      text          = "Continue"
      onClick       = "OnInputProcessing(continue)" />
2) create a page attribute called index and also link the 'continue' page to the same page in the BSP
3)in the layout
<% IF INDEX = '1'.(use the dynamic link)
l_url = 'http://www.google.com/'. %>
    <script type="text/javascript">
  <!--
    window.open("<%=l_url%>","ErrorLog","width=400,height=250,left=250,top=200 dependent=yes resizable=yes");
  //-->
</script>
4) in the oninput processing of this page
assign event
  l_event = cl_htmlb_manager=>get_event( runtime->server->request ).
  IF l_event->id = 'CONTINUE'.
  l_index = '1'.
       navigation->set_parameter( name  = 'INDEX'
                             value =  l_index ).
    navigation->NEXT_page( 'CONTINUE' ).
endif.
so when you click on the button you should get the google page in a popup.
this is working for me. let me know if you are still having problms.
regards,
manasa

Similar Messages

  • Welcome to ECATT forum

    When ECATT forum is added to ABAP Development Area. Nice to see the ECATT forum here. I am starting with the First thread of the forum.

    It will be cool to have the specific area. But posters must make sure that they post into specific sub-forum.
    Welcome to this forum.
    Regards,
    Naimesh Patel

  • I have a currently updated Mac that's fast as lightning. I use eBay A LOT. In the newest version when I hit the back button it takes me to the original "new tab" page. Please don't make me use Chrome or Safari, I love you guys

    Hello,
    I have a Mac that's fast as lightning running on the latest version of OS X. I use eBay A LOT. In the newest version of Firefox that I just downloaded when I hit the back button it takes me to the original "new tab" page. Please don't make me use Chrome or Safari, I love you guys

    Thank you for your kind words on the Tablet, as this is the only product mentioned that is supported on this forum, The forums here are for Home Electronics and Computers, and do not reach the Sony smart phone community.
    The Sony smart phone Support Forum is the place for Sony (formerly Sony Ericsson) users from around the world to get help and help others:
    your very in depth suggestions and comments would best be heard at the following forum that is dedicated exclusively to the Sony smart phone community.
    http://talk.sonyericsson.com/community/support

  • Creating new JSF2 pages from a running Servlet (3.0) or JSF2 page?

    I'm new to JEE6 web apps with JSF 2.x frontends (GlassFish 3), and I still wasn't able to find a solution for this dynamic JSF 2.x problem:
    *From inside a running JSF 2.x web app (Servlet 3.0), which possibilities (if any) do I have to dynamically add generated JSF pages (whole new .xhtml files) to specific folders of the (exploded) document root, so that these pages can be dispatched to the client like any traditional, statically-deployed one?*
    Background: An app for "promoting" authors/editors (content providers) which has these few main requirements:
    <ol>
    <li>New providers will register under <tt>www.acme.com/app/register.xhtml</tt>.</li>
    <li>The system will grant each provider "sub-domain" associated with web space under
    <tt>www.acme.com/app/<b>providerX</b></tt> where providerX is an arbitrary sub-domain name chosen by the provider during the registration.</li>
    <li>Each provider will initially have some pre-defined pages in their document context root, e.g.
    <tt>www.acme.com/app/providerX/index.xhtml</tt>, <tt>about-me.xhtml</tt>, <tt>contact.xhtml</tt>, etc.</li>
    <li>Each provider will have an administration console for managing 2 tasks:
    <ul>
    <li type="a"><tt>www.acme.com/app/providerX/admin/page-manager.xhtml</tt> </li>
    <li type="a"><tt>www.acme.com/app/providerX/admin/customer-manager.xhtml</tt></li>
    </ul>
    to specify new pages with offers, publish these pages in their document context root, e.g. <tt>www.acme.com/app/<b>providerX</b>/<b>my-services</b>.xhtml</tt> (customized page name), and
    to manage their readers/customers, respectively.
    </li>
    <li>Thus, each providerX will also have a pre-deployed customer registration page running, which creates standard customer accounts. E.g.:
    <ul>
    <li type="disc"><tt>www.acme.com/app/providerX/customers/registration.xhtml</tt></li>
    <li type="disc"><tt>www.acme.com/app/providerX/customers/login.xhtml</tt></li>
    <li type="disc"><tt>www.acme.com/app/providerX/customers/customer-account-dashboard.xhtml</tt></li>
    </ul>
    </li></ol>
    Please note: I know that for such kind of systems a CMS would be more suitable, but is such a system -- here aiming at only basic functionality -- also realizable in pure JEE 6 technologies, i.e. w/o CMS???
    <b>The unclear main aspect is stated in my initial question above. Basically, I hope to get these clarifications:</b>
    <ol>
    <li><b>Which app architecture designs can I use to deploy new generated JSF pages or servlets from within a running JSF page or servlet???</b></li>
    <li><b>Supposing that all relevant page description data provided by a provider is stored in a db:
    Where can I "cache" the new .xhtml pages generated from these data on-the-fly when (a) an exploded WAR, and (b) a packaged WAR is running???</b>
    The pages shall be "hooked" to the scope (doc root) of the respective provider and dispatches by the <tt>FacesServlet</tt> as such.</li>
    </ol>
    Due to the crucial importance in a current project, I'd really appreciate any constructive help very much.
    Natalia.

    Natalia F. wrote:
    Determining you as one of the experts in this forum, please, could I ask you how you'd solve this kind of web apps in JSF2 (one of the requirements stated at the beginning of this thread):I'm certainly an expert at having an opinion about everything.
    >
    Having a "page-manager.xhtml" JSF2 UI at "/page-manager" context that lets registered member X define a website (=a set of .jsf/.xhtml pages) in a new context "/websiteX" (where "websiteX" is freely chosen and associated with dedicated webspace to store the pages in the filesystem):
    How to store these dynamically created website pages from within the PageManagerServlet?
    <ol><li type="a">Could I create a new exploded WAR structure in the filesystem (or elsewhere) when a new context is defined, and then store new .jsf/.xhtml files therein when a new page is defined, all this with usual file operations? -- Would this be enough, or...</li>
    <li type="a">...after storing a new page, would I need to explicitly tell the container to deploy the page (or re-deploy the WAR(?)) so that I can instantly test/run the page when it is new/modified, or will it be compiled automatically when pointing a browser to it???
    I guess both is possible, but for performance reasons, a pre-compile would be better. How can I achieve this?</li>
    </ol>
    Thank you a million for your help, Natalia.I only see mention of xhtml files - that is the easy part. But XHTML files don't actually do anything at all. What about classes like JSF managed beans? jar libraries? database connections and ORM/JPA support which also adds the complexity of having to deal with all the configuration descriptor files? Even if you can automatically deploy all that, replacing existing classes and reloading them is a whole different matter.
    My "expert" opinion: this cannot be done with JSF. In fact the only Java web framework which I can think of that has any chance of making something like this possible is Play framework. I'd really take the road that EJP took: make the content dynamic, not the webapp.

  • Add a new wiki page

    hi to all
    i want to share my new knowledge about to view a pdf inside firefox, so the right idea is to create a new archwiki page. unfortunately i have no time to create and correct its (i'm not english), so i post here , hoping that someone can create it
    this is a draft:
    title: Mozplugger
    if you want to use evince to open a pdf/ps or any other document supported by evince, inside firefox, and not to open a new window, this is possible and you just follow this simple instructions:
    - install mozplugger (in this moment is in AUR)
    - delete ~/.mozilla/firefox/*.default/pluginreg.dat (as mentioned after mozplugger installation)
    - edit /etc/mozplugger: find the line containing "pdf" word, after "GV()" edit evince line as below:
    #repeat noisy fill exits: evince "$file"
    repeat noisy swallow(evince) fill: evince "$file"
    - finally close (if not yet) and reopen firefox (now you can see a new plugin called mozplugger)
    - try to open a pdf sample
    * old forum instructin deprecated "http://ubuntuforums.org/showthread.php?t=25685"
    Last edited by nTia89 (2011-01-07 13:48:07)

    this looks a good idea!
    i've added it in that page
    and added an entry in https://wiki.archlinux.org/index.php/Browser_Plugins
    both need to review
    Last edited by nTia89 (2011-01-07 15:49:47)

  • Changing background colour for a new Workspace page

    Hi everybody,
    can anybody help me?
    I want to create a new Workspace Page. When i create a new page in the workspace, the colour is white. How can i change the background colour?
    Thanks for any suggestion!
    Eddy

    Eddy,
    This forum is for workspace manager - a database product that has no UI itself. I'm not sure what product you are using, but it's not WM.
    Bryan

  • How to translate my new OA Pages in different language.

    Hi All,
    I have developed new OA Page in English Lang. Now I want to let it work in multiple language. I have come to know about 2 utilities provided by Oracle: XLIFF Extractor and XLIFF Importer. But i have found that these utilities are for personalizations only.
    Kindly give me guidance to make my OA Page work for multi-language.
    If someone is having some document about this, please share this with me either at forum or [email protected]
    Thanks,
    Sumit

    Sumit,
    I don't think its any different. You would need to use these tools only.
    You would need to use the "xliffextract" utility to generate an XLIFF document for your custom page.
    This XLIFF document (containing the translatable attributes and their en-US
    translations) need to be converted into additional XLIFF documents (one per language translation that you require). Once these documents are created (remember that the xml should have the corresponding language specified) , you can import them into the MDS repository using the "xliffimport" utility, and saved in a separate location.
    For more information, please take a look at the "Help Topics" in JDeveloper. If you search for "XLIFF" you will find topics on "Using the XLIFF Extractor" and "Using the XLIFF Importer".

  • How to manually change the thumbnail images of the new tab page (without using addons)?

    I wanted to customize the images displayed on the thumbnails on the New Tab Page. I tried using the addon "New Tab Tools" to do so and it worked, for a while. Now a bug seems to have affected it (it is not displaying any thumbnails, so I uninstalled it). So I want to try another approach. I want to MANUALLY change the images for each of the thumbnail on the new tab page (of course, the thumbnails are 'pinned').
    (I read some other articles related to thumbnails, specifically about DELETING them, and it asked me to open the Firefox Profile Folder, and in there, delete the thumbnails folder. I thought I could simply change the images stored in it instead of deleting them, but there is NO thumbnails folder in the Firefox profile folder (I accessed the profile folder thru the troubleshooting information section in the help menu). So where is this thumbnails folder after all?)
    So, how can I do it?
    Thanks in advance.

    I note you are using Icedragon 26. Not sure I have come across that before.
    I guess they provide their own support, as they are apparently offering something based on an outdated and unsupported Firefox26. I see their forum has threads on Icedragon if you search for them, but at a quick glance I see no specific topic
    *https://forums.comodo.com <br /> & https://forums.comodo.com/index.php?action=search2
    You could always install an official and up to date Firefox 29
    * See [[How to download and install Firefox on Windows]]
    * Download from http://www.mozilla.org/en-US/firefox/all/
    You may note the New Tabs page may be subject to a few changes over coming versions of Firefox it is apparently being improved. Firefox itself as Fx29 is also slightly changed from Fx26
    * [[Learn more about the design of the new Firefox]]

  • How to make the new tab page show up in private browsing by default

    When a private browsing window opens, I would like to have the new tab page (or any home page) show on startup. By default, about:privatebrowsing (without preceding dialog) will show. <b>Always.</b>

    Note Bugzilla Bug requests are not to be used a discussion forum*. You are however encouraged to vote on something if it is a fix, or an enhancement you would like.
    If you do need to discuss the subject of a bug take the discussion elsewhere and I doubt anyone would mind you adding a link in the bug to the related discussion.
    * https://bugzilla.mozilla.org/page.cgi?id=etiquette.html
    *https://bugzilla.mozilla.org/page.cgi?id=voting.html
    Note it may also be worth adding a comment in Feedback as another method of registering your interest. From a supported version of Firefox use
    * <s>https://bugzilla.mozilla.org/page.cgi?id=voting.html</s>
    *'''edit ''' ''use https://input.mozilla.org/en-US/feedback''
    *Unless you happen to be reporter, person assigned to the bug, or able to add patches and are offering yourself to do the work.

  • Custom new tab page, tiles and redundant searchbar

    I have used the custom new tab add-on for a long time. 4x4 tiles, no search bar, custom background... It was great. A million times better than the standard crap they give you. Since the last update I'm stuck with the standard new-tab page, which I hate. Plus, Google is the ONLY standard search machine available. Yes, you can use others, but not as standard. Bye bye privacy.
    Let me sum up the only 2 reasons I used firefox in the first place:
    1. The ability to NOT use big brother's services (Google)
    2. The CUSTOMIZABLE new-tab page (4x4 tiles instead of 4x2). WITHOUT a redundant search bar.
    With last update you have disabled these both. No 4x4 tiles, redundant search bar (there are now 3 search bars instead of 2. 3 times better searching eh?)... I'm done with Firefox. I don't even know why I bothered to take the time to write this.
    Mozilla you suck. Every time there's good community driven thing going on, you idiots ruin it.
    ''Edited by a moderator due to language. See the [http://support.mozilla.com/kb/Forum+and+chat+rules+and+guidelines Rules & Guidelines] .''

    These can get you started;
    http://kb.mozillazine.org/About:config
    http://kb.mozillazine.org/About:config_entries

  • New Tab Page Hijacked IE11

    Hello!
    I have been searching forever and I cannot find an answer. My New Tab page for IE 11 has been hijacked by www-search.info. I have ran malwarebytes etc. I've cleaned the machine thoroughly: it's just this one thing. I cannot find out how to fix it. There
    has GOT to be a regedit option. I have gone all through it but I just can't find it.
    Can someone please help me. What should I be looking for? Where in regedit do I change the new tab page settings? I know about New Tab settings in internet options, I don't need that. This is something on the base/behind the scenes malware issue. I have
    introductory level IT troubleshooting skills, in case that helps.
    ACER Laptop
    Win 8.1
    IE11

    http://answers.microsoft.com/en-us/ie/forum/ie8-windows_other/when-opening-a-new-tabmy-abouttabs-page-has-been/375045b6-d59c-44a4-a3c1-87b8fa472f83
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • I am trying to get a new home page and this bear shear wont go away help please

    hello,
    I'm trying to make a new home page and get it back to google and this one page wont go way its called bear shear i have no idea how it got on here but it keeps going back to that being the home page help please

    See:
    * http://www.ehow.com/how_6609141_remove-bearshare-spyware.html
    * http://www.fanhow.com/answers/question-77222-how-to-delete-bearshare-search-from-firefox
    You can look for a "Mediabar" program under "Control Panel > Programs and features"
    See also this forum thread about BearShare:
    * [/questions/792580]

  • New Home Page (with EMail Previews)

    Two of our email subaccounts are not getting the new email home page, where the preview of your emails are listed. In the last few days once in every few days the new email homepage appears.The next time we go to the page it is the old home page with previews of the email. The only individual who always gets the new home page with the preview of their email is the main account holder. Can someone explain why this is happening?
    Holly
    Solved!
    Go to Solution.

    Have you tried to see if the same thing happens when you access the accounts from another computer?
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • SDN Type Forum Collaboration wanted on EP

    Experts
    The internal  Requirement is to confiugre " SDN Type Forum" in our internal Portal. 
    We heard by some experts, it can be done with all features as it is like SDN.
    May i request you to help with some links / some docs / & which patch levels is minimum for this configuraton\
    Rgds

    Hello Srinivas,
    This is Possible but you have deployee Two Forum SCA file into your Portal.After that you need Created Iview and into that Page you can categories Accordingly.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20562528-a246-2b10-2988-f9b554a925ce
    Thanks
    Chittya Bej

  • How do i add a site to New Tab page without making it a bookmark first?

    ''locking a a duplicate of https://support.mozilla.org/en-US/questions/1039823''
    presently, to add to my New Tab page:
    0 = bookmark the page
    1 = then drag fhe star to an empty rectangle on the New Tab page
    i want just to drag or type it in without having to first bookmark it. please advise.

    You can drag an history item as well (e.g. from the history sidebar), so yuo do not need to bookmark a website.

Maybe you are looking for