Basic Syntax Error for button

Working on my first flash application. I want a simple
'replay' button to start an animation of the only MC in the scene.
The animation is actually a part of the object's timeline, not the
scene's. (Hope I said that right).
Can I post the whole FLA file on here? Maybe not. But it can
be found here:
BasicDoor01.fla
Thanks in advance. This stuff is really quite fun. But alas,
I'm a noob.
The code is:

You can't have an instance name that starts with numbers.
Rename your 4291ani_mc to ani_mc on the stage and in your code and
you'll be set to go..

Similar Messages

  • Syntax errors for smarty code

    I work with smarty a lot, and I mean a lot.  Every single day in fact, all day long.  Is there a way to turn off the syntax errors for my smarty code?  Basically every file I open is going to tell me there are syntax errors all over the page...
    Thanks!

    I am not familiar with smarty but the options for disabling syntax errors can be found under the view menu,
    View > Code View Options > Syntax Error Alerts in Info Bar (tick or untick)
    Richard

  • (x86) Inline assembler syntax errors for 8bit variables

    Hello,
    I am porting some gcc code to Solaris and have some issues
    with the inline assembler. It works reasonably well on most of
    my code but with some instructions I have difficulties.
    In gcc, when I declare a variable as char/unsigned char and
    reference it within an asm-statement the assembler will generate
    'half'-register names for it (e.g. %al, %cl, ...).
    sunCC generates full registers for these variables and so
    certain instructions fail to assemble.
    e.g.
    char flag;
    asm ("setz %0" : "=q"(flag) : :);
    Syntax error is given then for:
    "setz %eax"
    Is there a way to force the use of 8bit registers?
    --L                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Even worse:
    char flag, char* ptr;
    asm("xchgb %0, %1" : "=q"(flag),"=m"(*ptr):"0"(1), "m"(*ptr):);
    produces
    xchgb %edx,(%eax)
    on sunCC even when no "-O" flag is given.
    But
    char flag, char* ptr;
    flag = 1;
    asm("xchgb %0, %1" : "=q"(flag),"=m"(*ptr):"0"(flag),"m"(*ptr):);
    produces
    xchgb %dl,(%eax)
    on sunCC if no "-O" flag is given.
    Strange behaviour indeed... :/
    --L                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • ECC syntax error for ADDFIELD.

    Dear Friends,
    I am getting a syntax error in ECC, for ADDFIELD.
    My original code is :
    data:   XI_SELTAB LIKE RSPARAMS OCCURS 0 WITH HEADER LINE.
          ADDFIELD XI_SELTAB 'ARBPL' V_GEWRK.
    Changed code is :
    *data:   XI_SELTAB LIKE RSPARAMS OCCURS 0 WITH HEADER LINE.
    TYPES: ty_XI_SELTAB TYPE RSPARAMS.
    Data:  XI_SELTAB TYPE  standard table of  ty_XI_SELTAB.
    Data:  wa_XI_SELTAB   type ty_XI_SELTAB.
    ADDFIELD WA_XI_SELTAB 'ARBPL' V_GEWRK.
    What is the exact syntax at here?? it not taking from work area.
    Thanks,
    Sridhar

    Sorry to all,
    Yes Its Micro and defined a like this :
    Macros
    DEFINE addfield.
      &1-sign = 'I'.
      &1-kind = 'S'.
    use operation cp if the value contains wildcards
      if &3 ca '*'.
        &1-option = 'CP'.
      else.
        &1-option = 'EQ'.
      endif.
    append the field name/value to the selection table
      if not &3 is initial.
        &1-selname = &2.
        &1-low     = &3.
        append &1.
      endif.
      clear &1.

  • MS SQL - Syntax error for valid query

    I have a problem with the second query in this code (gives me
    a syntax error in my HAVING line)
    <cfquery name="getDupes" datasource="#application.ODBC1#"
    dbtype="ODBC" username="#application.userNameODBC1#"
    password="#application.userPassODBC1#">
    SELECT *
    FROM view_FormCount
    WHERE formCount >= 2
    ORDER BY formNum
    </cfquery>
    <cfset variables.lstForms = "">
    <cfoutput query="getDupes">
    <cfset variables.lstForms=
    listAppend(variables.lstForms,"'#getDupes.formNum#'")>
    </cfoutput>
    <cfset variables.whereClause = "(formNum =
    #ReplaceNoCase(variables.lstForms,',',' OR formNum =
    ','ALL')#)">
    <cfquery name="getDetails"
    datasource="#application.ODBC1#" dbtype="ODBC"
    username="#application.userNameODBC1#"
    password="#application.userPassODBC1#">
    SELECT tblForms.formNum, tblForms.formName,
    tblForms.formCustNum, tblCompanies.companyAbbr
    FROM tblForms INNER JOIN tblCompanies ON tblForms.formCustNum
    = tblCompanies.companyNum
    GROUP BY tblForms.formNum, tblForms.formName,
    tblForms.formCustNum, tblCompanies.companyAbbr
    HAVING #variables.whereClause#
    ORDER BY tblForms.formNum, tblForms.formCustNum
    </cfquery>
    Now, the really odd thing is if I just take the query text
    out of the CFQUERY tags and use CFOUTPUT instead (to see in my
    browser what query is getting executed) I get a query that I can
    paste into Enterprise Mgr and runs fine.
    I can even paste the resulting text into my code in a CFQUERY
    and CF will run it fine.
    In other words, the dynamic version query gives me an error,
    but if I just output the SQL statement, copy-and-paste that into
    the CFQUERY that's erroring out (replacing what's there) to run as
    a static query, it works fine (sample of static query below).
    The error I get when I try to do it dynamically is "Error
    Executing Database Query. [Macromedia][SQLServer JDBC
    Driver][SQLServer]Line 4: Incorrect syntax near '10169318'. The
    error occurred on line 21." which is where the HAVING clause
    starts.
    SELECT tblForms.formNum, tblForms.formName,
    tblForms.formCustNum, tblCompanies.companyAbbr FROM tblForms INNER
    JOIN tblCompanies ON tblForms.formCustNum = tblCompanies.companyNum
    GROUP BY tblForms.formNum, tblForms.formName, tblForms.formCustNum,
    tblCompanies.companyAbbr HAVING (formNum = '10169318' OR formNum =
    '1016CONCERTA' OR formNum = '1016NSAIDS' OR formNum =
    '1016STRATTERA' OR formNum = '1016WELLBUTRIN' OR formNum =
    '18504211' OR formNum = '185093807' OR formNum = '73208565' OR
    formNum = '732120027' OR formNum = '7322154' OR formNum = '7323402'
    OR formNum = '7323522' OR formNum = '73238900' OR formNum =
    '7324211' OR formNum = '7324211S' OR formNum = '7324265' OR formNum
    = '73242891' OR formNum = '732434341' OR formNum = '732434342' OR
    formNum = '73243435' OR formNum = '73243436' OR formNum =
    '73243439' OR formNum = '73243440' OR formNum = '73243441' OR
    formNum = '73243442' OR formNum = '73243443' OR formNum = '7324359'
    OR formNum = '7324360' OR formNum = '7324370' OR formNum =
    '7324560' OR formNum = '7324959' OR formNum = '7326411ptreg' OR
    formNum = '7326599' OR formNum = '7326600' OR formNum = '7326620'
    OR formNum = '7326707' OR formNum = '7326931' OR formNum =
    '7328410' OR formNum = '732851031TOP' OR formNum = '7328512' OR
    formNum = '7328548' OR formNum = '7328548P2' OR formNum =
    '7328548P3' OR formNum = '7328548P4' OR formNum = '73289400' OR
    formNum = '73290D' OR formNum = '7329154' OR formNum =
    '73291544JHS' OR formNum = '73291545JHS' OR formNum =
    '73291546JHSMH' OR formNum = '73291547JHSMH' OR formNum = '7329174'
    OR formNum = '7329308' OR formNum = '7329402' OR formNum =
    '7329424' OR formNum = '7329455' OR formNum = '7329520' OR formNum
    = '7329539' OR formNum = '73297701JH' OR formNum = '73298273' OR
    formNum = '73298400' OR formNum = '73298403' OR formNum =
    '73298404' OR formNum = '7329883' OR formNum = '73298860' OR
    formNum = '7329887' OR formNum = '73298974' OR formNum = '7329899'
    OR formNum = '7329899S' OR formNum = '73299190' OR formNum =
    '7329987' OR formNum = '7329999PTO' OR formNum = '732AV5160' OR
    formNum = '732CMHFRAZ' OR formNum = '732HIPAA' OR formNum =
    '732HIPAAFLYERS' OR formNum = '734HEART' OR formNum = '7444711' OR
    formNum = '7449230' OR formNum = '744HR4991' OR formNum =
    '7538014MI' OR formNum = '77511044' OR formNum = '77511045' OR
    formNum = '775stampnochange' OR formNum = '80851001BLUE' OR formNum
    = '80MR4200' OR formNum = '80MR4273' OR formNum = '80MR4274' OR
    formNum = '80MR4300' OR formNum = '80MR9934' OR formNum =
    '80MR9935' OR formNum = '80SHC100' OR formNum = '80SHC4301' OR
    formNum = '80SHC9830' OR formNum = '80SHC9832') ORDER BY
    tblForms.formNum, tblForms.formCustNum

    AWFrueh1808 wrote:
    > OK, that's simple enough. But then I'm really confused
    as to why the query in
    > my original post/example didn't work.
    >
    > The only single quotes in my #whereClause# variable were
    wrapped around each
    > varchar value in the WHERE clause (well, HAVING) as in
    HAVING formNum = '12345'
    > OR formNum = '54321'
    >
    > I never used a single quote within the value itself. And
    yet
    > preservesinglequotes fixed it. So what was CF doing? Why
    did the single
    > quotes still show up in the error msg - and in the right
    place?
    >
    As I said the default behavior is to escape the quotes in
    your variables
    as data. So the default output of your SQL statement, before
    preserveSingleQuotes() would be like this.
    HAVING formNum = ''12345'' OR formNum = ''54321''
    As you can see that is not the desired results in your case.
    In your
    case you have the proper number of single quotes in your
    string and you
    do not want any added. You want to preserve them so to say.
    Thus
    adding preserveSingleQuotes() around your whereClase
    variable, i.e.
    preserveSingleQuotes(whereClause) says do not add any quotes,
    keep them
    all single.

  • Syntax error for using Regular Expression

    HI all,
    I tried to use Regular expresion to convert my string
    my sample code is like this:
    REPLACE ALL OCCURRENCES OF REGEX '\w*' IN INTAB-SCITY WITH '$1_$2'.
    REPLACE ALL OCCURRENCES OF REGEX '\w*' IN INTAB-DCITY WITH '$1_$2'.
    REPLACE ALL OCCURRENCES OF REGEX '\w*' IN INTAB-BCITY WITH '$1_$2'.
    While activating, I got this syntax error:
    The word REGEX is reserved
    What happen?  Did I got a old ECC version?  Or something else got wrong??
    Any help would be appreciated.
    Edited by: Chih-Chieh Chan on Dec 10, 2008 8:58 AM

    My ECC version is 5.0
    does it make some difference?

  • How to remove syntax error for the method which i deleted?

    Hi,
    I implemented a attribute NAME2 in BP_ADDR/AddressDuplicate , in that i implemented GET_P_NAME2 and later deleted attribute it self now i am getting the error "ZL_BP_ADDR_ADDRESSDUPLICA_CN02CP Method "GET_P_NAME2" does not exist. There is, however, a method with the similar name "GET_BP_NAME"
    how to remove this error?
    regards
    Vinay

    Hi Pankaj,
    I tried that it is giving dump
    The following syntax error occurred in program
    "ZL_BP_ADDR_ADDRESSDUPLICA_CN02CP " in include
    "ZL_BP_ADDR_ADDRESSDUPLICA_CN02CM01D " in
    line 1:
    "Method "GET_P_NAME2" does not exist. There is, however, a method with "
    "the similar name "GET_BP_NAME"."
    any clue how to solve this?
    Vinay

  • Syntax error for automatic generated class for object MAS_AUTH_CUST

    Hi,
    I am configuring the mobile sales scenario. I encountered a weird problem. Basically the automatically generated class  ZDOECL_013_00H_MWSR can not be activated. If you activate it manually it will give you the below error. Looks like the entity structure is too big. So the generated code has a very big loop which causes the dump. I found the issue when try to run the function module CRM_AUTH_CUST_INSERTCDS as suggested in the configuration guide.
    I have tried to regenerate the object. But it still give me the same error.
    Internal error occured during runtime generation of Class ZDOECL_013_00H_MWSR (Dump ID: GEN_BRANCHOFFSET_LIMIT_REACHED)
    Message no. OO053
    Diagnosis
    An internal error occurred when the system tried to generate the runtime objects of the class. A dump has been created with the given dump ID. It can be analyzed using transaction ST22.
    Our Netweaver version as below. It should contain already the latest patch etc.
    SAP_ABA     711     0006     SAPKA71106
    SAP_BASIS     711     0006     SAPKB71106
    PI_BASIS     711     0006     SAPK-71106INPIBASIS
    ST-PI     2008_1_710     0004     SAPKITLRE4
    SAP_BW     711     0006     SAPKW71106
    CRMSPGWY     110     0004     SAPK-11004INCRMSPGWY
    CRM version.
    SAP_ABA     702     0006     SAPKA70206
    SAP_BASIS     702     0006     SAPKB70206
    PI_BASIS     702     0006     SAPK-70206INPIBASIS
    ST-PI     2008_1_700     0002     SAPKITLRD2
    SAP_BS_FND     702     0004     SAPK-70204INSAPBSFND
    SAP_BW     702     0006     SAPKW70206
    LCAPPS     2005_700     0009     SAPKIBHD09
    SAP_AP     700     0022     SAPKNA7022
    WEBCUIF     701     0003     SAPK-70103INWEBCUIF
    BBPCRM     701     0003     SAPKU70103
    WFMCORE     200     0016     SAPK-20016INWFMCORE
    VIRSANH     530_700     0011     SAPK-53311INVIRSANH
    Any advice is appreciated.
    Thanks
    Hansen Chen

    Hi,
    Gateway1.1 to SAP Netweaver mobile is not supported with EHP1 of SAP Netweaver Mobile 7.10.
    Please  check the release information note: 1539681
    So, i suggest you to install SAP Netweaver Mobile 7.10 with Gateway addon.
    Regards,
    Siva.

  • 1013 error for buttons finding cue points

    Using the code below I get an error message
    1013: The private attribute may be used only on class property definitions.

    import fl.video.*;
    // Video component instance name
    var flvControl:FLVPlayback = display;
    var flvSource:String = "lou.flv";
    // Set video
    flvControl.source = flvSource;
    // Add seek functionality to the button
    function seekHandler(event:MouseEvent):void
       flvControl.seekToNavCuePoint("lou1")
    seek_btn.addEventListener(MouseEvent.CLICK, seekHandler);
    seek_btn1.cuePointName = new String();
    seek_btn1.cuePointName = "lue1";
    seek_btn1.addEventListener(MouseEvent.CLICK, onButtonPress);
    seek_btn2.cuePointName = new String();
    seek_btn2.cuePointName = "lue2";
    seek_btn2.addEventListener(MouseEvent.CLICK, onButtonPress);
    // onButtonPress function
    private function onButtonPress(evt:MouseEvent):void {
         flvControl.seekToNavCuePoint(evt.target.cuePointName);

  • Access 2013 SQL syntax error for experts

    SELECT Box_Dtl.N_Code, Box_Dtl.Box_Num, Box_Dtl.Cur_BarCount, IIf(z_nRes.rQty Is Null, 0,z_nRes.rQty) AS rQty,
    Box_Dtl.Cur_BarCount - IIf(z_nRes.rQty Is Null, 0,z_nRes.rQty) AS bBal, Box_Dtl.PO, Box_Dtl.Cert, Box_Dtl.Rec_Date,
    IIf(z_TotalBars.Bars Is Null, 0,z_TotalBars.Bars) AS tBars, IIf(z_TotalRes.rBars Is Null, 0,z_TotalRes.rBars) AS rBars, IIf(z_TotalBars.Bars Is Null, 0,z_TotalBars.Bars)
    - IIf(z_TotalRes.rBars Is Null, 0,z_TotalRes.rBars) AS Bal, Box_Dtl.Cost_Bar, Box_Dtl.Weight, Box_Dtl.Location_Code, Box_Dtl.Notes, DEFARS
    FROM ([ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].z_TotalRes
    RIGHT OUTER JOIN [ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].Box_Dtl)
    LEFT OUTER JOIN [ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].z_nRes ON Box_Dtl.Box_Num = z_nRes.Box
    LEFT OUTER JOIN [ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].z_TotalBars ON Box_Dtl.N_Code = z_TotalBars.M_Code ON z_TotalRes.M_Code = Box_Dtl.N_Code
    WHERE (Box_Dtl.Finished = 0) AND (Box_Dtl.N_Code = 'AL---2011--------T3-.6875R12')
    error messagesyntax error in  FROM clause

    SELECT Box_Dtl.N_Code, Box_Dtl.Box_Num, Box_Dtl.Cur_BarCount, IIf(z_nRes.rQty Is Null, 0,z_nRes.rQty) AS rQty,
    Box_Dtl.Cur_BarCount - IIf(z_nRes.rQty Is Null, 0,z_nRes.rQty) AS bBal, Box_Dtl.PO, Box_Dtl.Cert, Box_Dtl.Rec_Date,
    IIf(z_TotalBars.Bars Is Null, 0,z_TotalBars.Bars) AS tBars, IIf(z_TotalRes.rBars Is Null, 0,z_TotalRes.rBars) AS rBars, IIf(z_TotalBars.Bars Is Null, 0,z_TotalBars.Bars)
    - IIf(z_TotalRes.rBars Is Null, 0,z_TotalRes.rBars) AS Bal, Box_Dtl.Cost_Bar, Box_Dtl.Weight, Box_Dtl.Location_Code, Box_Dtl.Notes, DEFARS
    FROM ([ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].z_TotalRes
    RIGHT OUTER JOIN [ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].Box_Dtl)
    (LEFT OUTER JOIN [ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].z_nRes ON Box_Dtl.Box_Num = z_nRes.Box)
    LEFT OUTER JOIN [ODBC;Description=D4;DRIVER=SQL Server;SERVER=DEVELOPMENT;Trusted_Connection=Yes;DATABASE=RawMaterial_LV].z_TotalBars ON Box_Dtl.N_Code = z_TotalBars.M_Code ON z_TotalRes.M_Code = Box_Dtl.N_Code
    WHERE (Box_Dtl.Finished = 0) AND (Box_Dtl.N_Code = 'AL---2011--------T3-.6875R12')
    --Prashanth

  • Why after installing Ver 17 US English, pop up error boxes appear with Syntax Error for Java Script Application?

    Should I uninstall the Java application and related plug ins or go back to Ver 16 in which this problem did not occur?

    Thank you for leading me to the detailed method of checking extensions. The Social Fixer Extension needed to be updated. Mission accomplished.

  • Syntax Error while writing VBScript in OFT 9.1

    Hi All,
    I am new to OFT 9.1 (not using OpenScript). I have a simple VBScript code which I have copied inside Test Scriptlet After Page. After pasting code, I click "Done" button and then save the script. While doing this the script pane shows me syntax error but does not tell me what it is but highlights it with red color. I am even able to execute this VBScript code and get the desired result.
    Below is the code:
    Dim blnVal1
    Dim strVal
    Dim strTemp
    Function fn1(strTemp)
    MsgBox strTemp
    fn1 = True
    End Function
    strVal = "Hello World"
    blnVal1 = fn1(strVal)
    I get a syntax error for the statement where MsgBox line of code is written.
    Please can anyone help me why I am getting this syntax error. This is driving me nuts. Thanks.
    Regards,
    Harman

    My guess is that it doesn't like the Function statement and that you will have to just write your code page by page without the use of a function

  • Tween/Transition import code gives a syntax error

    Basicly, I'm using Tweens and transitions, and am having
    trouble making them appear in some parts.
    On a multipage website, pasting in the code:
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    Gives me a syntax error for where the two lines appear. -
    This will make any transitions and tweens not appear (the two lines
    above need to be commented out for it to compile). However, when a
    page is loaded that contains the code (and gives no syntax error),
    the transitions and tweens in the first movie as well as the loaded
    clip all work fine.
    What would cause a synax error when trying to use the import
    code?
    The actual site itself you can see in progress at
    http://cressaid.brettjamesonline.com/us
    . The drop down menus just appear, until you load either the logos,
    corporate id or brochures section in folio. Then they smoothly roll
    down

    SuperRoach,
    > I think I found the solution - which was to use
    Actionscript 2.0
    > in the publish settings. This got rid of the error, and
    made it
    > work fine.
    Yes, that makes sense, then. You can look up these classes
    and
    keywords, by the way, in the ActionScript 2.0 Language
    Reference and
    Components Language Reference. Both sets of documentation
    indicate the
    availability of everything you look up. For example, the
    "import statement"
    entry says:
    Availability: ActionScript 2.0; Flash Player 6
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Error while transporting Transformation: Syntax error in Start Routine

    Hi Everyone,
    I'm facing a strange problem during transporting one of the Business Content cubes from Dev. to Quality.
    I'd activated the DSO 'Purchase Order Items (0PUR_O01)' and its entire data flow from the 4 datasources 2LIS_02_CGR, 2LIS_02_SCN, 2LIS_02_SGR, and 2LIS_02_ITM from BC. Then I migrated the Transfer/Update rules to transformations and the DataSources to BI7 DataSource. So far so good. The migration was successful and all the objects were activated.
    Now when I transport the same to Quality, the import fails with return code 8 and the error message says:
    'Start of the after-import method RS_TRFN_AFTER_IMPORT for object type(s) TRFN (Activation Mode)'
    'Start Routine: Syntax error in routine'
    I verified that the transformation where the error orrured was the one from InfoSource Z2LIS_02_ITM to DSO 0PUR_O01. I went and checked the start routine and it did indeed have a syntax error:
    'In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter SOURCE_PACKAGE" is incompatible with the formal parameter DATA_PACKAGE". '
    But when I check in the Dev. system, there is no syntax error for the same routine. Later, I tried to transport only the said transformation by re-activating it in Dev, and again I got the same error.
    I have no idea why I'm getting a syntax error in the start routine when there are non in the Dev. system. Also none of the coding is customised, it was only the BC code, migrated to a transformation.
    Any suggestions on the steps I could take to transport the transformation to my quality system?
    Thanks,
    Ram

    Hi Ajay, Shanthi, svu and Ray
    I do indeed have a start routine in my transformation and it was migrated from a 3.x update rule to a BI 7 transformation routine.
    The migration was successful and the Start Routine has NO syntax errors in the start routine in the Dev. system. I only encounter the error while transporting it to the Quality system. I cannot modify the code in the Quality system because it is non-changelable and there is no point in trying to change the code in Dev. because there are no errors over there.
    I've also made sure that I've transported all the necessary objects required by the transformations to quality. The routine does not perform a lookup, it simply deletes some records from the data package based on the processkey value (which is itself present in the data package).

  • Syntax error while running the Adobe Form

    Hi to all,
    I have created an interface for adobe from
    Example:  F4_HELP type ZST
    Where ZST  is structure type.
    ZST structure has following field.
    1)     MATERIAL type MATNR
    2)     BASE_QTY type BASMN (BASMN of type QUAN, length 13 with ref table RC29K, and ref field BMEIN)
    Interface and form successful activated.
    But when I run adobe from it give syntax error for ref table RC29K, and ref field BMEIN
    Field u201CRC29K- BMEIN u201Cis unknown. It is neither in one of the specified tables nor defined by a "DATA" statement.
    Please can anyone tell me the solution for that?
    I shall be thankful to you for this.
    Regards
    Pavneet Rana

    Thanks For reply
    I have already maintained the ref table and field for field BASE_QTY type BASMN
    Ref table RC29K, and ref field BMEIN.
    But still error is coming.
    please can any one tell me the solution for that.
    i shall be thankful to you for this.
    Regards
    Pavneet Rana

