FPM / Method cl_wd_runtime_services= attach_file_to_response is not working

Hi all,
i am trying to open some files like XLS or PPT in Portal by calling the method cl_wd_runtime_services=>attach_file_to_response .
but i am getting an error, i know where is the problem, in the Portal after clicking on Bottun , a new window appears and it has the URL and no standard function (like BACK or NEXT .. its a popup with URL) this window contains my files, and after clicking on a file, another popup (for XLS or PPT or Word) will appear (OPEN   SAVE   CANCEL). and in this case,  a MS-Office Products Popup appears only in some cases like on the server or MS Outlook.. but nor on a Popup that has been programmed with FPM.
so i am looking now for another method or a solution that can resolve my problem
Best Regards

FPM does absolutely support Internet Explorer, but you are hitting a specific security "feature" of Internet Explorer
>there is alawys a small popup that appears on the top of the page saying that the links is blocked, and after ( allow it) clicking >on it , then the popup of the MS-Office schould appear.
>the first popup who is blocking the Links, after clicking on it, am getting an error
The Popup is coming from Internet Explorer, not Web Dynpro.  It is a security feature to add another user confirmation before allowing file downloads.  Unfortuntely after confirming, IE doesn't just continue with the download. Instead it reloads the page and resends the last request object to the server.  This confuses Web Dynpro and causes you to have to refresh the application before it functions properly. 
You should add your WDA website host to your trusted sites configuration in IE and make sure that IE doesn't prompt for trusted sites.  This is all configuration done on the client side in IE.

