How to read data from the data provider using javascript

Hi,
Please let me know how to read the data from the dataprovider using javascript(query assigned to the data provider).
My query has filter charateristics, free charateristics, charateristics in rows and key figure in column.
Thanks a lot for your kind help
Regards
Kandasamy

Kandaswamy,
Assign an ID to your table item , then in JavaScript , you can use ID.innerHTML and you will get the HTML code within that table for the same , then you can find out how best to get the exact value you desire from the innerHTML value which is a string with the entire HTML from within the table item.
Arun
Hope it helps....

Similar Messages

  • Regarding reading the data from the files without using Stremas

    hai to all of u...
    here i have a problem where i have to read the data from the files without using any streams.
    please guide me how to do this one,if possible by giving with an example
    Thanks & Regard
    M.Ramakrishna

    Simply put, you can't.
    By why do you need to?

  • How can delete my iphone5 data from the date its restored?

    how can delete my iphone5 data from the date its restored?

    it's unclear what you mean
    if you wish to remove your iphone5 data you connect it to iTunes on the computer and click the restore button and choose restore to factory defect

  • Powerpivot Error on Refresh -- "We couldn't get data from the data model..."

    I'm using Excel 2013 and Windows 8.1.  I have a spreadsheet I've been using for over a year, and I've just started getting this error message when I try to refresh the data.
    "We couldn't get data from the Data Model.  Here's the error message we got:
    The 'attributeRelationship' with 'AttributeID' - 'PuttDistCat9' doesn't exist in the collection"
    Any idea how I can fix this problem?  I haven't changed anything related to that particular attribute.  All the data is contained in separate sheets in the workbook, so there are no external sources of data.
    Thanks.
    Jean

    Thanks for all the suggestions.
    I found a slightly older version of the spreadsheet that still refreshes properly, so I don't think I have any issues with the version of Excel or Power Query.  (I've had this same error before, and I believe I applied the hotfix at that time.)
    I think this problem started after I updated a number of the date filters in the pivot tables.  I haven't made any changes to the data model, and the only updates I've made were to add data (which I do all the time), and to change the date filters on
    the pivot tables.
    As suggested, I added a new pivot table querying one table (the table with the attribute that shows up in the error message), and it worked fine.  I can also refresh this pivot table.
    Then I tried adding a pivot table which went against several tables in the data model (including the table in question).  The pivot table seemed to return that data properly.  However, when I tried to refresh it, I got the same error message ("we
    couldn't get data from the data model..."). 
    Dany also suggested running the queries one at a time to see which one is in error.  Without checking all the pivot tables, it appears that any which use the table "HolePlayedStrokes" generate the error (this is the table with the attribute
    mentioned in the error message).  Pivot Tables without that particular table seem to refresh OK.  Unfortunately, that is the main table in my data model, so most of the pivot tables use it.
    Any other suggestions?  I'd be happy to send a copy of the spreadsheet.
    Thanks for all the help.
    Jean

  • Featching Data From The Data Base Using DI API in Matrix

    Hi
       All of u i am shahid i faced a problem when i retrive
       the selected data from the data base using matrix plz.
       Healp me!.
       Thanks
       Mohd Shahid.
       SAP Techinical Consultent
      Option Strict Off
    Option Explicit On
    Friend Class UseMatrix
        '// This parameter will use us to manipulate the
        '// SAP Business One Application
        Private WithEvents SBO_Application As SAPbouiCOM.Application
        Private oForm As SAPbouiCOM.Form
        Private oMatrix As SAPbouiCOM.Matrix
        Private oColumns As SAPbouiCOM.Columns
        Private oColumn As SAPbouiCOM.Column
        '// declareing a DB data source for all the Data binded columns
        Private oDBDataSource As SAPbouiCOM.DBDataSource
        '// declaring a User data source for the "Remarks" Column
        Private oUserDataSource As SAPbouiCOM.UserDataSource
        ' This Function is called automatically when an instance
        ' of the class is created.
        ' Indise this function
        Public Sub New()
            MyBase.New()
            '// set SBO_Application with an initialized application object
            SetApplication()
            '// Create the UI
            CreateFormWithMatrix()
            '// Add Data Sources to the Form
            AddDataSourceToForm()
            '// Bind the Form's items with the desired data source
            BindDataToForm()
            '// Load date to matrix
            GetDataFromDataSource()
            '// Make the form visible
            oForm.Visible = True
        End Sub
        Private Sub SetApplication()
            '// Use an SboGuiApi object to establish connection
            '// with the SAP Business One application and return an
            '// initialized appliction object
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            '// by following the steps specified above, the following
            '// statment should be suficient for either development or run mode
            sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            '// connect to a running SBO Application
            Try ' If there's no active application the connection will fail
                SboGuiApi.Connect(sConnectionString)
            Catch ' Connection failed
                System.Windows.Forms.MessageBox.Show("No SAP Business One Application was found")
                End
            End Try
            '// get an initialized application object
            SBO_Application = SboGuiApi.GetApplication()
            'SBO_Application.MessageBox("Hello World")
        End Sub
        Private Sub SBO_Application_AppEvent(ByVal EventType As SAPbouiCOM.BoAppEventTypes) Handles SBO_Application.AppEvent
            Select Case EventType
                Case SAPbouiCOM.BoAppEventTypes.aet_ShutDown
                    SBO_Application.MessageBox("A Shut Down Event has been caught" & _
                        Environment.NewLine() & "Terminating 'Add Menu Item' Add On...")
                    '// terminating the Add On
                    System.Windows.Forms.Application.Exit()
            End Select
        End Sub
        Private Sub CreateFormWithMatrix()
            '// Don't Forget:
            '// it is much more efficient to load a form from xml.
            '// use code only to create your form.
            '// once you have created it save it as XML.
            '// see "WorkingWithXML" sample project
            '// we will use the following object to add items to our form
            Dim oItem As SAPbouiCOM.Item
            '// we will use the following objects to set
            '// the specific values of every item
            '// we add.
            '// this is the best way to do so
            Dim oButton As SAPbouiCOM.Button
            Dim oStaticText As SAPbouiCOM.StaticText
            Dim oEditText As SAPbouiCOM.EditText
            '// The following object is needed to create our form
            Dim creationPackage
            creationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
            creationPackage.UniqueID = "UidFrmMatrix14"
            creationPackage.FormType = "TypeFrmMatrix14"
            '// Add our form to the SBO application
            oForm = SBO_Application.Forms.AddEx(creationPackage)
            '// Set the form properties
            oForm.Title = "Quality Check"
            oForm.Left = 336
            oForm.ClientWidth = 620
            oForm.Top = 44
            oForm.ClientHeight = 200
            '// Adding Items to the form
            '// and setting their properties
            '// Adding an Ok button
            '// We get automatic event handling for
            '// the Ok and Cancel Buttons by setting
            '// their UIDs to 1 and 2 respectively
            oItem = oForm.Items.Add("1", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
            oItem.Left = 5
            oItem.Width = 65
            oItem.Top = 170
            oItem.Height = 19
            oButton = oItem.Specific
            oButton.Caption = "Ok"
            '// Adding a Cancel button
            oItem = oForm.Items.Add("2", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
            oItem.Left = 75
            oItem.Width = 65
            oItem.Top = 170
            oItem.Height = 19
            oButton = oItem.Specific
            oButton.Caption = "Cancel"
            '// Adding a Text Edit item
            'oItem = oForm.Items.Add("txtPhone", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            ' oItem.Left = 265
            'oItem.Width = 163
            'oItem.Top = 172
            'oItem.Height = 14
            '// Adding an Add Phone prefix column button
            ' oItem = oForm.Items.Add("BtnPhone", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
            ' oItem.Left = 160
            ' oItem.Width = 100
            ' oItem.Top = 170
            ' oItem.Height = 19
            ' oButton = oItem.Specific
            ' oButton.Caption = "Add Phone prefix"
            '// Add the matrix to the form
            AddMatrixToForm()
        End Sub
        Private Sub AddMatrixToForm()
            '// we will use the following object to add items to our form
            Dim oItem As SAPbouiCOM.Item
            '// we will use the following object to set a linked button
            Dim oLink As SAPbouiCOM.LinkedButton
            '// Adding a Matrix item
            oItem = oForm.Items.Add("Matrix1", SAPbouiCOM.BoFormItemTypes.it_MATRIX)
            oItem.Left = 5
            oItem.Width = 500
            oItem.Top = 5
            oItem.Height = 150
            oMatrix = oItem.Specific
            oColumns = oMatrix.Columns
            '// Adding Culomn items to the matrix
            oColumn = oColumns.Add("#", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "#"
            oColumn.Width = 30
            oColumn.Editable = False
            '// Add a column for Item Code
            oColumn = oColumns.Add("DSItemCode", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            oColumn.TitleObject.Caption = "Item Code"
            oColumn.Width = 40
            oColumn.Editable = True
            '// Link the column to the ITEM master data system form
            oLink = oColumn.ExtendedObject
            oLink.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_Items
            oColumn = oColumns.Add("DSItemName", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Item Name"
            oColumn.Width = 80
            oColumn.Editable = True
            '// Add a column for BP Card Phone
            oColumn = oColumns.Add("DSWhs", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Ware House"
            oColumn.Width = 40
            oColumn.Editable = True
            '// Add a column for BP Card Phone
            oColumn = oColumns.Add("DSQuantity", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Quantity"
            oColumn.Width = 40
            oColumn.Editable = True
            '// Add a column for Combo Box
            oColumn = oColumns.Add("DSQuality", SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX)
            oColumn.TitleObject.Caption = "Quality"
            ' oColumn.ValidValues.Add("OK", "")
            'oColumn.ValidValues.Add("NOT OK", "")
            oColumn.Width = 40
            oColumn.Editable = True
            oColumn = oColumns.Add("DSReport", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "Remarks"
            ' oColumn.ValidValues.Add("OK", "")
            'oColumn.ValidValues.Add("NOT OK", "")
            oColumn.Width = 40
            oColumn.Editable = True
            '// Add a column for BP Card Phone
            ' oColumn = oColumns.Add("DSPhoneInt", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            ' oColumn.TitleObject.Caption = "Int. Phone"
            'oColumn.Width = 40
            'oColumn.Editable = True
        End Sub
        Public Sub AddDataSourceToForm()
            '// every item must be binded to a Data Source
            '// prior of binding the data we must add Data sources to the form
            '// Add user data sources to the "International Phone" column in the matrix
            ' oUserDataSource = oForm.DataSources.UserDataSources.Add("IntPhone", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 20)
            '// Add DB data sources for the DB bound columns in the matrix
            oDBDataSource = oForm.DataSources.DBDataSources.Add("OITW")
        End Sub
        Public Sub BindDataToForm()
            '// getting the matrix column by the UID
            oColumn = oColumns.Item("DSItemCode")
            'oColumn.DataBind.SetBound(True, "", "DSCardCode")
            oColumn.DataBind.SetBound(True, "OITW", "ItemCode")
            'oColumn = oColumns.Item("DSItemName")
            'oColumn.DataBind.SetBound(True, "OITW", "ItemName")
            oColumn = oColumns.Item("DSWhs")
            oColumn.DataBind.SetBound(True, "OITW", "WhsCode")
            oColumn = oColumns.Item("DSQuantity")
            oColumn.DataBind.SetBound(True, "OITW", "U_QCStock")
            '// to Data Bind an item with a user Data source
            '// the table name value should be an empty string
            ' oColumn = oColumns.Item("DSPhoneInt")
            'oColumn.DataBind.SetBound(True, "", "IntPhone")
        End Sub
        Public Sub GetDataFromDataSource()
            '// Ready Matrix to populate data
            oMatrix.Clear()
            oMatrix.AutoResizeColumns()
            '// Querying the DB Data source
            oDBDataSource.Query()
            '// setting the user data source data
            'oUserDataSource.Value = "Phone with prefix"
            oMatrix.LoadFromDataSource()
        End Sub
        Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If (pVal.FormUid = "UidFrmMatrix") Then
                If ((pVal.itemUID = "BtnPhone") And _
                    (pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED) And _
                    (pVal.Before_Action = False)) Then
                    AddPrefix()
                End If
                If ((pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_UNLOAD) And _
                    (pVal.Before_Action = False)) Then
                    SBO_Application.MessageBox("Form Unloaded, Addon will terminate")
                    System.Windows.Forms.Application.Exit()
                End If
            End If
        End Sub
        Public Sub AddPrefix()
            Dim i As Integer
            Dim PhoneExtCol As SAPbouiCOM.Column
            Dim newPhone As String
            Dim oItem As SAPbouiCOM.Item
            Dim oEditTxt As SAPbouiCOM.EditText
            '// Get the prefix edit text item
            oItem = oForm.Items.Item("txtPhone")
            oEditTxt = oItem.Specific
            '// Flush user input into datasources
            oMatrix.FlushToDataSource()
            '// Get the DBdatasource we base the matrix on
            oDBDataSource = oForm.DataSources.DBDataSources.Item("OCRD")
            '// Iterate all the records and add a prefix to the phone
            For i = 0 To oDBDataSource.Size - 1
                newPhone = oDBDataSource.GetValue("phone1", i)
                newPhone = newPhone.Trim(" ")
                oDBDataSource.SetValue("phone1", i, oEditTxt.String + newPhone)
            Next
            '// Load data back to
            oMatrix.LoadFromDataSource()
        End Sub
    End Class

    Hi Shahid,
    I am not sure what your question is. The code you pasted looks like the MatrixAndDataSources example that comes with the SDK. What are you trying to do?
    Thanks,
    Adele

  • I am based in India, how do i buy from the app store using an indian credit card? The app store is saying that my apple id is valid only for US purchases and that I need a US credit card!

    I am based in India, how do i buy from the app store using an indian credit card? The app store is saying that my apple id is valid only for US purchases and that I need a US credit card!

    snigdhachavan wrote:
    so does this mean i cannot download anything from the app store.. ...
    Not the US Store... if you are in India.
    snigdhachavan wrote:
    ... i wanted to buy the Mac OS X Lion... how do i do the purchase?
    http://www.apple.com/in/mac/app-store/

  • How to read data from the excel file using java code.

    Hi to all,
    I am using below code to getting the data from the excel file but I can't get the corresponding data from the specific file. can anyone give me the correct code to do that... I will waiting for your usefull reply......
    advance thanks....
    import java.io.*;
    import java.sql.*;
        public class sample{
                 public static void main(String[] args){
                      Connection connection = null;
                          try{
                               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                               Connection con = DriverManager.getConnection( "jdbc:odbc:Mydsn","","" );
                               Statement st = con.createStatement();
                               ResultSet rs = st.executeQuery( "Select * from [Sheet1$]" );
                               System.out.println("sample:"+rs);
                                  ResultSetMetaData rsmd = rs.getMetaData();
                                  System.out.println("samplersd:"+rsmd);
                               int numberOfColumns = rsmd.getColumnCount();
                                  System.out.println("numberOfColumns:"+numberOfColumns);
                                   while (rs.next()) {
                                            System.out.println("sample1:"+rs);
                                            for (int i = 1; i <= numberOfColumns; i++) {
                                                 if (i > 1) System.out.print(", ");
                                                 String columnValue = rs.getString(i);
                                                 System.out.print(columnValue);
                                            System.out.println("");
                                       st.close();
                                       con.close();
                                      } catch(Exception ex) {
                                           System.err.print("Exception: ");
                                           System.err.println(ex.getMessage());
                        }

    1: What is the name of the excel sheet?
    2: What is printed in this program? null ? anything?
    error?Excel file name is "sample.xls" I set excel file connectivity in my JDBC driver(DSN). Here in my program I am not giving that excel file name. I am giving only that excel sheet name. that is followed
    ResultSet rs = st.executeQuery( "Select * from [Sheet1$]" );The output of this program is given bellow.
    sample:sun.jdbc.odbc.JdbcOdbcResultSet@1b67f74
    samplersd:sun.jdbc.odbc.JdbcOdbcResultSetMetaData@530daa
    numberOfColumns:2

  • Fetch the data from the Data base based on selection criteria in ABAP

    Hi
    I am new to ABAP and working on the Screen where User Enters Company code from and to , Document no and to, I have defined as specified below
      SELECT-OPTIONS Company     FOR p_ccode.
      SELECT-OPTIONS Document    FOR p_fdocnr.
      SELECT-OPTIONS Year           FOR p_fyear.
    When I debug in the pgm I get the values as
    IBT11001100 (From and To Company Code)
    IBT23234241002323424246 (From and To doc no)
    IBT20092009 (From and To Year)
    How can write a SQL select statement to fetch the data from the Database based on the above inputs
    Thanks
    PR

    Moderator message:
    Sorry - this isn't an ABAP training forum. Please press F1 on SELECT-OPTIONS and/or SELECT.
    Thread locked.
    Rob

  • Service Level Tracking Reports show no data from the data warehouse db.

    Hi, I have some Service Level Tracking reports that will only show data from the last few days.  If I select last month as the time frame, there is no data displayed.  All of these reports have previously worked fine.  Nothing to my knowledge
    has changed, and it appears that the data is still being collected in the data warehouse database.  Any thoughts would be greatly appreciated.

    Is this meant for SCOM forum
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/home?category=systemcenteroperationsmanager
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • 90days or 3months data from the date today

    Hi,
    I have problem on this query, I need to extract the customers that is on 90days or 3months in their subscription of the product from the date today. I know that the startdate field must be used on the condition but don't know the right formula. I have tried different condition but I'm not getting the exact data. I have tried this AND sysdate-startdate<=90 but this give me also customers with less 90 days into their subscription but I just need customers with exact 90days. While this one startdate=sysdate-90 doesn't give me results but there should be.
    SELECT     
    c.id,
    i.firstname||i.name as Name,
    to_char(c.startdate,'MM/DD/YYYY') as start_date,
    to_char(c.enddate,'MM/DD/YYYY') as expire_date,
    to_char(c.canceldate,'MM/DD/YYYY') as cancellation_date
    FROM     customer c,
              info i
    WHERE     i.id                     = s.id
    AND sysdate-startdate<=90
    AND c.enddate>=sysdate
    AND c.cancellation_date >= sysdate
    Thank you.

    As David says, there's a hell of a difference between 3 months ago and 90 days ago.
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select trunc(sysdate,'YYYY') as start_date from dual)
      2      ,x as (select rownum rn from dual connect by rownum <= trunc(add_months(sysdate,12),'YYYY')-trunc(sysdate,'YYYY'))
      3  --
      4  select start_date+rn-1 as dt
      5        ,add_months(start_date+rn-1,-3) as "3_months_ago"
      6        ,start_date+rn-1-90 as "90_days_ago"
      7* from t,x
    SQL> /
    DT          3_months_ag 90_days_ago
    01-Jan-2011 01-Oct-2010 03-Oct-2010
    02-Jan-2011 02-Oct-2010 04-Oct-2010
    03-Jan-2011 03-Oct-2010 05-Oct-2010
    04-Jan-2011 04-Oct-2010 06-Oct-2010
    05-Jan-2011 05-Oct-2010 07-Oct-2010
    06-Jan-2011 06-Oct-2010 08-Oct-2010
    07-Jan-2011 07-Oct-2010 09-Oct-2010
    08-Jan-2011 08-Oct-2010 10-Oct-2010
    09-Jan-2011 09-Oct-2010 11-Oct-2010
    10-Jan-2011 10-Oct-2010 12-Oct-2010
    11-Jan-2011 11-Oct-2010 13-Oct-2010
    12-Jan-2011 12-Oct-2010 14-Oct-2010
    13-Jan-2011 13-Oct-2010 15-Oct-2010
    14-Jan-2011 14-Oct-2010 16-Oct-2010
    15-Jan-2011 15-Oct-2010 17-Oct-2010
    16-Jan-2011 16-Oct-2010 18-Oct-2010
    17-Jan-2011 17-Oct-2010 19-Oct-2010
    18-Jan-2011 18-Oct-2010 20-Oct-2010
    19-Jan-2011 19-Oct-2010 21-Oct-2010
    20-Jan-2011 20-Oct-2010 22-Oct-2010
    21-Jan-2011 21-Oct-2010 23-Oct-2010
    22-Jan-2011 22-Oct-2010 24-Oct-2010
    23-Jan-2011 23-Oct-2010 25-Oct-2010
    24-Jan-2011 24-Oct-2010 26-Oct-2010
    25-Jan-2011 25-Oct-2010 27-Oct-2010
    26-Jan-2011 26-Oct-2010 28-Oct-2010
    27-Jan-2011 27-Oct-2010 29-Oct-2010
    28-Jan-2011 28-Oct-2010 30-Oct-2010
    29-Jan-2011 29-Oct-2010 31-Oct-2010
    30-Jan-2011 30-Oct-2010 01-Nov-2010
    31-Jan-2011 31-Oct-2010 02-Nov-2010
    01-Feb-2011 01-Nov-2010 03-Nov-2010
    02-Feb-2011 02-Nov-2010 04-Nov-2010
    03-Feb-2011 03-Nov-2010 05-Nov-2010
    04-Feb-2011 04-Nov-2010 06-Nov-2010
    05-Feb-2011 05-Nov-2010 07-Nov-2010
    06-Feb-2011 06-Nov-2010 08-Nov-2010
    07-Feb-2011 07-Nov-2010 09-Nov-2010
    08-Feb-2011 08-Nov-2010 10-Nov-2010
    09-Feb-2011 09-Nov-2010 11-Nov-2010
    10-Feb-2011 10-Nov-2010 12-Nov-2010
    11-Feb-2011 11-Nov-2010 13-Nov-2010
    12-Feb-2011 12-Nov-2010 14-Nov-2010
    13-Feb-2011 13-Nov-2010 15-Nov-2010
    14-Feb-2011 14-Nov-2010 16-Nov-2010
    15-Feb-2011 15-Nov-2010 17-Nov-2010
    16-Feb-2011 16-Nov-2010 18-Nov-2010
    17-Feb-2011 17-Nov-2010 19-Nov-2010
    18-Feb-2011 18-Nov-2010 20-Nov-2010
    19-Feb-2011 19-Nov-2010 21-Nov-2010
    20-Feb-2011 20-Nov-2010 22-Nov-2010
    21-Feb-2011 21-Nov-2010 23-Nov-2010
    22-Feb-2011 22-Nov-2010 24-Nov-2010
    23-Feb-2011 23-Nov-2010 25-Nov-2010
    24-Feb-2011 24-Nov-2010 26-Nov-2010
    25-Feb-2011 25-Nov-2010 27-Nov-2010
    26-Feb-2011 26-Nov-2010 28-Nov-2010
    27-Feb-2011 27-Nov-2010 29-Nov-2010
    28-Feb-2011 30-Nov-2010 30-Nov-2010
    01-Mar-2011 01-Dec-2010 01-Dec-2010
    02-Mar-2011 02-Dec-2010 02-Dec-2010
    03-Mar-2011 03-Dec-2010 03-Dec-2010
    04-Mar-2011 04-Dec-2010 04-Dec-2010
    05-Mar-2011 05-Dec-2010 05-Dec-2010
    06-Mar-2011 06-Dec-2010 06-Dec-2010
    07-Mar-2011 07-Dec-2010 07-Dec-2010
    08-Mar-2011 08-Dec-2010 08-Dec-2010
    09-Mar-2011 09-Dec-2010 09-Dec-2010
    10-Mar-2011 10-Dec-2010 10-Dec-2010
    11-Mar-2011 11-Dec-2010 11-Dec-2010
    12-Mar-2011 12-Dec-2010 12-Dec-2010
    13-Mar-2011 13-Dec-2010 13-Dec-2010
    14-Mar-2011 14-Dec-2010 14-Dec-2010
    15-Mar-2011 15-Dec-2010 15-Dec-2010
    16-Mar-2011 16-Dec-2010 16-Dec-2010
    17-Mar-2011 17-Dec-2010 17-Dec-2010
    18-Mar-2011 18-Dec-2010 18-Dec-2010
    19-Mar-2011 19-Dec-2010 19-Dec-2010
    20-Mar-2011 20-Dec-2010 20-Dec-2010
    21-Mar-2011 21-Dec-2010 21-Dec-2010
    22-Mar-2011 22-Dec-2010 22-Dec-2010
    23-Mar-2011 23-Dec-2010 23-Dec-2010
    24-Mar-2011 24-Dec-2010 24-Dec-2010
    25-Mar-2011 25-Dec-2010 25-Dec-2010
    26-Mar-2011 26-Dec-2010 26-Dec-2010
    27-Mar-2011 27-Dec-2010 27-Dec-2010
    28-Mar-2011 28-Dec-2010 28-Dec-2010
    29-Mar-2011 29-Dec-2010 29-Dec-2010
    30-Mar-2011 30-Dec-2010 30-Dec-2010
    31-Mar-2011 31-Dec-2010 31-Dec-2010
    01-Apr-2011 01-Jan-2011 01-Jan-2011
    02-Apr-2011 02-Jan-2011 02-Jan-2011
    03-Apr-2011 03-Jan-2011 03-Jan-2011
    04-Apr-2011 04-Jan-2011 04-Jan-2011
    05-Apr-2011 05-Jan-2011 05-Jan-2011
    06-Apr-2011 06-Jan-2011 06-Jan-2011
    07-Apr-2011 07-Jan-2011 07-Jan-2011
    08-Apr-2011 08-Jan-2011 08-Jan-2011
    09-Apr-2011 09-Jan-2011 09-Jan-2011
    10-Apr-2011 10-Jan-2011 10-Jan-2011
    11-Apr-2011 11-Jan-2011 11-Jan-2011
    12-Apr-2011 12-Jan-2011 12-Jan-2011
    13-Apr-2011 13-Jan-2011 13-Jan-2011
    14-Apr-2011 14-Jan-2011 14-Jan-2011
    15-Apr-2011 15-Jan-2011 15-Jan-2011
    16-Apr-2011 16-Jan-2011 16-Jan-2011
    17-Apr-2011 17-Jan-2011 17-Jan-2011
    18-Apr-2011 18-Jan-2011 18-Jan-2011
    19-Apr-2011 19-Jan-2011 19-Jan-2011
    20-Apr-2011 20-Jan-2011 20-Jan-2011
    21-Apr-2011 21-Jan-2011 21-Jan-2011
    22-Apr-2011 22-Jan-2011 22-Jan-2011
    23-Apr-2011 23-Jan-2011 23-Jan-2011
    24-Apr-2011 24-Jan-2011 24-Jan-2011
    25-Apr-2011 25-Jan-2011 25-Jan-2011
    26-Apr-2011 26-Jan-2011 26-Jan-2011
    27-Apr-2011 27-Jan-2011 27-Jan-2011
    28-Apr-2011 28-Jan-2011 28-Jan-2011
    29-Apr-2011 29-Jan-2011 29-Jan-2011
    30-Apr-2011 31-Jan-2011 30-Jan-2011
    01-May-2011 01-Feb-2011 31-Jan-2011
    02-May-2011 02-Feb-2011 01-Feb-2011
    03-May-2011 03-Feb-2011 02-Feb-2011
    04-May-2011 04-Feb-2011 03-Feb-2011
    05-May-2011 05-Feb-2011 04-Feb-2011
    06-May-2011 06-Feb-2011 05-Feb-2011
    07-May-2011 07-Feb-2011 06-Feb-2011
    08-May-2011 08-Feb-2011 07-Feb-2011
    09-May-2011 09-Feb-2011 08-Feb-2011
    10-May-2011 10-Feb-2011 09-Feb-2011
    11-May-2011 11-Feb-2011 10-Feb-2011
    12-May-2011 12-Feb-2011 11-Feb-2011
    13-May-2011 13-Feb-2011 12-Feb-2011
    14-May-2011 14-Feb-2011 13-Feb-2011
    15-May-2011 15-Feb-2011 14-Feb-2011
    16-May-2011 16-Feb-2011 15-Feb-2011
    17-May-2011 17-Feb-2011 16-Feb-2011
    18-May-2011 18-Feb-2011 17-Feb-2011
    19-May-2011 19-Feb-2011 18-Feb-2011
    20-May-2011 20-Feb-2011 19-Feb-2011
    21-May-2011 21-Feb-2011 20-Feb-2011
    22-May-2011 22-Feb-2011 21-Feb-2011
    23-May-2011 23-Feb-2011 22-Feb-2011
    24-May-2011 24-Feb-2011 23-Feb-2011
    25-May-2011 25-Feb-2011 24-Feb-2011
    26-May-2011 26-Feb-2011 25-Feb-2011
    27-May-2011 27-Feb-2011 26-Feb-2011
    28-May-2011 28-Feb-2011 27-Feb-2011
    29-May-2011 28-Feb-2011 28-Feb-2011
    30-May-2011 28-Feb-2011 01-Mar-2011
    31-May-2011 28-Feb-2011 02-Mar-2011
    01-Jun-2011 01-Mar-2011 03-Mar-2011
    02-Jun-2011 02-Mar-2011 04-Mar-2011
    03-Jun-2011 03-Mar-2011 05-Mar-2011
    04-Jun-2011 04-Mar-2011 06-Mar-2011
    05-Jun-2011 05-Mar-2011 07-Mar-2011
    06-Jun-2011 06-Mar-2011 08-Mar-2011
    07-Jun-2011 07-Mar-2011 09-Mar-2011
    08-Jun-2011 08-Mar-2011 10-Mar-2011
    09-Jun-2011 09-Mar-2011 11-Mar-2011
    10-Jun-2011 10-Mar-2011 12-Mar-2011
    11-Jun-2011 11-Mar-2011 13-Mar-2011
    12-Jun-2011 12-Mar-2011 14-Mar-2011
    13-Jun-2011 13-Mar-2011 15-Mar-2011
    14-Jun-2011 14-Mar-2011 16-Mar-2011
    15-Jun-2011 15-Mar-2011 17-Mar-2011
    16-Jun-2011 16-Mar-2011 18-Mar-2011
    17-Jun-2011 17-Mar-2011 19-Mar-2011
    18-Jun-2011 18-Mar-2011 20-Mar-2011
    19-Jun-2011 19-Mar-2011 21-Mar-2011
    20-Jun-2011 20-Mar-2011 22-Mar-2011
    21-Jun-2011 21-Mar-2011 23-Mar-2011
    22-Jun-2011 22-Mar-2011 24-Mar-2011
    23-Jun-2011 23-Mar-2011 25-Mar-2011
    24-Jun-2011 24-Mar-2011 26-Mar-2011
    25-Jun-2011 25-Mar-2011 27-Mar-2011
    26-Jun-2011 26-Mar-2011 28-Mar-2011
    27-Jun-2011 27-Mar-2011 29-Mar-2011
    28-Jun-2011 28-Mar-2011 30-Mar-2011
    29-Jun-2011 29-Mar-2011 31-Mar-2011
    30-Jun-2011 31-Mar-2011 01-Apr-2011
    01-Jul-2011 01-Apr-2011 02-Apr-2011
    02-Jul-2011 02-Apr-2011 03-Apr-2011
    03-Jul-2011 03-Apr-2011 04-Apr-2011
    04-Jul-2011 04-Apr-2011 05-Apr-2011
    05-Jul-2011 05-Apr-2011 06-Apr-2011
    06-Jul-2011 06-Apr-2011 07-Apr-2011
    07-Jul-2011 07-Apr-2011 08-Apr-2011
    08-Jul-2011 08-Apr-2011 09-Apr-2011
    09-Jul-2011 09-Apr-2011 10-Apr-2011
    10-Jul-2011 10-Apr-2011 11-Apr-2011
    11-Jul-2011 11-Apr-2011 12-Apr-2011
    12-Jul-2011 12-Apr-2011 13-Apr-2011
    13-Jul-2011 13-Apr-2011 14-Apr-2011
    14-Jul-2011 14-Apr-2011 15-Apr-2011
    15-Jul-2011 15-Apr-2011 16-Apr-2011
    16-Jul-2011 16-Apr-2011 17-Apr-2011
    17-Jul-2011 17-Apr-2011 18-Apr-2011
    18-Jul-2011 18-Apr-2011 19-Apr-2011
    19-Jul-2011 19-Apr-2011 20-Apr-2011
    20-Jul-2011 20-Apr-2011 21-Apr-2011
    21-Jul-2011 21-Apr-2011 22-Apr-2011
    22-Jul-2011 22-Apr-2011 23-Apr-2011
    23-Jul-2011 23-Apr-2011 24-Apr-2011
    24-Jul-2011 24-Apr-2011 25-Apr-2011
    25-Jul-2011 25-Apr-2011 26-Apr-2011
    26-Jul-2011 26-Apr-2011 27-Apr-2011
    27-Jul-2011 27-Apr-2011 28-Apr-2011
    28-Jul-2011 28-Apr-2011 29-Apr-2011
    29-Jul-2011 29-Apr-2011 30-Apr-2011
    30-Jul-2011 30-Apr-2011 01-May-2011
    31-Jul-2011 30-Apr-2011 02-May-2011
    01-Aug-2011 01-May-2011 03-May-2011
    02-Aug-2011 02-May-2011 04-May-2011
    03-Aug-2011 03-May-2011 05-May-2011
    04-Aug-2011 04-May-2011 06-May-2011
    05-Aug-2011 05-May-2011 07-May-2011
    06-Aug-2011 06-May-2011 08-May-2011
    07-Aug-2011 07-May-2011 09-May-2011
    08-Aug-2011 08-May-2011 10-May-2011
    09-Aug-2011 09-May-2011 11-May-2011
    10-Aug-2011 10-May-2011 12-May-2011
    11-Aug-2011 11-May-2011 13-May-2011
    12-Aug-2011 12-May-2011 14-May-2011
    13-Aug-2011 13-May-2011 15-May-2011
    14-Aug-2011 14-May-2011 16-May-2011
    15-Aug-2011 15-May-2011 17-May-2011
    16-Aug-2011 16-May-2011 18-May-2011
    17-Aug-2011 17-May-2011 19-May-2011
    18-Aug-2011 18-May-2011 20-May-2011
    19-Aug-2011 19-May-2011 21-May-2011
    20-Aug-2011 20-May-2011 22-May-2011
    21-Aug-2011 21-May-2011 23-May-2011
    22-Aug-2011 22-May-2011 24-May-2011
    23-Aug-2011 23-May-2011 25-May-2011
    24-Aug-2011 24-May-2011 26-May-2011
    25-Aug-2011 25-May-2011 27-May-2011
    26-Aug-2011 26-May-2011 28-May-2011
    27-Aug-2011 27-May-2011 29-May-2011
    28-Aug-2011 28-May-2011 30-May-2011
    29-Aug-2011 29-May-2011 31-May-2011
    30-Aug-2011 30-May-2011 01-Jun-2011
    31-Aug-2011 31-May-2011 02-Jun-2011
    01-Sep-2011 01-Jun-2011 03-Jun-2011
    02-Sep-2011 02-Jun-2011 04-Jun-2011
    03-Sep-2011 03-Jun-2011 05-Jun-2011
    04-Sep-2011 04-Jun-2011 06-Jun-2011
    05-Sep-2011 05-Jun-2011 07-Jun-2011
    06-Sep-2011 06-Jun-2011 08-Jun-2011
    07-Sep-2011 07-Jun-2011 09-Jun-2011
    08-Sep-2011 08-Jun-2011 10-Jun-2011
    09-Sep-2011 09-Jun-2011 11-Jun-2011
    10-Sep-2011 10-Jun-2011 12-Jun-2011
    11-Sep-2011 11-Jun-2011 13-Jun-2011
    12-Sep-2011 12-Jun-2011 14-Jun-2011
    13-Sep-2011 13-Jun-2011 15-Jun-2011
    14-Sep-2011 14-Jun-2011 16-Jun-2011
    15-Sep-2011 15-Jun-2011 17-Jun-2011
    16-Sep-2011 16-Jun-2011 18-Jun-2011
    17-Sep-2011 17-Jun-2011 19-Jun-2011
    18-Sep-2011 18-Jun-2011 20-Jun-2011
    19-Sep-2011 19-Jun-2011 21-Jun-2011
    20-Sep-2011 20-Jun-2011 22-Jun-2011
    21-Sep-2011 21-Jun-2011 23-Jun-2011
    22-Sep-2011 22-Jun-2011 24-Jun-2011
    23-Sep-2011 23-Jun-2011 25-Jun-2011
    24-Sep-2011 24-Jun-2011 26-Jun-2011
    25-Sep-2011 25-Jun-2011 27-Jun-2011
    26-Sep-2011 26-Jun-2011 28-Jun-2011
    27-Sep-2011 27-Jun-2011 29-Jun-2011
    28-Sep-2011 28-Jun-2011 30-Jun-2011
    29-Sep-2011 29-Jun-2011 01-Jul-2011
    30-Sep-2011 30-Jun-2011 02-Jul-2011
    01-Oct-2011 01-Jul-2011 03-Jul-2011
    02-Oct-2011 02-Jul-2011 04-Jul-2011
    03-Oct-2011 03-Jul-2011 05-Jul-2011
    04-Oct-2011 04-Jul-2011 06-Jul-2011
    05-Oct-2011 05-Jul-2011 07-Jul-2011
    06-Oct-2011 06-Jul-2011 08-Jul-2011
    07-Oct-2011 07-Jul-2011 09-Jul-2011
    08-Oct-2011 08-Jul-2011 10-Jul-2011
    09-Oct-2011 09-Jul-2011 11-Jul-2011
    10-Oct-2011 10-Jul-2011 12-Jul-2011
    11-Oct-2011 11-Jul-2011 13-Jul-2011
    12-Oct-2011 12-Jul-2011 14-Jul-2011
    13-Oct-2011 13-Jul-2011 15-Jul-2011
    14-Oct-2011 14-Jul-2011 16-Jul-2011
    15-Oct-2011 15-Jul-2011 17-Jul-2011
    16-Oct-2011 16-Jul-2011 18-Jul-2011
    17-Oct-2011 17-Jul-2011 19-Jul-2011
    18-Oct-2011 18-Jul-2011 20-Jul-2011
    19-Oct-2011 19-Jul-2011 21-Jul-2011
    20-Oct-2011 20-Jul-2011 22-Jul-2011
    21-Oct-2011 21-Jul-2011 23-Jul-2011
    22-Oct-2011 22-Jul-2011 24-Jul-2011
    23-Oct-2011 23-Jul-2011 25-Jul-2011
    24-Oct-2011 24-Jul-2011 26-Jul-2011
    25-Oct-2011 25-Jul-2011 27-Jul-2011
    26-Oct-2011 26-Jul-2011 28-Jul-2011
    27-Oct-2011 27-Jul-2011 29-Jul-2011
    28-Oct-2011 28-Jul-2011 30-Jul-2011
    29-Oct-2011 29-Jul-2011 31-Jul-2011
    30-Oct-2011 30-Jul-2011 01-Aug-2011
    31-Oct-2011 31-Jul-2011 02-Aug-2011
    01-Nov-2011 01-Aug-2011 03-Aug-2011
    02-Nov-2011 02-Aug-2011 04-Aug-2011
    03-Nov-2011 03-Aug-2011 05-Aug-2011
    04-Nov-2011 04-Aug-2011 06-Aug-2011
    05-Nov-2011 05-Aug-2011 07-Aug-2011
    06-Nov-2011 06-Aug-2011 08-Aug-2011
    07-Nov-2011 07-Aug-2011 09-Aug-2011
    08-Nov-2011 08-Aug-2011 10-Aug-2011
    09-Nov-2011 09-Aug-2011 11-Aug-2011
    10-Nov-2011 10-Aug-2011 12-Aug-2011
    11-Nov-2011 11-Aug-2011 13-Aug-2011
    12-Nov-2011 12-Aug-2011 14-Aug-2011
    13-Nov-2011 13-Aug-2011 15-Aug-2011
    14-Nov-2011 14-Aug-2011 16-Aug-2011
    15-Nov-2011 15-Aug-2011 17-Aug-2011
    16-Nov-2011 16-Aug-2011 18-Aug-2011
    17-Nov-2011 17-Aug-2011 19-Aug-2011
    18-Nov-2011 18-Aug-2011 20-Aug-2011
    19-Nov-2011 19-Aug-2011 21-Aug-2011
    20-Nov-2011 20-Aug-2011 22-Aug-2011
    21-Nov-2011 21-Aug-2011 23-Aug-2011
    22-Nov-2011 22-Aug-2011 24-Aug-2011
    23-Nov-2011 23-Aug-2011 25-Aug-2011
    24-Nov-2011 24-Aug-2011 26-Aug-2011
    25-Nov-2011 25-Aug-2011 27-Aug-2011
    26-Nov-2011 26-Aug-2011 28-Aug-2011
    27-Nov-2011 27-Aug-2011 29-Aug-2011
    28-Nov-2011 28-Aug-2011 30-Aug-2011
    29-Nov-2011 29-Aug-2011 31-Aug-2011
    30-Nov-2011 31-Aug-2011 01-Sep-2011
    01-Dec-2011 01-Sep-2011 02-Sep-2011
    02-Dec-2011 02-Sep-2011 03-Sep-2011
    03-Dec-2011 03-Sep-2011 04-Sep-2011
    04-Dec-2011 04-Sep-2011 05-Sep-2011
    05-Dec-2011 05-Sep-2011 06-Sep-2011
    06-Dec-2011 06-Sep-2011 07-Sep-2011
    07-Dec-2011 07-Sep-2011 08-Sep-2011
    08-Dec-2011 08-Sep-2011 09-Sep-2011
    09-Dec-2011 09-Sep-2011 10-Sep-2011
    10-Dec-2011 10-Sep-2011 11-Sep-2011
    11-Dec-2011 11-Sep-2011 12-Sep-2011
    12-Dec-2011 12-Sep-2011 13-Sep-2011
    13-Dec-2011 13-Sep-2011 14-Sep-2011
    14-Dec-2011 14-Sep-2011 15-Sep-2011
    15-Dec-2011 15-Sep-2011 16-Sep-2011
    16-Dec-2011 16-Sep-2011 17-Sep-2011
    17-Dec-2011 17-Sep-2011 18-Sep-2011
    18-Dec-2011 18-Sep-2011 19-Sep-2011
    19-Dec-2011 19-Sep-2011 20-Sep-2011
    20-Dec-2011 20-Sep-2011 21-Sep-2011
    21-Dec-2011 21-Sep-2011 22-Sep-2011
    22-Dec-2011 22-Sep-2011 23-Sep-2011
    23-Dec-2011 23-Sep-2011 24-Sep-2011
    24-Dec-2011 24-Sep-2011 25-Sep-2011
    25-Dec-2011 25-Sep-2011 26-Sep-2011
    26-Dec-2011 26-Sep-2011 27-Sep-2011
    27-Dec-2011 27-Sep-2011 28-Sep-2011
    28-Dec-2011 28-Sep-2011 29-Sep-2011
    29-Dec-2011 29-Sep-2011 30-Sep-2011
    30-Dec-2011 30-Sep-2011 01-Oct-2011
    31-Dec-2011 30-Sep-2011 02-Oct-2011
    365 rows selected.
    SQL>If you look at the dates around the end of May, 3 months ago stays at 28th Feb for 4 days, whilst 90 days ago is continually progressive.
    Also, if you look at the dates around 29th and 30th November, then the 3 months ago misses the 30th August out (that's what David was talking about)
    Depends what the actual requirements are, but if it's for a daily rolling window, I'd probably go for the 90 days version. If it's for months reports, I'd go for the monthly version.
    Edited by: BluShadow on 11-Feb-2011 12:14

  • How to read the hierarchy data from the same table using loop in AMDP method

    Hi All,
    We have a requirement to get the top partner from BUT050 table.
    Here the Top parent is nothing but the top most in the hierarchy of the partners from BUT050.
    Example:
    For partner 1234 (BUT050-PARTNER1) there is partner 3523(BUT050-PARTNER2) one level above
    For partner 3523(BUT050-PARTNER1)  there is partner 4544 (BUT050-PARTNER2) last level .
    so in this case for the partner 1234 the Top parent is 4544 .
    I have created AMDP Procedure method to get the top-parnet and below given is the logic implemented in AMDP method.
    Here i have implemented a recursive logic with the WHILE loop to get the top most hierarchy partner from the same table BUT050
    IV_Parent is the input partner and ev_top_parent is the output value.
    AMDP Procedure Method:
        DECLARE lv_date VARCHAR(8) := TO_VARCHAR (current_date, 'YYYYMMDD');
        DECLARE found INT := 1;
              iv_partner1 =  SELECT partner1 FROM but050
                              WHERE partner2 = iv_partner
                              AND reltyp = :iv_hierarchy
                              AND date_to >=  :lv_date
                              AND date_from <= :lv_date;
         WHILE found <> 0  do
           select partner1 into ev_top_parent from :iv_partner1;
                           iv_partner1 =  SELECT partner1 FROM but050
                           WHERE partner2 in ( select partner1 from :iv_partner1 where partner1 is not null)
                           AND reltyp = 'ZBP004'
                           AND date_to >= :lv_date
                           AND date_from <= :lv_date;
           select COUNT ( partner1 ) INTO found FROM :IV_PARTNER1;
        END WHILE;
    This method is working fine, but here it is only taking one single partner and getting the top parent as output.
    Now i would like to convert this mehtod so as to accept n number of partners (not one single partner) as input and should process each partner to get the top parent.
    Could anyone guide me how can i handle the given AMDP method further so as to work some how it is within another loop from other AMDP method.
    Thanks.
    Regards,
    Laxman.P

    Hi
    Go to SE11 and enter the hierarchy table name.
    /BIC/H....(infoobject name)...and execute the table and select table entry and delete all....
    Thanks
    TG

  • How to get data from the called program using SUBMIT in a background job?

    Hi Experts,
    I've a program which creates a background job using JOB_OPEN and JOB_CLOSE function modules.
    Between the above function modules I need to call a program using SUBMIT VIA JOB statement.
    My problem is, How do I fetch some data in an internal table in the called program to the calling program after the SUBMIT statement?
    I tried to EXPORT and IMPORT the data, but they are giving a failed sy-subrc when using this background job.
    Kindly let me know your inputs and valuable suggestions.

    Kumar,
    When we execute a program as a background job then the output will be sent to Spool which needs to be fetched again.I guess we need to use Submit via spool as mentioned by Rajat.
    Check these threads to get some idea
    submit report to spool & import spool id
    Re: Generate Spool for a report
    K.Kiran.

  • How to read and write the data like this(is JSON?)?

    i have some data like below(is json?),how to write them into
    the database?
    i user coldfusion 7.
    {"title":"ColdFusion?","url":"
    http://www.adobe.com/cfusion/"},
    {"title":"flex blogs","url":"
    http://www.flexblogs.com/"},
    {"title":"studio","url":"
    http://www.sans.com.com/"}
    Thank you very much!

    You need to parse it and then insert the records into your
    database.
    Take a look at
    CFJSON it is a JSON
    serialiser and de-serialiser.
    Once you have converted it to native CF datatypes you can
    loop through it and insert it into your database.

  • How to read and print the data that is in the BB Desktop Software backup file

    I recently backed up my BB Tour 9630 to the BB Desktop Software. I would like to know if there is a way to open this file on my desktop so I can see the data. Also, I would like to know if there is a way I can print ( hard copy ) this data from that file. Right now, I see no way to open the file.  Thanks, Jeff

    Hi,
    Check the below wiki link if it helps.
    http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock
    Also, you can try an option of transaction launcher.
    Hope this helps.
    Regards,
    Chandrakant

  • How to read bits from the file?

    Hello everybody,
    I'm beginner in LabVIEW. I need to get bits from the file, but I don't know how I can do it. I use the example "Read Binary File VI" from LabVIEW Help, but it returns DBL array. And for a long time I can't find a solution to convert this array to array of bits.   Can somebody help me? Thanks in advance. 
    Solved!
    Go to Solution.

    tranonim wrote:
    Hello everybody,
    I'm beginner in LabVIEW. I need to get bits from the file, but I don't know how I can do it. I use the example "Read Binary File VI" from LabVIEW Help, but it returns DBL array. And for a long time I can't find a solution to convert this array to array of bits.   Can somebody help me? Thanks in advance. 
    You can pass in the type into the Read Binary File VI to get the data in whatever form you want.  Just remember that a boolean is really 8 bits.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

Maybe you are looking for

  • Window - No Disk Message when Syncing

    Quite often I get a Windows - No Disk error message when syncing a new CD to my Ipod Classic 160GB. The box has a message saying "There is no disk in the driver. Please insert a disk into drive G." Drive G is a port for the USB connecting cable and d

  • ITunes wont download using windows 8.1 - your system hasn't been modified

    Hi I recently bought a HP pavilion g6 running Windows 8.1.  When trying to download itunes i get an error message saying can't download because your system hasn't been modified. My laptop as well as windows is fully up to date. Any suggestions?

  • How can I get a DNS on a virtual network to resolve hostnames on a point-to-site machine?

    Hello, I set up an Azure virtual network with the following configuration: 1 Windows DNS Server (Local IP: 10.0.1.4) 1 Windows Server (Local IP: 10.0.1.5, FQDN: perforce.redbyte.com) 1 Ubuntu Server (Local IP: 10.0.1.6, FQDN: swarm.redbyte.com) From

  • How to handle error for a file to file transform in ODI

    I am doing a lab for file to file transformation where source = CSV file and target = Flat file. 1) When I am changing the datatype in source two files are getting created where one having the errored out data and the other having the errored message

  • Solaris 10 x86 - Xorg freezes

    Hi I installed Solaris 10 in a Toshiba A10. I'm using it with no problems, but if I left the computer idle (without keyboard/mouse input) for about 20 minutes, Xorg freezes (at window manager, dtlogin greeting, xlock, ... any place) Accesing the mach