Reasons for failures

1) what r the reasons to failure of rollup?
2) What r the reasons to filure of attribute change run?

Hi,
1) what r the reasons to failure of rollup?
Rollup will fail if there are no filled aggregates for the cube.
Also if the object is being loaded and is locked rollup may fail.
2) What r the reasons to failure of attribute change run?
There are scenarios where the attribute change run failed with message that it was hitting/affecting aggregates of some infocubes. In case we had to switch off aggregates and trigger the change run again and then swtich on the aggregates after the change run is over.
Also we have failure when there is another change run triggered parallel to yours.In any SAP System only One attribute change run can run at one point of time. i. e If one attribute change run is running in system from any process chain or for any project and 2nd one fails, if start at same time due to locking problem. Due to this entire data load fails.
Also if the object is being loaded and is locked change run may fail.
Thanks,
JituK

Similar Messages

  • How to trace reason for failure to synchronize customer in OPM Financials

    Sirs,
    I created a customer in Order Management and process Synchronize Customer in OPM Financials. The result is "Failed"
    How to trace the reason for the reason to synchronize?

    Sirs,
    I created a customer in Order Management and process Synchronize Customer in OPM Financials. The result is "Failed"
    How to trace the reason for the failure to synchronize?
    thanks!

  • No Obvious reason for failure, but Safari says I don't have a connection

    The internet, Earthlink, is working fine. Modem says so & when hardwired connects using any program I wish.
    My airport express has a solid green light.
    I have a full signal strength.
    I have configured using the utility program and it says I am connected.
    BUT
    I can't connect to the internet using Safari or AIM or any other program. It says I do not have an internet connection.
    WHAT IS THE PROBLEM?
    Power Book G4   Mac OS X (10.4.4)  

    I am having a similar problem with my express and extreme base stations. In Airport admin utility click on the internet tab, what kind of IP address is your base station getting? My base stations are getting IP addresses starting with 10.x.x.x (where x is the rest of the address). When I connect my internet cable to my computer I'm getting an IP address that starts with 64.x.x.x and I am able to get internet. Is your issue the same?
    For more detail see my recent post on the airport extreme discussion group.
    17" iMac G4   Mac OS X (10.4.4)  

  • What are the main reasons for SAP-HR Implementation Failures?

    Dear Consultants,
    Can some one shed the light on the following items:
    1. At least 3 main reasons for failure of SAP-HR Implementations?

    Hi,
    Check this link
    http://searchsap.techtarget.com/news/article/0,289142,sid21_gci892265,00.html

  • Common reason for Mirage Server Failure in Clustered Environment and how clients will be switched to other server in a cluster

    Hi,
    Can Anybody share me the information regarding Common reason for Mirage Server Failure in Clustered Environment.
    And how clients will be switched to other server in a cluster to continue their operations from the failed server.
    Regards,
    Bathesha C

    Hello,
    if you have more than one mirage server configured with Load balancing (LB or MSFTNLB) the client would disconnect from the faulting server and then reconnect to an other server to progress with the action as before.
    All Mirage server are stateless and share the same SIS (single instance store) so any server can update or create CVD file set for an client.
    Hope that helps.

  • How to find the reason for a job failure

    Hi,
    I have created a job .
    It was running fine. But after few days it showed the status as broken.
    How do we find the reason for a job failure ?
    Thanks.

    There should be a trace file in the either the udump or bdump (depending on Oracle version) directory on the DB server. If the job is broken it has probably failed 16 times, so you should have 16 trace files - each possibly showing the same error. The relevant trace files will have j00 in the name, showing that they were generated from dbms_job.
    Ben

  • Obtain reason for AccessCheck failure

    As a specific user on a specific file object, requesting file read and read security permissions on said file results in an access check failure. I wish to dive in to the actual reason why the access check failed.
    Is there a script or cmdlet out there that performs AccessCheck on a SE_FILE_OBJECT so that I may figure out the specific reason for the failure? Like, is there an ACE that denies access? If so, what's the ACE? Does the ACL not contain any SID for the user
    or any group the user is in? If so, what are the SIDs of the user and the user's groups? Et cetera.
    I'm quite versed in PowerShell and can read scripts. I'd love a PowerShell answer, if there is one. I know AccessCheck is a complex function and asking for a PowerShell equivalent is a stretch, but we need to figure out why we can't access certain directories.
    Background for those interested in the whole story:
    I work at a backup company and occasionally we try to back up files and directories with nonstandard permissions. When this happens, we can no longer access the files or directories in question, even with backup semantics, SE_BACKUP_NAME and SE_RESTORE_NAME.
    In our status and state files we have the security descriptor of the files and directories in question, in SDDL form. We lack the full information required to perform the AccessCheck by hand, and would like a script to help us out.

    Here is a commandline version to the wizard.
    Again - this is not a scripting issue.
    http://www.microsoft.com/en-us/server-cloud/find-a-partner.aspx#fbid=tLJUEX7f_zn
    ¯\_(ツ)_/¯

  • How to determine reason for socket write failure

    Hi,
    I'm new to socket programming in general, so please bear with me. I've looked around on the forums quite a bit, and haven't found an answer to this question.
    I'm working with server code which creates TCP connections over an air interface with a mobile phone client. Since the air interface is inherently unstable, we rely on the TCP buffering/retry mechanism to store up to its capacity of messages if the client is temporarily non-responsive. Since we are sending small amounts of data, this will actually last for quite a while (several minutes or more depending on how much data we are needing to send). As part of an audit mechanism to detect lost clients, I do a write of a "heartbeat" to the socket and if the write fails, I can assume that either the buffer is full (meaning the mobile "went away" either due to loss of battery power, driving through a very long tunnel, etc.), or the mobile actively disconnected the socket.
    However, I'd like to know if there is a way to determine the reason for the write failure? I catch the exception, but as far as I can tell they are all IOExceptions. Is there any way to further delineate the reason for a socket failure?
    Any help would be greatly appreciated.
    Thanks,
    -Lisa

    If you're in a hurry, I don't have an answer for you.
    That said, it was an intriguing enough question that I did some poking around as well. There is a socket exception class, but generally speaking, the only methods that throw socket exceptions tend to deal with defining, creating and closing the socket.
    Communicating through the socket is done through input and output streams, and like any other streams, those throw I/O exceptions. I suspect you're catching IOEs because you're using streams. Unfortunately, even Socket.sendUrgentData( int data ) also returns an IOException rather than an SException.
    In the interests of covering all the bases, are the IOE messages unsufficient? That is, try...
       } catch ( IOException ioe ) {
          System.out.println( "IOException: " + ioe.getMessage() );
       }...might give you enough information to make a guess at whether the buffer is full or if the foreign host has closed the connection. I would suspect this feature is architecture dependent - UNIX systems might have more detail than Wintel systems.
    As a last resort, you could extend the InputStream class and do the appropriate testing when writing/sending your packet. I would think that the only cases you can test for are whether the buffer is full (by maintaining a copy of the buffer and updating as appropriate), the mobile is currently sending data, or if the mobile is just not available.
    Conventional Java isn't really the best for this because I'm not sure the JVM security model really wants to allow you to directly analyze TCP packets (otherwise you could just check for ACK statements). JME might have an easy solution that we didn't know about and you should ask on the appropriate forum. Alternatively, you might want to think about using C to write a library that handles connections this way, and externally call the library from the rest of your Java program.

  • Reason for power manager failure?

    In the last two weeks my G4 ibook has needed the advanced power manager reset twice. Both times the computer was showing the battery not being charged just before the computer stopped working. Removing the battery and resetting the power manager worked both times, but I'm thinking this is just a symptom of another problem. Any thoughts? Thanks, Craig

    HI Vidya,
    Go to SM 36.
    Check the job log.
    If find the reason of Failure, its good or else contact with your basis peer.
    Regards,
    Anirban

  • Can oracle audit logs keep info of Blocking or blacklisting a user ID, terminal or access port, and the reason for the action?

    Hello,
    I am workin on Oracle 11G STIGs and one STIGs states that audit log should include followings;
    - User ID.
    - Successful and unsuccessful attempts to access security files
    - Date and time of the event.
    - Type of event.
    - Success or failure of event.
    - Successful and unsuccessful logons.
    - Denial of access resulting from excessive number of logon attempts.
    - Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.
    - Activities that might modify, bypass, or negate safeguards controlled by the system.
    I know how to enable audit trial with OS or DB, EXTENDED levels.  However, I could not find if it is possible that audit logs can contain info of Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.

    2687254 wrote:
    Hello,
    I am workin on Oracle 11G STIGs and one STIGs states that audit log should include followings;
    - User ID.
    - Successful and unsuccessful attempts to access security files
    - Date and time of the event.
    - Type of event.
    - Success or failure of event.
    - Successful and unsuccessful logons.
    - Denial of access resulting from excessive number of logon attempts.
    - Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.
    - Activities that might modify, bypass, or negate safeguards controlled by the system.
    I know how to enable audit trial with OS or DB, EXTENDED levels.  However, I could not find if it is possible that audit logs can contain info of Blocking or blacklisting a user ID, terminal or access port, and the reason for the action.
    Think about that.  If the port or terminal (client ip address) is blocked, then the communication never got to the database.  So how would the database be able to audit an action that never got there?

  • How to determine reason for shutdown

    Hi all,
    My Mac Pro seems to shutdown unexpectedly on occasion and I'm at a loss to explain why.  It happens late at night and though I'm not sure, perhaps only early morning on Thursdays.  Now, I've checked to see if the Energy Saver settings have a scheduled shutdown, and there isn't anything checked there, so it's not something that I've intentionally set.  I don't believe there was a power failure or any similar external cause.  I assume I want to look in the system logs to find the reason for the shutdown, but I can't seem to find the event.  Where exactly should I look and what keyword would I search for.  Any thoughts? 
    PS This happened a few times while still running 10.6 as well, so I don't think it's a 10.7 specific issue, but that is what I'm running now.
    DC

    I have never tried rebooting and leaving it alone for any length of time.  It doesn't happen often enough for me to be able to test that reliably, though I could try it next Wed. night since that seems to be the preferred night.  Thing is, I don't think it happens every week even.  I guess what I should do is do a manual shutdown and then look in the logs for where that info is stored and the trace back over the last 24 hours to see if I can find where it happened.
    Not sure what you're looking for in the top command, but here you are.  Couldn't quite squeeze everything in, looks like there's a dozen and a half processes left at the bottom that were past the pagination.
    Processes: 113 total, 7 running, 3 stuck, 103 sleeping, 565 threads                      14:39:07
    Load Avg: 2.98, 2.65, 2.53  CPU usage: 10.61% user, 3.65% sys, 85.72% idle
    SharedLibs: 15M resident, 7768K data, 0B linkedit.
    MemRegions: 22095 total, 1821M resident, 65M private, 575M shared.
    PhysMem: 1077M wired, 2669M active, 1555M inactive, 5301M used, 6975M free.
    VM: 274G vsize, 1120M framework vsize, 132510(0) pageins, 0(0) pageouts.
    Networks: packets: 78838/37M in, 74872/19M out. Disks: 2646089/28G read, 2510875/19G written.
    PID    COMMAND      %CPU TIME     #TH   #WQ  #POR #MREG RPRVT  RSHRD  RSIZE  VPRVT  VSIZE  PGRP
    26916  sed          0.0  00:00.00 1     0    17+  22+   268K+  240K+  556K+  17M+   2378M+ 26913
    26915  sed          0.0  00:00.00 1     0    17+  22+   268K+  240K+  556K+  17M+   2378M+ 26913
    26914- icalBuddy    0.0  00:00.55 5/1   4    45+  110+  13M+   9680K+ 17M+   101M+  687M+  26913
    26913  sh           0.0  00:00.00 1     0    17+  22+   332K+  840K+  856K+  17M+   2378M+ 26913
    26865  SyncServer   0.0  00:00.17 4     3    49+  89+   8632K+ 9544K  14M+   94M+   2480M+ 26865
    26719  ReportCrash  60.4 00:03.31 6/1   2    85+  165+  28M+   8108K+ 63M+   171M+  2572M+ 26719
    26683  top          5.5  00:02.70 1/1   0    34   29    2116K  216K   2824K  17M    2378M  26683
    26676  ocspd        0.0  00:00.01 1     0    25   23    568K   268K   1876K  17M    2378M  26676
    25931  bash         0.0  00:00.01 1     0    20   23    360K   840K   1088K  17M    2378M  25931
    25926  xterm        0.0  00:00.18 1     0    32   72    1300K  2804K  2748K  18M    2382M  327
    25609  cookied      0.0  00:00.06 2     1    38   73    2712K  224K   3420K  96M    2457M  25609
    21154  ssh          0.0  00:01.11 1     0    25   28    1060K  240K   2600K  18M    2378M  21154
    12993  ssh-agent    0.0  00:00.16 3     1    45   85    1684K  280K   3280K  151M   2511M  12993
    7736   mdworker     0.0  00:00.82 4     1    54   111   3812K  14M    9532K  165M   2548M  7736
    1481   Console      0.0  00:30.47 3     2    121+ 342+  28M+   27M    146M+  246M+  2712M+ 1481
    856    Image Captur 0.0  00:00.22 2     1    88   98    4188K  10M    10M    139M   2534M  856
    855    AppleMobileD 0.0  00:00.40 3     1    49   100   11M    8972K  16M    106M   2484M  321
    842    PTPCamera    0.0  00:00.32 4     1    91   112   4032K  10M    9444K  159M   2563M  842
    769-   PluginProces 0.5  00:34.99 14    1    264  598   19M    23M    35M    191M   872M   325
    741-   Microsoft AU 0.0  00:00.07 2     1    73   102   1500K  10M    3740K  162M   765M   741
    704-   FNPLicensing 0.0  00:00.37 3     1    44   80    2460K  244K   3544K  118M   686M   704
    677    Caffeine     0.0  00:00.14 2     1    80   123   2608K  11M    8608K  133M   2549M  677
    676    GeekTool     1.7  01:06.85 10    7    156  180   6796K+ 19M    15M    176M   2584M  676
    675-   ChronoSyncBa 0.0  00:01.34 3     1    84   130   1980K  12M    5604K  156M   766M   675
    672-   AAM Updates  0.0  00:05.46 3     1    92   241   5648K  15M    11M    166M   811M   672
    666-   SymSecondary 0.0  00:00.06 2     1    67   102   1484K  10M    3544K  132M   735M   666
    665-   SAVDiskMount 0.0  00:00.04 2     1    29   60    708K   216K   1508K  74M    650M   665
    664-   ScanNotifica 0.0  00:00.06 2     1    70   104   1404K  10M    3496K  139M   742M   664
    662    taskgated    0.0  00:03.43 3     1    37   83    1912K  7648K  3776K  157M   2533M  662
    656-   SymQuickMenu 0.0  00:00.14 3     1    86   166   2804K  12M    6784K  160M   766M   656
    655    AirPort Base 0.0  00:00.01 3     1    37   70    968K   220K   2308K  98M    2467M  655
    650    imagent      0.0  00:00.47 4     1    86   137   3840K  7756K  7336K  150M   2547M  650
    645    warmd_agent  0.0  00:00.01 2     2    34   59    768K   220K   2020K  60M    2428M  645
    624    bash         0.0  00:00.01 1     0    20   24    356K   840K   1088K  17M    2378M  624
    621    AppleSpell   0.5  00:17.47 2     1    55   111   6192K  11M    13M    169M   2558M  621
    603    quartz-wm    0.0  00:00.35 3     1    64   127   1936K  11M    6400K  153M   2548M  603
    462    Xquartz      0.0  00:00.00 1     0    25   38    336K   220K   1592K  13M    2389M  462
    461    xinit        0.0  00:00.00 1     0    21   35    272K   1004K  684K   9668K  2379M  402
    402    sh           0.0  00:00.01 1     0    18   23    244K   836K   908K   9648K  2378M  402
    401    xterm        0.0  00:00.50 1     0    32   73    1004K  2804K  2504K  9828K  2382M  327
    397    aosnotifyd   0.0  00:00.42 3     1    54   314   5172K  8684K  10M    493M   19G    397
    394    filecoordina 0.0  00:00.01 2     2    40   59    908K   216K   2128K  97M    2465M  394
    381    hdiejectd    0.0  00:00.04 2     1    37   54    784K   248K   2064K  82M    2443M  381
    372    diskimages-h 0.0  00:00.41 3     1    63   90    1892K  9540K  5964K  132M   2524M  372
    370    WebProcess   0.0  00:47.53 5     1    139  1448  107M   33M    200M   341M   3872M  325
    361    com.apple.do 0.0  00:00.16 2     1    95   138   4076K  12M    12M    158M   2562M  361
    359    FileSyncAgen 0.0  00:05.27 11    3    141  182   12M    10M    21M    125M   2561M  359
    356    fontd        0.2  00:12.28 3     2    91   218   5032K  8368K  7412K  136M   2552M  356
    337    Finder       0.2  01:00.62 5     3    178- 434   25M-   39M    48M-   157M   2650M  337
    336    SystemUIServ 0.1  01:04.66 3     1    335  307   17M    22M    31M    187M   2605M  336
    335    talagent     0.0  00:00.24 2     1    93   113   3832K  10M    8824K  168M   2563M  335
    334    Dock         0.0  00:09.68 3     1    217  1217  41M    29M    67M    87M    2629M  334
    333-   AdobeAcrobat 0.2  00:34.33 25    3    167  451   17M    21M    55M    114M   928M   333
    332-   Papers       0.0  00:04.37 11    1    174  562   32M    33M    51M    183M   863M   332
    331    AppleScript  0.0  00:00.77 2     1    100  206   16M    29M    32M    148M   2597M  331
    330-   Microsoft Wo 0.2  00:14.72 5     3    286  619   36M    65M    97M    350M   1215M  330
    329    iCal         0.0  00:16.02 5     1    172  391   46M    28M    88M    177M   2666M  329
    328    Mail         0.0  02:28.45 8     1    334  1107  89M    63M    174M   319M   3875M  328
    327    X11.bin      0.7  00:11.93 7     1    128  370   12M    34M    36M    130M   2614M  327
    326-   Aquamacs     0.3  00:20.21 2     1    92   294   18M    26M    32M    176M   852M   326
    325    Safari       0.0  00:36.19 9     2    236  771   52M    74M    94M    198M   2733M  325
    321    iTunes       0.7  01:14.70 17    2    442  650   112M   36M    158M   401M   3807M  321
    320    pboard       0.0  00:00.00 1     0    27   43    536K   220K   1144K  20M    2380M  320
    317    UserEventAge 0.0  00:00.46 3     1    224  178   5096K  9716K  10M    177M   2556M  317
    279-   navx         53.3 59:20.71 2/1   1    31   187   259M   4476K  268M   395M   969M   122
    276-   LiveUpdate   0.0  00:00.11 2     1    68   104   1600K  11M    4856K  90M    680M   122
    272-   scheduledSca 0.0  00:00.02 3     1    44   74    824K   2360K  1812K  78M    649M   122
    207    distnoted    2.0  02:10.97 15    14   153  117   5044K  240K   5740K  169M   2537M  207
    205    mdworker     0.1  00:17.16 4     1    59   172   23M    11M    42M    167M   2563M  205
    203    distnoted    0.0  00:04.15 5     4    44   94    1272K  240K   1968K  140M   2508M  203
    201    launchd      0.0  00:04.97 2     0    354  110   1388K  564K   1976K  156M   2517M  201
    198    launchd      0.0  00:00.01 2     0    53   51    524K   416K   968K   57M    2418M  198
    168    coreaudiod   0.0  00:00.64 4     2    351  123   3892K  880K   5868K  163M   2527M  168
    158    logind       0.0  00:00.01 2     1    34   54    812K   216K   1988K  87M    2447M  158
    146    CVMServer    0.0  00:00.01 1     0    66   49    576K   252K   1260K  30M    2390M  146
    145    WindowServer 1.3  01:50.65 19    1    445  1617  39M    150M   184M   184M   3447M  145
    122-   NortonMissed 0.0  00:10.07 2     1    33   53    664K   216K   1444K  62M    630M   122
    121-   SymAutoProte 0.1  00:35.46 8     1    247  193   246M   4500K  250M   388M   970M   121
    106    racoon       0.0  00:00.06 3     1    38   63    924K   240K   2552K  91M    2452M  106
    82     applepushser 0.0  00:02.57 3     1    60   84    3304K  7936K  7684K  161M   2538M  82
    80     autofsd      0.0  00:00.02 2     2    37   60    928K   220K   2184K  90M    2458M  80
    75     dynamic_page 0.0  00:00.02 1     0    24   24    236K   212K   812K   9648K  2378M  75
    73     hidd         0.8  00:08.22 6     4    72   93    1612K  240K   2596K  139M   2508M  73
    71     kdc          0.0  00:00.15 2     2    48   89    1508K  484K   3236K  128M   2497M  71
    70     KernelEventA 0.0  00:00.03 3     1    35   56    640K   220K   1288K  65M    2426M  70
    68     loginwindow  0.0  00:00.68 2     1    273  212   8972K  23M    19M    150M   2575M  68
    66     mds          1.8  04:22.48 9/2   7    162  696+  299M+  21M    159M+  1177M+ 3654M+ 66
    65     netbiosd     0.0  00:00.36 4     4    46   93    1964K  340K   3672K  127M   2496M  65
    61     revisiond    0.0  00:00.04 4     2    39   71    1156K  216K   2576K  103M   2472M  61
    59     stackshot    0.0  00:00.02 3     1    39   63    900K   220K   1608K  114M   2482M  59
    58     rpc.statd    0.0  00:00.02 1     0    22   27    220K   216K   608K   49M    2410M  58
    57     SystemStarte 0.0  00:00.03 2     1    37   68    864K   220K   1504K  113M   2481M  57
    55     usbmuxd      0.0  00:00.97 3     1    54   98    1960K  1824K  4088K  146M   2508M  55
    54     warmd        0.0  00:00.20 3     2    39   87    5508K  224K   6880K  153M   2521M  54
    52     cron         0.0  00:00.01 1     0    24   32    368K   216K   964K   19M    2379M  52
    51     ntpd         0.0  00:00.23 1     0    28   35    568K   220K   1560K  19M    2379M  51
    49     awacsd       0.0  00:00.14 2     1    43   65    2196K  7936K  6644K  80M    2465M  49
    34     securityd    0.0  00:03.29 4     1    103  84    6220K  7504K  7824K  159M   2536M  34
    25     coreservices 0.0  00:07.73 4     1    377  446   6508K  18M    22M    155M   2558M  25
    23     blued        0.0  00:00.58 3     1    118  75    3636K  7484K  5840K  120M   2497M  23
    20     fseventsd    0.6  01:39.11 27/1  1    129  138   12M    216K   14M    1892M  4253M  20
    19     distnoted    1.1  01:00.32 11    10   114- 99-   2424K- 236K   3080K- 166M-  2534M- 19
    18     powerd       0.0  00:00.37 2     1    80   75    2320K  7416K  3340K  148M   2524M  18
    17     syslogd      0.2  00:03.16 4     0    67   72    1604K  220K   1960K  165M   2526M  17

  • What is reason for cl_fpm_factory= get_instance( ) return initial value?

    In DEV system, this piece of code is working fine. However when it moves to Testing system it dump due to cl_fpm_factory=>get_instance( ) return initial value. What could be the reason for this? Thanks!
      data lo_fpm  type ref to if_fpm.
      lo_fpm = cl_fpm_factory=>get_instance( ).
      wd_this->go_message_manager = lo_fpm->mo_message_manager.

    Hi Anthony,
    how sure are you that the DEV and Test system running the same Netweaver SP versions ?.  My doubt is that the test system is not NW7.01 (Ehp-1) . Or some thigs are not enabled in the configuration.
    Regards
    Senthi

  • Standard Report for displaying reason for action

    Hi Expets,
    Is there a standard report which displays the action and its reason for the action.
    eg.. ACTION - Direct Highering
          Reason- New Position
    Kaustubh.

    I Don't Think the standard report will give you this but you can use Query to extract this information.
    Afrasyab

  • Reason for rejection for sale order stock existing line item

    Hi,
        I am giving reason for rejection for a line item where there is already sale order stock. Then I am getting a warning message like " there is sale order stock assigned". I want this message to be as error message. Any customisation (SPRO) is there for this?
    Kindly update.
    Ratna

    Dear Rama Rao
    I think, there is no problem you can ignore the warning message and go ahead give reason of rejection and close the order
    There wont be any problem absolutely
    The reason  of warning message is, (it is sales order created with item category with special stock indicator as E )  that means the system tells you that it is extra special stock which you have created and now you are trying to reject hence it alerts you by giving a warning  message
    The item category of the items which you are trying to reject  is marked  or should have been marked with special stock indicator (you can check that in VOV7)
    By double clicking warning message if it is of V4 message class in t code OVAH you can make that as no message
    But i doubt that this is available in OVAH
    Regards
    Raja

  • Sales report based on Reason for Rejection

    Hi Guru's,
    I have a requirment to get the list of sales orders( Open/ Close) report based on Reason for Rejection.
    Please makesure it should be standard not customization and using tables.
    Thanks & Regards,
    Subbu.

    Hi subburamaiah
    If you want the report you can create a separate SIS report . In that take the input field  as a Reason for rejection.. and ask for the output the list of sales orders .Now when you check this user defined report you will give the reason for rejection and check what all orders got rejected on that reason for rejection.
    Regards
    Srinath

