I HAVE ANOTHER PROBLEM WITH MY DECODE

Here is the following decode in an SQL statement.
SELECT
SUM(DECODE(V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) > 0) AND
((V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) <= 30),1,0)
FROM NCOER V, NCOER_IN_ERROR NIE, NCOER_ERROR NE, ALL_CMD_VIEW ACV
WHERE V.MIL_CMD_ASGN_CD IN ('FC')
and v.lcl_er_form_cd = '4'
and acv.cmd_cd = v.mil_cmd_asgn_cd
and nvl(acv.lcl_code_stat,'N') = 'Y'
and NVL(v.lcl_omit_from_stats_ind,'N') <> 'Y'
AND V.PSC_CD IN ('FS10')
AND (V.LCL_ER_RECV_DT >= '01-MAR_2007' AND V.LCL_ER_RECV_DT <= '31-MAR-2007')
AND ((V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) > 0) AND((V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) <= 30)
AND V.IND_SSN = NIE.IND_SSN(+)
AND V.IND_ER_PER_END_DT = NIE.IND_ER_PER_END_DT(+)
AND V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)
AND V.IND_SSN = NE.IND_SSN(+)
AND V.IND_ER_PER_END_DT = NE.IND_ER_PER_END_DT(+)
AND V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)
I get the following error message ORA-00907 Missing right parenthesis
I want to sum up all the records when the difference between 2 dates is greater than 0 and less than 30. I know that I can do it by using a COUNT function and without a DECODE but I would like to use a DECODE. How do I go about doing this?

in DECODE() you cannot include an operators such as the greater than, less than, and/or equal sign.
instead you can use the CASE...WHEN in the SELECT statement:
SELECT Sum(case when (V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) between 0 and 30 then 1
                else 0
           end) as sm
  FROM NCOER V, NCOER_IN_ERROR NIE, NCOER_ERROR NE, ALL_CMD_VIEW ACV
WHERE V.MIL_CMD_ASGN_CD IN ('FC')
   and v.lcl_er_form_cd = '4'
   and acv.cmd_cd = v.mil_cmd_asgn_cd
   and nvl(acv.lcl_code_stat,'N') = 'Y'
   and NVL(v.lcl_omit_from_stats_ind,'N') <> 'Y'
   AND V.PSC_CD IN ('FS10')
   AND (V.LCL_ER_RECV_DT >= '01-MAR_2007' AND V.LCL_ER_RECV_DT <= '31-MAR-2007')
   AND ((V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) > 0) AND((V.LCL_ER_RECV_DT - ADD_MONTHS(V.IND_ER_PER_END_DT,3)) <= 30)
   AND V.IND_SSN = NIE.IND_SSN(+)
   AND V.IND_ER_PER_END_DT = NIE.IND_ER_PER_END_DT(+)
   AND V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)
   AND V.IND_SSN = NE.IND_SSN(+)
   AND V.IND_ER_PER_END_DT = NE.IND_ER_PER_END_DT(+)
   AND V.LCL_ER_RECV_DT = NE.LCL_ER_RECV_DT(+)note: untested.

