How to get updated data automatically  on flex scroll screen

i am showing invoices and corresponding articles in the invoice on flex scrolling screen.details of invoices i am storing in a xml object through java class. i want that whenever i create a invoice it should automatically appear on screen.what method i should implement to get new created invoices on scrolling screen.
code for strucrute
private function converToCollection( inData:XML ):ArrayCollection
var tempArrCollection:ArrayCollection = new ArrayCollection([]);
for(var i=0; i<inData.INVOICE.length(); i++)
var objToAdd:Object = new Object();
objToAdd.ID = inData.INVOICE[i].ID;
objToAdd.NAME = inData.INVOICE[i].NAME;
//added by Mitesh on 12-11
objToAdd.DATE = inData.INVOICE[i].DATE;
objToAdd.STATUS = inData.INVOICE[i].STATUS;
objToAdd.LOCK = inData.INVOICE[i].LOCKED;
objToAdd.LOCK_COLOR = inData.INVOICE[i].LOCKCOLOR;
objToAdd.EXISTANCE = inData.INVOICE[i].EXISTANCE ;
objToAdd.ARTICLES = null;
if( inData.INVOICE[i].ARTICLE.length() )
var articleArrColl:ArrayCollection = new ArrayCollection([]);
var articleLen:uint = inData.INVOICE[i].ARTICLE.length();
for( var k = 0; k<articleLen;k++)
articleArrColl.addItem({DESC:inData.INVOICE[i].ARTICLE[k].DESC,CODE:inData.INVOICE[i].ARTI CLE[k].CODE, QUANTITY:inData.INVOICE[i].ARTICLE[k].QTY});
objToAdd.ARTICLES = articleArrColl;
tempArrCollection.addItem( objToAdd );
return tempArrCollection;
display part of invoices
</mx:Script>
<mx:Canvas id="articlesContainer" x="15" y="38" width="90%" />
<mx:HBox horizontalScrollPolicy="off" verticalScrollPolicy="off">
<mx:Button id="closeBtn"  styleName="closeButtonStyle" x="15" />
<mx:Label  text="{xmlObj.ID}" id="invoiceId"  width="120" fontSize="15" color="#373EA1" fontWeight="bold" textAlign="right" fontFamily="ArialEmbedded"/>
<mx:Label  text="{xmlObj.NAME+'(total articles - '+ArrayCollection(xmlObj.ARTICLES).length+' )'}" width="350" color="#1B1D6D" fontWeight="bold" fontSize="15" textAlign="left" fontFamily="ArialEmbedded"/>
<mx:Label  text="{xmlObj.DATE}" id="invoiceDate"  width="300" fontSize="15" color="#373EA1" fontWeight="bold" textAlign="left" fontFamily="ArialEmbedded"/>
<mx:Spacer width="100%" />
<mx:Button id="printBtn" styleName="printButtonStyle"/>
</mx:HBox>
<mx:VBox id="printInvoiceBlock" width="100%" backgroundColor="#FFFFFF" visible="false">
<mx:HBox horizontalScrollPolicy="off" verticalScrollPolicy="off" backgroundColor="#FFFFFF">
<mx:Label  text="{xmlObj.ID}" id="printInvoiceId"  fontSize="8" color="#000000" fontWeight="bold" textAlign="right" fontFamily="Arial"/>
<mx:Label  text="{xmlObj.NAME+'( total articles - '+ArrayCollection(xmlObj.ARTICLES).length+' )' }" color="#000000" fontWeight="bold" fontSize="7" textAlign="left" fontFamily="Arial"/>
</mx:HBox>
<mx:VBox id="printArticlesContainer" width="100%" backgroundColor="#FFFFFF"/>
</mx:VBox>
<!--<mx:Image id="paidImg" visible="true" x="30" y="38" width="30" source="@Embed(source='assets/skins.swf', symbol='paid')" height="14"/>-->
</mx:Canvas>