Maybe you are looking for

  • Field name lengths

    The field name lengths in the Citadel database are approaching 80 characters when Citadel adds the total path to each field. I am saving data from a process running on computer #1 to computer #2. I am using OPC and to select the analog input values r

  • Media Browser contents won't refresh and update

    I'm using Keynote '09. I am using the Media Browser to add photos from within my iPhoto library to my slides. I have a number of albums--many are smart albums--that don't seem to be refreshing as the iPhoto content changes. It was updating fine last

  • Issue Installing RoboHelp 9 on Win 7 32 bit

    Hello, I'm trying to install RoboHelp 9 on my office laptop running on Windows 7 32 bit (4gb RAM) and with Office 2007 at present. I am encountering the following error over and over again: Exit Code: 7 -------------------------------------- Summary

  • Unable to connect to sony tv

    I've tried to connect my Apple TV to my TV (Sony Bravia) and despite changing the inputs, it is not being recognised/picked up. I have attached the HTMI cable to the correct place on the TV but nothing appears to be working. Can anyone advise what I

  • How to Pretty Print a Binary Tree?

    I'm trying to display a Binary Tree in such a way: ________26 ___13_________2 1_______4 3_________1 (without the underscores) however I cannot figure out the display method. class BinaryNode           //Constructors           BinaryNode leftChild, ri