Similar Messages

  • Hi everyone,I have an Iphone 4S,when I updated iOS 7 my phone got slow,so please help me how to downgrade it to 6.1.3 or 6.1.3,I have another problem with iOS 7,I cant request my credit balancing,when i type *101

    Hi everyone,I have an Iphone 4S,when I updated iOS 7 my phone got slow,so please help me how to downgrade it to 6.1.3 or 6.1.3,I have another problem with iOS 7,I cant request my credit balancing,when i type *101# automatically calls and says "this number dows not excits",I wnat iOS 6.1.2 back ..

    sorry for my bad english ..

  • I have another problem with my restored sent e-mail messages

    I like to back up my mail on my MacBook Pro. Ever since I restored my sent e-mail messages on my iMac using its TM, I copy my mail folder on my MacBook Pro but the sent messages doesn't work on my MBP.
    I think that I know the cause is, on my external drive it says: Backup for Steve's iMac. I think that means the backups will only work for my iMac.
    So here's my question, is there anyway to change my sent e-mail messages to universal so they will work both in my iMac and my MBP again?
    BTW, although I have time capsule for my MBP but I use mail exclusively on my iMac. So at the end of the day I just copy my iMac's mail folder into my MBP and only I start my mail application in my MBP is to make sure that all of the changes are there. I do this day after day.
    So the changes come from my iMac, do you know what I mean?

    Sounds like a permission problem, but I can't be sure.
    You may benefit from MobileMe to sync your email instead of copying and pasting.
    Just a thought.

  • Another problem with SOAP sender

    I have another problem with SOAP scenario in a different environment (PI 7.0) from my earlier post.
    Scenario:
    Soap Sender -> PI -> Soap Receiver
    Following steps from GoogleSearch SOAP scenario in the SAP How-to Guide for SAP NetWeaver '04 entitled: "How To... Use the XI 3.0 SOAP Adapter" version 1.00 - March 2006.
    I have loaded in the api.google.com/GoogleSearch.wsdl file as an External definition and created the SOAP receiver as described in the How-to guide.  It takes a doGoogleSearch as input and sends back a doGoogleSearchResponse (Sync Call). 
    Note that the GoogleSearch.wsdl contains a complex type ResultElementArray that refers to ResultElement\[\], and a DirectoryCategoryArray that refers to DirectoryCategory\[\].  The ResultElement and DirectoryCategory types are defined in the GoogleSearch.wsdl file.
    Problem One:
    The generated WSDL for the SOAP sender contains the ResultElementArray and DirectoryCategoryArray types but it DOES NOT contain the required ResultElement and DirectoryCategory types.  XML Spy complains that this WSDL is not valid because the type ResultElement\[\] is not defined.
    Problem Two:
    I generate a SOAP message in XML Spy, provide values for the doGoogleSearch fields, and send.  In SXMB_MONI, the SOAP sender payload contains only the <key> value from the doGoogleSearch message body, i.e. <part name="key" type="xsd:string" />
    The other doGoogleSearch fields seem to be missing, i.e.
      <part name="q" type="xsd:string" />
      <part name="start" type="xsd:int" />
      <part name="maxResults" type="xsd:int" />
      <part name="filter" type="xsd:boolean" />
      <part name="restrict" type="xsd:string" />
      <part name="safeSearch" type="xsd:boolean" />
      <part name="lr" type="xsd:string" />
      <part name="ie" type="xsd:string" />
      <part name="oe" type="xsd:string" />
    Does anyone know why:
    (1) PI/XI seems to leave out the ResultElement and DirectoryCategory types from the SOAP sender service WSDL file?
    (2) The doGoogleSearch message seen in SXMB_MONI contains only the first <key> field, and not the other fields?
    Thanks for any help with this.

    I have another problem with SOAP scenario in a different environment (PI 7.0) from my earlier post.
    Scenario:
    Soap Sender -> PI -> Soap Receiver
    Following steps from GoogleSearch SOAP scenario in the SAP How-to Guide for SAP NetWeaver '04 entitled: "How To... Use the XI 3.0 SOAP Adapter" version 1.00 - March 2006.
    I have loaded in the api.google.com/GoogleSearch.wsdl file as an External definition and created the SOAP receiver as described in the How-to guide.  It takes a doGoogleSearch as input and sends back a doGoogleSearchResponse (Sync Call). 
    Note that the GoogleSearch.wsdl contains a complex type ResultElementArray that refers to ResultElement\[\], and a DirectoryCategoryArray that refers to DirectoryCategory\[\].  The ResultElement and DirectoryCategory types are defined in the GoogleSearch.wsdl file.
    Problem One:
    The generated WSDL for the SOAP sender contains the ResultElementArray and DirectoryCategoryArray types but it DOES NOT contain the required ResultElement and DirectoryCategory types.  XML Spy complains that this WSDL is not valid because the type ResultElement\[\] is not defined.
    Problem Two:
    I generate a SOAP message in XML Spy, provide values for the doGoogleSearch fields, and send.  In SXMB_MONI, the SOAP sender payload contains only the <key> value from the doGoogleSearch message body, i.e. <part name="key" type="xsd:string" />
    The other doGoogleSearch fields seem to be missing, i.e.
      <part name="q" type="xsd:string" />
      <part name="start" type="xsd:int" />
      <part name="maxResults" type="xsd:int" />
      <part name="filter" type="xsd:boolean" />
      <part name="restrict" type="xsd:string" />
      <part name="safeSearch" type="xsd:boolean" />
      <part name="lr" type="xsd:string" />
      <part name="ie" type="xsd:string" />
      <part name="oe" type="xsd:string" />
    Does anyone know why:
    (1) PI/XI seems to leave out the ResultElement and DirectoryCategory types from the SOAP sender service WSDL file?
    (2) The doGoogleSearch message seen in SXMB_MONI contains only the first <key> field, and not the other fields?
    Thanks for any help with this.

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • Friends,  i  have a problem with safari . Whenever i am typing in the safari main bar , so in the halfway through the typing my sentence/words are shifting to another main google search and in the end i have to type again in google

    Friends, 
    i  have a problem with safari . Whenever i am typing in the safari main bar , so in the halfway through the typing my sentence/words are shifting to another main google search and in the end i have to type again in google. I have attached a sample screenshot of the safari problem which i am facing. In this particular example i wanted to write Print Screen, however halfway,my typing automatically shifted to google bar?? can you guys help me.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • I have a problem with iphone 4s...is ringing but another sounds not working....please help me!!!

    i have a problem with iphone 4s...is ringing but another sounds not working....please help me!!!

    Hi pystyke,
    Welcome to Apple Support Communities.
    You may find these links helpful with troubleshooting the audio issue you're experiencing:
    iPhone Assistant
    http://www.apple.com/support/iphone/troubleshooting/
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Best,
    Jeremy

  • Hi, i have a problem with my credit card so want to use a card from another country but cannot change my country settings

    hi, i have a problem with my credit card so want to use a card froma different country but cannot change my country settings

    Hi balalbas,
    If you are having issues changing the country associated with your iTunes Store account, you may find the following article helpful:
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Regards,
    - Brenden

  • Is there a phone number to call Adobe.  I go around an endless loop pressing their contact info tabs?  Maybe someone at this sight can help. I am new to digital photo - I have been a B&W film photographer for many years. I have a problem with a Macbook Ai

    Is there a phone number to call Adobe.  I go around an endless loop pressing their contact info tabs?  Maybe someone at this sight can help. I am new to digital photo - I have been a B&W film photographer for many years. I have a problem with a Macbook Air.  It was working fine - I was using LR and a message came on the screen that said something like the memory was dangerously low.  I stopped and tried to delete LR files.  I couldn't do it.  I closed the program and tried reopening and got the message that there is not enough memory available to open LR.  I contacted Apple.  They spent a half hour on the phone with me and eventually told me they didn't know how to help. The tech said that LR had gobbled up all the memory and said I should contact Adobe and ask where and how my photo files are stored and to delete them.  I have several back-ups.  Thanks - Arthur

    This sort of error message only comes up for Lightroom when your hard disk is full. Indeed this has nothing to do with internal memory as that will be intelligently be dealt with. If you have a mac Book Air that is not so surprising as the cheapest versions come with very small hard disks and if you shoot raw with any recent camera, you'll fill up your hard disk very quickly and you can probably only store a few months of pictures if you are a typical photographer. So the bottom line is that you need to create some room on your hard disk. You should move some of your originals to an external hard disk. You can also delete some of your backup copies of your catalog file that Lightroom automatically generates every few days and that quickly gobble up hard disk space. So first figure out how full your hard disk is. To see that, go to the apple menu, hit -> About this Mac -> More info->Storage. You should see your internal hard disk on top and you'll find that it is almost entirely full with photos. Now find your Lightroom catalog file using Finder. It is usually in a folder in the Pictures folder in your home directory. You should see a Lightroom 5 Catalog.lrcat file, a previews file and a folder called backups. Inside the backups folder, you'll find a lot of subfolders. They have names that show the dates the backups were created. If you have backups of your entire hard disk, you can delete these backups when they are older than a few months. I usually only keep the last 4 around. Just drag the folders into the trash can on the dock on the bottom of your screen and empty the trash. This will probably free up enough space that Lightroom will already run again. Now start thinking about where you will want to store older images. If you have a good USB3 or Thunderbolt hard disk that is probably the best option. There is a video here by Adobe that has some instructions on how to do this: Is Your Hard Drive Full? Here’s How to Move Images to Another Drive in Lightroom. « Julieanne Kost's Blog If that doesn't work because you don't have enough hard drive space to run Lightroom yet, here is another set of instructions to move your files using the finder to the other hard disk: How do I move only my photos to another hard drive, leaving the catalog where it is? - The Lightroom Queen. If you follow that, as soon as you confirm all your images are on the new hard disk, you can delete them from your internal one. She is not so clear about that part but if you don't delete the originals that you moved off you don't free up space. You should move the folder structure over to the new hard disk and then reconnect the folders in Lightroom. That should make it refind all your images.
    That said, if you are uncomfortable with the computer in itself, your best bet is to find a local photography club. There is invariably a Lightroom savvy person in there that could help you move your files. That might be your best bet if you are uncomfortable moving these yourself. A general mac savvy person like you would find at an Apple store or so generally will not be able to help you with this except when they are photographers themselves and know Lightroom. You might get lucky with that.

  • Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/821825]</blockquote><br>
    Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop. I have a few of these shortcut to website I use a lot. When I click on the short I get the message "windows cannot find [then the web address] make sure you typed the name correctly, then try again. To search for a file, click the Start button, and then click Search." I tried deleting the shortcut and setting it up again but still get the message.

    Try to redo the default browser and make another browser like IE the default browser and then let Firefox do it again.
    See:
    * http://kb.mozillazine.org/Default_browser
    * [[Setting Firefox as the default browser does not work]]

  • Hi, I have a problem with my ipod touch: I can not activate my ipod with my Apple ID, it tells me that my account can not activate this device, but my ID apple is OK and the ipod is mine, I have my ballot, HELP PLEASE

    Hi ...
    I have a problem with my ipod touch:
    I can not activate my ipod with my Apple ID, it tells me that my account can not activate this device, but my apple ID is OK.
    The proposed me as ipod help entering previous credentials, but the ipod is mine from the beginning, in fact I have my ballot, not bought down to another user.
    Actually I do not know how to activate it in Chile were unable Store MacOnline solve my problem, it is for this reason that I am writing to see if someone can help me.
    PLEAAASEEE
    Thank you.
    Sebastian

    Thanks for your answer.
    actually, my ipod will not let me activate it with apple id, this happened when the new iOS acutalizó understand that has more security, but do not know what to do.

  • K7N2 deltas mainboards have a problem with usb devices ??

    Ok here is my problem..
    I had installed WinXP Pro with SP1..
    I got a 20 GB USB2.0 disk.i connected it on the both front or rear usb ports.
    When i tried to transfer files to my usb disk or to my PC, in the middle of the copying, i got "Write Delay Failed" error and lost my usb connection..
    I had to plug it out and in again..
    Now, i have an DSL modem..Last night, i was disconnected from internet and my modem's lights gone..I plug it again, no lights..restarted my PC, also completely shutdown Windows XP..Again no lights..
    Then, formatted PC and installed windows 2000 Pr and SP4, until now, my modem worked fine..But USB 2.0 ports are still no use for my usb disk...
    In bios , it's enabled as USB 1.1+2.0..
    I think this K7N2 deltas have a problem with usb 2.0 devices and Win XP Pro..
    Some guys talking about, removing 9th wire earth, but couldn't understand which wire from where ? From mainboard or from usd device's cable ?
    Those cables are fabricated, i think it's impossible ?
    My processor is Athlon 2500+, ram Twinmos 512 DDR 400
    Thanks for reply

    I'm also having this problem. It's happening with my USB flash disk. I was almost buying another one when I tried it with Windows Vista on the same machine and it worked ok, then I tried Arch Linux (with kernel 2.6.30.5) on another machine and got the same error. After that I tried Ubuntu and it worked ok. Seems that Arch's kernel doesn't like my USB flash disk.
    Last edited by esdrasbeleza (2009-09-02 01:16:09)

  • Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it acr

    Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it across all the places around to pay their attention. This is a desperate move, so if you are not the right people to help me to get my message accross, may be you can advise where can I go.
    Thank you, and sorry for the language.
    Vitas Dijokas
    I am sorry to say that, but your security makes my life miserable – it’s been 2 months since my Apple ID account got stuck, and since then I cannot update 37 applications (to date), i.e. most of my applications. Half of them I bought. I also paid for iCloud, and it is not working. I paid money and I am stuck with old applications and no iCloud. Your security *****. Your service ***** too. It took your service 1 month to finally understand why this happened to me, and it took me tens of emails to you and 3 hours of telephone conversation to find out the reason for my problem. And the problem is still not fixed. NOT FIXED. You just leave your customer – the one who paid you money and spent so much time with you trying to help you help me – and nothing. You tell me:  “Vitas, Stick your stinky iphone in your *** and enjoy life, we do not care!” *************.
    It is ******* outrageous, and you should know that,  guys. Get into the ******* database and correct the bug. Get someone in the partners-telephone carriers company (it is Orange as carreer and Cellcom as seller of the phone)  authorized to Identify me in personal encounter in one of the branches in Israel (where I live) and make sure it is really me, and get the ******* system accept my password and let me use my phone.
    Otherwise **** off. None of my friends will get my advise to buy an iphone or any of apple products. And I think you should be very attentive to cases like this, guys. Do your work for the money we pay, or disappear. There are many others eager to take your place, and if the problem is not fixed I will eventually go to the others. My patience is lost, and as soon as I can afford another phone I will change it. AND I WILL TRY TO GIVE BAAAAAD PUBLICITY TO APPLE – I am threatening here, so ACT NOW.
    Vitas Dijokas

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

  • Hello, I have a problem with the iPod, is that the iPod does not sync all the songs that are on my Itunes. I have 373 songs on the iPod and iTunes 512 in ... What do I do?

    Hello,i have a problem with the Ipod,is that the Ipod doesn't sync all the songs in my Itunes. I have 373 songs in my Ipod and 512 sons in my Itunes. What do i do?

    Hello,
    I take it you haven't unticked any of the songs listed on your iTunes Library? Also have you tried selecting all your songs which you wish to add to your iPod, and dragging them over your Devices "iPod Nano"; and seeing if that copies all songs on to your iPod?
    Another idea is just check that your iPod has enough space for the rest of your songs to be added to your device.
    Hope this helps.

  • Hi, I have a problem with my Epson Stylus NX420. I had it connected and it worked fine but then all of a sudden it just stopped. It said it was offline, but it wasn't. So I tried to reinstall the printer, so i deleted it and clicked the   button to add

    Hi, I have a problem with my Epson Stylus NX420. I had it connected to my computer, and it worked fine. But I preformed a remodel and before the printer was connected to a windows desktop, and now it is not. I don't know if this could the be the cause of the problem. But I tried to print something and it showed me the printer as offline, but it wasn't. Thus to try to fix this, as I have done before I deleted the printer and tried to add it again. But as I went to add it, the printer was not there. I have searched the internet for an answer and I have found nothing. I do not understand why this has happened, nor how to fix it. Please help me.

    Because you had the printer connected to Windows, the print queue on your Mac was for this connection. With you moving the printer away from the Windows computer, the print queue on the Mac will no longer work and will show offline. So for the new connection of the printer you have to create a new print queue.
    Now the question is; how is the printer connected to the Mac. If it is connected by USB to the Mac then it should appear in the Default Add Printer view. If it is connected to the Mac via some other method, then could you reply with how it is connected.
    If it is connected to the Mac by USB then the most likely cause for the printer not appearing in the Default Add Printer view is thenUSB printer cable. So try disconnecting it and reconnecting it or even try another USB printer cable.

