Which kind of error is it?

Hi, we use WLS 6.1 sp2 on win2000, it throws the following error from time
to time,
What kind of error is it?
Thanks,
Levi
<Error> <HTTP> <[WebAppServletContext(7582243,DefaultWebApp,/DefaultWebApp)]
getRealPath() called with unsafe path:
"/_mem_bin/..\../..\../..\../winnt/system32/cmd.exe/"
weblogic.utils.io.FilenameEncoder$UnsafeFilenameException:
F:\bea\winnt\system32\cmd.exe\ not under:
F:\bea\wlserver6.1\config\mydomain\applications\DefaultWebApp
at weblogic.utils.io.FilenameEncoder.getSafeFile(FilenameEncoder.java:198)
at
weblogic.servlet.internal.WebAppServletContext.getRealPath(WebAppServletCont
ext.java:544)
at
weblogic.servlet.internal.WebAppServletContext.findIndexFile(WebAppServletCo
ntext.java:2931)
at
weblogic.servlet.internal.WebAppServletContext.resolveRequest(WebAppServletC
ontext.java:2872)
at
weblogic.servlet.internal.WebAppServletContext.resolveRequest(WebAppServletC
ontext.java:2684)
at
weblogic.servlet.internal.WebAppServletContext.dispatch(WebAppServletContext
.java:2358)
at
weblogic.servlet.internal.MuxableSocketHTTP.dispatch(MuxableSocketHTTP.java:
547)
at weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:643)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

Yes, actually I talk about Digital editions. Do you know how to solve the problem as described in my first mail for Digital Editions? Thanks for your  kind assistance.

