Model 2 - ServletRequestWrapper & Forwards

Hello Folks,
My last (none portal) project allow a better separation of business logic and display logic by allowing a HTTP request to be submitted to a servlet and then have the servlet extract the data and forward on to a JSP which built the view.
I would like to be able to do the same with my Portlets so a request will come into my servlet and I can forward to the appropriate JSP (Edit,Full Screen, ...)
The API for the Servlet20RequestWrapper has :
"Wraps the servlet Request so we can "forward" requests to a servlet/jsp and respond to that "forwarded" servlet with the proper paths "
Does anyone have an example of this ?
Is there any more documentation ?
A normal forward to required the RequestDispatcher but the Portal API sits about this.
Cheers
JonK

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by David Knox ([email protected]):
// in the appropriate method, just forward to your JSP
public void render(PortletRenderRequest pr) throws PortletException, AccessControlException {
switch (pr.getMode()) {
case PortletRenderer.MODE_SHOW:
renderShow(pr);
break;
case PortletRenderer.MODE_EDIT:
renderEdit(pr);
break;
case PortletRenderer.MODE_EDIT_DEFAULTS:
break; // nothing
default:
throw new PortletException(" Invalid render mode "
+ pr.getMode());
}<HR></BLOCKQUOTE>
I am not sure you have understood what I am trying to do, The render method sits in the servlet you write for the Portlet. The renderShow is another method within the servlet which contains the code to generate HTML, you have given no example of how to forward to a JSP. ie pass control to JSP compiled servlet to perform HTML generation.
I understand that you can determine the Page Mode, and that in your servlet you would write a method for each mode. The bit I am try to find out is how to do the "forward" under the control of the Portal. For a forward I mean pass control from my portlet servlet that processes the request to another portlet servlet or JSP that generates the HTML.
I need to know if the Portlet API has a method for one of it's classes to perform the forward.
In the old days :
In My Servlet
HttpServletRequest request;
HttpServletResponse response
String url = "/jsp/myPage.jsp";
RequestDispatcher rd = request.getRequestDispatcher(url);
rd.forward(request,response);
Within the servlet I would do my processing and then pass control to another servlet which is generated from the JSP page. That way the JSP page could stick to creating the HTML and the Servlet would stick to extracting data and updating the model.
The Portal works by having a central Servlet or Portal Servlet which controls all other servlets or JSP generated servlets. Instead of writing a servlet for a whole page we write a servlet for part of the page. The Portal Servlet can then call the sub-servlets in parallel to build the page. If I call the Request Dispatcher's forward routine I will replace the Portal Servlet with my own servlet thus taking out the PORTAL.
The Serlvet technology was replaced by JSP as they felt that embedding HTML within Java Code lead to un-maintainable Java. Instead you embed java in HTML, but embedding logic within in the JSP lead to un-maintainable HTML(JSP). Then came Tag Libraries, this allows you to extend the tags within HTML with your own tags to take the complex logic out of the JSP and back into the java making JSP look more like HTML and allowing designers to do their thing. This is known as Model 2.
Model 1 is where you just have a JSP file with all the logic required to process a request and generate the HTML.
The whole thing will be replaced by XML / XSL but currently it is too slow.
I expect I might as well stick to servlets as you don't have to generate a full HTML page but a component within a page, which means the HTML embedded within the servlet never be too complicated.

Similar Messages

  • SQL Developer Data Modeler - View Engineering

    I start with a Logical Model and forward engineer to a Relational Model.
    I am using Name Templates and a glossary for all names in my model which enables translations from Logical names to Physical abbreviated names with _ separators.
    When a View is created in a Logical Model and then forward engineered to a Relational Model, the resulting graphical image displays a translated physical name as the View name, however, the columns (or attributes) are displayed the same as the Logical versions (Full names with space separators).
    Is this a design decision? I'm expecting to see the physical column names on the display.
    The DDL of the generated view is correct with properly translated column names.
    Also, In cases where I have multiple (alias) views of the same physical table, I would love the ability to apply a prefix in front of each column name during view engineering to give unique column names for each view representation. This is a recommended technique in dimensional modeling when using multiple view aliases so that reporting tools see distinct column names for each appropriate context.
    Thanks,
    Dan

    Hi Dan,
    Also, In cases where I have multiple (alias) views of the same physical table, I would love the ability to apply a prefix in front of each column name during view engineering to give unique column names for each view representation. This is a recommended technique in >dimensional modeling when using multiple view aliases so that reporting tools see distinct column names for each appropriate context.I logged ER for that. You can define alias for each column and that will solve the problem. Unfortunately it'll take more time.
    however, the columns (or attributes) are displayed the same as the Logical versions (Full names with space separators)that's fixed.
    Philip

  • Splitting huge Schema/E-R Model into Modular Schema/Multiple E-R Models

    Hi,
    Currently we have huge DB Schema (1500+ Tables) using 1 single OWNER ID.
    Based on Domain Partitioning,we intend to create 6 new OWNER IDs (based on individual Module/Domain)
    and re-assign the appropriate Tables into the respective Domain.
    basically we expect 1500 Tables under one OWNER ID would now be split
    into 250 Tables per OWNER ID with a total of 6 new OWNER IDs being created.
    We also will need to create 6 new E-R Models ,1 per OWNER ID
    Trying to find out what could be the best possible way to do the "splitting" of a
    linear huge Data Model, into 6 modular E-R models. Going forward, we would like
    to maintain individual Models on per Domain basis rather than the existing monolithic Model.
    Any suggestions or tips on achieving this using SQL Developer Data Modeler would be greatly appreciated.
    What is the best and clean way of achieving this
    Thanks
    Auro

    Hi Auro,
    first you should be aware that you can have foreign keys created only between tables in one model.
    If this is not restriction for you then you can proceed:
    1) create one subview per future model and put in each subview tables that will constitute the model
    2) each model in separate design
    - use "Export>To Data modeler Design" - select subview that you want to export and only objects belonging to that subview will be exported
    Philip

  • Forwarded GET requests causing problems

    I am using a feature Servlet to accept GET requests from List JSP to display an Add, Edit or Delete JSP. The Servlet is getting Model information from a repository and fowarding the request to the appropriate JSP based on Query String parameter: /MyServlet?Operation=add
    This all works fine except that the parms stay in the URL even after the Add JSP has Posted back to the Servlet, which in turn, the Servlet posts the Model information and forwards the request back to the List JSP. Back on the List JSP, the original GET URL is still there; if I press F5 a duplicate record is added.
    Is there a standard way to avoid this trap?

    BluesAl wrote:
    Do you mean that the Servlet executs a GET to the List JSP, instead of a forward? Is there any sample code anywhere for that?
    Thanks.yes, on google. "servlet redirect example". First hit:
    [http://www.java-tips.org/java-ee-tips/java-servlet/how-to-redirect-a-request-using-servlet.html|http://www.java-tips.org/java-ee-tips/java-servlet/how-to-redirect-a-request-using-servlet.html]

  • Is the only way to upgrade PS from CS6 to CC is to buy creative cloud?

    Can you no longer purchase the CC upgrade outright for photoshop? Is the only way now to get creative cloud and pay monthly?

    CC has never been available for outright purchase.  CS6 was the last one offered on that model.  Going forward, all future releases will be offered only to Creative Cloud members.
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    Nancy O.

  • NavigationCacheMode is readonly problem ...

    Hello everyone. First post - please be gentle ;-)
    I have a problem with the 'back' browsing for a particular page and I want to turn off cacheing.
    I'm trying to do it like this:
    public partial class MainPage : PhoneApplicationPage
    // Constructor
    public MainPage()
    InitializeComponent();
    NavigationCacheMode = System.Windows.Navigation.NavigationCacheMode.Disabled;
    Blah ...
    Unfortunately the property is internal to Assembly Microsoft.Phone.dll, v2.0.50727; so I can't set it. The declaration is this: 
    public NavigationCacheMode NavigationCacheMode { get; internal
    set; }
    So the compiler tells me:
    "Error
    1 Property or indexer 'System.Windows.Controls.Page.NavigationCacheMode' cannot be assigned to -- it is read only"
    I tried setting it in xaml too in case there was some magic involved but to no avail.
    So can anyone tell me how to prevent the NavigationService from cacheing my page? I'd expected at least some sort of Reload method but can't find one.
    Any help much appreciated.
    Keith

    Hi Jonathan, thanks for the reply. I found a workaround. (By improving my UI design!)
    Your link was useful but for another reason. :-)
    I have a page that is databound to an object in a hierarchy and shows the object's children. You can click on a child and the child becomes the datacontext for the next page ... Essentially I'm navigating down a tree-structure and relying on the 'back'
    button to get me back up.
    The problem was that some object properties have a one-way databinding to the view, so the view can modify it's content without affecting the underlying view-model. Navigating forwards is obviously fine but I found that navigating back up displays cached
    copies of the 'parent' page that may have user-input in some controls rather than 'clean' values from the view-model.
    If anyone is interested I think I saw this behaviour because when I returned to the cached page, I was setting the datacontext to the same value it already had, and the event pattern for this scenario says to do nothing. I expect that if I'd actually changed
    the view-model that a cached page was bound to then the databindings on the cached page would receive 'data changed' notifications and therefore all would be well. (Even though the page is cached and therefore not visible).
    Still, it seems a bit odd that we are forced to cache entire pages rather than just the page urls - the most obvious problems being (As Pieter discovered) what if pages consume a lot of memory?
    Thanks again,
    Keith

  • Sever Session Cache, Read-Only

    Since the objects in the server cache are shared, we should not modify the objects in cache. We are thinking of enforcing this in a programmatic way.
    Does TopLink have a plan to enhance the current caching capability by allowing user to config the cache to be read-only, read-write, ... thus updates to the read-only cached objects (and possibly their associations) are not allowed? Or is this just too difficult for TopLink to implement?
    Thanks a lot for your information.
    Haiwei

    Doug,
    Please excuse my ignorance. But how does setting the flag on the postBuild() descrirptor method prevent anybody from modifying the server session object ?
    I presume I have a class that is generic - PeristentObject that has a filed isEditable and I set this flag to false when the object is being built. But how can that help me from not modifying the cached object as I like ? I am free to invoke the setters am I not ?
    Regards,
    Aswin.
    Haiwei,
    TopLink has made some great enhancements to caching
    and cache coordination in 10.1.3. Take a look at the
    10.1.3 preview 3 for more details.
    The Server cache's objects are to be considered
    read-only. The UnitOfWork provides working copes
    where changes are made and these are merged into the
    shared cache on write. They are just read only to
    prevent direct modification outside of a
    transactional context.
    I have worked with customers who maintained a flag on
    their objects to know if setter should be permitted.
    This was set to false (disallowing access) using the
    postBuild descriptor event and then set to true
    during the postClone method to allow modifications in
    the UOW working copies. Its a little intrusive but
    more portable then injecting a bunch of proprietary
    TopLink code into your model.
    Going forward we are looking at some simplification
    solutions using AOP to eliminate the visibility of
    the UnitOfWork and working copies so all of this is
    automated behind the scenes. We hope to also preview
    this when its available.
    Doug

  • Migrating from SRM 7.0 Classic to ECS - Seeking some clarifications

    Hello Friends,
    We are now planning to upgrade from SRM 5.0 to SRM 7.0 and then migrated to Classic to ECS. We have the below challenging points which I need clarification,
    1) How do we go about the Taxation and Pricing Part, If we migrate from Classic to ECS
    2) Presently we have R/3 contracts in place and the same is linked to MDM catalogue and now the client wants the contracts to 
        be in SRM. In that case how do we go about the strategy.
    3) Asset Procurement: Now all WBS element are converting into assets by running the Z-Program in between PR and PO in R/3
       system. But when we migrate to ECS PO gets created in SRM, so how do we go about the asset procurement in ECS scenario.
    4) Confirmation and Invoice transferring to R/3 through Idoc distribution Model. Going forward in SRM 7.0 the same will continue or
        do we go with SOA. Please confirm.
    Further to this can you please let me know, what are all the major challenges for upgrading the system to SRM 7.0 and migration from Classic to ECS.
    I would appreciate for you quick response. Points will be awarded for appropriate answers.
    Thanks and Regards,
    Ram.

    Ramesh,
    Few inputs for this project
    1. You need to clearly seperate out the upgrate (5.0 to 7.0) and Migration (Classic to ECS) in your project planning to derisk the project i.e. you should have seperate testing cycle time/ efforts for  upgrade and then on migration so that functional/ teachnical team working out in the project can clearly identifies issues between upgrade and migration seperately and work on them.
    2. You have to work with business to make a decision on conversion of old classic PO's (incomplete GR/IR still required) and PO in process (SC created under approval in SRM). I strongly suggest you should not involve into conversion and keep it out of this project.
    3. SRM do have option to take care of your tax configuration. BTW most of the company use external software to calculate tax amount.
    4. You need to build workflow for PO in SRM since now PO will be created in SRM.
    5. You need to create smartform / output determination in SRM for the PO. Please note SAP has provided some consulting notes if you continue to handle document transmission in backend with ECS.
    6. Yes a distribution model needs to be setup for confirmation and Invoice if you are not doing it now in classic scenario.
    Asset procurement solution you mentioned looks specific to your Org business needs, you need to explore to fit into new environment.
    All the best
    Thanks, Sachin
    Edited by: sachindubey on Apr 10, 2010 12:13 PM

  • VPN doesn't work anymore after 10.6.2 update

    Hello to all,
    I've a MacPro with 10.6 SnowLeopard server, and until yesterday all was great with 10.6.1.
    After update to 10.6.2 plus some airport update, VPN dooesn't work.
    Could someone help me?
    I use the firewall on Airport extreme (the latest model) and automatically forward VPn setting from SLServer Firewall.
    Why it don't go anymore?
    thank you to all for help
    Marco
    Italy

    so, I'm trying from home to use VPN:
    - if I try from usual user, doesn't work
    - if I try from Server Administrator credentials (user + password) it works
    Of course I need to use VPN from "normal" client users, not with Administrator credentials
    Another strange issue is: in VPN netwotk configaration (client, preferences, network) if I put name and password about one user the 2 field become locked and I must erase that VPN connection and create it again.
    If I put the administrator name+psw, the 2 field remaining accesible and unlocked.
    I think in Apple they made a very bad job with 10.6.2 and VPN!
    has someone any suggestion?
    Marco

  • How long does it take for your iPad to restart? Mine takes 7.5 mins...

    Hello, new to the forum. Hoping I can get some good advice here.
    The first thing I thought I'd find out is if everyone else's iPads take as long to restart as mine. Mine shows the small silver Apple logo for 7 and a half minutes before I can use it. Is this normal?
    Mine is the 64GB wifi + 3G model.
    Looking forward to your replies!

    Hiya, thanks for your reply. I did the reset all as you suggested and that took only 20 seconds or so. Took me a while to get all my apps back on the pages I had had them, but no problem... The kind of reset I am talking about is when you hold down both the exterior buttons until the little silver apple logo appears. That apple logo sits there for over 7 mins before I can use the iPad. Its the same with turning it off, when you swipe the thingy when prompted. My iPad has always done this, even since before the recent software update. I will try doing the reset through iTunes that you mention though. I like my iPad so much that I rarely even bother to turn on my main computer. I've got so many cool games and music making apps on the iPad, the computer rarely gets used now!

  • Nokia 3120 Classic - Going Online

    I own a Nokia 3120 Classic and have now figured out how to use it as a modem to connect my computer to the internet, for the purpose of downloading emails. This is very useful when I am on the move and don't have easy internet connection. 
    But I want to know if I can reverse the process when I am at home. What I would like to do is to connect the phone to the internet by connecting to the computer and using the computer's internet connection.
    The computer (XP Service Pack 3), connects to a wi-fi router and I connect the phone to the computer with USB data cable.
    I am aware that it is not possible to connect to the wi-fi router directly with this phone model. 
    Looking forward to some advice. 

    Hi! i am not here to give you a solution. However, i want to know the way to use my 3120 classic as modem to Use Internet in my PC through my Phone. You might be aware that there is some problem saying that MODEM NOT FOUND. I have treid to find out the way but to no avail.
         If you could mail me at [email protected] , the way to use 3120 Classic as modem, i'll be grateful to you.
    Thanking,
    Manishakar
    India

  • Win a Far Cry 4 game code!

    What do you think playing games on Cherry mechanical keyboard on a gaming notebook?
    Share your ideas & Guess which MSI gaming notebook will feature mechanical keyboard.
    We will randomly choose 5 lucky winners leaving comments on this thread and give 5 Far Cary 4 game codes by 15th Dec., 2014.
    Here are the lucky winners, congratulations!!
    Jpowers99
    Sushrut
    popoks
    LordRahl72
    sou11ripper
    We will send Far Cry 4 game code with private message to every lucky winner.
    Thank you for joining our activity. Hope you all had good time!!!

    I'm pretty sure almost every gamer over here support this great idea, no doubt, but I see a lil bit(or maybe not so small) problem here. It's about design. Even if MSI gaming notebooks are positioning for gaming, they're still remain stylish and well-designed. I'm talking about keys height - maybe there can be found an engeneering solution or some sort of modification to switches - to make them a lil bit undersized in height. Maybe MSI should try several modifications of keboards on their next models and look forward for gamers feedback on each kb modification.
    Anyway it's just a question of time - in the near future all MSI gaming notebooks will be complete with mechanical switches.

  • Is the N900 going to have various keyboard layouts...

    Hi on one of the forums which i moderate, many people have been asking about the keyboard layouts of the Nokia N900.
    Currenlty the pictures and info we found suggests there is only going to be the normal "qwerty" layout.
    But what about france with their "azerty"? Or Hungary with "qwertz" and áéőú letters?
    As a person, who uses mobile internet a lot on i'd find these layouts rather useful and i'm sure, there are many others like me out there.
    So is nokia planning to release the phone in the countries mentioned above with their own layouts? Or are we all going to get the normal "qwety" model?
    Looking forward to hearing back from Nokia.
    Thanks for reading. 

    I believe it does.. I saw a post on talk.maemo.org (official Maemo forum) of a french user who was ordering from the UK to get a phone without a AZERTY french keyboard because he wanted a QWERTY one..
    There are a number of country varients, though apparently only the layout differs..
    Some suck..
    I'm not sure which, but some languages make use of extra keys for extra symbols so "up" and "down" are now FN+left and FN+Right!! 
    No dedicated up and down buttons.. 
    I think I'm going to be sick.. I really feel for them.. and I'm quiet happy to be a qwerty ascii user

  • Make me aware of what may come please

    From the "extreme" newbie to be......
    After uncountable issues with Windows, not to mention the forcing of Vista down my throat on new PC purchases, I am considering going Mac (haven't used one since 1996). If anyone can offer advice on what I will need to be aware of during this purchase, please let me know. I have yet to decide on a model, but look forward to your assistances.
    Primary use is house/home - internet, email, chat lines (web based), newsgroups. I of course have numerous Windows programs (PhotoShop, CorelDraw, Quicken, Cakewalk (Midi Sequencing software), that are used regularly, as well as a few extraneous Windows based programs. Would it be prudent for me to get a partitioning package and install Windows as well (the one that doesn't require a reboot), or more feasible to get the Apple upgrades to the above software? If a partition is the way to go - which package it the best/easiest?
    Also, regarding hardware..... are monitors Mac specific? Can I use my current (17" LCD) monitor? Will my printer work (with correct driver)? Are external hard-drives compatible between Mac/XP? Is a .jpg a .jpg, a .tiff, a .tiff, etc. Does the email package also have a newsgroup (reader) package (like Outlook Exp)? If I partition the drive for using two operating systems (Mac and XPHomeSP2), will I need two different Antivirus packages - one on each partition?
    Is a Mac "plug and play" like windows professed to be when new hardware is installed (ie., video and/or digital camera, printer, or any other peripherals)? Do peripherals need to be "Mac-specific", or just the drivers that accompany them (are physical connections any different, or is a serial port still the same thing... are cables the same between systems - USB, Speaker, Monitor, etc.)?
    And last but not least, how "big" of a Mac should I be looking at to be able to do what I need it to do, without always having to upgrade it? - Not interested in a notebook, but not sure if the iMac will be enough to do the graphic/audio portion of my use.
    I know it will be a big purchase, so I want to make sure it's the right thing to do.
    Thanks a whoooole bunch in advance.

    First, welcome! I made a similar switch a few years ago, but it helps to take things somewhat gradually, so your decision to keep msWindows around for a while. As already suggested, VMware Fusion is very good for that for running msWindows in a virtual machine; there is a small performance penalty but the big convenience usually overweighs it. Over some time, you might want to get the OS X native programs.
    You might want to consider reading a book on Macs - the "The Missing Manual" series by David Pogue are usually good (the Leopard version should be out in a few days).
    Monitors are not particularly Mac specific, but with the Mac, you can buy a DVI to VGA converter and use any VGA monitor with the 15 pin connector. Your printer might work, you'd have to do a search with the make/model to verify it - or check the manufacturer's site. External hard drives work on Macs fine, but you should be aware of some partitioning issues -- if you want to use it between Mac and msWindows worlds on separate machines, you might want to partition and format them the right way. Generally, MBR partition table and FAT32 partition is safe for read/write from both PCs and Macs. There are other partition tables (APM, the older scheme and GUID/GPT, the newer one) and File systems (FAT32, NTFS, HFS+) you might want to read up on if you are using the same external disk between Macs and PCs on physically different machines. If you are running msWindows under VMWARE, no need to worry about that. For backup, I'd recommend at least one external firewire drive that is GUID partitioned (perhaps two partitions, one for bootable disk image and one for Time Machine). Firewire drives are generally faster than the USB drives on the Macs (esp the Firewire 800 drives matched to the firewire 800 port).
    There are several newsgroup readers and eail packages for the Mac. I use Thunderbird, but Mail.app that comes with OS X is pretty good. You can search out USENET Newsgroup readers and pick one that suits your use - some might cost a few dollars.
    As for peripherals, I'd suggest checking the Mac compatibilty before buying them, so you won't have to do any work-arounds. But you should have no problems as there is a wide choice. Cabling is generally same as USB, Speaker, etc. are standard consumer items. As for monitors, DVI port is standard on most Macs, but as mentioned previously, you can buy a converter with the Mac to use VGA monitors.
    All the picture file formats will be handled just fine on the Mac and application software. There is no change from a user perspective, so .jpg, .tiff, etc. need no changes. Antivirus item's already covered in the earlier post - but if you REALLY want an antivirus checker, you can look at ClamAV, but that is pretty low on the priority list for a new user (it is mostly so you don't pass on PC viruses to other PC users in email and such) -- there aren't any Mac viruses in the wild ...
    If you are doing heavy duty audio/video work, it seems the Mac Pro will be the right one. Since you are coming from the PC world, I'd suggest getting a multi-button mouse with the Mac - in most cases, they'll just work without special drivers (unless you have the mice with several programmable buttons - in that case, check out USB overdrive and/or Steermouse).
    Give yourself some time to read and use and become familiar with the Mac and OS X and don't rush things. You will enjoy the experience. The sense of mental well being alone was worth the switch!

  • I have the new Air Port Extreeme model A1521 and I need to set up port forwarding for HTTP. HTTP is not on the list in the set up. Does anyone know if any of those choices work for HTTP?

    I am on a Windows 7 Ultimate PC and right now there is no Airport utility for setting up the new Apple Extreme so you have to do it on your iPad or iPhone. Does anyone know how to set up port forwarding for HTTP to get to DVR security cameras? There is nothing in the list that indicates HTTP port forwarding.

    Thanks for your reply Tesserax as I did figure this out on my own. It took a bit because all of the options are not clear what they are for like the previous Airport Extreme and Apple does not support or guarantee that port forwarding will work for you application nor did any of the Apple support persons I spoke too have any knowledge for this feature. You also have to fill in the public if you are viewing through someone else's Wi-Fi or on your cell phone carrier network. This new Airport Extreme is a bit different since you cannot use the Airport utility on a PC like the older model and if anyone else is reading this they should be aware that if you do not have an Apple computer, iPhone or iPad and I'm not sure if some of the other network enabled devices like iPod Touch that you must use that can do it, there is no Airport utility for the PC and you would be wasting your money or have to take it back and get another brand wireless router to use if you do not own any of the above mentioned Apple products.

Maybe you are looking for

  • Can I apply a gift card to a child account?

    Is there a way I can apply a gift card to my daughter's Apple account? I set up her account via Family Sharing on our iPad. If I add the gift card to her account, will it use the credit if she tries to buy something, or will it use the credit card ti

  • Error of Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment

    HI My previous asset error was cleared by assigning non-tax  While  using the option of Specify Chart-of-Dep.-Dependent Screen Layout/Acct Assignment the following error is coming ..... Steps are attached (File and URL) http://rapidshare.com/files/13

  • The iPhone cannot be synced. iTunes crashing.

    There seems to be a whole "bunch of stuff" going on with my iMac 21" i3, and I just wanted to check in to see if anyone had experienced anything similar or had any advice. First, when syncing my iPhone 4 last week I got this message: "The iPhone cann

  • My Keyboard doesn't work in Adobe Reader (10.1.1)

    My keyboard no longer works inside adobe reader. It works fine everywhere else, but when in Reader no keyboard keys work (no shortcut keys, no pgup/down, no up/down, no ctrl+c to copy, can't type in a number into navigation bar, can't type in serach

  • Enhance Standard DataSource

    Hi all, Can i add some more selection criteria to a standard source. Im using  0FI_GL_4 and would like to add GL Account HKONT to my selection when extracting data (InfoPackage). Also can i add an additional field BUZID to this datasource? How? How c