Grep bombs out with malloc erros

running grep -R mystring * bombs out with:
grep(524) malloc: * mmap(size=1195270144) failed (error code=12)
* error: can't allocate region
* set a breakpoint in mallocerrorbreak to debug
grep: memory exhausted
The system I'm having problems with is a 8 Core Mac Pro running 10.5.1, 9GB RAM, RAID Card with 2 arrays, 1x250GB disk set as a standalone disk (JBOD), 3x500GB disks set as a RAID 5 volume, the OS was an upgrade from 10.4.11, I susspected the 250GB disk maybe dying, so I did a fresh install on the RAID5 volume & copied some data across aswell, but the same thing still happends.
I've also ran the apple hardware test, the system passed both the standard & extended test.
Any ideas??

michael.forstner wrote:
My application binaries has been left unchanged.One shouldn't assume that just because it didn't crash before, it was working properly to begin with.
IMHO any alloc function should NOT cause any signal.and operating systems shouldn't crash, file systems would never lose files, and people should write bug-free code.
If the requested memory can't be allocated it sould return with a NULL ptr, even if there were a heap corruption somwhere before.
You try writing something that is a) fast b) efficient c) can have it's data structures stomped on by erroneous apps. If you want malloc with training wheels, use watchmalloc - that's why it's there.

