Reg : Table in Flex

Dear all
1 .How to Create table in Flex application?
2 .I want to access internal table data from webdynpro to Flex application
If possible or nor ?
Thanks
sri

Hi
I hav created one RFC - Im giving input as a Dealer and im getting 3 fields
same as im creating one flex applications using data Grid ..
How to integrate My RFC to data Grid
Kindly give some example
Thanks
sri

Similar Messages

  • How to create a lookup table in flex

    Hi,
    I am not sure how to construct and use a lookup table in flex, i have a string which needs to replaced with a string in the lookup table. Can someone let me know can i can do this.
    Thanks

    @learningflex,
    Here is the simple example of doing this..
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="onCreationComplete();">
       <mx:Script>
       <![CDATA[
         import mx.collections.ArrayCollection;
         import flash.utils.setInterval;
         import mx.controls.Alert;
      [Bindable]
      private var dataList:ArrayCollection = new ArrayCollection([
      {name:'Person'},
      {name:'Student'},
      {name:'Teacher'}, 
      {name:'Employee'}]);
        private function onCreationComplete():void
          for(var i:int=0;i<dataList.length;i++)
           var obj:Object = dataList.getItemAt(i);
           obj.abbr = getAbbrevatedName(obj.name);
           dataList.setItemAt(obj,i);           
          dataGrid.dataProvider = dataList;
        private function getAbbrevatedName(name:String):String
          switch(name)
           case "Person":
            return "prsn";
           case "Student":
            return "sdt";
           case "Teacher":
            return "tcr";
           case "Employee":
            return "emp";
           default:
            return "";
       ]]>
       </mx:Script>
    <mx:DataGrid id="dataGrid" x="10" y="177" visible="true">          
      <mx:columns>
       <mx:DataGridColumn  headerText="Actual Name" dataField="name"/>           
       <mx:DataGridColumn width="150" headerText="Abbrevated Name" dataField="abbr"/>
      </mx:columns>
    </mx:DataGrid>
    </mx:Application>
    See I have displayed both the FullNames in one column and also the abbrevated names in another column. So you can make use of the second column.
    Thanks,
    Bhasker

  • Excel type of table in flex

    Hello,
    i have a problem in designing excel type of table in flex
    UI.As i know only Data grid which display as rows.how to display
    the table loke excel sheet where sub headers and table as rows and
    columns
    and the user has to enter the data into each cell.any info is
    welcomed.
    Thanks and regards,
    Krishna

    "kittuokkade" <[email protected]> wrote in
    message
    news:gj1er8$4ih$[email protected]..
    > Hello,
    > i have a problem in designing excel type of table in
    flex UI.As i
    > know
    > only Data grid which display as rows.how to display the
    table loke excel
    > sheet
    > where sub headers and table as rows and columns
    > and the user has to enter the data into each cell.any
    info is welcomed.
    > Thanks and regards,
    Look at Olap DataGrid

  • Tables in Flex

    Hello!
    How can I draw tables in Flex please?

    What I am looking for is a classic table like the HTML one to display data with no interactivity and printer friendly: some columns, some rows, black border and white background.
    I can use any of the HBox, VBox, Canvas containers, but it would seem bad coding to me to use one for each TD.

  • Creating html table using FLEX

    Hi
    I am new to flex,can any one help me how to create a simple
    html table using flex.
    regards
    pr@veen

    "callpraveenin1973" <[email protected]>
    wrote in message
    news:goj5qq$hgm$[email protected]..
    > Hi
    > I am new to flex,can any one help me how to create a
    simple html table
    > using flex.
    What would you use it for?

  • Adobe Flex integration - Issue with populating table in Flex

    I'm trying to populate a table EXORGDS. In SAP I have defined the same DATASOURCE as EXORGDS. Here is the code I have defined in Flex.
    <mx:DataGrid id="OrgGr" borderStyle="outset"  backgroundAlpha="2" width="285" rowCount="3" backgroundColor="#ffffff" dataProvider="">
                <mx:columns>
                    <mx:DataGridColumn dataField="PORGUNIT" headerText="Org Unit"/>
                    <mx:DataGridColumn dataField="PORGDESC" headerText="Description"/>
                </mx:columns>
      </mx:DataGrid>
    Am I missing something here.
    Regards,
    Imthiaz

    Hi Srilatha,
    I am struck in the same problem. I am using the grouping collection option in Flex but my data is not getting displayed in the Flash Island, I have attached the code sample. Kindly guide me.
    <mx:AdvancedDataGrid id="myADG"
            width="100%" height="100%"
             initialize="gc.refresh();"  >       
            <mx:dataProvider>
                <mx:GroupingCollection id="gc" source="{datasource}">
                    <mx:grouping>
                        <mx:Grouping>
                            <mx:GroupingField name="{dis}"/>
                            <mx:GroupingField name="{ter}"/>
                        </mx:Grouping>
                    </mx:grouping>
                </mx:GroupingCollection>
            </mx:dataProvider>       
            <mx:columns>
                <mx:AdvancedDataGridColumn dataField="{dis}"
                 headerText="Employee Name"/>
                <mx:AdvancedDataGridColumn dataField="{ter}"
                    headerText="Age"/>
                <mx:AdvancedDataGridColumn dataField="{act}"
                  headerText="Department" />
                <mx:AdvancedDataGridColumn dataField="{est}"
                  headerText="Job Title"/>
            </mx:columns>
        </mx:AdvancedDataGrid>  
    Thanks
    Vivek

  • FM BAPI_PO_GETDETAIL1 with table and Flex

    Since you didn't post the WSDL itself I am forced to ask the obvious, is the table you want "exposed" on the web service side?

    Sorry for that. I did realize that it was a mess after the post, but I had to leave.
    I am using FLEX Builder 3.
    I tried changing the parameter of the <mx:operation from e4x to XML and still the same issue occurs. How do I use the event.message.body in the code?
    Here is the required section of the WSDL.
    - <xsd:element name="BAPI_PO_GETDETAIL1.Response">
    - <xsd:complexType>
    - <xsd:all>
    - <xsd:element name="POITEM">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="item" minOccurs="0" maxOccurs="unbounded" type="s0:BAPIMEPOITEM" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
    The last part of the XSDL is below
    - <binding name="BAPI_PO_GETDETAIL1Binding" type="s0:BAPI_PO_GETDETAIL1PortType">
      <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="BAPI_PO_GETDETAIL1">
      <soap:operation soapAction="http://www.sap.com/BAPI_PO_GETDETAIL1" />
    - <input>
      <soap:body use="literal" />
      </input>
    - <output>
      <soap:body use="literal" />
      </output>
      </operation>
      </binding>
    - <service name="BAPI_PO_GETDETAIL1Service">
      <documentation>SAP Service BAPI_PO_GETDETAIL1 via SOAP</documentation>
    - <port name="BAPI_PO_GETDETAIL1PortType" binding="s0:BAPI_PO_GETDETAIL1Binding">
      <soap:address location="http://xxxxxxx:1080/sap/bc/soap/rfc" />
      </port>
      </service>
      </definitions>
    I assumed that since the BAPIResponse has the POITEM table, i could refer to it in the data grid as lastResult.POITEM.item
    Thank you Daniel for your help.

  • Reg: Table size adjustments in adf 11g application.

    Hi All,
    We have developed an application in ADF 11g. In this we fetching the tables from the database. When viewed, the size is not appropriate. We need to adjust the width and height of the tables as default.
    Can anyone help us regarding this.
    Thanks,
    Shanmukh

    Hi Shanmukh,
    If you wrap your table in a component that stretches its children, your table will be adjusted to fill aviable space.
    Try to surround the table with an <af:panelcollection/> or an <af:panelsplitter/> or an <panelStretchLayout/>.
    This should work.
    Good Luck,
    Luc Bors

  • Reg:Table name require

    Hi ,
    Can you pls tell me what is the table name for open and closed items.

    Please check BSID for Open items  and BSAD for Cleared items.
    Regards,
    Sash

  • Reg: Table creation for generic source

    Hai,
    I tried to create generic data source using a table that I created. But when I tried to enter entries into the table using se16 transaction, one field is not at all coming.
    I didnt understand why this field is not coming. I checked the enhancement category, but that is allowing too.. I changed the position of that field in the table and tried. But still its not coming in se16 create entries..
    What can be the problem. When we check the table in se12, that field we able to see.. When we check through se16 also its available. Only when we want to make entries its not coming..
    Can someone help me to resolve this issue..

    Hi,
    Yes I am able to see the filed in the data source also.
    I want to do flat file loading. So I am using LSMW recording for the same. So in se16 i need to create dummy entries. But as this filed is not coming, I cant populate.
    When i tried outside lsmw also in SE16 that filed is not there.

  • Reg:table declaration in a top include

    Hi gurus,
    I have declared few tables in the top include of a function module,but while activating the FM it's throwing error that "the table has already been declared".Where as I have not declared those tables anywhere else.
    Please give me a solution regarding this.
    Thanks in advance.

    hi,
    it might be dat u have declared the required tables in ur Function module and also declared in Top Include. check this. when ever you declared all required elements in ur Top include then try to avoid them declaring in ur FM.
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • Reg: Table name where logical system name will store in R/3 and CRM..

    Hi
    We are trying to replicate the sales order from CRM 5.0 to ECC 6.0. we mainatined publication, site, subscription and rfc connections. When the sales order is created in the CRM the BDOC is getting posted but it is picking up the wrong logical system which we were using earlier. Due to this wrong logical system, out-bound queue is getting generated in CRM but In-bound queue is not getting generated in the ECC.
    Can anybody tell me where (in which table) we need to modify the things for getting the correct logical system.
    Regards

    Hi,
    In CRM:  look for the table CRMMLSGUID. This should have the logical system name of the R/3 that it is connected to CRM and also the GUID. To check if the GUID is correct cross check with GUID from R/3 table CRMPRLS.
    In R/3: look for the table CRMRFCPAR. This will give you all the RFC connections that R3 is connected to. If you want to check whether the CRM RFC value is defined correctly compare it with RFC destination in the Administration Console (smoeac) from CRM.
    If the entries are matching then the systems are connected correctly if not you need to look at the RFC destinations from SM59 transaction.
    Hope this helps.
    Thanks,
    Karuna.

  • Reg. table name, that contains data of deletion of PP & PM operations(point

    Hi all,
    Could any body tell me the table, that contains task list operation deletion data in PM terms of tcode IA01.
    or in case of PP u can see routing data operation.
    It's urgent.....
    Help me & have ur poinrts.
    Regards,
    pradeep phogat

    HI smith,
    Actually in tcode IA02, when we select an operation & make it delete...then in table PLPO i am getting no deletion field. Actually i am making a change BDC for changing the frequency of the operation. So in that i need to consider the deleted operation........
    Reply plesssssss

  • Reg: table name find

    Hi All,
    i need some information, how can i find the table name for the below feild.
    i am using the T:Code : MC44, in this i gave the materian, plant and selected the check box all plant cumulated and  then press enter.
    in the inside screen i hava selected the Double line tab feild.
    in that i need usage period and average stock feid and table name.
    please give me the valid input on this.
    thanks
    siva

    Hi All,
    please give me the details about the below field and table name.
    in the T:Code: MC44, usage period and average stock field.
    K_k_MENGE Usage Period field -  BCO_WERTE is the table.
    MIT_MENGE Average Stock feild - BCO_WERTE this is the strcture feild.
    please give me the table name for the above structure Table.
    Thansks
    siva

  • Reg : Table name of Functional Module

    Can some one sent me the table name where functional module details get stored

    HI,
    Check for Function Module.
    Tables
    TFDIR----
    > Table contains Function Modules.
    TFTIT----
    >Table contains Function Module Short Text.
    ENLFDIR-----> Additional Attributes for Function Modules.
    rewards if useful,
    regards,
    nazeer

Maybe you are looking for

  • MacBook and MAcBook Pro with ProTools

    I have both a MAcBook and and a MAcBook Pro and ProTools runs fine on the Pro, however on the MAcBook ( 2 gig dual with 1 gig ram) the USB bus does not seem to have the power to drive the PRoTools MBOX 2 interface. ANy info on that? I'm surprised tha

  • Ovi Social 1.3.143 "Service is not available"

    Hi, I had some issues (the phone kept on rebooting) with my N8, got it replaced from Nokia Care. But now, in the replaced phone, I am unable to use Ovi Social. It gives the error "Service is not available". Social version is 1.3.143. Is there any fix

  • Photoshop Elements 7 licensing stopped working? (150:30)

    I just got a new hard drive and restored it with the data that was backed up from my old hard drive.  Now Photoshop Elements 7 says that the licnesing has stopped working (error 150:30).  I don't have the original disk because I got it many years ago

  • Loud Fans - Constantly - WHY? How do I make it stop?

    I have a Mac Pro (2x2.66GHz Dual-Core Intel Xeon 8GB 667MHz DDR2). Unless the computer is OFF or "Sleeping" the fans are so loud, even when I am not using it. What causes this and is there a way to make it so that the fans are not constantly working?

  • Getting data from a photodetector using LABVIEW

    I have an infra red interferometer and I am using an IR photodiode in my setup. I have a connector box and a DAQ card ( model number NI-PCI-MIO-16E1). How can i use labview to get intensity data versus time ?