Running SAP on our Rigs all around the world

hi
Anyboddy know the best way of running SAP anywhere in the world offshore.  To my knowledge "satelitte" must be the only way and I hope some out there have some experience with such solution. Responstime etc.etc.
Thanks

hi and thanks
Some of our rigs are located in remote areas where we do not have internet or other network, but we must probably use satellite.

Similar Messages

  • Join the conversation. Share tips and solutions with fellow Apple product users from all around the world. So why does nobody reply to most of peoples questions.

    Hi all,
    I see that a lot of questions go unanswered in this forum, 143 views  one person had but not a single bit of help, màny others with the same response.  Is there a secret to this?

    No secret. We are just other users that answer questions to the best of our ability. A question with 143 views and no replies may have been poorly worded, or about a topic with which no one was familiar, or was simply not viewed by the right person.

  • IPhone: Viewing AppStore reviews from all around the world !

    Hello all,
    Maybe everyone here knows this already, but "moopf", developer of "Hiqup" posted a great and simple tool here :
    http://www.moopf.com/appstorereviews/
    It works wonders...

    Thanks for the link - I've been hoping someone would do something like this. Really useful!

  • Can you use Apple TV all around the world

    if I buy an Apple TV in Canada can I use it in Europe or Australia as well?

    Welcome to the Apple Community.
    If I understand correctly you want to use both the Apple TV's with one TV.
    There wouldn't be a problem with that, they will each need there own network connection and should be connected to different AV inputs on the TV so that you can switch between each Apple TV as a source with your TV remote.
    If you don't have two HDMI ports on the TV, the Apple TV 1 will connect by component cables, if this isn't possible you would need to get yourself an HDMI switch.

  • Debugging: Run-Time Check Failure #2 - Stack around the variable 'LoggerThread' was corrupted.

    I am getting:
    Run-Time Check Failure #2 - Stack around the variable 'LoggerThread' was corrupted.
    I have searched as much as I can for a description of how to diagnose, but I have not found anything. I don't know how to determine the specific address that is being corrupted. If I knew that, then I could of course set a breakpoint on the condition of that changing.
    I have found many answers about other instances of this error, but nothing that descibes how to diagnose this problem. All other problems were simple enough that the problem could be determined by looking at the code. I have looked at my code extensively and I don't see a problem. One of the previous answers I have found is Error: Stack corruption around the variable 'tm' but the current version of the program uses only default alignment.
    This particular problem is a symptom of a problem that has had various other symptoms, most of which would be more difficult to diagnose. Therefore the problem is probably more subtle than most. I initially encountered the problem in a DLL project, but I wrote a console program to use and test the relevant code. It is the console version that I am debugging.

     Sam Hobbs wrote:
     Holger Grund wrote:
    Hey, these data breakpoints are really not that hard to use ;-)
    Actually they are useless for me when I use my own system, which is only 350 MHz. On that system, even very simple programs run noticeably slow and any meaningful debugging is impossible. The problem I am encountering I am developing and debugging using a fast system, so the performance is not likely to be a probem, but that has been a problem for me in the past.
    You probably haven't set the breakpoints in the correct way (again you should calculate the address yourself and leave the context empty so that the hardware debug breakpoint registers can be used).
     Sam Hobbs wrote:
    One of us does not understand. First, I must correct what I said before; the stack is used in reverse of what I was thinking. I knew that but I forgot. In other words, for each item local appearing in a function, the addresses decrease. The processor's stack pointer register is decreased for each item put into it, which makes sense, because then the processor knows there is a problem when the register gets to zero or less.
    Yes, I certainly understand that the error message is referring to memory before and after LoggerThread.
    There is an important difference between stack memory before a function's allocations and after.
    So for example if we have:
    Code Snippet
    void Level3(int a) {
     char Local[4];
    std::cout << "In Level3 Local is at " << &Local << '\n';
    void Level2(int a) {
     char Local[4];
    std::cout << "In Level2 Local is at " << &Local << '\n';
    Level3(3);
    void Level1(int a) {
     char Local[4];
    std::cout << "In Level1 Local is at " << &Local << '\n';
    Level2(2);
    int main(int argc, char* argv[]) {
     (void)argc, argv;
     char Local[4]="321";
     unsigned *pStack;
    _asm {mov pStack, esp}
    std::cout << "The stack is at " << pStack << '\n';
    std::cout << "In main Local is at " << &Local << '\n';
    Level1(1);
    return 0;
    Then the ouput I get is:
    The stack is at 0012FF1C
    In main Local is at 0012FF6C
    In Level1 Local is at 0012FF0C
    In Level2 Local is at 0012FEB0
    In Level3 Local is at 0012FE54
    Note that the addresses decrease. If I create a breakpoint using "{main,,} *(Local-256)" for 256 elements, then that breakpoint breaks constantly due to normal use of the stack. That makes debugging more difficult; are you aware of that problem?
    Unsurprisingly the debugger will watch for modifications of 256 bytes if you tell it to do so. But I don't see why you would want to do it? It is obvious that this extends into callee stack space. There are only two bytes that you should be interested in: the one before the clobbered local and the one after. Of course, during its lifetime its allocated address will never change. And in debug stack frames its memory location is never shared with any other code. Any modification to it indicates a programming error.
    Also, do note that scoped data breakpoints have had some performance problems. Again, if you care about performance calculate the address manually and set a data breakpoint without a C++ scope and make sure you don't exceed the number of available hardware watchpoint registers (IIRC there are 4 HW breakpoint registers which can watch 1,2 or 4 bytes at a given (aligned?) address). With HW watchpoints you shouldn't see any performance degradation.
    -hg

  • How do I open the photoshop window with the tools all around the screen?

    How do I open the photoshop window with the tools all around the screen?

    Try This:
    Hope this helps!
    Julia

  • There is a tiny gap all around the side of my ipod between front aluminium panel and stainless back. Is it normal?

    I just bought an Ipod classic and noticed that there is a tiny gap all around the side of ipod between front aluminium panel and stainless back.
    Is it normal?
    I am just concerned because when I was given the box at the Futureshop, the box had a big dent on the side.
    (as if the box was dropped from 2-3 feet high atleast)
    I was wondering the dent would've done something to make that gap on my ipod.
    I am thinking to return it if it is defective
    Any advice?
    Thank you

    Return it, there should be no gap, for creeepy crawlies to go in and make nest and poop on your iPod circuit.

  • Run-Time Check Failure #2 - Stack around the variable was corrupted.

     I had checked on net as well as on social msdn site for this kind of error. Usually error is due to writing out of index. I tried to figure out same mistake in below mentioned code but I failed to do so. I am using Visual Studio 2010 for compilation
    on Windows 7 (64 bit) machine. I am getting following error "Run-Time Check Failure #2 - Stack around the variable 'lcPacketPrefix' was corrupted."
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #define TRUE 1
    #define FALSE 0
    #define BYTE unsigned char
    typedef struct {
    int i;
    double e;
    long t;
    char ar[45];
    }Sample;
    bool getMCXBuffPrefix(char * lpSource,char* Destination, int piSourceLen)
    char lcPacketLen[10];
    char lcPacketPrefix[5];
    try
    memset(lcPacketLen,'0',sizeof(lcPacketLen));
    memset(lcPacketPrefix,'0',sizeof(lcPacketPrefix));
    _itoa(piSourceLen,lcPacketLen,10);
    strcpy_s(lcPacketPrefix+(sizeof(lcPacketPrefix)-strlen(lcPacketLen)),sizeof(lcPacketPrefix),lcPacketLen);
    //To Prefix Length in send Packet
    memcpy(Destination,lcPacketPrefix,5);
    memcpy(Destination+5,(char*)lpSource,piSourceLen);
    catch(...)
    printf("In Catch: While Prefixing MCX Buffer.\n");
    return FALSE;
    return TRUE;
    int main(int argc, char *argv[])
    BYTE* lcCompData = (BYTE*) malloc (1024);
    BYTE* gpcSendSource = (BYTE*) malloc (1024);
    Sample sample_t;
    memset((BYTE*)gpcSendSource,'0',1024);
    memset(&sample_t, '\0', sizeof(Sample));
    memcpy(gpcSendSource, &sample_t, sizeof(Sample));
    bool lbPrefixed = getMCXBuffPrefix((char*)gpcSendSource,(char*)lcCompData,sizeof(Sample));
    return 0;
    Little guidance will be helpful.

     I had checked on net as well as on social msdn site for this kind of error. Usually error is due to writing out of index.
    As it is in your code.
           strcpy_s(lcPacketPrefix+(sizeof(lcPacketPrefix)-strlen(lcPacketLen)),sizeof(lcPacketPrefix),lcPacketLen);
    You're saying that the size of the buffer is greater than it is
    because you're offsetting the start pointer.
    If you'd more correctly written the code like this:
      size_t offset = (sizeof(lcPacketPrefix) - strlen(lcPacketLen));
    strcpy_s(lcPacketPrefix+offset,sizeof(lcPacketPrefix)-offset,lcPacketLen);
    You'd have got a run-time error in the debug version of your code.
    However that's not what you want. Try something like this instead:
      size_t offset = (sizeof(lcPacketPrefix) - strlen(lcPacketLen));
      strncpy(lcPacketPrefix + offset, lcPacketLen, strlen(lcPacketLen) );
    But most importantly, understand what you'd done wrong and learn from
    it.
    Dave

  • Weird shapes all around the picture shown on Photoshop CS4 !

    Original Picture :
    Picture opened up in photoshop
    May i know what problem is this?
    1) I have the latest updated S3 graphic card.
    2) I'm using the 30 days trial version.
    3)I'm using window Vista.
    Thanks,
    Zainuu.

    Zainuu wrote:
    i have been wondering is my graphic card hardware faulty? if it is, that's an answer why there are weird shapes all around the picture.
    It looks like it!   
    Unless someone else comes up with an idea.

  • Since upgrading the IOS 8 on my IPad 2 I can longer get a full screen on my TV when connected with an HDMI cable. anything I should change in my settings? Right now my iPad is mirrored on the TV with a black box all around the edge

    Since upgrading the IOS 8 on my IPad 2 I can longer get a full screen on my TV when connected with an HDMI cable. anything I should change in my settings? Right now my iPad is mirrored on the TV with a black box all around the edge

    I have reached the same conclusion in the mean time. I have done a bit of investgation in to other grahics cards and am seeing some that show SPDIF connections from the card to the mother board. I was not familar with SPDIF but it did a little bit of sluething. It is of course a digitally enconded voice. I am guessing that in that case the mother board ( assuming it supports this hardware option) would use this output and be able to translate that digital audio to its other audio outputs. That is a lot of guessing of course. I think my "solution" might  be a whole new desktop - a rather drastic course of action! I was in the proceess of getting ready to upgrade this machine anyway with a new graphics card (which I will now return), go to Win 7, and maybe even a new digital TV reciever,  and I don't want to throw good money after bad anyway.
    Thanks for your comments

  • How can I stop the...(icons?)..and .firefox ball from bouncing all around the Start Page?? It's VERY ANNOYING. frustrated dino

    How can I stop the little pictures (icons??) and the firefox ball from bouncing all around the middle of the start page, which is my home page (?) It's VERY ANNOYING and DISTRACTING!

    If you prefer not to see snippets on the about:home page then you can set the <b>browser.aboutHomeSnippets.updateUrl</b> pref to an empty string on the <b>about:config</b> page.
    Delete the <b>storage\moz-safe-about+home</b> folder in the Firefox profile folder with Firefox closed to remove snippets stored in IndexedDB and make Firefox use a default set.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    You can reset the browser.aboutHomeSnippets.updateUrl pref to the default value to re-enable the snippets.

  • Dark margins all around the laptop screen

    HI, 
    I am pretty confused about the black margins of about 1 inch all around the corners of my hp laptop screen whether it is hardware default or graphics issue.The margin is clearly visible extreme dark even when the laptop is turned off or even during the startup as well. I tried to fix the graphics through different options like updating the graphics driver, scaling to the full screen (No option in the driver), reinstalling the windows and lot more but nothing helped.
    My OS is windows8 64 bit with intel graphics hardware.More information will be provided if required.Plz help me coz i am really faded up.Thank You

    Hi there @praweshpathak 
    Welcome to the HP Support Forums!
    I understand that you are seeing a black border around the display. I am happy to assist.
    Please post the full product number for your notebook. See the following, if you need help in finding that.
    How Do I Find My Model Number or Product Number?
    For now you can try going into the Intel Graphics and Media control panel.
    Select under the Advanced Mode drop down - General Settings
    On the Right side- you should see a drop down for scaling, be sure to select Scale Full Screen
    Then click the apply button.
    Let me know if that helps at all.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • Profiles - I have an iPad 1st gen, run iOS5 have have a Profile set up with Lotus Notes to get work email. I want to get a VPN so i can access blocked sites as I travel around the world. The VPN will install a new profile. Can I have more than one

    I have an iPad 1 and have a profile set up with Lotus Notes for work email.  As I travel around the world I want to install a VPN ( my companies uses a VPN but it is only for work)  so I can visit blocked sites.  When I install the VPN it want to change the profile.  Can I have more than one profile on the iPad or will the VPN overwrite the Lotus Notes profile?
    max

    Yes, you can have more than one profile installed.

  • Which iphone version will work all over the world?

    Hello there.Im from Pakistan.Need some info related to iPhone. Next month i'am going to Canada and planing to buy an iPhone 6 from there.. So im confused which version will work fine here in pakistan.. Kindly guide me about the version which should i buy. I want a version which works all over the world.. Waiting for reply, thankyou!

    An unlocked iPhone should do the trick. You need to get it in an Apple Store. I have traveled around the world with my British unlocked Iphone and I've had no problems switching between sims.
    Good luck! By the way, revise your phone while you are on the shop, you don't want to find any defects when you are back in Pakistan.

  • Buying in different itunes shops (around the world)

    hi there...hope anyone can help me.i live in switzerland,and my account is set for the swiss itunes store..which is just ok, compared to some others around the world. a lot i can't get there, like my u.s. tv shows i love to watch.every time i try to access another countries store, i get denied access. any ideas why? thanks for your help, if anyone reads this.marco

    This question is asked frequently so I'll just quote the most complete answer (courtesy of Dave Sawyer) from the many given:
    In order to buy from any given country's iTunes Music Store, you must have either:
    a) a credit card with a billing address in that country, or
    b) a mailing address in that country and a gift certificate or a prepaid card that was bought in that country.
    If you cannot fulfill one of these two sets of conditions, you will not be able to purchase from any given country's iTMS.
    .......this is due to restrictions placed on Apple by the record companies and other rights holders (who are often completely different from country to country and so all require their own individual negotiations and contracts), not by Apple's choice. And this also applies to all the legal download stores that carry major-label content, not just the iTMS.

Maybe you are looking for

  • JSP Error while accessing application

    Hi , After deploying an application in OC4J 10.1.3.3 , got the following error, 500 Internal Server Error OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debu

  • Format my MacBook. What happens to Mountain Lion?

    Dear all, I think it's time to format my MacBook Pro. It came with OS X Lion, but when Mountain Lion came out I upgraded (and payed for it). Now, if I format my MacBook without DVD, through recovery disk will I be able to get Mountain Lion again? Or

  • How to copy and overwrite existing folder that is created under KM

    I have about 500 store folders created in KM and under each of those folders I have a subfolder called Reports.  I had created a new Reports folder that I want to copy to all of the 500 store folders but, when I tried doing it I see it creates anothe

  • Call a Java Application from MicroFocus COBOL (in UNIX environment)

    Hello, Could you please let me know, how to call a Java application from a MicroFocus COBOL application. If anyone has any code samples, that would be of great help. Thanks in advance, Tijo.

  • My iPod touch 6.1.5 doesn't update to IOS 7. How can I update it?

    About 3 years ago I bought my mother an iPod touch and so she only used it for abouut 2 years and stopped using it. She started using it just a couple months ago, but the device is still in the firmware 6.1.5 and I trieyd updating it to the current v