BAdI ADDRESS_SUBSCREEN .. filter Type to use

Hi Everyone
Has any one tried the BAdI ADDRESS_SUBSCREEN to populate the address on delivery tab for T code ME51N. Which filter one need to use.
Thanks

u can even use screen exit for adding fields to a tab...try for screen exit and it will solve u a lot...

Similar Messages

  • BADI not accepting filter type

    Hi All,
    I am trying to implement a YBADI in PLM Module using BADI definition  DPR_CONTROLPLAN .
    The filter type are only allowed if the BADI is created as a local object if it is created as a Transportable object (package) then it does not allows the entry (it says specify filter type).
    I am stuck.
    Please if anyone knows the solution to this problem reply as soon as possible.
    Thank you in anticipation.
    Regards,
    Nikhil Moghe.

    Hi Nikhil,
    are you sure about the implementation name?
    In our system I only found DPR_FINR3_CO_CALC but no DPR_CONTROLPLAN so I can't help directly.
    Please check SAP note 900591 and 637137 for details.
    Regards,
    Clemens

  • BADI:Filter type un editable

    Hi all,
    Am not able to edit filter type for BADI_LAYER while implementing.
    this gives error- Specify filter  type.
    please guide how to overcome problem.

    Hi Sanjay
    First display your badi definition in transaction se18,
    on the attributes tab you'll see  "Multiple Use" and "Filter dependent" checkboxes,
    you should see "Filter dependent" checked.
    Than use menu item Enhancement Implementation > Create to create a new implementation.
    Now go to attributes tab you'll see Plus button under the screen click and specify your filter
    in the namespace Z and specify a short declararion for it.
    First Save, Than Activate.
    Let me know if u face a problem.
    Bulent.
    Edited by: Bulent Balci on Jul 6, 2010 5:29 PM

  • Filter Type in BADI ---- FAGL_DERIVE_SEGMENT

    Hi,
    When I am trying to Create Implementation for Badi--->FAGL_DERIVE_SEGMENT,it is generating error
    message  'Specify Filter Types' .What filter type I have to specify? This  BADI iam implementing for PM module. Please help in resolving the issue.
    Thanks
    K Srinivas

    Hi,
    I tried to implement the badi ....its not asking me any filter type.....
    even if it asks specify the filter by pressing the plus button and select the filter value from f4 help...
    Thanks,
    Shailaja Ainala.

  • How can I use a SCH-LC11 device in CHINA which bought from ebay. I am not Verizon customer but I prefer to using your 4G LTE Router . How can I get the unlock code? The device may have a bad ESN but I only use it in CHINA. Kindly looking forward your repl

    How can I use a SCH-LC11 device in CHINA which bought from ebay. I am not Verizon customer but I prefer to using your 4G LTE Router . How can I get the unlock code? The device may have a bad ESN but I only use it in CHINA. Kindly looking forward your reply. Thanks!

    It's good to read Antoniad's post.  It reassures me that I can use my new iPad as an international communication device which is the reason I purchased the thing.  However, I called Verizon today (my provider of cellular data) who told me that I can't just pop in a SIM card as you suggested.  He also said that he was from the "Pre-Pay" division of Verizon and he was certain that I couldn't do what I planned to do.  I was extremely disappointed as I had called Apple prior to buying the iPad and I read the algorhythm on the website for choosing an iPad before purchasing.  Those sources were quite specific and the information seemed clear.  I would be able to use my iPad to communicate through cellular connections while traveling on the road, literally, abroad.  I was told that I could pop in a data card wherever I was, just as you indicated in your message above, and voila I was good to go.  The Verizon rep definitively rained on that parade, but said that I might be able to do this if I have a "Post-Pay" account, a different area of Verizon.  I haven't had the chance to talk to this division yet, so I looked to Apple's Support for answers.  Maybe I will find out that I can use my iPad as an international communication device while traveling on the road afterall, however, it appears I may need a different type of account (Post-Pay), something I was never warned about. Can I switch to this kind of account?  I don't know.  I have to find out.  If you have any information about this issue, it would be good to share since I strongly suspect there are others who bought the iPad for the same purpose that I have.

  • Exit/BADI for condition type value

    Hi friends,
        I have a BADI BADI_SD_BILLING_ITEM. I want to enhance method 'ITEM_PRICING_COM' present in this BADI.
        My purpose of using this BADI is that I want to get the values of condition type before saving a billing document.For that purpose I want to enhance this BADI.
    But I don't know how to proceed.
       Please help me out.
    Regards,
    Rajesh

    Enhancement                                                                               
    V61A0001                                Customer enhancement: Pricing                            
    V60P0001                                Data provision for additional fields for display in lists                             
    SDVFX011                                Userexit for the komkcv- and kompcv-structures     "This may be usefull

  • OpenOffice save as dialog filter types

    Hello,
    I have the below java method that displays a OOo save as dialog .
    i have an issue with filter types in this save dialog: it seems the combo box type in save dialog doesn't contain the filters (like "OpenDocument Text") i appended in java method code below . when i click on type combo box the list is empty !
    can someone point me what i'm i doing wrong ?
    how to force the save as dialog to display all possible OOo types in 'type ' combo box ?
    thanks much
    public String showSaveAsDialog() {
            String sStorePath = "";
            XComponent xComponent = null;
            try {
                // the filepicker is instantiated with the global Multicomponentfactory...
                Object oFilePicker = m_xMCF.createInstanceWithContext("com.sun.star.ui.dialogs.FilePicker", m_xContext);
                XFilePicker xFilePicker = (XFilePicker) UnoRuntime.queryInterface(XFilePicker.class, oFilePicker);
                // the defaultname is the initially proposed filename..
                xFilePicker.setDefaultName("MyExampleDocument");
                // set the initial displaydirectory. In this example the user template directory is used
                Object oPathSettings = m_xMCF.createInstanceWithContext("com.sun.star.util.PathSettings",m_xContext);
                XPropertySet xPropertySet = (XPropertySet) com.sun.star.uno.UnoRuntime.queryInterface(XPropertySet.class, oPathSettings);
                String sTemplateUrl = (String) xPropertySet.getPropertyValue("Template_writable");
                xFilePicker.setDisplayDirectory(sTemplateUrl);
                // set the filters of the dialog. The filternames may be retrieved from
                // http://wiki.services.openoffice.org/wiki/Framework/Article/Filter
                XFilterManager xFilterManager = (XFilterManager) UnoRuntime.queryInterface(XFilterManager.class, xFilePicker);
                xFilterManager.appendFilter("OpenDocument Text Template", "writer8_template");
                xFilterManager.appendFilter("OpenDocument Text", "writer8");
                xFilterManager.setCurrentFilter("OpenDocument Text");
                // choose the template that defines the capabilities of the filepicker dialog
                XInitialization xInitialize = (XInitialization) UnoRuntime.queryInterface(XInitialization.class, xFilePicker);
                Short[] listAny = new Short[] { new Short(com.sun.star.ui.dialogs.TemplateDescription.FILESAVE_AUTOEXTENSION)};
                xInitialize.initialize(listAny);
                // add a control to the dialog to add the extension automatically to the filename...
                XFilePickerControlAccess xFilePickerControlAccess = (XFilePickerControlAccess) UnoRuntime.queryInterface(XFilePickerControlAccess.class, xFilePicker);
                xFilePickerControlAccess.setValue(com.sun.star.ui.dialogs.ExtendedFilePickerElementIds.CHECKBOX_AUTOEXTENSION, (short) 0, new Boolean(true));
                xComponent = (XComponent) UnoRuntime.queryInterface(XComponent.class, xFilePicker);
                // execute the dialog...
                XExecutableDialog xExecutable = (XExecutableDialog) UnoRuntime.queryInterface(XExecutableDialog.class, xFilePicker);
                short nResult = xExecutable.execute();
                // query the resulting path of the dialog...
                if (nResult == com.sun.star.ui.dialogs.ExecutableDialogResults.OK){
                    String[] sPathList = xFilePicker.getFiles();
                    if (sPathList.length > 0){
                        sStorePath = sPathList[0];
            } catch (com.sun.star.uno.Exception exception) {
                exception.printStackTrace();
            } finally{
                //make sure always to dispose the component and free the memory!
                if (xComponent != null){
                    xComponent.dispose();
            return sStorePath;
        }

    hmm i solved the issue !
    the trick is to move the filter appending code after call to initialize method :
    so we must append filters last thing before calling execute to show the dialog !
    so this code works :
    xInitialize.initialize(listAny);
                // add a control to the dialog to add the extension automatically to the filename...
                XFilePickerControlAccess xFilePickerControlAccess = (XFilePickerControlAccess) UnoRuntime.queryInterface(XFilePickerControlAccess.class, xFilePicker);
                xFilePickerControlAccess.setValue(com.sun.star.ui.dialogs.ExtendedFilePickerElementIds.CHECKBOX_AUTOEXTENSION, (short) 0, new Boolean(true));
                xComponent = (XComponent) UnoRuntime.queryInterface(XComponent.class, xFilePicker);
                 // set the filters of the dialog. The filternames may be retrieved from
                // http://wiki.services.openoffice.org/wiki/Framework/Article/Filter
                XFilterManager xFilterManager = (XFilterManager) UnoRuntime.queryInterface(XFilterManager.class, xFilePicker);
                //xFilterManager.appendFilter("OpenDocument Text Template", "writer8_template");
                xFilterManager.appendFilter("OpenDocument Text", "writer8");
                xFilterManager.setCurrentFilter("OpenDocument Text");
                // execute the dialog...
                XExecutableDialog xExecutable = (XExecutableDialog) UnoRuntime.queryInterface(XExecutableDialog.class, xFilePicker);
                short nResult = xExecutable.execute();

  • What is the BADI  while SAVING purchase order using me22n?

    what is the BADI  while SAVING purchase order using me22n?
    while i will save purchase order through me22n, badi should be fire what is badi for that?
    regards,
    dushyant.

    Dushyant,
    Hopefully you know how to implement the BADI ME_PROCESS_PO_CUST now.
    The following are the codes that you can put in the method "Post".
      DATA: LW_HEADER        TYPE MEPOHEADER,
            LW_POSTED_HEADER TYPE MEPOHEADER,
            LW_VALID         TYPE MMPUR_BOOL,
            ITAB_ITEM        TYPE PURCHASE_ORDER_ITEMS,
            LW_ITEM          TYPE MEPOITEM,
            ITEM_INTERFACE   TYPE PURCHASE_ORDER_ITEM,
            ITAB_ACCT        TYPE PURCHASE_ORDER_ACCOUNTINGS,
            ACCT_INTERFACE   TYPE PURCHASE_ORDER_ACCOUNTING,
            LW_ACCT          TYPE MEPOACCOUNTING,
            LW_POSTED_ACCT   TYPE MEPOACCOUNTING,
            W_ACCT_CHANGED  TYPE C,
            W_GRANT_AMT      TYPE EKPO-NETWR,
            W_FINANCE_AMT    TYPE EKPO-NETWR,
            W_FLAG           TYPE C.
    Check if PO header data is valid
      CLEAR LW_VALID.
      CALL METHOD IM_HEADER->IS_VALID
        RECEIVING
          RE_VALID = LW_VALID.
      CHECK LW_VALID = 'X'.
    PO header data is valid
    Get the newly updated PO header data
      CLEAR LW_HEADER.
      CALL METHOD IM_HEADER->GET_DATA
        RECEIVING
          RE_DATA = LW_HEADER.
    Get the posted PO header data
      CLEAR LW_POSTED_HEADER.
      CALL METHOD IM_HEADER->GET_PERSISTENT_DATA
        IMPORTING
          EX_DATA = LW_POSTED_HEADER
        EXCEPTIONS
          NO_DATA = 1.
      IF SY-SUBRC <> 0.
        CLEAR LW_POSTED_HEADER.
      ENDIF.
    Get PO line items
      REFRESH ITAB_ITEM.
      CALL METHOD IM_HEADER->GET_ITEMS
        RECEIVING
          RE_ITEMS = ITAB_ITEM.
      LOOP AT ITAB_ITEM INTO ITEM_INTERFACE.
    Check if PO line item is valid
        CLEAR LW_VALID.
        CALL METHOD ITEM_INTERFACE-ITEM->IS_VALID
          RECEIVING
            RE_VALID = LW_VALID.
        IF LW_VALID <> 'X'.
    This PO line item is not valid
          CLEAR W_ACCT_CHANGED.
          EXIT.
        ENDIF.
        CLEAR LW_ITEM.
        CALL METHOD ITEM_INTERFACE-ITEM->GET_DATA
          RECEIVING
            RE_DATA = LW_ITEM.
    Get the account interface
        REFRESH ITAB_ACCT.
        CALL METHOD ITEM_INTERFACE-ITEM->GET_ACCOUNTINGS
          RECEIVING
            RE_ACCOUNTINGS = ITAB_ACCT.
        LOOP AT ITAB_ACCT INTO ACCT_INTERFACE.
          CLEAR LW_ACCT.
    Get the newly updated PO item data
          CALL METHOD ACCT_INTERFACE-ACCOUNTING->GET_DATA
            RECEIVING
              RE_DATA = LW_ACCT.
          CLEAR LW_POSTED_ACCT.
    Get the posted PO item data
          CALL METHOD ACCT_INTERFACE-ACCOUNTING->GET_PERSISTENT_DATA
            IMPORTING
              EX_DATA = LW_POSTED_ACCT
            EXCEPTIONS
              NO_DATA = 1.
          IF SY-SUBRC > 0.
            CLEAR LW_POSTED_ACCT.
          ENDIF.
          IF LW_ACCT-LOEKZ <> LW_POSTED_ACCT-LOEKZ OR
             LW_ACCT-KOSTL <> LW_POSTED_ACCT-KOSTL OR
             LW_ACCT-PRCTR <> LW_POSTED_ACCT-PRCTR OR
             LW_ACCT-PS_PSP_PNR <> LW_POSTED_ACCT-PS_PSP_PNR.
    Account assignment was changed
    We will force this PO to go through workflow
            W_ACCT_CHANGED = 'Y'.
          ENDIF.
        ENDLOOP.
      ENDLOOP.

  • Want create filter data  in using routine by DTP

    hi
    I  want create filter data  in using routine by DTP
    I want dowload data in my DSO, if the material exist in my infoobject 0material.
    But my code donu2019t worked:
    ===============================================================
    *&  Include           RSBC_SEL_ROUTINE_TPL
    program conversion_routine.
    Type pools used by conversion program
    type-pools: rsarc, rsarr, rssm.
    tables: rssdlrange.
    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    tables :   /BIC/MATERIAL.
    DATA:
      l_s_ztable   TYPE /BIC/MATERIAL,
      l_s_range  type rssdlrange.
    $$ end of global - insert your declaration only before this line   -
        Fieldname       = ZCOSTCTR
        data type       = CHAR
        length          = 000010
    form compute_ZCOSTCTR
      tables l_t_range structure rssdlrange
      using i_r_request type ref to IF_RSBK_REQUEST_ADMINTAB_VIEW
            i_fieldnm type RSFIELDNM
      changing p_subrc like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
      data: l_idx like sy-tabix.
      read table l_t_range with key
           fieldname = '/BIC/MATERIAL'.
      l_idx = sy-tabix.
      clear l_s_range.
      SELECT DISTINCT /BIC/ZCOSTCTR FROM /BIC/MATERIAL INTO l_s_ztable.
        l_s_range-iobjnm = '/BIC/MATERIAL'.
        l_s_range-fieldname = '/BIC/MATERIAL'.
        l_s_range-sign = 'I'.
        l_s_range-option = 'EQ'.
        l_s_range-low = l_s_ztable-/BIC/ZCOSTCTR.
       l_t_range-HIGH = l_s_ztable-/BIC/ZCOSTCTR.
        if l_idx <> 0.
          modify l_t_range index l_idx.
        else.
          append l_t_range.
        endif.
        p_subrc = 0.
      ENDSELECT.
    ==================================
    best regard
    francoise

    my code
    ===============================================================
    *& Include RSBC_SEL_ROUTINE_TPL
    program conversion_routine.
    Type pools used by conversion program
    type-pools: rsarc, rsarr, rssm.
    tables: rssdlrange.
    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line -
    TABLES: ...
    DATA: ...
    tables : /BIC/SMATERIAL.
    DATA:
    l_s_ztable TYPE /BIC/SMATERIAL,
    l_s_range type rssdlrange.
    $$ end of global - insert your declaration only before this line -
    Fieldname = MATERIAL
    data type = CHAR
    length = 000010
    form compute_MATERIAL
    tables l_t_range structure rssdlrange
    using i_r_request type ref to IF_RSBK_REQUEST_ADMINTAB_VIEW
    i_fieldnm type RSFIELDNM
    changing p_subrc like sy-subrc.
    Insert source code to current selection field
    $$ begin of routine - insert your code only below this line -
    data: l_idx like sy-tabix.
    read table l_t_range with key
    fieldname = '/BIC/MATERIAL'.
    l_idx = sy-tabix.
    clear l_s_range.
    SELECT DISTINCT MATERIAL FROM /BIC/SMATERIAL INTO l_s_ztable.
    l_s_range-iobjnm = '/BIC/SMATERIAL'.
    l_s_range-fieldname = '/BIC/SMATERIAL'.
    l_s_range-sign = 'I'.
    l_s_range-option = 'EQ'.
    l_s_range-low = l_s_ztable-/BIC/SMATERIAL.
    l_t_range-HIGH = l_s_ztable-/BIC/SMATERIAL.
    if l_idx 0.
    modify l_t_range index l_idx.
    else.
    append l_t_range.
    endif.
    p_subrc = 0.
    ENDSELECT.

  • Question about the Filter type for the trace provide "Microsoft-Windows-Kernel-File"

    Hello all,
    I have moved this question from the Windows
    Server General Forum accorfing to the suggestion from Mr. Justin Gu 
    I have a question about the Filter function for the trace provider "Microsoft-Windows-Kernel-File".
    I can find the Filter function with the following operation.
    Mr. Justin Gu wrote:
    > You create a Data Collector Set for the trace provider "Microsoft-Windows-Kernel-File" and finish completely, then you > can right click it and select Properties.
    In the Properties dialog box, click Filter and
    then select ‘Edit…’. You will be> able
    to see the Filter type and Filter data in the Filter dialog box.
    What
    Kind of Filter can
    I use in this Filter dialog box?
    And, how can I set to exclude the some kind of datas?
    Could you give me your suggestion?
    Thank you.

    What
    Kind of Filter can
    I use in this Filter dialog box?
    And, how can I set to exclude the some kind of datas?
    Could you give me your suggestion?
    Thank you.
    I'm looking for the same information.

  • Error BEA-382510 bad value for type node

    Hi,
    We have a requirement to read the xpath from the resource file placed in project folder in OSB and use that xpath to generate the report. For this I have done the following:
    1) Made the xpath entry to properties file as <xpath>$body/*/*/EMPTYPE/EMPDATA/EMPNO</xpath>
    2) Created a variable to fetch the xpath value from property file, say xpathvar
    3) Created another variable, say reportvar which will have the contents: <report>{$xpathvar/text()}</report>. This should fetch the xpath from the variable and replace it in the calling part to fetch the value of the xpath.
    4) For report generation the in key value it is ./text() from variable reportvar.
    When I test this it throws error:
    <con:errorCode>BEA-382510</con:errorCode>
    <con:reason>
    OSB Assign action failed updating variable "reportxpath": com.bea.wli.common.xquery.XQueryException: Error parsing XML: line 1, column 19: {err}XP0006: "$body/*/*/EMPTYPE/EMPDATA/EMPNO ({http://www.w3.org/2001/XMLSchema}string)": bad value for type node
    </con:reason>
    Any pointers will be highly appreciated.
    Thanks!

    I think you cant substitute xpath as you have did.
    As shown in the blog which you mentioned in the other post you may need to have a xslt transformation with xalan:evaluate to correctly process the xpath read from the properties file.
    <report>{$xpathvar/text()}</report>. Here $xpathvar having the value '$body/*/*/EMPTYPE/EMPDATA/EMPNO' will be treated as string type (this will be string as you have read from the properties file as string) and not node. And you are trying to apply the text() function on a string instead of node which is resulting in that error.

  • Which BADI or FM to be used to set flag in VI03 tcode

    Hi Experts,
    My requirment is i will pass the Shipment cost Number through program.
    After executing my program, my report should set the flag in External ID 2 field under Reference tab in VI03 transaction for that partucular document.
    I was thinking to use some BADi or FM for this funcationality.
    Can any one please suggest which BADI or FM i can use?
    Thanks in advance.
    Regards,
    Rachna
    Moderator message: please do more research before asking.
    Edited by: Thomas Zloch on Apr 7, 2011 3:09 PM

    Hi,
         XI Adapter is necessary only at the receiver side not at the sender side, by using proxy pre-configuration steps and proxy framework message from the sender system(Client proxy) will reach PI system. So, in this case XI adapter is not necessary(adapterless communication).
    Proxy pre configuration setting,
    1.Create a HTTP connection in the business system using transaction SM59 its pointing to Pi system
    2.   Go to Transaction SXMB_ADM, in integration engine configuration to specify role of
    business system as application system and correspoding integration server as rfc destination of type H which was created above.
    3.create two rfc desination of type T its pointing PI system, that are
        ->LCRSAPRFC
        -> SAPSLDAPI
    4.Go to SLDAPICUST transaction, their maintain PI host and POrt Detais.
    5.Go to  SLDCHECK  transaction, our business system will appear.
    please go throug below blog, i hope this will help you,
    http://www.****************/Tutorials/XI/ABAPProxy/page1.htm
    regards,
    ganesh.

  • Can Single Use standard BADI be converted to Multiple Use

    Is it possible to make standard BADI a Multiple Use when it is single use?
    I hope it is not.
    Please confirm.
    Thanks,
    Arshad

    Hello Arshad
    If a BAdI is defined as single-use (SE18) then you can have only a single active implementation within the system. Thus, the answer to your question is: No, it is not possible.
    However, there may be the reverse situation where you have a BAdI defined as single-use but would like to have multiple implementations. In this case you have to adjust the single active implementation and instantiate other implementations if certain conditions are fulfilled, e.g.:
    <b>Active</b> implementation of a BAdI should be: ZCL_MY_BADIIMPL_01
    You create a second implementation (<b>not active</b>): ZCL_MY_BADIIMPL_02
    Within the methods of ZCL_MY_BADIIMPL_01 you could code:
      DATA:
        lo_badi2    TYPE REF TO <BAdI interface>.
      IF ( <condition is fulfilled> ).
        CREATE OBJECT lo_badi2 TYPE ('ZCL_MY_BADIIMPL_02').
    *   Call methods of second BAdI implementation
      ENDIF.
    Regards
      Uwe

  • Collections Management: Filter Type Invalid

    Hi,
    I am trying to implement a BAdI for distribution of work items to collection specialists.
    I have defined a new distribution procedure but when I create the new implementation and type in my procedure name, when I click the create button I get the error message "Filter value ZLINKS is invalid for filter type UDM_COLL_DIST_ALGORITHM.
    If I drill down into this filter type to the data element the value table UDM_COLL_DISTALG which contains the SAP standard entry SAP_EQDIST and my custom ZLINKS entry.
    Does anyone know why I am receiving this message? Have a missed a step out?
    Advice appreciated.
    David

    Hello Ashish,
    I guess the customizing is not setup properly.
    Look in :
    /SPRO
    /Cross-Application Components
      /Master Data Synchronization
       /Customer/Vendor Integration
        /Business Partner Settings
        /Settings for Customer Integration
         ==>Define BP Role for Direction Customer to BP
    There at least the account group customized with a valid BP role.
    Maybe you should also start from the customer master data standard maintenance (XD02 or XD01) to check if the standard synchronisation is running properly.
    Check for the results and/or errpr codes in transaction MDS_PPO2.
    Eventually deactivate PPO in order to stop processing at the first error. This should help you to find the reason of the trouble.
    /SPRO
    /Cross-Application Components
      /Master Data Synchronization
       /Synchronization Control
        ==>Activate PPO Requests for Platform Objects in the Dialog
        ==>Activate Synchronization Options
    Good luck
    Best regards
    Alain

  • Bad element of type flashx.textLayout.elements::LinkElement passed to mxmlChildren

    When I use this code:
        <s:RichEditableText x="20" y="100" color="#2b4381" fontFamily="Myriad Pro" fontSize="17" tabStops="S0 S50 S100 S150 S200 S250 S300 S350 S400 S450 S500" width="494" height="55" whiteSpaceCollapse="preserve">
            <s:textFlow>
                <s:TextFlow>
                    <s:p><s:span color="#f77d0e"><s:a href="http://google.com"><s:span>some text</s:span></s:a></s:span><s:span color="#ffffff">posted 18 photos to</s:span><s:span> </s:span><s:span color="#0693ab">Web 2.0 Silicon Valley Design Team</s:span></s:p>
                </s:TextFlow>
            </s:textFlow>
        </s:RichEditableText>
    I get the error, Bad element of type flashx.textLayout.elements::LinkElement passed to mxmlChildren
    TypeError: Bad element of type flashx.textLayout.elements::LinkElement passed to mxmlChildren
        at flashx.textLayout.elements::SpanElement/set mxmlChildren()[C:\Vellum\branches\v1\1.0\dev\output\openSource\textLayout\src\flashx\text Layout\elements\SpanElement.as:209]
        at Test/_Test_SpanElement1_c()[/Users/monkeypunch/Documents/test/src/Test.mxml:5]

    Links cannot be children of span elements. If you want the link text to have that color, move the attribute into the span element that is a child of the link.

Maybe you are looking for