Similar Messages

  • Netca: "a listener with the name already exists" after bombing out

    Installing a listener via netca on a CentOS 5 x64 11g RAC setup.
    I had a typo in the $ORACLE_HOME shell variable in .bash_profile for the oracle user. This caused netca to bomb out with a series of 'file not found' and 'directory not found' errors. netca did not complete.
    netca did, however, create listener LISTENER on port 1521 on both my nodes. There is no listener.ora file anywhere, due to the bad $ORACLE_HOME directory.
    I'd like to delete this and start over so that netca completes normally.
    I cannot use netca to delete listener LISTENER. The delete option is greyed out. I did reboot, and tried killing the tsnlsnr process.
    crs_stat -p shows the following:
    NAME=ora.rac1.LISTENER_RAC1.lsnr
    TYPE=application
    ACTION_SCRIPT=/u01/app/oracle/product/11.1.0/db_1/bin/racgwrap
    ACTIVE_PLACEMENT=0
    AUTO_START=1
    CHECK_INTERVAL=600
    DESCRIPTION=CRS application for listener on node
    FAILOVER_DELAY=0
    FAILURE_INTERVAL=0
    FAILURE_THRESHOLD=0
    HOSTING_MEMBERS=rac1
    OPTIONAL_RESOURCES=
    PLACEMENT=restricted
    REQUIRED_RESOURCES=ora.rac1.vip
    RESTART_ATTEMPTS=5
    SCRIPT_TIMEOUT=600
    START_TIMEOUT=600
    STOP_TIMEOUT=600
    UPTIME_THRESHOLD=7d
    USR_ORA_ALERT_NAME=
    USR_ORA_CHECK_TIMEOUT=0
    USR_ORA_CONNECT_STR=/ as sysdba
    USR_ORA_DEBUG=0
    USR_ORA_DISCONNECT=false
    USR_ORA_FLAGS=
    USR_ORA_IF=
    USR_ORA_INST_NOT_SHUTDOWN=
    USR_ORA_LANG=
    USR_ORA_NETMASK=
    USR_ORA_OPEN_MODE=
    USR_ORA_OPI=false
    USR_ORA_PFILE=
    USR_ORA_PRECONNECT=none
    USR_ORA_SRV=
    USR_ORA_START_TIMEOUT=0
    USR_ORA_STOP_MODE=immediate
    USR_ORA_STOP_TIMEOUT=0
    USR_ORA_VIP=
    My question...how do I delete this listener (and the one on rac2) so that I can re-install them correctly using netca?
    Edited by: user611309 on Apr 21, 2009 12:12 PM

    Hi,
    the listener is still registered with Oracle Clusterware. This registration will stay regardless of the existence of listener.ora and related files. Thus, you need to get rid of the registration, if you want to do it from scratch (which may not be required, if the listener starts and stops correctly). However, from your Clusterware home, please, issue:
    srvctl remove listener -h
    Usage: srvctl remove listener -n <node_name> [-l <listener_name>]
    -n <node> Node name
    -l Display listener configuration
    -h Print usage
    Hope that helps. Thanks,
    Markus

  • Itunes bombs outs when selecting "store"  with UBD.exe issue

    Itunes bombs outs when selecting "store"  with UBD.exe issue - what is the remedy?

    Hello there, tuneasa.
    The following Knowledge Base article offers some great steps for troubleshooting issues with iTunes performance:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Q: problems allocating pointers with malloc

    Hi,
    I have some troubles allocating pointers with malloc. Maybe this
    is a CVI C compiler bug, because with gcc and Visual C it works
    fine. As you can see below, I have included a sample source code.
    The task of this program is only to isolate the error. So don�t wonder
    about the function.
    In line 34 I declare a new data type 'test_t' which consists of some
    int and pointer to int.
    In line 45 I call memalloc() to allocate a memory for such a variable.
    memalloc() is a wrapper function to malloc() which terminates the
    program
    if malloc fails otherwise it initializes the memory with 0.
    The real problem can be found in line 46 where the void pointer returned
    from memalloc() is assigned to a 'test_t' pointer. All fields of the
    allocated
    'test_t' variable which are pointers are set to 0xfd1e1f10. Other
    fields like the 'int status' are left zero.
    If I use calloc() instead of malloc() at line 20 it works.
    What's going on? I can't explain this behavior.
    Any ideas?
    Best regards,
    Franz Hollerer
    ========================================================
    sample c code
    ========================================================
    1 #include
    2 #include
    3 #include
    4
    5
    6 /* =============================================== */
    7
    8 void *memalloc(size_t size);
    9
    10 /* =============================================== */
    11
    12 /*
    13 * allocate and clear memory
    14 */
    15 void *memalloc(size)
    16 size_t size;
    17 {
    18 void *p;
    19
    20 p=malloc(size);
    21
    22 if (!p)
    23 {
    24 fprintf(stderr, "malloc() faild\n");
    25 exit(1);
    26 }
    27
    28 memset(p, 0, size);
    29 return(p);
    30 } /* eof memalloc */
    31
    32 /* =============================================== */
    33
    34 typedef struct condgen_t{
    35 int *next, *prev;
    36 int status;
    37 int *condnr;
    38 } test_t;
    39
    40 int main()
    41 {
    42 void *vp;
    43 test_t *p;
    44
    45 vp=memalloc(sizeof(test_t));
    46 p=vp;
    47 return(0); /* avoid gcc warning */
    48 }
    49
    Institut fuer Hochenegiephysik
    Nikolsdorfer Gasse 18
    1050 Wien
    Austria
    Tel: (+43-1)5447328/50

    Hi,
    I have started a discussion in comp.lang.c which deals with this
    problem. Keith Thomson has rewritten the demo program (see below).
    output of debuggable executable:
    null_pointer = 0
    sizeof(void *) = 4
    sizeof(test_t *) = 4
    sizeof(int *) = 4
    p = a20060
    p->next = 101f1efd
    p->prev = 101f1efd
    p->status = 0
    p->condnr = 101f1efd
    output of release executeable:
    null_pointer = 0
    sizeof(void *) = 4
    sizeof(test_t *) = 4
    sizeof(int *) = 4
    p = a20060
    p->next = 0
    p->prev = 0
    p->status = 0
    p->condnr = 0
    This means that the debuggable executable has some problem.
    Franz Hollerer
    1 #include
    2 #include
    3 #include
    4
    5 /*
    6 * I've deleted the superfluous declaration for memalloc. -- kst
    7 */
    8
    9 void *memalloc(size_t size)
    10 /*
    11 * Old-style declarations are still legal, but there's really
    12 * no point in using them. -- kst
    13 */
    14 {
    15 void *p;
    16
    17 p=malloc(size);
    18
    19 if (!p)
    20 {
    21 fprintf(stderr, "malloc() faild\n");
    22 exit(1);
    23 }
    24
    25 memset(p, 0, size);
    26 /*
    27 * As others have pointed out, this sets the struct to all zeros,
    28 * so it doesn't necessarily set the next, prev, and condnr
    members
    29 * to NULL. I don't think that's causing the problem you're
    seeing,
    30 * though. -- kst
    31 */
    32
    33 return(p);
    34 }
    35
    36 /* =============================================== */
    37
    38 typedef struct condgen_t{
    39 int *next, *prev;
    40 int status;
    41 int *condnr;
    42 } test_t;
    43
    44 /*
    45 * Added function show_info() to show some possibly relevant
    46 * characteristics of your system.
    47 */
    48 void show_info(void)
    49 {
    50 void *null_pointer = NULL;
    51
    52 printf("null_pointer = %p\n", null_pointer);
    53 printf("sizeof(void*) = %d\n", (int)sizeof(void*));
    54 printf("sizeof(test_t*) = %d\n", (int)sizeof(test_t*));
    55 printf("sizeof(int*) = %d\n", (int)sizeof(int*));
    56 }
    57
    58 int main(void)
    59 /*
    60 * Changed declaration from "int main()" to "int main(void)" -- kst
    61 */
    62 {
    63 test_t *p;
    64 p = memalloc(sizeof(test_t));
    65 /*
    66 * Deleted unnecessary void* intermediate pointer. memalloc()
    67 * returns a void*, but you can assign the result directly to
    68 * a test_t*. -- kst
    69 */
    70 show_info();
    71 printf("p = %p\n", (void*)p);
    72 printf("p->next = %p\n", (void*)p->next);
    73 printf("p->prev = %p\n", (void*)p->prev);
    74 printf("p->status = %d\n", p->status);
    75 printf("p->condnr = %p\n", p->condnr);
    76 /*
    77 * Finally, show some information. -- kst
    78 */
    79 getchar();
    80 return 0;
    81 /*
    82 * Note: The "return 0" isn't just to avoid a gcc warning, it's
    83 * a necessary part of the program. Without it, you'd be
    returning
    84 * some arbitrary status to the environment. -- kst
    85 */
    86 }
    87
    Institut fuer Hochenegiephysik
    Nikolsdorfer Gasse 18
    1050 Wien
    Austria
    Tel: (+43-1)5447328/50

  • Indesign CS6 has started bombing out on launch.

    Hi there,
    Now, when I launch InDesign CS6, it crashes with this error detail from event viewer.
    Date/Time:          2013-01-09 10:03:35.606 +0000
    OS Version:        Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:                      194113 sec
    Crashes Since Last Report:                     39
    Per-App Interval Since Last Report:        44975 sec
    Per-App Crashes Since Last Report:       4
    Anonymous UUID:                                   F843AE4F-0E7E-9223-C543-C50B8A905FD4
    Crashed Thread:                                     0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    I've deleted preference file, and still keeps bombing out.
    Need help ASAP....

    That looks familiar, but that's not good news. That's one of the one's I don't have a solution for. John Hawkinson is our resident expert on these, and perhaps he'll join us.
    In the meantime, do you have any third party plugins installed, or a font manager? Did ID ever launch for you?
    Are you able to run Adobe Extension Manager? If so, try unchecking the PMWelcomeScreen plugin so it doesn't launch on startup and try starting ID again. I believe that plugin is associated with the ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 28162 line just before the protective shutdown.
    I think we're seeing quite a few problems with 10.8 that may be related to a change in Apple code (just a gut feeling) that happened after CS6 was tested and released.

  • FrameMaker keeps "bombing out" when trying to import photos

    Hello:
    I have been having problems all day trying to get some photos into my FM document but the application keeps "bombing out" on me; that is, it either hangs and reports back an Internal Error 8004, 6345644, 8487696 message or the application completely closes. I want to import the photos by reference rather than copy them but nothing seems to be working for me. I've tried importing the files as .JPEG and .PNG formats without success so far. Each photo is ~3565KB in size.
    I searched the forum for this particular error message but most of the comments had to do with PDF files and they don't apply to my situation (I even changed the printer to Adobe PDF before I began importing the files without any noticeable improvement).
    System details:
    Dell Vostro with Intel Core2 @ 2.40GHz and 3.25 GB RAM
    photos from a 10 MP Canon camera (saved as both .JPEG and .PNG files)
    FrameMaker v8.0p277
    Windows XP
    Is it a matter of available system memory or is it something I might be doing in the import process? I'm looking forward to finally getting to the cause of this issue with your help.
    Thanks,
    -Kimberly

    Art:
    I haven't been clear enough or if I haven't undestood your suggestions: When I download the photos from the camera as JPEGs, the file size is large. I then open those JPEGs in PaintShop Pro and save them again as JPEGs. I tried this because I'd read that it would help  to reduce the file size and it does. I also save the original JPEG as a PNG because PNG is less loss-y.
    I am concerned about file size because I receive an error message in FrameMaker when I try to import a photo (both JPEG and PNG) that says "The filter encountered an error and could not complete the process." I get this message and I don't know why. I get the error message at first and if I continue trying to import a file Frame just closes on me.
    I thought that maybe something to do with memory.was causing the message.
    -K
    PS: I tried to copy a file (one of the smaller JPEG files) into my document and received the same error message. I'm stumped.

  • Bomb out in 6i

    hi,
    We upgraded our forms 4.5 to 6i recently and applied patch 12. Now, (apart from numerous other problems) we are experiencing a strange thing.
    In one of our forms, which I must say is a rather large one with about 30 blocks and about 40 canvases which is bad practice we know.
    What is happening is that in a multi record block, for example, pressing tab, key-down, etc just bombs out and closes the app down with no visual err message apart from the dump file at the bottom of this message.
    This happens in other single rec blocks also. We have have noticed a similar problem on other, much smaller forms also. Is it just a case of poor mem management, bad design or both ?
    Thanks.
    Nik.
    [03/12/03 09:13:45 GMT Standard Time]::Client Status [ConnId=0, PID=492]
         >> ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION
    ======================= STACK DUMP =======================
    Fault address: 664F35B0 01:000A25B0
    Module: C:\Oracle\BIN\PLS805.dll
    System Information:
    Operating System: Windows NT Version 5.0 Build 2195 Service Pack 3
    Command line: "C:\Oracle\BIN\ifrun60.EXE" module=secrlg userid=ssboss/ssboss@tes9
    FORM/BLOCK/FIELD: MHDS1050:MHDBCHOS.HOSPDETS
    Last Trigger: KEY-DOWN - (In Progress)
    Msg: <NULL>
    Last Builtin: MESSAGE - (Successfully Completed)
    Registers:
    EAX:00000000
    EBX:02A418B0
    ECX:00000000
    EDX:0252F1EC
    ESI:0012C9FC
    EDI:02502984
    CS:EIP:001B:664F35B0
    SS:ESP:0023:0012BCE8 EBP:0012BD08
    DS:0023 ES:0023 FS:0038 GS:0000
    Flags:00010246
    ------------------- Call Stack Trace --------------------- Frameptr RetAddr Param#

    Have you try this:
    Open the form
    go to menu and choose compile all
    generate the file
    This should make sure all program units are compiled.

  • IPad bombs out returns to home page using Google Earth and other random Apps, why and how can I prevent it happening?

    iPad bombs out returns to home page using Google Earth and other random Apps, why and how can I prevent it happening?

    Quit/close all apps and restart the iPad.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    You can try this as well.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Is anybody having problems opening Jpegs attachments on iPhone 4s sent in email?..imap , mac, and exchange accounts are affected. I get a spinning wheel or it bombs out!!..Help

    Is any body having problems opening Jpegs sent via email as attachments. iPhone 4
    I can't open and get a spinning wheel or it bombs out!..Help!! It affects iMap, exchange and mac accounts!

    Solution for me was changing the "Load Remote Images" setting, shutting down and restarting the phone.  The old messages with problems reloaded with all attachments accessible. 
    Background: I began having this problem recently with PDF, jpeg,vcf files and apparently now, all attachments as well as email with html links are coming through with no attachment or as empty email.  This was a new problem for me. I have been backing up to the cloud, but not using a cloud email account.  I have multiple accounts on the phone, six of them actually and have been set up this way for over a year without problem.  Some are imap, some pop, none are through exchange.

  • Nokia Maps loaded up to 90% then it bombed out.

    Please, I upgraded my Nokia Maps to V2.0 and now when it is started it load up to 90% then it bombed out. Rebooted the phone (N95 8GB) and it did the same thing.
    I tried to reinstall the application, format the memory and reset the N95's configurations without success.
    I was not able to remove the nokia maps to try a completely new installation.
    Thanks for any help.
    Solved!
    Go to Solution.

    The problem is not with the map data so it has to be with the application. Since Nokia Maps is embeded in the firmware you will not be able to uninstall and reinstall the normal way.
    To reinstall the firmware you will either have to reinstall the firmware or at least to reformat the phone. As the reformat is less drastic, this is what I recommend you try at this stage.
    First, backup your phone. I recommend backing up to both mass storage and your pc.
    Once you have backed up your phone, use the *#7370# code to reformat.
    Once this is done, Nokia Maps should revert to the version that came with the phone, but it should work. You could if you want, try to update it to the latest version after that.

  • Mail bombs out within 30 secs of launching - how can I recover?

    Get following report soon after launching mail - what can I do to recover? I can't access my past mail (I do have a back up from a week ago, but would prefer not to have to recover from that.
    Fraser
    Process: Mail [344]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.4 (1082)
    Build Info: Mail-10820000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [130]
    Date/Time: 2011-02-27 15:22:16.282 +0000
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 187012 sec
    Crashes Since Last Report: 11
    Per-App Interval Since Last Report: 181391 sec
    Per-App Crashes Since Last Report: 6
    Anonymous UUID: E9EA9559-C1AD-4E4E-91F5-EF38A418BF74

    Unfortunately, that did not solve the problem. I moved my com.apple.mail.plist file. Started mail and manually configured one of my mail accounts and within a minute or so of starting to download mail, it crashed with exactly the same error. I then repeated the procedure with another mail account incase it was due to a bad message in the first account - same error. I have a hunch that it might be a corruption in my addressbook - On Saturday night my mobile phone OS had an over the air upgrade. When I sync'd on Sunday (using standard apple sync) there were a lot of conflicts to be resolved and addressbook bombed out. Address book appears to be fine now but it is the only thing I can think of. Is there a way of launching mail without it attaching to the addressbook so I can try this theory out?
    Any other ideas?
    thanks, Fraser

  • Aperture update 3.3 bombing out

    I have just updated my library to 3.3, but it bombs out every time I open it. I have done all the usual things to try and fix it by rebuilding the database etc., I deleted the plist files, and I have even reinstalled the update, but nothing helps. Please can someone give me some advice? The program bombs out within seconds from opening it up.

    @iBuzz, lBaraza,
    if the crash seems to be system specific, then you need to start your own thread, because we have will have to interview you for details of your system. This is very confusing, if we have to keep track of three different setup´s and sort them mentally in one thread - it will be easy to make mistakes this way
    @ Heinrich van den Berg
    Any news? Does Aperture start with the Shift key held down?  If not, please post a crash log.
    Just in case the crash log mentions the "PluginManager.framework" the safest way would be to reinstall the operating system; this framework usually causes this kind of trouble after an installation of Final Cut.

  • HT1212 My daughter totally disabled the device by attempting to guess the password I set.  How can I restore the device if  iTunes is bombing out my computer?

    My daughter totally disabled her iPod touch 3rd generation by attempting to guess the password I set.  How can I restore the device if  iTunes is bombing out my computer?

    Not knowing what "iTunes is bombing out my computer" means all I can suggest is:
    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • My address book and iPhone pics have become low resolution.  Is there a way I can prevent this from happening when I start out with a higher resolution picture?

    I guess I squeezed my entire issue into the subject line.  lol   When I sync my iphone to my laptop I notice that all my address book pics and iphone pics have become lower resolution, even though I started out with the resolution that I really needed to produce decenty address book printouts.  I doubt I can correct the losses of resolution that have occurred but can anyone help me figure out how to prevent future losses?  Thank you!

    Plugins usually are installed externally to Firefox. However, you can disable them in Firefox so that Firefox does not use them.
    SearchReset is supposed to automate the task of resetting certain preferences, but you still can edit them manually if necessary.
    '''''Address Bar Search'''''
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''keyword''' and pause while the list is filtered
    (3) Right-click '''keyword.URL''' and choose Reset. This should restore Google as the default for address bar search.
    Does that work?
    '''''Search Box'''''
    Usually it works to choose your preferred search engine from the drop-down. To remove an unwanted search engine plugin, usually the Manage Search Engines... choice at the bottom of the drop-down takes care of it.
    Do either of those work?
    There might be another way to hijack that search box; I think some of the other frequent responders probably are more familiar with it than I am.

  • My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to lissen I had to put on loud speaker or to use handsfree please help me out with this problem if some body have answer?

    My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to listen I had to put on loud speaker or to use hands free please help me out with this problem if some body have answer?

    Hi Venkata from NZ,
    If you are having an issue with the speaker on your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

Maybe you are looking for

  • Logon of user in client failed when starting a step

    Hi All, I have a question. (Might be simple to many). <b>Logon of user in client failed when starting a step.</b> Some of my scheduled jobs are getting cancelled due to the above error. It has been noted that the user corresponding to that job has be

  • Tax Code and Tax Amount Fields are not appearing

    Hi to all, While making Downpayment Request (F-47) Tax Code and Tax Amount Fields are not appearing in the screen. for more clarity... suppose PO is 1150 include all taxes ( Amount 1000+ Tax Amount 150) as per agreement with vendor we need to raise D

  • Issue installing a SSL certificate on WLC

    I have a certificate obtained from verisign for logging in a wireless campus network, and I'm installing it via TFTP to the WLC. At the end of the transference appear the next message "TFTP WPS Signature file transfer starting. TFTP receive complete.

  • Where to find sensor values in Enterprise Manager

    Hi, I followed the instruction from (http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10224/bp_sensors.htm) to add sensors to my BPEL process. Where do I navigate to find the sensor values in Enterprise Manager? I also notice in SOA Com

  • Org determination from Sales area

    Guys, Here's the scenario..we have downloaded all Org structure from R/3. I need the sales org, sales office & group to be determined from the sales area maintained in the BP master data. Currently all BP's have only one Sales Area assigned. The stru