Maybe you are looking for

  • Error when saving a file with whatever text

    Suddenly when I am going to save a file wich has text, unknow error ocurs and can not save the file, if I delete the text, the file saves fine, no matter what text or font I choose. It is weird. The app was working fine a few days ago. I have 3 users

  • Get the index of the current line in use

    Dear All, Well how can i get the index of the current line in use? this the code I am using : Dim i As Integer Set oBatchForm = SBO_Application.Forms.GetForm(Form_Id, 1) Set oMainMatrix = oBatchForm.Items.Item(Matrix_Id).Specific For i = 1 To oMainMa

  • How-to install FOP in Apex Listener 2.0 with glassfish

    Hi, I need to develop a PDF report in APEX 4.2.1. I want to use FOP. My setup is Apex Listener 2.0, Glassfish 3.1.2. According to the documentation, I should be able to use FOP with that setup. But there's no documentation that explain how to install

  • Can't login to Facebook account

    I've entered email/password, per regular account, under the Add Accounts widget. I keep getting the "Internat Server error, try again" message. I've checked and rechecked my typing. I can enter it by going through the browser/Facebook/etc. But I want

  • Legacy Tab Doesn't Show

    I just currently bought my macbook pro. When I opened Garageband for the first time, it had me download version 10. I am currently trying to sample music but the legacy tab doesn't come up for me in software instruments to use sound effects to place