Trigger without Mutating Problem - Urgent

Hi,
How should I create a trigger to fulfil the following business rule, without end up in Mutating problem,
I have the following Table
CREATE TABLE COMPCV
COMPNO VARCHAR2(4) NOT NULL,
ACCNO VARCHAR2(15) NOT NULL,
ADDRES1 VARCHAR2(30),
ACTIVE VARCHAR2(1)
CREATE UNIQUE INDEX COMPCVIDX ON COMPCV (COMPNO,ACCNO)
We have 5 different Companies (COMPNO = HO,OFF1,OFF2,OFF3,OFF4). The COMPNO & ACCNO should be Unique. So we have Unique Index Created.
Every time when a Vendor is created in one of the Company, then it will need to reflect in ALL other companies.
i.e. If a vendor is created in HO, it needs to reflect in OFF1, OFF2, OFF3 and OFF4.
If a vendor is created in OFF1, it needs to reflect in HO, OFF2, OFF3 and OFF4 and so on.
Hope it is clear.
Thanks in advance
Regards
Murali

Hi all,
Thanks for all the inputs.
Each Company is a different Entity and they operate from different locations. But the database is common. When a Vendor is Created in One Company say (COMPNO = HO), we want that information (vendor data) to be created automatic for all the other Companies ( FOR COMPNO = OFF1, OFF2,OFF3,OFF4).
When a New Vendor is Created through the application (VB), we can duplicate the inserts into other companies as suggested. But if we could handle this thru DB Trigger, we don't need to create a new exe and install it in all the different PC in all the locations.
Sample Data:
Example if a Vendor is created in HO
compno accno addres1 active
===========================
HO V001 XYZ Y
We want this to be created in other companies also like:
OFF1 V001 XYZ Y
OFF2 V001 XYZ Y
OFF3 V001 XYZ Y
OFF4 V001 XYZ Y
Hope this clear.
Best Regards
Murali