Maybe you are looking for

  • Best Practice in using Business Packages

    Hi All, Are there any Best Practices in the use of Business Package content?   Do you assign the Roles delivered by the Business Package and do you make changes to the original iViews? or Do you copy the content delivered in the Business Package to a

  • I had maually stored files on my time capsule using my old mac now i can't open them using my new mac?

    I had an old mac book pro,using it i maually stored files on it,i sold my old mac book pro and got a new mac book pro but it cant access the old files what should i do?

  • Unable to ping across subnet

    hi i have a solaris system hostname sun router (IP) 10.xx.xx.1 IP 10.xx.xx.20 network id 10.xx.xx.0 mask 255.255.255.0 where problem is i can't ping from solaris machine(sun) to any PC across the subnet ( with IP as well as name). resolution --> /etc

  • Migrating datasource 0comp_code_attr

    Hi Experts, I am trying to migrate datasources from 3.5 to 7.0 by the following approach 1. Create transformation based on update rule (infosource 7.0 is also created). 2. Create transformation based on transfer rule. 3. migrate the datasource with e

  • Avoid automatic (?) rotation when combining multiple files into 1 pdf

    As I do often have to mark up (stamp) and print large number of single A3 size pdfs (converted dwg files) I am combining them (explorer) into 1 new pdf. Thus enabling just 1 print job instead of 50-100 ! So far no problem - combining works fine & all