Error while amending PO in ME22N ... Messages: FICUSTOM 201 and 06 119

Hello,
I am facing one problem. I have a PO with 30 items.
In one item, GR is prepared and so DCGR is also prepared. Now this GR is cancelled by mvmt 102.
In this case, it did not reverse DCGR document.
Now this item is deleted. (Marked for deletion).
I want to make amendments in another items. So while saving I am getting errors as below:
Message Class     MsgNo
FICUSTOM             201
06                          119
Due to this, further amendments are not possible and same can not be conveyed to vendor due to problem in saving.
Please help me where the problem lies..
Regards,
Vishram

FICUSTOM 201 says: Deletion not possible. Goods/invoice receipt not yet reversed
you said that you reversed the GR, so it must be the invoice receipt that is not reversed yet.
06 119 message says:  Invoices pending for delivery costs (function not possible)
So it is relativly clear which invoice was processesed and needs to be cancelled.

Similar Messages

  • Getting error while preparing to send sharing message

    I have seen many people post up about this same error, however I am going to share some details in the troubleshooting I have performed.
    Environment: Exchange 2013. Cloud hosted. Internet connectivity using any number of clients. Mostly OWA, but a few Outlook 2010 and Outlook 2013.
    1. User A with Outlook 2010 or Outlook 2013 right clicks on the calendar and clicks "Share" -> "Share Calendar". They look up User B in the Global Address List and click "Send." An error window pop-up states "Error while
    preparing to send sharing message." User A is able to click on Calendar Permissions and add User B to the correct permissions. User A with OWA is able to right click on the calendar and click "Share Calendar" and it will send the message, no
    errors.
    2. User B with Outlook 2010 or Outlook 2013 on the same computer that User A was trying to do this from right clicks on the calendar and clicks "Share" -> "Share Calendar". They look up User A in the Global Address List and click "Send".
    No errors and the message goes through fine. It works correctly with OWA as well.
    I have seen people put up "autodiscover" and "permissions" or other things. This is obviously not a permission issue because the same thing that can be accomplished in OWA can't be accomplished in Outlook. It isn't an autodiscover issue
    because the same thing that one person can accomplish on a computer/Outlook, another cannot. This is the same error that I have seen since the time of Outlook 2007 and have yet to see a valid solution.
    Thanks,
    Don

    Hi Don,
    Hope it is the solution:
    You can't share your calendar in Outlook 2007
    http://support.microsoft.com/kb/2836889
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Outlook 2010/Error sharing Calendar: Error while preparing to send sharing message

    Everyone that is connected to this exchange is receiving an error when they attempt to share a calendar in outlook 2010.  We are using Exchange 2010 and Outlook 2010.  The error reads:  Error while preparing to send sharing message.  
    Any ideas on a reason why this would be happening?

    I think it may  be caused by the following reasons.
    1. Auto Discover service or outlook 2010 issue
    To verify it ,you could try  sharing calendar via  OWA?
    For how to manage Auto discover Service
    http://technet.microsoft.com/en-au/library/aa995956.aspx
    2.Mailbox corruption issue
    For how to repair database
    http://social.technet.microsoft.com/Forums/en-US/exchangesvrclients/thread/0ef36823-261f-40eb-a2e7-6dd0398d8d10/
    3. Restrictive sharing permission assigned on the calendar.
    Could you please verify if it is caused by your  sharing policies? If the User chooses to change the permission
    to the following: "Anyone can view and  search for this Calendar on Office online.” You should be able to send
    them without issues.

  • KEU1 -Error while checking dependency of characteristics (Message KF438)

    Creating an assessment cycle for transfering costs from cost centers to profitability segments and filling the receivers "Sales order Group" and "Sales order item" appears the message error KF438:
    Error while checking dependency of characteristics
    Message no. KF438
    Diagnosis
    Error with dependent characteristics: not all of the higher-level characteristics have been supplied with at least a single value.
    Does someone know as this solves?
    Greetings.

    Hi Eduardo,
    There is a validation for a dependent characteristic which cannot be checked.
    Please check the long text of message KF439 and proceed accordingly.  
    If not please check note  580026, although the description seems not to fit
    and execute KEU2 again.  
    I hope this helps.
    Regards,
    MLM

  • Error while Creating PO against PR - Message no. 06249

    Dear Team,
    Process is
    1. PR is getting created thru Sales Order automatically.
    2. PO is created for partial quantity.  Say 50 qty out of 100.
    3. Again when we created PO for remained quantity, system throws error that it is already partially ordered.So unable create PO.
    Materials for PReq 10000170, item 00070, already partially ordered
    Message no. 06249
    Message was Not exist in config. I hv created that message with Warning message. But still Error exist.
    Pls suggest

    Hi,
    if u are working in ECC 6.0 then
    in spro --> environment --> system messages
    here u can give this as error or warning !
    put 00   06     249    as warning !
    Also go to SE91, give messages class 06 and here go to 249....watch that this this is self explanintry is checked or not
    as i have applied already this one !
    Regards,
    Pardeep Malik

  • Error while executing procedure in TOAD which contains parameter and dblink

    Hi all,
    I am getting error while executing the following code in TOAD and APEX.
    It contains parameter( start_date and end_date) and dblink(@TO_FUT).
    When I hardcode the parameter values, It works fine.
    When I dont give hardcoded values in the procedure, the error comes.
    When I comment the lines whereever parameter comes, still the error comes.
    I am not sure whether it is parameter issue or dblink issue or some other issue
    Is anybody having any clue about this error?
    Your help is very much appreciated.
    The code:
    CREATE OR REPLACE PROCEDURE PROC_ENR_ACC(START_DATE DATE,END_DATE DATE)
    AS
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE OUTPUT_TABLE';
    INSERT INTO OUTPUT_TABLE
    (FIRST_NAME ,LAST_NAME,HID ,EFF_DT,CID,PLAN, FLAG)
    SELECT
    TEMP1.FIRST_NAME,
    TEMP1.LAST_NAME,
    TEMP1.HID,
    TEMP1.EFF_DT,
    TEMP1.CID,
    TEMP1.PLAN,
    NVL((SELECT 'Y'
    FROM FADMIN.MEMI_TABLE@TO_FUT MEMI
    WHERE MEMI.MEME_CK = TEMP1.MEME_CK
    AND MEMI.TXN_EFF_DT = TEMP1.EFF_DT
    AND MEMI.PBP = TEMP1.PLAN
    AND MEMI.MEMI_TXN_CD IN ('AC','RE')
    AND MEMI.MEMI_SEQ_NO = (SELECT MAX (MI.MEMI_SEQ_NO)
    FROM FADMIN.MEMI_TABLE@TO_FUT MI
    WHERE MI.MEME_CK = MEMI.MEME_CK
    AND MI.TXN_EFF_DT = MEMI.TXN_EFF_DT
    AND MI.PBP = MEMI.PBP
    AND MI.MEMI_TXN_CD IN ('AC','RE')
    AND MI.MEMI_INTF_STS = 03 )),'N') AS FLAG
    FROM
    ( SELECT
    M1.FIRST_NAME ,
    M1.LAST_NAME ,
    M1.HID ,
    M1.EFF_DT,
    M1.CID,
    M1.PLAN ,
    (SELECT MEME.MEME_CK
    FROM FADMIN.MEME_TABLE@TO_FUT MEME, FADMIN.GRGR_TABLE@TO_FUT GRGR
    WHERE MEME.M_HIN = M1.HID
    AND MEME.GRGR_CK = GRGR.GRGR_CK
    AND GRGR.GRGR_ID = M1.GRGR_ID
    )AS MEME_CK
    FROM FADMIN.METR_TABLE@TO_FUT M1,
    ( SELECT M3.HID, M3.EFF_DT FROM FADMIN.METR_TABLE@TO_FUT M3
    WHERE M3.TYPE IN ('60','61')
    AND M3.REPLY IN ('117','118')
    AND TRUNC (M3.METR_TRANS_DT) BETWEEN START_DATE AND END_DATE
    AND M3.SYIN_INST = (SELECT MAX (M4.SYIN_INST)
    FROM FADMIN.METR_TABLE@TO_FUT M4
    WHERE M4.HID = M3.HID
    AND M4.TYPE IN ('60','61')
    AND M4.REPLY IN ('117','118')
    AND TRUNC (M4.EFF_DT) = TRUNC (M3.EFF_DT))
    ) TEMP
    WHERE M1.TYPE IN ('60','61')
    AND M1.REPLY ='011'
    AND TRUNC (M1.METR_TRANS_DT) BETWEEN START_DATE AND END_DATE
    AND M1.SYIN_INST = (SELECT MAX (M2.SYIN_INST)
    FROM FADMIN.METR_TABLE@TO_FUT M2
    WHERE M2.HID = M1.HID
    AND M2.TYPE IN ('60','61')
    AND M2.REPLY ='011'
    AND TRUNC (M2.EFF_DT) = TRUNC (M1.EFF_DT))
    AND M1.HID = TEMP.HID (+)
    AND M1.EFF_DT = TEMP.EFF_DT (+)
    AND TEMP.HID IS NULL
    UNION
    SELECT
    M1.FIRST_NAME ,
    M1.LAST_NAME ,
    M1.HID ,
    M1.EFF_DT,
    M1.CID,
    M1.PLAN ,
    (SELECT MEME.MEME_CK
    FROM FADMIN.MEME_TABLE@TO_FUT MEME, FADMIN.GRGR_TABLE@TO_FUT GRGR
    WHERE MEME.M_HIN = M1.HID
    AND MEME.GRGR_CK = GRGR.GRGR_CK
    AND GRGR.GRGR_ID = M1.GRGR_ID
    )AS MEME_CK
    FROM FADMIN.METR_TABLE@TO_FUT M1
    WHERE M1.TYPE IN ('60','61')
    AND M1.REPLY IN ('016', '017', '022', '023')
    AND TRUNC (M1.METR_TRANS_DT) BETWEEN START_DATE AND END_DATE
    AND M1.SYIN_INST = (SELECT MAX (M2.SYIN_INST)
    FROM FADMIN.METR_TABLE@TO_FUT M2
    WHERE M2.HID = M1.HID
    AND M2.TYPE IN ('60','61')
    AND M2.REPLY IN ('016', '017', '022', '023')
    AND TRUNC (M2.EFF_DT) = TRUNC (M1.EFF_DT))
    )TEMP1 ;
    END;
    The error:
    ORA-00918: column ambiguously defined
    ORA-02063: preceding line from TO_FUT
    ORA-06512: at "PROC_ENR_ACC", line 5
    ORA-06512: at line 5

    Okay
    Here's the code formatted
    CREATE OR REPLACE PROCEDURE PROC_ENR_ACC (START_DATE DATE, END_DATE DATE)
    AS
    BEGIN
       EXECUTE IMMEDIATE 'TRUNCATE TABLE OUTPUT_TABLE';
       INSERT INTO OUTPUT_TABLE (FIRST_NAME,
                                 LAST_NAME,
                                 HID,
                                 EFF_DT,
                                 CID,
                                 PLAN,
                                 FLAG)
       SELECT   TEMP1.FIRST_NAME,
                TEMP1.LAST_NAME,
                TEMP1.HID,
                TEMP1.EFF_DT,
                TEMP1.CID,
                TEMP1.PLAN,
                NVL (
                     (SELECT   'Y'
                      FROM   MEMI_TABLE MEMI
                      WHERE       MEMI.MEME_CK = TEMP1.MEME_CK
                      AND MEMI.TXN_EFF_DT = TEMP1.EFF_DT
                      AND MEMI.PBP = TEMP1.PLAN
                      AND MEMI.MEMI_TXN_CD IN ('AC', 'RE')
                      AND MEMI.MEMI_SEQ_NO = (SELECT   MAX (MI.MEMI_SEQ_NO)
                                              FROM   MEMI_TABLE MI
                                              WHERE   MI.MEME_CK = MEMI.MEME_CK
                                              AND MI.TXN_EFF_DT = MEMI.TXN_EFF_DT
                                              AND MI.PBP = MEMI.PBP
                                              AND MI.MEMI_TXN_CD IN ('AC', 'RE')
                                              AND MI.MEMI_INTF_STS = 03)
                      ),'N') FLAG
       FROM (SELECT   M1.FIRST_NAME,
                      M1.LAST_NAME,
                      M1.HID,
                      M1.EFF_DT,
                      M1.CID,
                      M1.PLAN,
                      (SELECT   MEME.MEME_CK
                       FROM   MEME_TABLE MEME, GRGR_TABLE GRGR
                       WHERE       MEME.M_HIN = M1.HID
                       AND MEME.GRGR_CK = GRGR.GRGR_CK
                       AND GRGR.GRGR_ID = M1.GRGR_ID) MEME_CK
             FROM   METR_TABLE M1,
                    (SELECT   M3.HID, M3.EFF_DT
                     FROM   METR_TABLE M3
                     WHERE   M3.TYPE IN ('60', '61')
                     AND M3.REPLY IN ('117', '118')
                     AND TRUNC (M3.METR_TRANS_DT) BETWEEN START_DATE AND  END_DATE
                     AND M3.SYIN_INST = (SELECT   MAX (M4.SYIN_INST)
                                         FROM   METR_TABLE M4
                                         WHERE   M4.HID = M3.HID
                                         AND M4.TYPE IN ('60', '61')
                                         AND M4.REPLY IN ('117', '118')
                                         AND TRUNC (M4.EFF_DT) = TRUNC (M3.EFF_DT))
                     ) TEMP
             WHERE   M1.TYPE IN ('60', '61') AND M1.REPLY = '011'
             AND TRUNC (M1.METR_TRANS_DT) BETWEEN START_DATE AND  END_DATE
             AND M1.SYIN_INST = (SELECT   MAX (M2.SYIN_INST)
                                 FROM   METR_TABLE M2
                                 WHERE       M2.HID = M1.HID
                                 AND M2.TYPE IN ('60', '61')
                                 AND M2.REPLY = '011'
                                 AND TRUNC (M2.EFF_DT) = TRUNC (M1.EFF_DT))
            AND M1.HID = TEMP.HID(+)
            AND M1.EFF_DT = TEMP.EFF_DT(+)
            AND TEMP.HID IS NULL
            UNION
            SELECT   M1.FIRST_NAME,
                     M1.LAST_NAME,
                     M1.HID,
                     M1.EFF_DT,
                     M1.CID,
                     M1.PLAN,
                     (SELECT   MEME.MEME_CK
                      FROM   MEME_TABLE MEME, GRGR_TABLE GRGR
                      WHERE       MEME.M_HIN = M1.HID
                      AND MEME.GRGR_CK = GRGR.GRGR_CK
                      AND GRGR.GRGR_ID = M1.GRGR_ID) MEME_CK
            FROM   METR_TABLE M1
            WHERE   M1.TYPE IN ('60', '61')
            AND M1.REPLY IN ('016', '017', '022', '023')
            AND TRUNC (M1.METR_TRANS_DT) BETWEEN START_DATE AND  END_DATE
            AND M1.SYIN_INST = (SELECT   MAX (M2.SYIN_INST)
                                FROM   METR_TABLE M2
                                WHERE   M2.HID = M1.HID
                                AND M2.TYPE IN ('60', '61')
                                AND M2.REPLY IN ('016', '017', '022', '023')
                                AND TRUNC (M2.EFF_DT) = TRUNC (M1.EFF_DT))
            ) TEMP1;
    END;
    /When posting code if you put {noformat}{noformat} (with the curly brackets and in lower case) above and below it you can preserve formatting.
    To your original question...
    Is the link name supposed to be variable?
    What do you mean by 'hard coding' the values, do you mean in the procedure itself so you'd actually PROC_ENR_ACC();?
    What happens when you run this?DECLARE
    start_date DATE;
    end_date DATE;
    BEGIN
    start_date := '01-JAN-2009';
    end_date := '01-FEB-2009';
    PROC_ENR_ACC(start_date, end_date);
    END;
    I need to know exactly how to recreate your error...
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    +Don't forget to mark replies helpful or correct+ ;)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Authorization error while attaching document in ME22N

    Hi,
    Scenario 1: I attach a document in ME22N and then save it. Result: I get an authorization error.
    Error is: "You have no authorization for extensions (activity03)"
    Scenario 2: I just make a change (say in price) without attaching any document and then when i try to save it. Result: There is no authorization error.
    Message (output) type in both the cases is EDI.
    On further investigation, we found the authority-check abap statement which is responsible for throwing the error.
    authority-check           object authority_obj_edi_deftool
                id 'EDI_TCD'  field  authority_tcode_edi_deftool
                id 'ACTVT'    field  pi_activity
                id 'EDI_DOC'  DUMMY
                id 'EDI_CIM'  field  pi_cimtyp.
    This statement gets executed for both the scenarios and with the SAME variables but it throws error in case of scenario 1 only.
    Following are the values of the variables in BOTH cases:
    authority_obj_edi_deftool = S_IDOCEFT
    authority_tcode_edi_deftool = WE30
    pi_activity = 03
    pi_cimtyp = Z2ORDERS02
    Any help is appreciated.
    Regards,
    Chinmay

    Dear,
      Kindly contact your basis team. it will help you.
      Please give him SU53 screen short for his reference.
    Regards,
    Sandip

  • Update Termination Error while modifying PO in ME22n

    Hi All,
    I am facing one problem,while modifying the PO using ME22n.After modifying the PO when I save it ,Express Document "update was terminated" error comes.
    Can anybody please guide me on this, why it is happening .It's very urgent.
    Thanks in advance.

    Hi
    Check the following link:
    http://www.sapfans.com/forums/viewtopic.php?p=822485&sid=253f8b02796c0b390a5180b3d1a86661
    Though not relevant for PO......the basics are same.
    Regards
    Aravind
    Assign points if useful

  • Error while testing script in ME22N

    HI Friends,
    I am testing a script in ME22N.
    When i enter the PO number and press the print preview button I get the following error
    *Enter rate BAM / EUR rate type M for 20.1..09.0 in the system settings*
    Please let me know what should be done.
    Thanks in advance,

    Hi deepak,
    Check the settings BAM / EUR rate type M with the basis team.
    Regards,
    Sravanthi

  • Error while printing PO using ME9F :Message no. 141

    When I change some fields like Payment terms, address etc. which do not change the value of the PO and then create an output message using ME9F, it is showing the error- "Message no.141- No schedules exist for the scheduling agreement XXXXXX(PO no.)".
    Please help.
    Kavita

    No, It is a PO Print only. Only for changes to PO that do not affect the value of the PO,this error occurs. When i select the entry for the PO and click on Output message, the output message fails. On clicking Display Message, it shows the message - No schedules exist for the Scheduling Agreement XXXXXX(the PO number".
    So,it is not for Scheduling Agreements but for PO only. I know it is weird to see such an error on the PO output message in ME9F.
    Pls help.

  • Runtime Error while opening the transaction ME22N

    Hi,
       when am trying to open the transaction ME22Nin Ecc6.0 its showing the runtime error like Assign with Length 0 in the pgm SAPLTAX1 in the Module FIND_TAX_SPREADSHEET.
    than you in advance.

    post your Dump information with           
    Short text
    What happened?

  • Error while posting to Tax Journal Entry for sales and use tax

    Hi,
    I am trying to post a journal entry (FB50) to cleanup and correct the liability on our sales and use tax. All  lines are giving warnings and messages.Give me a suggestion  on how to get it to post .  Or if needed, another solution to correcting the balances in the sales and use taxes.
    But the entry to a/c # 226530 is giving an information message but still wouldnu2019t save.
    The Error message is
    Enter the tax base amounts for account 226400 in company codeAFCO
    Message no. F5A375
    Diagnosis
    You are posting directly to a tax account. Enter the tax base amounts per item using the function "Tax Amounts".
    Kindly help me how to fix the above issue.
    Thanks
    Suvarna

    You may want to check out the following notes... they may shed some light on your problem.
    681930 - Posting on tax account possible w/o specific. of base amount
    1090096 - FB60 / MIRO - Checking direct tax after change (F5A375)
    944978 - FB60 / MIRO - check of direct tax after change

  • When connected to my Ford Mondeo, my ipod nano can be controlled through interface.  But after while it comes up with message 'loading data' and then freezes.  Anyone else got the issue?

    When connected to my new Ford Mondeo, my ipod nano can be controlled through user interface in car.  This worksd most of the time, but after a while if I try to change the music or search, it comes up with message 'Loading Data'.  I then have to pull out USB and reinseert, at which point it works again.  Has anyone esle expereinced this/have a solution?

    Does not matter if anyone else has this issue.  You need to contact the Ford dealership.  It's their product you are having problems with. 
    If you really want to know if anyone else has this issue, post on Ford's Mondeo message boards.  It's where the Ford car owners hang out.

  • We couldn't refresh the connection 'OData Assignements Data' Error : While access the project overveiw report in brower and in Excel 2013.

    Hello All,
    Facing this issue while opening the ProjectOverview report in Browers or in Excel 2013.
    Snapshot is attached for furthur reference.
    Error in Excel when clicking on Refresh All, it shows the information to retieving the data but after few moments it prompt this error.
    Second snapshot occurs while opening the report in browser.
    Kindly help.
    REGARDS DANISH DANIE

    Dear Paul,
    1st Query,
    Ans: As I'm using Project Server Permission mode and im logged with the user who is the member of admin group and in administrator group 'Access
    Project Server Reporting Service' is ticked on. So, the concern regarding permission is resolved.
    2nd Query,
    Ans: Im unable to find Project Web App Permission for Excel Web App Refresh' feature in site setting
    of PWA. 
    Snapshot is attached when trying to open report in browser.
    to resolve this followed below mentioned URL but unsuccessfull result
    http://support.microsoft.com/kb/2769345/en-us
    Still facing same issue, issue is not resolved kindly help/suggest.
    Note: Im using Project Server 2013 not Project Online 2013. 

  • I got an error while updating my iphone4gs to ios5.0.1 and now the iphone is on its previous page when it was on box?

    i was updating my iphone4 to the latest version but the error occured while updating the phone and than my phone got frozen with the screen of itunes and usb cable but as i connect it to the computer, its not shown in itunes.same screen is shown
    please help me

    1. Try forcing reboot by holding down the home button and power/sleep button at the same time until the screen restarts.
    -- IF THAT FAILS --
    Let the phone battery drain.

Maybe you are looking for

  • How can i add a phone to my existing itunes account

    My husband's iPhone 5C will not turn on yet I am being instructed by Apple that I must deactivate it or be charged $900 for returning it  un-deactivated. It was never added to my itunes account, so I cannot deactivate it remotely unless I add it.  Ho

  • Additional CheckBoxes on JSP Page

    Dear All, I have created 10 Additional CheckBoxes on a JSP Page in Apps through pesonalization by Create Item option and chosen (MessageStylesCheckBox). The Value of this CheckBox is 1 if it is checked and 0 if it is unchecked. Now I want to track th

  • Computer dying when it still has battery life?

    I don't know what's going on, my laptop is just shutting off without any warning and there is still about half of the battery life left. I will just be searching the web or chatting on AIM and it just shuts down. Any explanation for this or something

  • Count Substring in String

    Is there any way you can count the number of substrings in a string using Coldfusion? E.g. haystack = 25fdjkkjlafjkl25alksdfjaafdjk25sl needle = 25 result = 3

  • My plug-in is up to date, but says it is out of date. How do I fix this?

    I have Adobe Shockwave for Director, Version 11.5.9.620, but it says its out of date.