Similar Messages

  • Before Update Trigger has mutating problem

    I'm getting a mutating problem with this updating trigger. I'm not sure how to deal with it. Here is my code:
    CREATE OR REPLACE TRIGGER WTL_SMP_TRG2
    BEFORE UPDATE ON WTL_SAMPLES
    FOR EACH ROW
    DECLARE
         sampleCount NUMBER(1) := 0;
         dupLabSampleID NUMBER(8) := 0;
    BEGIN
         SELECT COUNT(sample_ID)
         INTO sampleCount
         FROM wtl_samples
    WHERE jb_job_id = :new.jb_job_id
    AND lab_no = :new.lab_no
         AND sample_ID != :old.sample_ID;
         IF sampleCount > 0 THEN
         SELECT sample_ID
         INTO dupLabSampleID
         FROM wtl_samples
         WHERE jb_job_id = :new.jb_job_id
         AND lab_no = :new.lab_no
              AND sample_ID != :old.sample_ID;
    RAISE_APPLICATION_ERROR(-20501, 'Update failed, Lab Number ' || :new.lab_no || ' is used by SampleID: ' || dupLabSampleID);
    END IF;
    --EXCEPTION
    --     WHEN OTHERS THEN
    -- RAISE_APPLICATION_ERROR(-20901, 'Error in WTL_SMP_TRG2.');
    END WTL_SMP_TRG2;
    any help appreciated
    adam

    I guess I couldve done that, but was using design editor and didn't know how to put a unique constraint in. Is the problem only because I'm referencing the :old.sample_ID, or the :new values as well? If it's just the :old value I could write a before update statement trigger to place the sample_id into a package varaible and then call that variable up in the row level trigger.... i've tried this, but don't know how to pull the sample_id value i need in the before statement trigger... i'll supply the code i've done so far...
    CREATE OR REPLACE TRIGGER WTL_SMP_TRG2_INIT
    BEFORE UPDATE ON WTL_SAMPLES
    DECLARE
    BEGIN
         wtl_trg_custom_pkg.oldSampleID := sample_id; /* Doesn't know sample_id...? */
    END WTL_SMP_TRG2_INIT;

  • Help to avoid mutating problem of my trigger

    Hi, Guys:
    I have a question maybe silly. I need to maintain a table named as "SOR_Email_Config" with a trigger. Whenever there is an event to update a column named as "Current_Setting" from 'N' to 'Y' with a row, this trigger needs to check other rows in the same table to make sure other rows' Current_Setting is 'N', if other rows has 'Y' on "current_setting" column, the trigger needs to update it to 'N'. the code is as follows:
    CREATE OR REPLACE TRIGGER SOR_NOTI_CONFIG_UPDATE_TRG
    BEFORE INSERT OR UPDATE OF CURRENT_SETTING ON SOR_EMAIL_CONFIG
    FOR EACH ROW
    WHEN (new.current_setting='Y')
    BEGIN
      update SOR_EMAIL_CONFIG
      set current_setting='N';
    END;Obviously, I got a mutating problem, so how can I implement this trigger to avoid mutating problem?
    Thanks in advance
    Sam

    Hello Sam,
    you are posting in the wrong forum, because this one is for the SQL Develper tool and not for general SQL questions.
    Having said that, you could try autonomous transactions but this could lead to deadlocks and other bad things.
    Hope that helps,
    dhalek

  • How to solve mutation problem

    how to solve the mutation problem in triggers
    Could you please guide me the steps to solve this

    Don't select from the same table in the trigger.
    (I'm pretty sure, it is not needed.)
    Think about your logic again, in most cases the trigger is the wrong approach.
    Tell us, what your business requirement is; what you are going to solve with a trigger.

  • Compound trigger for mutating

    hi guys,
    Need you mastery about mutating table.
    how can I rewrite sample trigger below, in compound trigger to avoid mutating table?
    oracle version:
    Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    "CORE 11.1.0.7.0 Production"
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    Table1 has (col1,col2,col3,col4)
    Table2 has(col1,col2,col3,col4,col5)
    Table3 has(col1,col2,col3,col4,col5)
    Table4 has(col1,col2,col3,col4)
    Create or replace trigger tble1_after_insert
    after insert on tabl1
    referencing old as old new as new
    for each row
    Begin
    Insert into table4
    ( select table1.col1,table1.col2,table2.col3,table3.col4
    where table1.col1 = table2.col1 (+)
    and table2.col3 = table3.col3(+)
    and table.col1 = :new.table1.col1)
    End;
    Mutating problem will occur on table1, that's why I need to convert the script on compound trigger.
    If there will be a better way rather than compound trigger kindly share your ideas.
    thank you in advance

    zacky wrote:
    Hi Guys,
    Thanks for the references.
    @ Paul thanks for the idea, follow up question I have another condition on where clause; below is the actual script
    (part of insert into Table select statement)
    SELECT O.order_id,
    COALESCE (dl.isbn, cl.isbn, ol.product_id) eisbn,
    CO.organisation_id,
    O.order_status,
    O.order_type,
    CL.collection_id,
    DECODE(cl.concurrency_flag, 0, 0, 1, cb.concurrency_limit) access_limit
    FROM ebook_order O,
    ebook_isbn_data_load DL,
    ebook_order_line OL,
    ebook_collection_list CL,
    ebook_concurrency_band CB,
    consortium_organisation CO,
    ebook_order O
    WHERE o.order_id = ol.order_id
    AND ol.product_id = cl.collection_id(+)
    AND cl.isbn = dl.ean13_of_set(+)
    AND o.concurrency_band_code = cb.concurrency_band_code
    AND o.body_id = co.consortium_id
    AND o.order_status = '4'
    AND o.order_type IN ('P','G','S')
    AND o.order_id = 10020743
    since I created the trigger on ebook_order, then I need to remove that table in order to avoid mutating it is possible
    to do something like script below
    SELECT :new.order_id,
    COALESCE (dl.isbn, cl.isbn, ol.product_id) eisbn,
    CO.organisation_id,
    :new.order_status,
    :new.order_type,
    CL.collection_id,
    DECODE(cl.concurrency_flag, 0, 0, 1, cb.concurrency_limit) access_limit
    FROM
    ebook_isbn_data_load DL,
    ebook_order_line OL,
    ebook_collection_list CL,
    ebook_concurrency_band CB,
    consortium_organisation CO,
    ebook_order O
    WHERE :new.order_id = ol.order_id
    AND ol.product_id = cl.collection_id(+)
    AND cl.isbn = dl.ean13_of_set(+)
    AND :new:concurrency_band_code = cb.concurrency_band_code
    AND :new.body_id = co.consortium_id
    how about on this part? I'm not sure with this one
    AND o.order_status = '4'
    AND o.order_type IN ('P','G','S')
    AND o.order_id = 10020743
    unless I can put IF THEN statement if something like below code
    If :new.order_status = 4 and (:new.order_type ='P' or :new.:new.order_type ='G' or :new.order_type='S') then
    thanks in advanceHow about:
    and :new.order_status = 4
    and :new.order_type in ('P','G','S')
    and :new.order_id = 10020743Though it strikes me as unusual to have a trigger that only does something when a particular order id is inserted.
    BTW Please read {message:id=9360002} and follow the advice there. In particular
    the bit about formatting your code and putting it between tags.
    Also, try to get out of the habit of upper casing your SQL - it's very COBOL (i.e. old-fashioned and not much use).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • MacBook Pro does not boot when 'cold', Windows 7 on the other hand boots without any problem

    Hey everyone,
    I have a strange problem with my MacBook Pro mid 2009 13" running OSX Mavericks. For more than a year I have trouble booting my laptop. A 'cold' start (a fresh boot) usually ends with the prohibition sign on a grey back ground (starting in verbose mode results in the error message that the main drive could not be found). So far so strange.
    I have Windnows 7 installed as a bootcamp partition. If I start the laptop with Windows booting is no problem and Windows runs smoothly (what a terrible world we live in). If I let the laptop run for let say 10 minutes and restart the laptop Mac OS starts without any problems. (It doesn't work if I immediately restart after windows booted; also reinstalling Mac OS as a clean install from an external medium did not change the problem; disk utility always finds something to repair but neither discpermission repair nor disk repair got rid of the problem).
    As an additional comment a WD 500GB Scorbio Blue replaced the original hard drive about a years ago. I had no problems with the hard drive initally and I can't really believe that there is a problem with the hardware, I mean, why does Windows start and Mac OS doesn't?
    Thanks for your time and help!
    Marco

    This isn't a direct answer to your issue but have you considered installing Wine so you can run the occasional windows app directly in OSX? It's a much more elegant solution IMHO. This avoids restarting all the time with Bootcamp and avoids crashing all the time (and the security risks) with Windows running.

  • I have bought a Season pass for The Big Bang Theory. I have downloaded alle recent Epiodes without any Problems. But now... i can't download the latest Version for free. Itunes doesn't recognize my Season pass and let's me buy it again. Whats going?

    I have bought a Season pass for The Big Bang Theory. I have downloaded alle recent Epiodes without any Problems. But now... i can't download the latest Version for free. Itunes doesn't recognize my Season pass and let's me buy it again. Whats going? Do I miss something?
    Best regards,
    Michele

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • My apple tv mirroring is slow.  So slow it shuts off.  Any thoughts on cause?  I use this device in my office for presentations without a problem.  In my home with a stronger wifi router, I'm having issues.

    My apple tv mirroring is slow.  So slow it shuts off.  Any thoughts on cause?  I use this device in my office for presentations without a problem.  In my home with a stronger wifi router, I'm having issues.

    Welcome to the Apple Community.
    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • I am trying to connect to my friend's wifi, i have a very strong signal indicated on my ipad, but cannot connect to the internet.  Yesterday i connected without any problem, can anybody tell me why i cannot connect today?

    i am trying to connect to my friend's wifi, i have a very strong signal indicated on my ipad, but cannot connect to the internet.  Yesterday i connected without any problem, can anybody tell me why i cannot connect today?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • I am showing firefox in my tray but when I click on it, it will not open to a full screen. I have been using it up until today without a problem in Windows 7

    When I put my mouse over the firefox icon in the lower tray it shows small pictures of the home page but when i click on these they will not open to a full page. I am using windows 7. This problem just started today. I can use internet explorer without a problem. Thanks for any assistance you can give. I contact HP and they said to contact your support as they only support internet explorer.

    below is what I get with the dev.jeffersonscher.com etc. url. But what do I do with this information? I can launch safe mode, but I still get only the 2" icon/window of Firefox.
    JavaScript Browser Tests
    navigator object properties
    navigator.userAgent = Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
    navigator.appName = Microsoft Internet Explorer
    navigator.appCodeName = Mozilla
    navigator.appVersion = 5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
    navigator.platform = Win32
    DOM methods/collections
    if(document.getElementById) = true
    if(document.layers) = false
    if(document.all) = true
    window properties
    if(top.window.moveTo) = true
    if(top.window.moveTo(0,0)) =
    The following data is reported by a server running Microsoft IIS server and ASP:
    View selected http headers at <a href="svrvars.asp">svrvars.asp</a>

  • Hello everyone: I am going to buy a new ipad in Australia and after that I am going back to China. I am just wondering if I can use it in China without any problem? Do I have to unlock or something like that?

    Hello everyone: I am going to buy a new ipad in Australia and after that I am going back to China. I am just wondering if I can use it in China without any problem? Do I have to unlock or something like that?

    The iPad is not locked. Read the specifications.
    http://www.apple.com/ipad/specs/

  • I have been using Final Cut pro v6 without any problems but recently had to reinstall.  Since then I can't open and view all my Quicktime clips.  They appear white in timeline which means you can hear audio but not view picture.  Any tips?

    I have been using Final Cut Pro without any problems - v6 - for ages.  I recently had a hardware issue and had to reinstall the software.  Since then I can't open most of my QT clips in my fcp project.  They appear as white clips - audio only no pictures.  There are a few QT clips you can view as regular thumbnail images and they play ok.  What's the issue?  I have fcp v6.0.6 and QT v7.  Any thoughts on what to do next?

    Yes I did software updates which updated fcp to 6.0.6 and QT to version 7.7.  That's as far as updates have taken me although i have requested daily updates.  I forgot to say the clips don't play in QT view either.  Again sound but no pictures when they are played.

  • FF 3.6 AND 5 on same Mac, 1 profile - can I uninstall 5 without causing problems running 3.6 or with the profile?

    I upgraded from 3.6.16 to 5, but don't like how 5 handles tabs (auto reloading 'problem loading' tabs when internet connection is reestablished). So I installed 3.6 in a separate folder, e.g. both versions are on this computer. I went back to using 3.6, and let it upgrade to either 3.6.18 or 19 (don't recall which & it's not open right now). I'm having problems with it using too much CPU & Memory, and not sure if that's a difference between 3.6.16 & 3.6.18/19, or if having 5 on the same computer even if closed could be causing the problem.
    Can I uninstall 5 without causing problems with the 3.6 version and the single profile?

    If you haven't tried this, give it a try. It worked for me, hopefully it will work for you. In your version 3 firefox, disable all extensions, I had two plugins (doubletwist and joost, disable those if you have them). Then install firefox 5 by overwriting your version 3 firefox. It should work fine after that. I tried everything before, I gave that a last ditch shot. Oh yeah, before you install firefox 5, clear your cache of everything just to be sure.
    Hopefully that helps.

  • Hi, I cant open a document I have been working on. It has previously been saved without a problem now all I get is a box stating that the file cannot be opened. Any suggestions please?

    Hi, I reecntly purchased a Mac and the Pages App. But now I find that I cant open a document I have been working on. It has previously been saved without a problem now all I get is a box stating that the file cannot be opened. It is visible in both the Pages Windows and under Recent Items but just will not open. Any suggestions please?

    Hi Colourdoodles,
    Maybe the document is corrupted. Can you open other Pages documents? Preview may open it. Right click (or control click) on the document in Finder and Open With > Preview.
    If that works, Edit > Select All, Edit > Copy. Then paste into a blank Pages document. Formatting may be messed up, but you will have editable text. Then Save (with a different name), close and see if you can open the new document.
    Regards,
    Ian

  • I have been using Elements 12 without a problem for 9 months.  Now when I try to open the program, I get an error message  "Adobe Photoshop Elements 12 quit unexpectedly" and it will not open at all.  What can I do to open the program?

    I have been using Elements 12 without a problem for 9 months.  Now when I try to open the program, I get an error message  "Adobe Photoshop Elements 12 quit unexpectedly" and it will not open at all.  What can I do to open the program?

    Thank you for responding.  Nothing actually worked!  After reading the posts online, I called Apple.  They indicated they have seen problems with some software after their upgrades.  The technician was able to fix the problem on my computer remotely, but I have no clue what he did!  But, it was definitely related to their recent upgrade to my computer.

Maybe you are looking for

  • Edited photo doesn't save to PC (iOS 8)

    (iOS 8, iPhone 6) When I use the iPhone Photos app to edit a photo to, for example, remove red-eye and/or use the magic wand tool, then click "Done," it says it saves. I can go back into edit mode with that photo later and it always gives me the opti

  • Service interface with more than one operation

    Hi all, is it possible to have a service interface with more than one operation? I have found this blog: http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414900)ID0209118050DB10459657028039341762End?blog=/pub/wlg/15123 But this sentence: ABAP

  • [Solved] game has no sound

    again, after i installed system, i want to run skulltag. i installed everything, everything runs but sound doesnt work. i have flac and libfmod installed, anyone know the solution? in everywhere else sound is working fine Last edited by syms (2009-03

  • Index: The argument is out of range: 8 0 or 8 =8. (Error: RWI 00012)

    Hi Friends, One of my user is receiving the below error, pls help me is resolving this. index: The argument is out of range: 8<0 or 8>=8. (Error: RWI 00012) Thanks in Advance MMVIHAR

  • Invoice Block -IR before GR

    Dear SAP Gurus, Please could you suggest me  solution  for the below question. Most of the cases  Invoice  posted  before the GR is posted, at this stage  client wants to block the invoice's for payment automatically. After GR posting, probably we ca