ALE errror while doing outbound

Hi when I am trying to send an outbound IDOC through TCODE CJAL i am getting erro stating as below:
Project GB1FPPG30000000000 cannot be sent
Filter object COMP_CODE is missing for determining receiver of BAPI (CO
No receiver system could be determined for project  GB1-FPPG3
Let me know If I am lacking with any of the config setting.
Regards,
Raghavendra.M
SAP-Practice.

Hi Raghavendra.,
go to t-code we20 and click the partner profile and check the syntax then you will come to know ....
whether receving port exits or not..
if you want to know the receving system go to we02 or we05 enter idoc number and in the left side check the idoc control record reciver port..
Regards,
Prabhudas

Similar Messages

  • Error while doing outbound delivery against Purchase Order

    hello
    i m getting error while doing Outbound delivery for purchase order as follows
    EKPO-SOBKZ=E; EKPO-UMSOK=_; EKPO-KZBWS<>_ EKPO-KZVBR<>E (Note 305582) not supported (check your entry)
    Message no. M7146, i m not getting wht will be the reason,
    Regards
    NISHJ

    Please go through the note - 305582. It is clearly given the direction.
    Symptom
    You try to post a goods movement for a stock transport order from the unrestricted-use stock into the sales order stock or project stock.
    During the goods issue, the system displays error message M7146 with a text along the lines of "EKPO-SOBKZ=E; EKPO-KZVBR<>E; ... not supported".
    Cause and prerequisites
    In the goods issue for the stock transport order, the system may have to create a stock in transit which is deconstructed during the goods receipt. If the withdrawal takes place from the special stock, it is clear which is the receiving stock.
    However, if the withdrawal is carried out from the unrestricted-use stock ("Collective requirements", controlled by the dependent requirements indicator MARC-SBDKZ in the material master of the issuing plant), this results in the design problem that the control tables of the goods movement do not have any key field for the receiving stock. Therefore, the control for the receiving stock is controlled via the consumption indicator in the account assignment category of the purchase order. The consumption indicator therefore requires a specific default setting (you may have assumed you could change the design of these control tables, however this is not possible).
    Using an inappropriate consumption indicator then causes for the goods issue an incorrect or no stock in transit to be created so that the goods receipt fails.
    Solution
    Implement the program change in accordance with the correction instructions.
    Afterwards implement Note 413908 immediately if this is relevant for your release.

  • While doing outbound shipment committment error

    while doing outbound shipment vi01 (outbound shilment cost we get error Account Assignment to comittment item not supported with this gl account . we have configured it in fmderiver also but still getting this error
    REgards
    Geeta

    Check Note 144169 - (C) Creating commitment items FAQ for better understanding on the said error message.
    thanks
    G. Lakshmipathi

  • Zero stock available for material while doing outbound delivery

    Hi ,
    System gives error "0 pc of material XXX avaialble" Message no VL150 when we are doing outbound delivery for sales order. But MMBE & MB52 reports shows sales order stock for the same material. This is happening for particular material but the other material which is having same sttings in material masters & sales order & for the same plant is not having problem & OD has been created.
    We are getting this error whiel posting very first outbound delivery for sales order.
    Help to resolve thsi will be appreciated.
    Regards
    Basavaraj Patil

    Hi,
    Run MD04 for the XXX material and ensure there is no other open sales order / Stock transfer orders.
    If appearing, delete it,  if its not applicable and try creating out bound delivery..
    Check if any safety stock is maintained for the said materials in the MRP view at the plant level, you might get similar error message, pl check.
    Regards
    Merwyn

  • Error while doing PGI for Outbound delivery using BAPI BAPI_GOODSMVT_CREATE

    Hi All,
    I am getting an below error while doing PGI for outbound delivery using the BAPI BAPI BAPI_GOODSMVT_CREATE:
    Goods movement not possible with mvmt type 601
    Can anyone suggest me what will be the solution for it?
    Regards,
    Raghuraman.k

    I tried with the above BAPI but it is not working.
    In my case a delivery has one line item with batch split and other line item without batch split.
    Below is my code :
    DATA : gwa_header_data TYPE bapiobdlvhdrcon,
           gwa_header_ctrl TYPE bapiobdlvhdrctrlcon,
           lv_delivery     TYPE bapiobdlvhdrcon-deliv_numb,
           git_item_data TYPE STANDARD TABLE OF bapiobdlvitemcon,
           gwa_item_data TYPE bapiobdlvitemcon,
           git_item_ctrl TYPE STANDARD TABLE OF bapiobdlvitemctrlcon,
           gwa_item_ctrl TYPE bapiobdlvitemctrlcon,
           git_return    TYPE STANDARD TABLE OF bapiret2,
           gwa_return    TYPE bapiret2.
    *Header data
    gwa_header_data-deliv_numb = '0808000002'.
    *Header Control data
    gwa_header_ctrl-deliv_numb = '0808000002'.
    gwa_header_ctrl-post_gi_flg = 'X'.
    *Delivery Number
    lv_delivery = '0808000002'.
    *Item data and its corresponding control data
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '900002'.
    gwa_item_data-dlv_qty         = 4.
    gwa_item_data-dlv_qty_imunit  = 4.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '900002'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '900003'.
    gwa_item_data-dlv_qty         = 6.
    gwa_item_data-dlv_qty_imunit  = 6.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '900003'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '000020'.
    gwa_item_data-dlv_qty         = 10.
    gwa_item_data-dlv_qty_imunit  = 10.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '000020'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    BREAK-POINT.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
      EXPORTING
        header_data    = gwa_header_data
        header_control = gwa_header_ctrl
        delivery       = lv_delivery
      TABLES
        item_data      = git_item_data
        item_control   = git_item_ctrl
        return         = git_return.
    BREAK-POINT.
    IF git_return IS INITIAL.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ENDIF.

  • STO Problem while doing GR against outbound delivery

    Hi Gurus,
    Need your help regarding STO,in my case i created
    1. STO
    2. Delivery in VL10B t code and did PGI
    3. on the basis of Delivery i created billing document
    4. Excise invoice in J1IIn
    Now while doing GR against outbound delivery system in not doing GR giving some error code 1 as follows
    Goods receipt not possible for delivery 4900000212: error code 1
    Message no. M7865
    Diagnosis
    The goods receipt for the delivery cannot be posted.
    The error according to the error code:
    1. The delivery does not exist.
    2. The delivery type is unknown.
    3. The delivery is not goods issue posted.
    4. There are no delivery items.
    5. The receiving plant could not be determined.
    6. The delivery items have already been goods receipt posted or contain zero quantities.
    7. Goods receipt(effect)movement type to goods issue movement type could not be determined.
    8. It is not currently possible to block the delivery.
    Procedure
    Error code 1      : Check your entry.
    Error code 2,3,4,6: Check the delivery and its document flow.
    Error code 5      : The delivery must be related to a purchase order or
                        the customer must be a retail business.
    Error code 7      : Check the settins for your movement types.
    My delivery types shipping points everthing is in place but am not able to trace out whats the problem. Please help its urgent
    Regards
    Vivek

    Hi
    Based on the error code 1 , it says that the delivery does not exists in the system, That means you cannot perform a Goods receipt againsst the document specified
    I have also not done Goods receipt with reference to Outbound delivery. So i am not able to confirm that this can be done or not.... i will definitely get back to you on this.
    Thanks & Regards
    Kishore

  • Error while doing GR against STO in IS Retail

    Hi.
    I am getting an Error while doing the GR against STO.
    The error is "Enter goods receipts for vendor only. Message no. M7107".  I am not able to understand the reason for the GR checking the vendor where it should consider the supplying site as vendor as the GR is being done against a delivery.
    I have checked the Inforecord and the source list which is correctly maintained
    (i doubt whether they are to be considered).
    Kindly suggest...
    Regards,
    Vinod Kapote.

    Hi Vinod Kapote,
    Check following IMG Settings in your system;
    (a) Schema for Stock transports
    (b) Shipping data for Site
    Hope you have carried out following activities;
    (1) Purchase order with document type UB
    (2) Outbound delivery using VL10B
    (3) Post Goods Issue using VL02N
    (4) Goods Receipt using MIGO
    Bye,
    Muralidhara

  • Getting serial number box while transfer post in MB1A but not while doing MIGO

    Hi Team
    I am getting serial number box while transfer post in MB1A.
    But getting below error under serial number tab while doing GR through MIGO of outbound delivery.
    Issuing plant and receiving plant, material, batch, qty are same in both cases.
    How can I get serial number box when doing GR? Does any customizing changes needed?
    Br, Kiran U

    Movement type is different for those two screen shots, also you are saying you are using MB1A, but you are using 301 movement type. Generally 301 movement type is not allowed from MB1A t-code.
    Please check these SAP notes if relevant for your case.
    856548 - MIGO: you cannot enter serial numbers
    856662 - T156Q: Missing entries

  • Error while doing VL10B(PGI)

    Dear all,
    I maintained the batch for the material e.g for one material three batches and i have done the 501 for the same.
    and created STO for that material n also SD doc is created,while doing VL02N (outbound deliv ) when i am doing the Batch split for this material its taking hovewer when i do the Post Goods Issue (PGI) system is throwing an error msg no. <b><u>M7 018 this is an error message</u></b> asking to enter purchase order no.
    any help reg this would be appreciable.
    thanks and regards
    Vijay

    Hello Vijay,
    I have the very same error. And I see from your message that you have the same one too. Please let me know as to how you were able to get over it. I am processing this delivery via Vl01n. And this is not a batch managed material.
    Appreciate your help and time.
    Thanks

  • REG: while doing PGI with ref to OBD should pick stock from one location

    Hi experts ,
    I have a n issue while doing PGI with ref to OBD.
    1.We are purchasing Raw material Aluminium circle 1000 nos from "X" vendor & keeping stock in Main stores i.e 0001 location plant-1.
    2.From there we are issuing to production line i.e 0003 location(Plant 1)500 nos.
    4.Remaining stock of 500 nos is in 0001 location in under some Batches.
    5.Meanwhile we are suppose to transfer the aluminium circle to plant 2 .
    6.For this we are raising STO for aluminium circles  600 nos to Plant 2.
    7.With ref to STO we are raising OBD for Plant 2.
    8.With ref to OBD While doing PGI it should picks the stock from 0001(Main Stores)  location only.
    9.But the STO qty is 600 nos ,availablity of stock in 0001 is 500 nos only .
    10.While PGI  it takes 500 nos from 0001 location & remaining 100 nos picking from Production line 0003.It should not pick from Production line 0003 location .
    11.For this system should not allow to pick from 0003 location & also system should throw error message "Deficit of QTY in 0001 location"for 100 nos.
    KIndly suggest me asap.
    Thanks in advance
    vichu
    Edited by: viswanathan seenuvasan on Dec 10, 2009 7:01 AM

    Hi,
    As I understand the picking is done automatically in outbound delivery. Am I right?
    a)
    If picking is not done automatically but manually, why the user defines the production storage location in the OBD? In this case some training would be necessary....
    b)
    If it is done automatically: which settings are you using? Batch determination only?
    1. In stock determination (SPRO > MM > IM > Stock determination > Define strategies for Stock Determination) you can define which storsage location should be used by system, and you can assign the stock determination rule to the applications (SPRO > MM > IM > Stock determination > Assign Stock determination Rule in the Applications)
    (you also have to assign the stock determination group to the material master (MARC-EPRIO))
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/2f3746996611d1b5480000e82de955/frameset.htm
    2. You have to use batch determination
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/25/283aac4f7811d18a150000e816ae6e/frameset.htm
    3. You have to use availability check in delivery not to ship out goods for which reservation already exists (if goods are in production storage location I assume you have a PrdOrd...)
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/93/744cd9546011d1a7020000e829fd11/frameset.htm
    I haven't tries this but I assume it should work...
    Please check SAP online help.
    Regards,
    Csaba
    Edited by: Csaba Szommer on Jan 1, 2010 11:02 AM
    Forget stock determination. Instead of it you should use picking location determination - suggested by Laksmipathi. It wokrks fine with batch determination.
    SPRO > LE > Shipping > Picking > Determine Picking Location > Assign Picking Location
    Edited by: Csaba Szommer on Jan 1, 2010 5:03 PM

  • Problem while doing vl10d ....

    Hi experts  ,
    I'm facing a peculiar problem . While doing VL10D / vl10g , the outbound delivery document no. is not generated - and it's showing like this ... I don't know why it behaves as such ?? ....
    During creation of purchase order it behaves properly , shows the shipping tab - properly filled the shipping data and others inputs .
    Please help me to get the problem is resolved ...
    regards
    arghya .

    Hi Arghya,
    Couple of thing which you need to check
    1. Can You post the screenshot of the STO number in VETVG table
    2. Check the delivery date on the STO.
    3.Also in the item level check the chipping table route is populated.
    4. Also check the STO has been released
    Arun Prasad

  • While doing PGI

    Dear Gurus,
    What are the feild and tables which are effected,while doing PGI with the help of Outbound Delivery.
    Through MM, SD or FI.
    regards,
    Manoj Kumar

    Dear,
    Visit
    http://www.erpgenie.com/abap/tables.htm
    which gives a detailed table links related to SD, MM, FI.
    Regards,
    Syed Hussain.

  • Error While doing the Asset Credit Memo -ABGL

    HI,
    While doing the Asset Credit Memo -ABGL,i am getting the below error.Kindly help me with your inputs.
    Balance for transaction type group 10 negative for the area 01
    Message no. AA629
    Asset affected: 406000000004-0000
    Diagnosis
    With the transaction entered, the balance for the transactions in group 10 in area 01 will be negative in this fiscal year. However, the balance of transaction type group 10, according to its definition, must be positive in each fiscal year.
    System response
    The system rejects this posting.
    Procedure
    Check the transaction type, the amount and the fiscal year in your posting. If you want to post a credit memo to an acquisition from the previous year, then use a transaction type for a retirement. If necessary, you can change balance rules after talking with your SAP consultant.
    Thanks
    Supriya

    Check your config in OABN / OADB
    The depriciation area 01 can allow you post values only postive .. in OADB
    it has maintained Acquisition values Postive or zero values and net book
    values has miantained Postive or 0 values. so based on this setting u cannt
    post any negative values for this asset.

  • Error while doing ABGL Asset Credit Memo

    Hi Friends,
    I am getting the below error while doing Asset Credit Memo in ABGL. Please help me in fix this issue.
    Balance for transaction type group 10 negative for the area 01
    Note:In Asset Explorer Fiscal year start Asset value is 98,425.45 and Change is 4768.19. So total Asset value as of now is 1,03,193.64.
    Now we are trying to do ABGL with 12,790.23 value (Transaction type is 105). System is giving the above highlighted error.
    If we give the amount 4768.19 in ABGL transaction, system is not giving any error. If we give more that that system is giving error.
    Why system is giving error even the asset has balance of 1,03,193.64? Please help me on this..
    Thanks
    Sunil

    Hi,
    If the asset has been capitalized during earlier years, use ABGF to post credit memo.  ABGL is meant for assets capitalized during the year.
    Best Regards,
    Madhu

  • Error while doing "Visulaize Plan"

    Hi,
    Before i did Visualize plan many times without any problem.Now I am getting error while doing so.
    I was able to run "Explain Plan" successfully.
    I am on HANA revision 60.
    I saved above error log and the log information is given below:
    I can identify invalid XML tag <TablesInvolved><![CDATA[raj/AN_VIZ]]></TablesInvolved> but how to fix this issue?
    I gone through various blogs related to Visulaization Plan but not found related to this issue.
    <Plan xmlns="http://www.sap.com/ndb/planviz" ID="ID_0" Type="Estimated">
    <SQL><![CDATA[SELECT KOKRS, BELNR, PERIO, SUM(MEGBTR)
    FROM "_SYS_BIC"."raj/AN_VIZ"
    GROUP BY KOKRS, BELNR, PERIO]]></SQL>
    <CompileTime>
      <Start Unit="us">1401281467643661</Start>
      <End Unit="us">1401281467658329</End>
    </CompileTime>
    <RootRelation ID="ID_0" TypeName="PROJECT" Status="Finished">
      <Name>Project</Name>
      <ExecutionType>Row Search</ExecutionType>
      <Summary><![CDATA[raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO, SUM(raj/AN_VIZ.MEGBTR)]]></Summary>
      <Location>hanasp7:30003</Location>
      <EstimatedCost>
       <Exclusive Unit="us">2.12902e+06</Exclusive>
       <Inclusive Unit="us">2.64021e+06</Inclusive>
      </EstimatedCost>
      <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
      <Details><![CDATA[{"Projected Cols":"raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO, SUM(raj/AN_VIZ.MEGBTR)","Project column0":"NString(4, 0)  __trex_field_NVarchar3__() ....... [3]:040:<5/7 (16B)>:
      /1/ void*  \"__rids__\" ....... [0]:NOP:<0/1 (8B)>:
      /2/ int32_t(10, 0) const := 0 ....... [1]:LOAD:<3/4 (4B)>:
      /3/ int32_t(10, 0) const := 0 ....... [2]:LOAD:<4/5 (4B)>:","Project column1":"NString(10, 0)  __trex_field_NVarchar3__() ....... [8]:040:<5/7 (16B)>:
      /1/ void*  \"__rids__\" ....... [5]:NOP:<0/1 (8B)>:
      /2/ int32_t(10, 0) const := 0 ....... [6]:LOAD:<3/4 (4B)>:
      /3/ int32_t(10, 0) const := 1 ....... [7]:LOAD:<4/5 (4B)>:","Project column2":"NString(3, 0)  __trex_field_NVarchar3__() ....... [13]:040:<5/7 (16B)>:
      /1/ void*  \"__rids__\" ....... [10]:NOP:<0/1 (8B)>:
      /2/ int32_t(10, 0) const := 0 ....... [11]:LOAD:<3/4 (4B)>:
      /3/ int32_t(10, 0) const := 2 ....... [12]:LOAD:<4/5 (4B)>:","Project column3":"Decimal(18, 3)  __typecast__() ....... [23]:076:<10/12 (16B)>:
      /1/ Fixed16(18, 3)  __trex_field_Fixed16__() ....... [19]:043:<6/8 (16B)>: 
         /1/ void*  \"__rids__\" ....... [15]:NOP:<0/1 (8B)>:
         /2/ int32_t(10, 0) const := 0 ....... [16]:LOAD:<3/4 (4B)>:
         /3/ int32_t(10, 0) const := 3 ....... [17]:LOAD:<4/5 (4B)>:
         /4/ int32_t(10, 0) const := 3 ....... [18]:LOAD:<5/6 (4B)>: 
      /2/ int32_t(10, 0) const := 18 ....... [21]:LOAD:<8/9 (4B)>:
      /3/ int32_t(10, 0) const := 3 ....... [22]:LOAD:<9/10 (4B)>:"}]]></Details>
      <Child ID="ID_8" >
      </Child>
    </RootRelation>
    <Relation ID="ID_8" TypeName="TREX_SEARCH" Status="Finished">
      <Name>Column Search</Name>
      <ExecutionType>Column Search</ExecutionType>
      <Summary><![CDATA[Aggregation on a single table]]></Summary>
      <Location>hanasp7:30003</Location>
      <EstimatedCost>
       <Exclusive Unit="us">511194</Exclusive>
       <Inclusive Unit="us">511194</Inclusive>
      </EstimatedCost>
      <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
      <TablesInvolved><![CDATA[raj/AN_VIZ]]></TablesInvolved>
      <LogicalPlan ID="ID_11" Type="Estimated">
       <RootRelation ID="ID_11" TypeName="PROJECT" Status="Finished">
        <Name>Project</Name>
        <EstimatedCost>
         <Exclusive Unit="us">0</Exclusive>
         <Inclusive Unit="us">0</Inclusive>
        </EstimatedCost>
        <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
        <Child ID="ID_12" >
        </Child>
       </RootRelation>
       <Relation ID="ID_12" TypeName="GROUP_BY" Status="Finished">
        <Name>Aggregation</Name>
        <Summary><![CDATA[raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO\nSUM(raj/AN_VIZ.MEGBTR)]]></Summary>
        <EstimatedCost>
         <Exclusive Unit="us">0</Exclusive>
         <Inclusive Unit="us">0</Inclusive>
        </EstimatedCost>
        <EstimatedOutputCardinality>648284</EstimatedOutputCardinality>
        <Details><![CDATA[{"Grouping Cols":"raj/AN_VIZ.KOKRS, raj/AN_VIZ.BELNR, raj/AN_VIZ.PERIO","Aggregation Cols":"SUM(raj/AN_VIZ.MEGBTR)"}]]></Details>
        <Child ID="ID_13" >
        </Child>
       </Relation>
       <Relation ID="ID_13" TypeName="TABLE" Status="Finished">
        <Name>Column View</Name>
        <Schema><![CDATA[_SYS_BIC]]></Schema>
        <ObjectName><![CDATA[raj/AN_VIZ]]></ObjectName>
        <Location>hanasp7:30003</Location>
        <EstimatedCost>
         <Exclusive Unit="us">0</Exclusive>
         <Inclusive Unit="us">0</Inclusive>
        </EstimatedCost>
        <EstimatedOutputCardinality>682404</EstimatedOutputCardinality>
       </Relation>
      </LogicalPlan>
    </Relation>
    </Plan>
    Regards
    Raj

    Hi,
    To solve this you must update your studio. In lower studio versions (PlanViz) does not allow "unknown" XML tags sent by higher version servers. A fix for this issue was made so that PlanViz parser can simply skip unknown tags.
    Please go to version 74, if possible.
    Regards,
    Michael

Maybe you are looking for

  • IM (Inventory material) is failing in ECC 6.0 upgrade from SAP R/3 4.7

    Hello, We are working on Technical upgrade project (SAP R/3 4.7 to ECC 6.0 EHP 6) for one of our Client. when we are trying to create a purchase order (ME21N) in upgraded system (ECC 6.0), the field  IM Material is failing to accept the internal mate

  • How to modify global variable in a function?

    Hello, I want to modify a globalvariable in a function, at first I did it this way: class Global_output_class GlobalDim("Correlation_Status,fail_part,End_Exp") dim pouet Correlation_Status = 12 Call Correlation() pouet = Correlation_Status Function C

  • Error while declaring the internal table

    Hi all, I am trying to declare as following and I am getting the error data: begin of test,       w_text(1000),       end of test. data: i_test type standard table of test.

  • Linsky router wrt54g version 6

    I have tried to install router and it comes up with give MAC IP and DSP!1&DSP2, what is this and why do I have to have it... I had router before and was very easy set up, this 1 I have been trying to set up for 2 hours now and nothing! Can anyone hel

  • External Movie Loading

    I have the main movie with a button on it with the following command: on (release) { loadMovie("loadCentralCommandSGUnload.swf", "_root.loadCentralCommand"); That works great - it loads the movie into the loadCentralCommand clip The problem if I load