When you create your scroller, give it an ID (if you create it in MXML). If you create the scroller in
AS, make sure that whatever MXLM component you want to add it to has an ID. And, I would also try to use Sparks containers whenever possible. In any event, after you have defined your Scroller, this will make it simple.
1. Create a DataGroup.
2. Set DataGroup.dataSource = An ArrayList that contains all your screens.
3. Set Scroller.viewPort = dataSource
4. Create a new method to add new invoices to the ArrayList that contains all your screens.
Below is truncated code from where I do this same thing... I create the scroller in AS and use it with MXML components.
    public class FeedConfigVideoScroller
         * This is our actual list data.
        private var vidRendList:ArrayList = new ArrayList();
        // a variable to tell us to update or not.
        private var selectionChanged:Boolean = false;
        // a variable to hold ids of videos we're keeping
        private var ids:ArrayList;
        // an array list of items to be removed from this list.
        //before the item is added to the map, its label will be updated
        //and check box deselected.
        private var deselectedList:ArrayList = new ArrayList();
        private var addedScreens:Boolean = false;
        private var d:DataGroup;
        private var scroller:Scroller;
        private var feedID:int;
        public function FeedConfigVideoScroller(){
            d = new DataGroup();
            d.dataProvider = vidRendList;
            var vert:VerticalLayout = new VerticalLayout();
            vert.horizontalAlign = "left";
            d.layout = vert;
            d.width = 340;   
            d.height = 370;
            scroller = new Scroller();
            scroller.height = 370;
        public function getScroller():Scroller {
            scroller.viewport = d;
            return scroller;
        public function addFCVLayoutComp(vidLayout:FeedConfigVidLayout):void {
            vidRendList.addItem(vidLayout);
        public function setVidRendList(vidRendList:ArrayList):void {
            this.vidRendList = vidRendList;       

Similar Messages

  • How to get pricing date automatically when billing

    Does anybody know where can I set,  to get pricing date automatically when billing? (BTY must by the Sales order type)?
    Thanks you guy.

    Hi check in t-code VOV8 and enter sales order document type you can see pricing date setting as well as you can change manually pricing date while billing creation of billing VF01.
    Hope this will help you.
    Best Regards
    Sainath

  • How to get system date automatically in date field once page is loaded

    Hai all,
    I am a newbie to jsp programming. I had a jsp page where there is a date field with a calendar available. Initially when the page loads it should have the system date in the date field. If the user wants any other date there he can select it from the calendar. But how can i get the system date to be loaded initially into the date field? Should i use the javascript here?
    Thanks in advance....

    #SYSDATE

  • How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    If the data is on a remote server (for example, PHP running on a web server, talking to a MySQL server) then you do this in an AIR application the same way you would do it with any Flex application (or ajax application, if you're building your AIR app in HTML/JS).
    That's a broad answer, but in fact there are lots of ways to communicate between Flex and PHP. The most common and best in most cases is to use AMFPHP (http://amfphp.org/) or the new ZEND AMF support in the Zend Framework.
    This page is a good starting point for learning about Flex and PHP communication:
    http://www.adobe.com/devnet/flex/flex_php.html
    Also, in Flash Builder 4 they've added a lot of remote-data-connection functionality, including a lot that's designed for PHP. Take a look at the Flash Builder 4 public beta for more on that: http://labs.adobe.com/technologies/flashbuilder4/

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How to insert/update Date field in Oracle with java code

    Dear All
    I have to insert/update a date column while creating a new item, but the problem is i am able to insert/update only date but i need both date and time along with AM/PM.
    By using these 3 lines i am able to insert/update only date.
    java.util.Date date = new java.util.Date();
    long dateLong = date.getTime();
    stmtPrep.setDate(33, new java.sql.Date(dateLong));
    Below code retrives the date exactly what i need but unable to pass in the statement:
    DateFormat formatter = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss a");
    java.util.Date d = (Date) new java.util.Date();
    String stringdate = formatter.format(d);
    String tmpdate = dateFormat();
    stmtPrep.setString(33, tmpdate); -- I tried with setObject as well but same error coming.
    Error is:
    ORA-01830: date format picture ends before converting entire input string
    Can u guide me how to get full date time with AM/PM?

    sasikrishna wrote:
    Dear All
    I have to insert/update a date column while creating a new item, but the problem is i am able to insert/update only date but i need both date and time along with AM/PM.
    By using these 3 lines i am able to insert/update only date.
    java.util.Date date = new java.util.Date();
    long dateLong = date.getTime();
    stmtPrep.setDate(33, new java.sql.Date(dateLong));That's by design. A java.sql.Date object matches an SQL DATE column (which doesn't include a time component). If you want something which matches an SQL TIMESTAMP colum (which includes both date and time components) then you should use a java.sql.Timestamp object.

  • Update data automatically in sql server 2005 based on condition proplem

    Hi guys i have problem I have two table
    First one is
    Second One is Vacation
    as relation one to many (vacation has foreign key of Contract No OF Table Contract) 
    what i need is to update Contract table with field status =Finish where start vacation date >end contract Date
    How i do that in sql server 2005 to make update automatically
    Ex
    contract table
    status             nvarchar(20)
    end contract    date time
    vacation table
    start vacation date time
    end vacation date time
    start vacation date is 23/10/2014
    and End
    is 26/10/2014
    Now not update status in contract table to finish because vacation date start is less from end contract
    but when date today is 27/10/2014 update contract table field status to finish
    automatically with sql server 2005 
    How i do that condition to make update to data automatically based on changing on date
    Update statement i need is 
    update Contract set status = finish where start vacation>end contract
    but problem how i write this statement to update data automatically based on date today

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. Temporal data should
    use ISO-8601 formats. You failed again. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. Now we have to write the DDL that you did not bother with! What you did post was wrong! There is no key or constraints. There is no generic “status” in RDBMS; a "<something in particular>_status"
    is a state of being, so it needs a temporal duration. The correct idiom for this data model is: 
    CREATE TABLE Vacations
    (vacation_contract CHAR(15) NOT NULL PRIMARY KEY,
     vacation_start_date DATE NOT NULL,
     vacation_end_date DATE,
     CHECK(vacation_start_date < vacation_end_date),
    Oh, a field is nothing like a column. You need to read a basic SQL or RDBMS book; you do not know the basics. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Datastore: Update data automatically functionality

    Hi Experts,
    I have a datastore object DSO1(target) that is fed from another datastore Object DSO2(source).
    The source DSO (dso2) is fed from table in R/3 via an infopackage and DTP (BI 7.0 model).
    The target DSO (dso1) gets data from the source via an update rule (BW3.5).
    I checked the following settings on DSO2 (source)
    <b>"Update data automatically"
    "activate data automatically" </b>
    <b>When i run a manual load on DSO2 (source) the request that is loaded gets updated automatically into the target - DSO1 and gets activated automatically - as expected
    </b>
    However <b>when I run a process chain </b>which uses the same infopackage and DTP to load a similar request into the source-DSO2 the corresponding request <u><b>DOES NOT</b></b></u> <b>get updated automatically</b>. I have to rt click on DSO2 and trigger an update via "Update data in 3.x data target" to load the request.
    Can anyone please tell me why the request would update for manual loads and not loads via process chain.
    I used the process type "Update Data Store Object Data (Further Update) " to update the data but i don't want to do this because we are planning to keep the target ODS1 in a different process chain.
    I can schedule an infopackage in the other process chain to load data from source DSO but it is extremely important that every time a request gets loaded into source DSO it gets updated into the target DSO. This is because of certain delta issues we are having when we try to load multiple requests from source into target at a time.
    "Get data by request" on a 7.0 DTP won't work either since every execution of DTP gets only one request at a time. If we want to load multiple requests we need to execute DTP multiple times (cannot be automated!).
    Helpful answers will be rewarded.
    MM<u></u>

    Hi,
    I guess you could create a Metachain and create the dependency between the 2 process chain. The you'll also be able to include the variant that you need in the metachain itself.
    Hope this helps.
    Thanks,
    Ashish

  • How to get updated value at run time in oracle forms

    How to get updated value form oracle database on a field in oracle forms 6.0 at run time if the same form is opened by multiple users and both have get the same maximum value if one commit the record then how other would get that maximum value with out exiting that form...

    This issue is fairly common and Forms handles the situation by displaying the error, "Record has been updated by another user. Requery to see changes." if a user tries to update a record that was updated by another user.
    If your data is in a base table block, you can check before you save by checking the value in the form against the database using the Get_Item_Property('<BLOCK.ITEM>',DATABASE_VALUE). You can compare the value returned by the built-in against the value in the field to see if they have changed. This could be a lot of work and a lot of network traffic if you are checking numerous items in your data block. Forms has a standard locking mechanism that will lock the queried record as soon as a user makes any changes. If another user queries and attempts to change the record locked by another user - they will receive a "Record Locked" message.
    Francois brings up a valid point. Perhaps you should review the link Francios provided as well as this one: How to ask questions the smart way
    It is always a good idea to review your thread before you post it and ask yourself, "Could I answer this question given the information I've provided and the way I've asked the question?"
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • HOW TO GET FILTERED DATA

    HI All,
    I have an query, i have data like how to get filtered data
    i have data like below
    we have started this report with below data for Oct 2014 to Dec 2014
    QUARTER
    STATE
    COUNT
    Oct 2014 - Dec 2014
    U.P
    70
    Oct 2014 - Dec 2014
    M.P
    0
    Oct 2014 - Dec 2014
    BIHAR
    3
    Oct 2014 - Dec 2014
    MAHA
    50
    Oct 2014 - Dec 2014
    RAJ
    3
    so it was very easy to generate report
    then we get data for Jan 2014 to March 2014
    QUARTER
    STATE
    COUNT
    Oct 2014 - Dec 2014
    U.P
    70
    Oct 2014 - Dec 2014
    M.P
    0
    Oct 2014 - Dec 2014
    BIHAR
    3
    Oct 2014 - Dec 2014
    MAHA
    50
    Oct 2014 - Dec 2014
    RAJ
    3
    Jan 2014 - Mar 2014
    U.P
    77
    Jan 2014 - Mar 2014
    M.P
    1
    Jan 2014 - Mar 2014
    BIHAR
    4
    Jan 2014 - Mar 2014
    MAHA
    77
    Jan 2014 - Mar 2014
    RAJ
    5
    so we applied filter on quarter manually for generating the report
    now we have data like below
    QUARTER
    STATE
    COUNT
    Oct 2014 - Dec 2014
    U.P
    70
    Oct 2014 - Dec 2014
    M.P
    0
    Oct 2014 - Dec 2014
    BIHAR
    3
    Oct 2014 - Dec 2014
    MAHA
    50
    Oct 2014 - Dec 2014
    RAJ
    3
    Jan 2014 - Mar 2014
    U.P
    77
    Jan 2014 - Mar 2014
    M.P
    1
    Jan 2014 - Mar 2014
    BIHAR
    4
    Jan 2014 - Mar 2014
    MAHA
    77
    Jan 2014 - Mar 2014
    RAJ
    5
    Apr 2014 - Jun 2014
    U.P
    186
    Apr 2014 - Jun 2014
    M.P
    18
    Apr 2014 - Jun 2014
    BIHAR
    74
    Apr 2014 - Jun 2014
    MAHA
    189
    Apr 2014 - Jun 2014
    RAJ
    68
    now as per new requirement they want only this quarter data of Apr 2014 to Jun 2014
    Apr 2014 - Jun 2014
    U.P
    186
    Apr 2014 - Jun 2014
    M.P
    18
    Apr 2014 - Jun 2014
    BIHAR
    74
    Apr 2014 - Jun 2014
    MAHA
    189
    Apr 2014 - Jun 2014
    RAJ
    68
    and requirement like we have to automate this process . means report should contain only current quarter value.
    so my  query is how to achieve this
    please suggest
    I am using SAP BO 3.1
    Thanks in advance
    Jeet 

    Hi Jeet,
    You can try this-
    Create variable
    V_Quarter= if Left(<QUARTER>,3)="Jan" then 1 elseif Left(<QUARTER>,3)="Apr" then 2 elseif Left(<QUARTER>,3)="Jul" then 3 else 4
    V_Year= Right(<QUARTER>)
    V_CurrQuarter=Quarter(CurrentDate())
    V_CurrYear=Year (CurrentDate())
    Apply filter on report
    V_Quarter= V_CurrQuarter and V_Year=V_CurrYear
    -Anuj

  • How to get updated table values from objectlistdataproviders

    how to get updated table values from objectlistdataproviders

    Hi,
    Here is a sample code
    start-of-selection.
    *Select the data you need into an internal table
      loop at it_mara into wa_mara.
    data that needs to be displayed in the output list
        write:/ box as checkbox,
                wa_mara-matnr under text-001,
                wa_mara-maktx under text-002,
                wa_mara-lgort under text-003.
    Hide the data that needs to moved to internal table
        hide:wa_mara-matnr, wa_mara-maktx, wa_mara-lgort.
      endloop.
      clear wa_mara.
    end-of-selection.
      lines = sy-linno.
    at line-selection.
      clear:it_matnr. 
      do lines times.
        check sy-index > 1.
        box = space.
        read line sy-index field value box.
        if box = 'X'.
    *data selected using check box is moved to internal table
          append wa_mara to it_matnr.
        endif.
      enddo.
    Regards,
    Jisha.

  • How to get changed data in ALV in Web Dynpro for ABAP

    METHOD on_data_check .
    DATA:
        node_spfli                          TYPE REF TO if_wd_context_node,
        node_sflight                        TYPE REF TO if_wd_context_node,
        itab_sflight2                        TYPE if_display_view=>elements_sflight.
      node_spfli = wd_context->get_child_node( name = if_display_view=>wdctx_spfli ).
      node_sflight = node_spfli->get_child_node( name = if_display_view=>wdctx_sflight ).
      CALL METHOD node_sflight->get_static_attributes_table
        IMPORTING
          table = itab_sflight2.
    this code is ..get all data(changed and not changed)
    but i want get changed data only, not all data.
    how to get changed data?
    Edited by: Ki-Joon Seo on Dec 27, 2007 6:04 AM

    Hi,
    To get only the changed data in the ALV grid of a WD, you need to capture the "ON_DATA_CHECK" of the ALV grid.
    To this please do the following in the ALV initialization of the ALV table settings :
        lr_table_settings->set_data_check(
                IF_SALV_WD_C_TABLE_SETTINGS=>DATA_CHECK_ON_CELL_EVENT ).
    You may also do this:
        lr_table_settings->set_data_check(            IF_SALV_WD_C_TABLE_SETTINGS=>DATA_CHECK_ON_CHECK_EVENT)
    The above two ways would depend on when do you need to check for the changed data. If you want to check the data as soon as it is entered, then use the first method. Else, use the second method.
    You need to register an EVENT HANDLER for this event.(You may do this in your VIEW or Component Controller).
    In this Event handler, you would find an importing parameter R_PARAM which is a ref type of      IF_SALV_WD_TABLE_DATA_CHECK.
    The attribute T_MODIFIED_CELLS of this interface IF_SALV_WD_TABLE_DATA_CHECK will contain the modified cells of the ALV with the old & new values.

  • How can we update data in LDAP server using PL/SQL.

    Hi,
    How can we update data in LDAP server using PL/SQL program.
    Is there any sample code for refrence.
    Thanks,
    Tarun

    Hi Justin,
    Thanks for your help. You got my correct requirements.
    Tim's example returning all the attributes of current user which is admin user. Please correct me if I am wrong.
    I have the following information:
    the admin user and password,server info , port and ldap_base for admin.
    I have uid and password for regular user, I am trying find the ldap_base for regular user, which may be different from adminuser.
    Please help me.
    Thanks,
    Edited by: james. on Jan 12, 2009 5:39 PM

  • How to get all data from nokia to i5s

    how to get all data from nokia E71 to i5s???

    if you can put those data in your computer then add it in iTunes. your iPhone 5s should get it thru syncing.

  • How to get the data from multiple nodes to one table

    Hi All,
    How to get the data from multiple nodes to one table.examples nodes are like  A B C D E relation also maintained
    Regards,
    Indra

    HI Indra,
    From Node A, get the values of the attributes as
    lo_NodeA->GET_STATIC_ATTRIBUTES(  IMPORTING STATIC_ATTRIBUTES = ls_attributesA  ).
    Similarily get all the node values from B, C, D and E.
    Finally append all your ls records to the table.
    Hope you are clear.
    BR,
    RAM.

Maybe you are looking for