Similar Messages

  • 'what kind of error 'plzzz help

    hi all
    plz check the following code and error which it is givn 2 me. how shld i rectify it? not able to get what kind of error it is.
    *& Report  ZNBS_FI_FS10N
    REPORT  ZPRAC_FI_VENDORSTATEMENT.
    Report Title          : Display Line item balances for VENDORs with opening balances
    Functional Consultant : Mr ShreeHari
    ABAPER                : Sanjay K, NBS
    TYPE-POOLS slis.
    DATA   :   fcat               TYPE slis_t_fieldcat_alv WITH HEADER LINE,
               ls_event               TYPE slis_alv_event,
               repid                  LIKE sy-repid.
    DATA   :   b_layout               TYPE slis_layout_alv.
    DATA   :   gt_events              TYPE slis_t_event WITH HEADER LINE.
    DATA   :   lt_list_commentary     TYPE slis_t_listheader,
               l_logo                 TYPE w3_qvalue.
    TABLES : BSAK, ska1, bsis, bkpf, thead, t003, t003t, LFA1, skat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS pbukrs FOR bsis-bukrs default '1000'.
    SELECT-OPTIONS pLIFNR FOR LFA1-LIFNR  default '410028'.
    SELECT-OPTIONS pbudat FOR bsis-budat OBLIGATORY default '20060401' to '20061219'.
    SELECTION-SCREEN END OF BLOCK b1.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           dmbtr LIKE BSAK-dmbtr,
           wrbtr LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           ltext LIKE t003t-ltext,
           END OF itab.
    DATA TEXT(60). " LIKE t003t-ltext.
    DATA jtab LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF final OCCURS 0,
            belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           debit LIKE BSAK-dmbtr,
           credit LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           balance LIKE BSAK-dmbtr,
           ltext LIKE t003t-ltext,
           END OF final.
      DATA : BEGIN OF output OCCURS 0,
             belnr LIKE bsis-belnr,
             bukrs LIKE bsis-bukrs,
             gjahr LIKE bsis-gjahr,
             blart LIKE bkpf-blart,
             bldat LIKE bkpf-bldat,
             budat LIKE bkpf-budat,
             LIFNR LIKE LFA1-LIFNR,
             ddebit LIKE BSAK-dmbtr,
             ccredit LIKE BSAK-wrbtr,
             shkzg LIKE BSAK-shkzg,
             balance LIKE BSAK-dmbtr,
             ltext LIKE t003t-ltext,
             hkont LIKE bsis-hkont,
             bschl LIKE bsis-bschl,
             TXT50 LIKE SKAT-TXT50,
             END OF output.
    ********FOR OPENING BALANCE.
    DATA : BEGIN OF open OCCURS 0,
           wrbtr LIKE BSAK-wrbtr,
           dmbtr LIKE BSAK-dmbtr,
           bukrs LIKE BSAK-bukrs,
           shkzg LIKE BSAK-shkzg,
           END OF open.
    DATA clear LIKE open OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF bal OCCURS 0,
          dbal LIKE bsis-wrbtr,
          cbal LIKE bsis-dmbtr,
          shkzg LIKE bsis-shkzg,
          END OF bal.
    DATA date TYPE sy-datum.
    MOVE pbudat-low TO date.
    date = date - 1.
    DATA: BEGIN OF balance OCCURS 0,
          debit LIKE bsis-wrbtr,
          credit LIKE bsis-dmbtr,
          total LIKE bsis-dmbtr,
          END OF balance.
    DATA : BEGIN OF line OCCURS 0,
           belnr LIKE bsis-belnr,
           dmbtr LIKE bsis-dmbtr,
           wrbtr LIKE bsis-wrbtr,
           hkont LIKE bsis-hkont,
           gjahr LIKE bsis-gjahr,
           bukrs LIKE bsis-bukrs,
           shkzg LIKE bsis-shkzg,
           budat LIKE bsis-budat,
           blart LIKE bsis-blart,
           bschl LIKE bsis-bschl,
           TXT50 like skat-txt50,
           END OF line.
    TOP-OF-PAGE.
      PERFORM top_of_page.
    START-OF-SELECTION.
    *perform integrate.
      PERFORM fetch.
      PERFORM build_catalog.
      PERFORM layout.
    END-OF-SELECTION.
      PERFORM display .
    *&      Form  Fetch
          text
    -->  p1        text
    <--  p2        text
    FORM fetch .
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF open WHERE bukrs IN pbukrs AND budat LE date  AND LIFNR IN pLIFNR.
        COLLECT open.
      ENDSELECT.
      SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF clear WHERE bukrs IN pbukrs AND budat LE date AND LIFNR IN pLIFNR.
        COLLECT clear.
      ENDSELECT.
      LOOP AT open.
        MOVE : open-dmbtr TO bal-dbal,
               open-wrbtr TO bal-cbal,
               open-shkzg TO bal-shkzg.
        IF open-shkzg = 'H'.
          open-dmbtr = open-dmbtr * -1.
          open-wrbtr = open-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      LOOP AT clear.
        MOVE : clear-dmbtr TO bal-dbal,
               clear-wrbtr TO bal-cbal,
               clear-shkzg TO bal-shkzg.
        IF clear-shkzg = 'H'.
          clear-dmbtr = clear-dmbtr * -1.
          clear-wrbtr = clear-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      CLEAR bal.
      LOOP AT bal.
        IF bal-shkzg = 'H'.
          MOVE  : bal-dbal TO balance-debit.
          CLEAR bal-dbal.
        ELSE.
          MOVE        bal-cbal TO balance-credit.
          CLEAR bal-cbal.
        ENDIF.
        COLLECT balance.
        CLEAR balance.
      ENDLOOP.
    ********FOR LINE ITEMS
      SELECT * FROM bkpf INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat .
        SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN
        pbukrs  AND belnr = itab-belnr AND gjahr = itab-gjahr.
          IF itab-shkzg = 'H'.
            itab-dmbtr = itab-dmbtr * -1.
            itab-wrbtr = itab-wrbtr * -1.
          ENDIF.
          SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
            APPEND itab.
          ENDSELECT.
        ENDSELECT.
      ENDSELECT.
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat AND LIFNR IN pLIFNR.
        IF itab-shkzg = 'H'.
          itab-dmbtr = itab-dmbtr * -1.
          itab-wrbtr = itab-wrbtr * -1.
        ENDIF.
        SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
          APPEND itab.
        ENDSELECT.
      ENDSELECT.
      DELETE itab WHERE LIFNR NOT IN pLIFNR.
    <b>Error: <%_L002> IS NOT AN INTRNAL TABLE-THE OCCURS SPECIFICATION IS MISSING)</b></b>
    error at delete statement.
    its urgent.
    thanks all in advance.
    appropriate reward will b given.

    hi gaurav,
    u created internal table itab with out header line and u r trying to delete it from internal body itself which isn't possible.
    so do like this,
    create workarea [wa_itab] of same structure of itab [internal table] and give delete statement as
    delete wa_itab from itab where condition.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • Some kind of error message...not sure what to do!

    So my 20GB iPod is showing some kind of error message when I either try to turn it on or charge it. The error is a picture of a little iPod who has an unhappy looking face and there is an exclamation point next to it. I have no idea whats going on with the iPod but I have had it for like 2 years so I'm not sure if it's the battery going bad or what.

    See these troubleshooting articles.
    My iPod is sad.
    iPod displays a "sad iPod" icon.
    What does this picture on my iPod mean?
    Also, there is a pretty comprehensive post written by another forum member which is about the sad iPod icon or the folder and ! icon. Be aware that it's quite involved and contains some info that will almost certainly void the warranty. If your iPod is still within the warranty period, you should use that option first.
    The Sad iPod/folder and ! icon.
    You can arrange online service here.
    Service request.

  • Which kind of information are necessary when buying AppleCare+ in an Apple Store? Just Apple ID?

    A friend pf mine is going to buy an iPhone 5S for me in an Apple Store in Miami. If I want to purchase also AppleCare+ which kind of information do I have to give him? Is Apple ID enough?

    wjosten wrote:
    Brush up on your reading skills. No where did I mention reqular AppleCare in any post, and the OP never inquired about AppleCare. We're talking about AppleCare Plus.
    Whether it's the plus version or regular version, they're both called AppleCare.  The only difference between Regular & Plus is the damage protection.  You're graspng at straws, wjosten.  If I say that I filled up my car with gas, are you going to nitpick about whether it was Regular, Plus or Premium?
    Also, where in this document ( http://www.apple.com/legal/sales-support/applecare/applecareplus/docs/applecarep lus_us_tc.pdf ) does it refer to an Apple ID?
    You are in error, wjosten.  I know you HATE when that happens, but this is one of those RARE cases where you are wrong.  Just like the 'passcode lockout' from the other day.  As soon as I provided PROOF that you were wrong, you simply ignored the thread.  And that's fine.  But remember, this isn't personal on any level.  It's about providing correct information to those seeking help.

  • Which kind of array to choose for combining several unsigned byte

    Hi, I have several unsigned byte variables, and want to build them together as an array for future use in configuration saving. Could any one tell me which kind of array I should use? Or should I use "build array"?
    Solved!
    Go to Solution.

    I think you would be better off saving these items individually. It is a bit more work on the code side but it is much easier for a human to edit the file. Use a traditional ini file format such as:
    [Application]
    Station 1 = Enabled
    Station 2 = Disabled
    Logging = Enabled
    Stop on Error = Yes
    This is much more readable for a person. I recommend this sice you are saying this is a configuration file. Generally these will be open for editing by a person.
    If you go with some criptic array format such as
    Parameter = Enable, Enable, Disable, Enable
    You can write a subVI that will return cluster containing your configuration settings. You would also write a similiar subVI for saving the parameters. This VI would also accept the cluster as an input.
    the user will have no clue what they are setting or modifying.
    Here are some examples of VIs I use to handle configuration files.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot
    Attachments:
    Generic Get Section from Config File.vi ‏20 KB
    Get Application Specific Parameters From Config File.vi ‏32 KB
    Get IP Addresses from Config File.vi ‏22 KB

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • When i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th

    when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ?
    if you can help me thank's
    [email address removed by host]

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • HT201077 photos not getting added up in my photostream. It's showing some kinda registry error in my windows. Plz help

    photos not getting added up to my photostream. It's showing some kinda registry error in my windows. Plz help!!

    Hi Melissa_C!
    I have an article for you that may help shed light on this circumstance:
    iCloud: My Photo Stream FAQ
    http://support.apple.com/kb/ht4486
    How long are My Photo Stream photos stored in iCloud?
    The photos you upload to My Photo Stream are stored in iCloud for 30 days to give your devices plenty of time to connect and download them.
    How many photos are stored in My Photo Stream on my devices and computers?
    iCloud pushes all your photos to the My Photo Stream album on your devices and computers, and manages them efficiently, so you don’t run out of storage space.
    Your iOS devices keep a rolling collection of your last 1000 photos in the My Photo Stream album. From there, you can browse your recent photos or move the ones you like to your Camera Roll or another album to keep them on your device forever.
    Because your Mac and PC have more storage than your iOS devices, you can choose to have all of your My Photo Stream photos automatically downloaded. In iPhoto or Aperture preferences on your Mac, select Photos (or Photo Stream) > My Photo Stream > Automatic Import. All of your photo stream photos will be imported into your Events, Projects, Photos, Faces, and Places folders in iPhoto or Aperture. On your PC with My Photo Stream enabled in the Control Panel, all of your photos will be imported into C:\\Users\<user name>\Pictures\iCloud Photos\My Photo Stream. For iCloud Control Panel 2.0 to 2.1.2 users, the path isC:\\Users\<user name>\Pictures\Photo Stream\My Photo Stream .
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • TA38482 I have an other kind of error occuring in my Itunes program: "unknown error has occurred (-42110) what can I do!!!!! I have uninstall the program and re-installed and the error appears again, and again.

    I have an other kind of error occuring in my Itunes program: "unknown error has occurred (-42110) what can I do!!!!! I have uninstall the program and re-installed and the error appears again, and again. Itunes still works, but every time I open it...the error shows up.

    If your iTunes is up to date, remove the SC Info folder.

  • How to see the England football. Which kind of player can I download?

    How to see the England football and which kind of player can I download

    Thank you to all for your answers.
    I will try with getjar.
    I have one more question concerning the installation of the applications.
    I have Nokia PC Suite installed on my computer and a blutooth connexion with my phone.
    Could someone tell me how I have to proceed ?
    For example, I would like to install "KODi English-French Dictionary" (http://www.getjar.com/products/14408/KODiEnglishFrenchDictionary). On this web page, it is proposed to me to download a Jad file and a Jar file. Do I have to download both ?
    Fab

  • Which Kind of Report should be in BI system?

    Dear Expert,
      I faced the requirement to move R/3 reports onto the BI system. Most of them are customized reports which select data from a larget number of tables.
    Determine First Date and Last Date of the selected period.
    Read Material Master MARA and Material Plant MARC.
    Read Sales Order Stock MSKA and Sales Order Stock History MSKAH.
    Read Batch Stock MCHB and Batch Stock History MCHBH.
    Read Consignment Stock MSKU and Consignment Stock History MSKUH.
    Read material valuation from MBEW and material valuation history MBEWH.
    Read Sales order stock valuation EBEW and Sales order stock history valuation EBEWH.
    Read movement type classification (IN/OUT) from customer YZ table ZMM_MVT.
    Read Stock Movement from Material Document Item MSEG and Material Document Header MKPF.
    Read Incoming Invoice document Header RSEG and Incoming Invoice document Item RBKP of the corresponding material documents.
      It's easy for the abaper to write this kind of report on the R/3 side, but I think (as a beginner) it's a nightmare for the BI consultant to develop a model to support this report (T_T). Is there any suggestion for this kind of report (apart from converting the report program in R/3 into the extractor program and mapping it to the infoset and datasource)?
      Besides, I'm still not sure which kind of report should be moved onto the BI system and which kind of them should be still in the R/3 system. Can anyone provide the criteria to decide whether this report should be in BI or not?

    Hi,
    I think what ever you have been asked is related to stocks quantity movement and valuation.
    You have already got standard SAP extractors which pull records for the material valuation and movements and stocks.It contains information related to bacth stock movement ...and what ever you are asked for...if you are not able to get things here then only you go for generic data source.
    You can use them and ask tell the user that they can have a snapshot of the R/3 if they want or they can see the daily stock movement based on the movement type or stock for a plant or stock level on daily basis....
    See this link for inventroy management in BW and one point guide to set up the inventory scenarions in BW....try to explore the help link in BW for the related cubes you find in this document and business content queries based on them and by the time you have finshed reading it...you will have fair amouint of idea.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Search the forum for the cubes mantioned in the document and there will thousands of thread with all kind of questions.
    Would not suggest to go with the generic data sources on tables if already data sources areavaialable...will be too tough top manage the delta nad consolidate the values in BW after extraction.
    The rule is you should try to use the standard extractors as much as possible and go for generic data source only if no other option is left.
    hope it helps
    Thanks
    Ajeet

  • How to identify/Highlight Idoc segment which is in error

    Hi All,
    We want that when the user looks at the IDoc which is in error, he should be able to find out the segment which is in arror. How to identify/Highlight Idoc segment which is in error.
    Prashant

    Hi kunyare,
    If you are receiving errors when trying to restore your iPad from Recovery Mode, you may find the following article helpful:
    Apple Support: Resolve specific iTunes update and restore errors
    http://support.apple.com/kb/TS3694
    Regards,
    - Brenden

  • Which types of errors occured in "source system"?

    hi
    which types of errors occured in "source system"? how will correct it? send me data on it

    Hi,
    The common error will be RFC Connection .pls chk this links;
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a61e5e07211d2acb80000e829fbfe/frameset.htm
    http://help.sap.com/bp_biv335/BI_EN/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    Hope this helps.
    Regards
    CSM Reddy

  • IMessage isn't working on iPad  .. It ask me to sign in with my Apple ID then it tell me some kind of error happened, IMessage isn't working on iPad  .. It ask me to sign in with my Apple ID then it tell me some kind of error happened

    IMessage isn't working on iPad  .. It ask me to sign in with my Apple ID then it tell me some kind of error happene ..please help !!!!!

    hi,
    This thread is marked as Correct (Finished).
    It is not even about iOS 6
    You would be better off starting a new thread and stating how far along setting up an Apple ID you are.
    11:42 PM      Friday; September 21, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and and iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I started downloading ios 6 with iTunes. And at the end of the download , some kind of error comes with a pop up box  and a RED cross mark in it saying some error occurred and asking to disconnect and reconnect again and to check the internet is active?

    i started downloading ios 6 with iTunes with latest version of 10.7 for my iphone 4s running ios 5.1.1. And at the end of the download , some kind of error comes with a pop up box  and a RED cross mark in it saying some error occurred and asking to disconnect and reconnect again and to check the internet is active? and then nothing happens and when i disconnect and reconnect again, the same error comes and the same thing happens. what should i do now to install ios 6?

    Are you running any Firewalls or Anti-Virus software? If so, disable all of that stuff & try again.

Maybe you are looking for

  • Script for table & column

    Gurus, I am looking for the scipt which should find the name of table in the current and other schemas .. i.e if I give a table name, may be as parameter to the procedure, it should search for that table name in my current schema or other schemas in

  • I have an FF 3.6.10, just reinstalled flash plugin but in gmail the advanced attachment feature doesn't work anyway. what can I do?

    i use FF 3.6.10, just reinstalled it. I have also reinstalled flash plagin. but anyway in gmail the advanced attachment feature doesn't work. what to do?

  • Sound lag (delay) in windows 7 64bit over Bootcamp mini server 2011

    I just got my new Mac mini server 2011, loaded windows 7 64 bit and noticed that there is a audio lag over hdmi (intel HD 3000), what i mean is when i delete a file from recycle bin there is no sound, i tried going to sounds in the control panel and

  • Seeing Raw on Import

    Is there a way that when first importing from the camera raw files, to see the image in the Import mode, rather than "No preview available"? This is when first starting the Import process. All.jpg files do have the image displayed so you can see what

  • Best way for Pumpin Sidechain?

    Using Logic 8 and wanted to know the best way to do a pumping sidechain effect in Logic? I have seen a few different ways and tried a few and still having difficulty - also it pumped the string/pad part but not that much? Is there a step through way