Similar Messages

  • My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    My ipod cclassic 80gb is hang after trying dat press and hold method then also its not working please tell me solution

    Thanks for your response and good luck wishes, I suspect I will need them!
    In principle, I agree re: the manufacturer's warranty. However, I am pretty upset that this is now my second iPod to develop a critical fault within weeks of the warranty expiring, and frankly, it is not unreasonable to expect a state-of-the-art $500 electronic device to last well beyond one year of life.
    I agree talking to Apple is not likely to do me any good (the clue is in how impossible they make it to talk to them in the first place) - but that is not necessarily OK. I expect I will have to pay money to get the battery replaced - again, not OK (full stop - but especially given the cost of the device and the money I have spent with Apple). Yes, the batteries have a limited lifespan, but it should last longer than this (and surely, I should notice a gradual decline in its functionality, not an instant stop).
    I will try Deggie's suggestion (see my reply post), but probably won't hold my breath (think I have already done this). I probably will have to get the new battery - and probably under my own steam. It is a principle at stake and I feel I should be able to let Apple know how I'm feeling - and am frustrated that they make this virtually impossible. It sends the very clear message that they are not interested in listening to their customers.

  • HT4623 I have tried to update my iPhone using the iTunes method but it will not work. The message "The iTunes update server could not be contacted. Please check your internet connection or try again later," appears. What do I do? The Internet is working f

    I have tried to update my iPhone using the iTunes method but it will not work. The message "The iTunes update server could not be contacted. Please check your internet connection or try again later," appears. What do I do? The Internet is working fine.

    Have you tried the following troubleshooting document?
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    If you end up using the If the iTunes Store opens successfully section of the document, and the "Automatically detect settings" checkbox is already checked, try unchecking and rechecking it and clicking OK.

  • Implementing UIApplicationDelegate protocol methods in NSObject class not working.

    Hi Everyone,
    I am new bee in iphone developement. I want to implement UIApplicationDelegate protocol methods in one of my NSObject class, how can i implement that help me please.
    I have mentioned the sample code what acutal i want to impelment.
    .h file
    @interface SmaplClass : NSObject <UIApplicationDelegate>
    .m file
    - (void)applicationWillResignActive:(UIApplication *)application
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
    -(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
    - (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
    Want to implement the above methods is NSObject class to be implemented or used, its not working. Help me can do it.
    Please help me
    Thanks,

    I complete the above discussion with saying that it is better to implement the notification handling methods in your app delegate. If there are good reasons to not to do so, you have to implement the methods in another class, instantiate the class, and call the methods from the actual UIApplicationDelegate protocol methods in the AppDelegate object. This way you can remove the actual notification handling code from AppDelegate class.
    For example, suppose you implemented the methods in the class called Test. This is a sample code in the AppDelegate class:
    @implementation AppDelegate
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
          Test *t = [[Test alloc] init];
         [t application: application didReceiveRemoteNotification: userInfo];
    @end
    Or you can create an association relationship between the AppDelegate and Test, so you do not have to create a new Test instance in each of the remote notification handling methods:
    @interface AppDelegate {
         Test *test;
    @end
    @implementation AppDelegate
    + (id)init {
         if (self = [super init]) {
              test = [[Test alloc] init];
         return self;
    - (void)dealloc {
         [test release];
         [super dealloc];
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
         // No need to create a Test instance. You just forward the call from AppDelegate instance to test      // instance
         [test application: application didReceiveRemoteNotification: userInfo];
    @end

  • JDeveloper 10g, ADF Faces & BC: setVar method on CoreTable is not working

    Hi all,
    I am in the process of creating a custom tag library for our organization. I seem to be having problems with the setVar method on the CoreTable component. I created a simple reproducible example using the scott/tiger schema. Within my tabletest.jsp, I have a af:table which was created via dragging from the datacontrol pallet. Next, I add my custom tag and set the same value attribute. When I run the page, #{row.Deptno} does not evaluate to anything! However, I know that the value is set properly due to the same number of rows appearing within my custom table tag.
    Suggestions are appreciated.
    thanks,
    Wes
    Here is the screen shot of my example:
    http://www.flickr.com/photos/54652784@N03/5062690216
    jsp code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://acme.customtag" prefix="customtag"%>
    <f:view>
    <afh:html>
    <afh:head title="tabletest">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    </afh:head>
    <afh:body>
    <af:messages/>
    <h:form>
    <af:outputText value="below is the adf table"/>
    <af:table value="#{bindings.ViewObj1.collectionModel}" var="row">
    <af:column sortProperty="Deptno" sortable="false"
    headerText="#{bindings.ViewObj1.labels.Deptno}">
    <af:outputText value="#{row.Deptno}"/>
    </af:column>
    <af:column sortProperty="Dname" sortable="false"
    headerText="#{bindings.ViewObj1.labels.Dname}">
    <af:outputText value="#{row.Dname}"/>
    </af:column>
    </af:table>
    <af:objectSpacer width="10" height="50"/>
    <af:outputText value="Below is the custom table"/>
    </h:form>
    <customtag:customtable value="#{bindings.ViewObj1.collectionModel}"
    disabled="false"/>
    </afh:body>
    </afh:html>
    </f:view>
    CustomTable.java code:
    package customtag;
    import java.io.IOException;
    import javax.faces.application.Application;
    import javax.faces.component.UIComponentBase;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    import oracle.adf.view.faces.component.core.data.CoreColumn;
    import oracle.adf.view.faces.component.core.data.CoreTable;
    import oracle.adf.view.faces.component.core.output.CoreOutputText;
    public class CustomTable extends UIComponentBase {
    public static final String COMPONENT_TYPE = "customtag.customtable";
    public static final String RENDERER_TYPE = null;
    private CoreTable table = new CoreTable();
    public CustomTable() {
    public void encodeChildren(FacesContext context) throws IOException {
    // Encode the top most component
    Application apps = context.getApplication();
    table.setVar("row");
    Object value = getAttributes().get("value");
    CoreColumn column = new CoreColumn();
    CoreOutputText cout = new CoreOutputText();
    if (value != null) {
    table.setValue(value);
    ValueBinding rowValueBinding =
    apps.createValueBinding("#{row.Deptno}");
    Object rowValue = resolveExpression("#{row.Deptno}");
    if (rowValue != null) {
    System.out.println("rowValue is reconized. " + rowValue);
    cout.setValue(rowValue);
    } else if (rowValueBinding.getValue(context) != null) {
    System.out.println("rowValueBinding is reconized." +
    rowValueBinding.getValue(context));
    cout.setValueBinding("Value", rowValueBinding);
    } else {
    System.out.println("row is not reconized.");
    cout.setValue("this is a hard coded row attribute value");
    column.getChildren().add(cout);
    table.getChildren().add(column);
    table.encodeAll(context);
    public static Object resolveExpression(String expression) {
    FacesContext ctx = FacesContext.getCurrentInstance();
    Application app = ctx.getApplication();
    ValueBinding bind = app.createValueBinding(expression);
    return bind.getValue(ctx);
    public boolean getRendersChildren() {
    return true;
    public String getFamily() {
    return COMPONENT_TYPE;
    }

    Hi,
    you don't mention a JDeveloper version. If you are not on a recent version, can you try one. If it reproduces, please provide steps required for a reproducible test case
    Frank

  • Routing Method for Response Groups not Working as Expected

    I have a situation where Response Groups are not routing calls in the order specified in the group settings. Serial is the primary setting used in this situation so the same person is always called first. However, the calls are being routed randomly.
    One Response Group was deleted entirely and recreated which seemed to solve the problem temporarily but the problem returned as soon as the Response Group was modified.
    CU level appears to be July 2013.
    I have not had a chance to dig in and do any logging yet but will soon.  However, if anyone has seen this behavior or has any suggestions any feedback is appreciated.
    Thank you.

    I have some logs now and what I am seeing on a working call (in my lab) is what I would expect.  It tries each person in order top down.  If that person does not answer then a SIP 487 message is returned and it moves on to the next person and sends
    another INVITE, etc. until it gets to the end and does whatever is configured.
    Note: the timeout for trying each group member is 20 seconds.
    What I am seeing from the logs where this issue is occurring is it is trying the first user at the bottom of the list (another in the list before them was available).  It is sending multiple INVITE messages to that person (who I instructed to not answer)
    taking up the whole queue timeout (60 seconds) before trying the next person.  It tries that person for another 20 seconds (which is beyond the queue timeout at this point).  When that group member does not answer and it goes to voicemail
    as configured.
    Even more strangely in a second test it tried that same person at the bottom of the list, tried them twice, moved on to another available user, then back to the first user it tried (the queue timeout should have kicked in by now), then finally went to voicemail.
    Thanks.

  • TS5376 I have been trying to install Itunes for the past 1.5 days without success.  The method outlined here did not work and gave me the same error messages as before  Runtime error R6034 and  also error 7

    I tried the latest Apple fix to resolve the installation issues of iTunes 11.1.4 and had no success at all.  This was the fix that asked you to remove .dll files and place them on the desktop before unistalling and reinstalling iTunes.  I followed the procedure exactly and obtained the same results as before.
    Namely,
    Runtime Error: R6034 -An application has made an attempt to load the C runtime library incorrectly
    iTunes was not installed correctly.  Error 7.
    At this point, after spending 1.5 days attempting to install iTunes I am giving up.  Hopefully, someone will come up with a fix that really works and I will install it then.

    Hi
    I had the same problem on my PC's with Win 7 and Win XP.
    I solved it this way:
    - De-install iTunes, best with a special tool, like, for example "Your Uninstaller" from Ursoft. Any other un-installer will do the job, provided it cleans the registry of traces from iTunes
    - De-install "Apple Mobile Device Support". This seems to be the culprit. It is a sub-program of iTunes. But if you just de-install iTunes this sub-program stays in your PC. If you still have it on your PC and you try to update to 11.1.4, it will cause these problems.
    - De-install also "Apple Application Support", but I am not sure it is really necessary, but de-installing does no harm, since it will be re-installed automatically.
    - De-install also "Apple Software Support", but I am not sure it is really necessary, but de-installing does no harm, since it will be re-installed automatically.
    - Re-start your PC
    - Download the latest version of iTunes from the Apple webpage and install it.
    For me this worked on both of my PC's.
    Regards
    goletto

  • HT2729 i have been trying to copy videos from my pc to ipad but it is not working .. i have tried the "drag and drop method and even add files to library but to no avail please help

    please help me regarding moving videos from pc to ipad .. i have ipad 2 wih ios5 and windows xp.. ihave tried add files to library and drag and drop method but they are not working.. what should i do

    Are you trying to add videos to itunes or to your ipad from itunes.
    Your question is very confusing.

  • Powemanager does not work after update on R61

    Hi. Recently I updated some ThinkVantage packages from Lenovo and realised that I cannot launch powermanager anymore. As I try to dos that Vista informs me that the porgramm hast stopped to work. What is worse, after a while I realized that the same thing happens as I try to launch Access Conntections.
    Has anybody experienced similar issues? And of course, has anybody any ideas how to resolve the problem. I assume that one way to do that would be to fo back to the old versions of the apps, but, alas, I have tried that method and it did not work out. I just messed all ThinkVantage software.
    ThinkPad T500 2242-CTO P8600 / 4GB RAM / WSXGA+ / HDD Fujitsu 7200rpm 1TB / 6 Cell Sony / Windows 8 Pro 64-bit
    ThinkPad Tablet 2
    ThinkPad X61s 7669-3KG Windows 7 Home Premium 32-bit

    Well, I sort of solved my problem by reinstalling the original versions of the apps (Power Manger and Access Connections). Now I have working Power Manager. As for Fingerprint softrware I made the app compatible to XP SP2 and now I can launch it. However, it still throws up some error massages as I try to change some settings.
    Anyway, I found it all a bit strange. I had no such problems some years ago with my previous ThinkPad. Is it all due to Vista or the quality control in Lenovo had deteriorated after all?
    ThinkPad T500 2242-CTO P8600 / 4GB RAM / WSXGA+ / HDD Fujitsu 7200rpm 1TB / 6 Cell Sony / Windows 8 Pro 64-bit
    ThinkPad Tablet 2
    ThinkPad X61s 7669-3KG Windows 7 Home Premium 32-bit

  • AutoSuggestBox.selecteditem is Not Working in Windows Phone8.1

    For AutoSuggestBox Selected item is Enabled in _SuggestionChosen Event But in "getitemselected()" method selected item is not working, in WP8.1
    In XAML File:
    <AutoSuggestBox x:Name="tblkpersonname" Width="380" Margin="0,-7,0,0" ItemsSource="{Binding}" TextChanged="tblkpersonname_TextChanged">
    <AutoSuggestBox.ItemTemplate>
    <DataTemplate>
    <TextBlock Text="{Binding Name}"
    Tag="{Binding PersonID}"/>
    </DataTemplate>
    </AutoSuggestBox.ItemTemplate>
    </AutoSuggestBox>
    In Cs File:
    private void tblkpersonname_SuggestionChosen(AutoSuggestBox sender, AutoSuggestBoxSuggestionChosenEventArgs args)
    System.Diagnostics.Debug.WriteLine("Suggestion chosen : {0}", ((values)args.SelectedItem).Name);
    public void getitemselected()
    //Error in this line when select item from AutoSuggestBox
    if (((values)tblkpersonname.SelectedItem) != null)
    //Some Statements

    Hi chinni987,
    >>selectedItem getting null value when i selected a valu
    Have you handled the
    AutoSuggestBox.SuggestionChosen event? From your code snippets, you should have a custom class named "values", here is my completed sample, it worked well:
    <AutoSuggestBox x:Name="tblkpersonname" Width="380" ItemsSource="{Binding}" SuggestionChosen="tblkpersonname_SuggestionChosen">
    <AutoSuggestBox.ItemTemplate>
    <DataTemplate>
    <TextBlock Text="{Binding Name}"
    Tag="{Binding PersonID}"/>
    </DataTemplate>
    </AutoSuggestBox.ItemTemplate>
    </AutoSuggestBox>
    public sealed partial class MainPage : Page
    List<values> list = new List<values>();
    public MainPage()
    this.InitializeComponent();
    this.NavigationCacheMode = NavigationCacheMode.Required;
    for (int i=0; i<10; i++ )
    list.Add(new values() { Name = "name" + (i + 1).ToString(), PersonID = i + 1 });
    this.DataContext = list;
    protected override void OnNavigatedTo(NavigationEventArgs e)
    values selectedItem = null;
    private void tblkpersonname_SuggestionChosen(AutoSuggestBox sender, AutoSuggestBoxSuggestionChosenEventArgs args)
    System.Diagnostics.Debug.WriteLine("Suggestion chosen : {0}", ((values)args.SelectedItem).Name);
    selectedItem = args.SelectedItem as values;
    public void getitemselected()
    //Error in this line when select item from AutoSuggestBox
    if (selectedItem != null)
    //Some Statements
    public class values
    public string Name { get; set; }
    public int PersonID { get; set; }
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SendAndLoad do not work

    Hi everyone... i've seen this question posted elsewhere over
    internet but never had an answer. Hope here someone can help me and
    not only me.
    I'm trying to develop a simple application using FlashPlayer
    7 on my pocketPC.
    I need to send and retrieve datas from a web server.
    Obviously i'm using LoadVars for such task and i'm using
    SendAndLoad method but, it seem not working on a GPRS connection.
    I've tried everything to make it to work but unsuccesfully
    I'm simply desperate!
    I've seen that LOAD method work but when i try the SEND one
    don't work. Seem like a connection error occured because the
    web-page is not reached and a SUCCESS=false return on my ONLOAD
    function.
    I've tried the same application using my office connection
    instead of a GPRS... i mean to connect my ppc via USB to my pc and
    configuring the ppc for working on a network... and everything work
    fine!
    I've also tried using the XML functions of flash 7 but the
    send operations still not working.
    Why sendAndLoad do not work with a GPRS connection?
    Please help me.
    Thanks.
    P.S. i need to use a POST operation because GET have a limit
    on the size of the datas -_-

    I'm sorry but your post doesn't make much sense in English. You may want to try posting again in your native language.
    Best of luck.

  • FCE4 and OSX 10.5 not working?

    Every time I try to log and transfer from my HG10, FCE4 crashes. I see that others have this working with 10.4 so I assume it's just another case of OSX 10.5 not working properly or are others having no problems?

    Thanks Tom, I appreciate your trying to help but I'm a computer professional and I know that having a Windows server on the same network as my Mac is not going to cause a transcoder process to crash: I've used windows network drives for FCP scratch disks for many years with no problems. In this instance, I am trying the network drive as an alternative to the 'native' method as that's not working for me (i.e. log and transfer from the Canon HG10 HDD).
    The system crashes about 2 seconds after placing the clip in the queue in the log and transfer window, which implies it's the transcoder process that's failing (it's a SIGSEGV always pointing to the same address which means a bad pointer in the code but this may be that it's making bad assumptions about the version of a library it's loaded).
    I believe that preference files can become corrupt and cause badly written code to crash but I've deleted the ones highlighted in the previous post with no success - are there others I should be looking to delete? Is the transcode process actually QT or FCE itself?
    [[ OT: I have had more problems with OSX 10.5.1 than I've ever had with any version of OSX (since 10.0): my wife's MacBook Pro has kernel panicked several times and she only uses iLife. Mine hasn't panicked but it has locked up a couple of times and applications crash randomly (although a lot less on 10.5.1 than 10.5). ]]
    This is really frustrating as I investigated which camera and software to buy very carefully and I see that Apple even recommends the camera I bought (canon HG10) on it's online store when you select to buy FCE4 so it clearly should be working.

  • Ipod not working in car after upgrade

    After an upgrade ipod touch shows unreadable in my volvo s80 2010

    cjwj, downgrading the iOS is not supported by Apple and the method you outlined does not work. When restoring an iPod, iTunes contacts Apple and will only allow restoring using the latest available update file.
    flcolvin7, Contact Volvo and get them to issue a firmware update for the car.

  • I lost the save and quite funtion in FF16.0.1 .about config is not working..

    I have set the function of save and quite in the FF 15.0.1 However, I lost it after upgraded it to 16.0.1 .I try to use about config method .But it's not working..

    Hi,
    it seems I lost my other account or made some other mess.
    anyway, reading this thread I think I can give you better pointers for troubleshooting than on my blog.
    Please run a
    dmsetup ls
    once you're in the installer (thats for me to verify)
    now, next, it seems all that is missing is the multipath config file in the install initrd.
    If the target linux mpath (if it still exists, i don't got time for testing) is selected, then multipathd will be launched - but without a config, the internal defaults will take over, meaning you end up with the user friendly name instead of the WWN.
    Basically you should be able to find the error looking at the kickstart /etc/rc and restarting multipath with new configs over and over.
    Might be fun :)
    It would be helpful if Oracle picked up your fixes even w/o a support contract. :)
    (ranting: It'll be a festival for me when the multipath tools devs finally get around to groking the world of real sans and create a plugin api for enclosure based naming that is just 10% as good as the one in VxVM. WWIDs are a sad joke, they're intended so the OS can identify the disks well so it can present userful names to the user.
    Not to let the user choose between useless udev-names and non-human-readable WWNs. And yeah, I have tried to make udev scripts for enclosure based naming. Didn't go well obviously :)

  • RefreshObject not working

    Good morning. While trying to deal with some cache synchronization issues, I am trying to explore other options to deal with the symptoms.
    I am trying to use the RefreshObject method and it is not working as advertised. In my case I have a root class, "Loan", that has several child objects below it. When I updated values external to Toplink in the "Borrower" child class, and attempt to RefreshObject, it still doesn't reflect the change.
    Using examples from the Toplink documentation, I have even tried the ReadObjectQuery class and forced a read from the database to no avail.
    My only solution to work so far has been to execute RemoveFromIdentityMap on Loan and Borrower and then read the object again. I am not wild about this solution and there are several children classes to Loan and each of them could have several child classes as well. This approach is a manual cascade delete in Toplink cache and just seems to be a bad idea.
    Now, the one thing I need to include on the table is that I am currently testing this functionality in IBM WSAD 5.0.1 as opposed to Websphere itself.
    I am working with Toplink version 9.0.3.5.
    Thanks for your help!
    Chris

    Hi Don
    I was able to get this to work since the last time I posted a message. Did a little digging to see what else had changed and here is what I isolated it down to.
    In the mapping java file generated by Toplink, all the descriptors have been set with the same set of values
    descriptor.useSoftCacheWeakIdentityMap();
    descriptor.setIdentityMapSize(100);
    descriptor.useRemoteSoftCacheWeakIdentityMap();
    descriptor.setRemoteIdentityMapSize(100);
    VersionLockingPolicy lockingPolicy = new VersionLockingPolicy();
    lockingPolicy.setWriteLockFieldName("TABLE_NAME.LAST_UPDATED_VERSION");
    lockingPolicy.storeInObject();
    descriptor.setOptimisticLockingPolicy(lockingPolicy);
    descriptor.getQueryManager().checkCacheForDoesExist();
    During the start up process, another section of code is executed, touching all the descriptors in the session object.
    descriptor.alwaysRefreshCache();
    descriptor.onlyRefreshCacheIfNewerVersion();
    I am having some other caching issues (related to synchronization) and had done some experimenting and had made this change to the last code segment…
    //descriptor.alwaysRefreshCache();
    //descriptor.onlyRefreshCacheIfNewerVersion();
    descriptor.getQueryManager().checkDatabaseForDoesExist();
    descriptor.useWeakIdentityMap();
    descriptor.useRemoteWeakIdentityMap();
    As I said, things are now working properly. I have also noticed with the new configuration that I can make a change to the database via MSAccess connected to DB2 and changes are being seen instantaneously when my application receives that data. For clarification, I can add a new record that maps to child object in a one to many relationship and Toplink reflects the changes before I even invoke the refresh.
    My understanding between the two cache setting (soft vs. weak) is the flexibility in memory usage. Is there more to this? Since this is on a stand alone environment, how will it translate to a large environment with 100 users actively involved.

Maybe you are looking for

  • Auth Error in BW while executing a query with Company hierarchy

    Hi All, I have an issue in BW Reporting auth objects.. Hope to get resolved here. We are using BI 7.0. However We  are still using the Reporting auth objects for fiield level security. We are having a problem while executing a query with company code

  • Airport time capsule losing network connection

    Running a time capsule with airport utility v. 6.3.2 and it is losing wi-fi and ethernet connection daily. I have had the unit for three years or so, and while it used to happen once or twice a year, its happening daily now. Unplugging/replugging get

  • PS CS4 with CR 5.7, Lightroom 2.7, DNG-converter 5.6 all fail to recognize 1000D .cr2

    I , like others have experienced http://forums.adobe.com/message/3706070#3706070,  also can't open Canon 1000D .cr2 raw files even though it's listed as supported in the Camera Raw 5.7 Readme http://www.adobe.com/special/photoshop/camera_raw/Camera_R

  • PCI-MIO-16XE-50 abruptly failed

    My PCI-MIO-16XE-50 can't read any analog inputs (always sees the most negative possible voltage) and can't write any analog outputs (outputs always 0). It was working fine on Friday, and I don't know what happened over the weekend to make it fail--th

  • How can i use numeric counter on a graph

    Hey guys,i need some help. I have 113 inputs and want to put a numeric counter to choose which input i want to see on graph. Can i do it?! Thank you all!!