Data Extraction issue from the data source 2LIS_08TRTLP

Hi All,
        We are facing one issue in time of extraction from data source 2LIS_08TRTLP(Shipment Delivery Item Data per Stage) in BW. For some out bound delivery no. Gross weight(BRGEW) is coming zero though there is value showing in the source system(ECC) in VL03 and in LIPS table. BRGEW (Gross weight) which is directly mapped in BW infosource. There is no restriction in the extraction and 0 is coming for this field in the first layer extraction.Even in the PSA all values are zero.
        We have checked those delivery , delivery is being split into batch . But not the all split  delivery is
giving this problem.
With Thanks
Shatadru

Yes I have done the same  means I have filled setup table for those shipment no related to that delivery no and  checked in the RSA 3 and required value  is coming  in RSA3 a. That means there is no problem in the Extractor  .But I can not pull the data now in BW as it is in Production and every day delta comes .But the in the first layer ODS there is no value for that entry which was previously loaded(Though there is no routine and any restriction).
But I have one observation in the data source that  particular field is in INVERSION marked in the Source. But that particular delivery for which it is giving is not canceled or returned or rejected. PGI created for that delivery and delivery status is completed for that.

Similar Messages

  • Extracting Year from the date field

    Hi,
    I want to extract year from the date field... I've tried following code but got the error
    SELECT to_char(a.A_EXPIRY_DATE,'yyyy') as EXP_YEAR from Table_A a
    Please advice
    Thanks in advance

    user12863454 wrote:
    SELECT to_char(a.A_EXPIRY_DATE,'yyyy') as EXP_YEAR from Table_A aThis should work and returns a string.
    What error did you get?
    maybe your column name is wrong? Is it really A_somthing? This is possible but slightly unusual.
    also possible
    select extract(Year from sysdate) from dual;
    /* with your table and column */
    SELECT extract(year from a.A_EXPIRY_DATE) as EXP_YEAR from Table_A a;Edited by: Sven W. on Aug 18, 2010 6:41 PM

  • How the data extraction happens from HR datasources from R/3 to BW system.

    Hello All
    How the data extraction happens from HR datasources from R/3 to BW system.Incase of delta records ( for CATS datasources ) ,Is there any flow like LO .
    Incase of Full and delta loads how does the data will be taken from R/3 to BW,DO we need to fill setup tables ?
    Searched forum but couldnt able to find the relevant one.
    Thankyou
    Shankar

    Hi Shankar.
    HR Datasources do not have setup tables . Though before implementation, certain customizations should be done and the delta loads have dependency on other data sources. Also you must have implemented Support Package SAPKH46C32, or have made the relevant corrections in SAP Note 509592.
    Follow this link for details on customization and dependencies for all CATS datasources.
    http://help.sap.com/saphelp_nw70/helpdata/en/86/1f5f3c0fdea575e10000000a114084/frameset.htm
    Regards,
    Swati

  • Data deleted in ODS, data coming from the data source : 2LIS_11_VASCL

    Friends,
    I have situation :
    Data deleted in ODS, data coming from the data source : 2LIS_11_VASCL.
    when for the above ods and the data source when trying to delete the request whole data got delted.
    All the data got deleted in the fore ground. no background job has been generated for this.
    I ma really worried abt this issues. can u please tell me what should be the possibilities for this issue.
    Many Thanks
    VSM

    Hi,
    I suppose you want to know the possibilitiy of getting the data.
    If the entire data is being deleted, you can reload the data from source system.
    Load the setup table for your application. Then carry out init request.
    Please note that you would have to take a transaction-free period for carrying out this activity so that no data is missed.
    Once this is done, delta queues will again start filling up.

  • Does migrating data erase it from the source computer?

    Does migrating data erase it from the source computer?

    no, its in both locations
    http://support.apple.com/kb/ht4889

  • 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

  • Extracting strings from binary data

    Hello,
    I am trying to extract string from a binary file.
    At the unix command line (sunos) I can just type;
    strings <filename>
    This is a nice way to get a list of the contents of a directory.
    Is there a way in pl/sql to extract strings from binary data ? An equiv to strings on unix/linux ?
    Thanks in advance.
    Ben

    Hi,
    If you do want to list the contents of a directory, there are other ways to do it. Here's a base implementation of a utility I wrote:
    create or replace and resolve java source named "Util" as
    import java.io.*;
    import java.sql.*;
    import oracle.sql.*;
    import oracle.jdbc.driver.*;
    public class Util {
        public static void listFiles(String directory, oracle.sql.ARRAY[] names)
            throws IOException, SQLException {
            File f = new File(directory);
            if(f==null)
                throw new IOException("Directory: "+directory+" does not exist.");
            String[] files = f.list(
                new FilenameFilter() {
                    public boolean accept(File dir, String name) {
                        // List all files
                        return true;
            Connection conn = new OracleDriver().defaultConnection();
            ArrayDescriptor descriptor = ArrayDescriptor.createDescriptor("VC_TAB_TYPE", conn);
            names[0] = new ARRAY(descriptor, conn, files);
            return;
    create or replace type vc_tab_type is table of varchar2(255);
    create or replace package util authid current_user as
        function list_files(p_directory in varchar2)
            return vc_tab_type;
    end;
    create or replace package body util as
        procedure list_files (
            p_directory in varchar2
            , p_filenames out nocopy vc_tab_type
        is
        language java
        name 'Util.listFiles(java.lang.String, oracle.sql.ARRAY[])';
        function list_files(p_directory in varchar2) return vc_tab_type
        is
            l_filenames vc_tab_type := vc_tab_type();
        begin
            list_files(p_directory, l_filenames);
            return l_filenames;
        end;
    end;
    /You can then query the filesystem as follows:
      1  select column_value as filename
      2  from table(util.list_files('c:\windows'))
      3  where column_value like '%.log'
      4* and rownum <= 10
    SQL> /
    FILENAME
    0.log
    AdfsOcm.log
    aspnetocm.log
    bkupinst.log
    certocm.log
    chipset.log
    cmsetacl.log
    comsetup.log
    DtcInstall.log
    FaxSetup.log
    10 rows selected.cheers,
    Anthony

  • Invalid data status error during the data extraction

    Hi,
    while extracting capacity data from the SNP Capacity view to BW. i get the "invalid data status error" and the data extraction fails.
    when debugged the bad requests of the ODS object, i found that for a certain product(which has both positive and negative input and out qtys) co-product manufacturing orders were created. but this product was not marked as the co-product and functionally its fine.
    how can i rectify the data extraction problem..can you advice.
    Thanks,
    Dhanush

    Sir,
    In my company for some production order status some are having "errors in cost calculation" ie "cser" .how to deal these kind of errors.

  • Why the delivery date is the same date as 'transptn plan date" & loading date' & ' good issue' & GR end date'

    Hi Experts,
    why the delivery date is the same date as ‘transptn plan date” & loading date’ & ‘ good issue’ & GR end date’.
    in shipping tab i can see Planned Deliv. Time  170 Days ... wat could be the reason.
    Many Thanks:
    Raj Kashyap

    Hi Jurgen,,
    Thanks for quick reply!!
    But i didnot find any things like that .. what could be the customizing .. and we are using GATP from APO side.
    \Raj Kashyap

  • Will any of DDL command trigger a data flush from the data buffer to disk?

    Will any of DDL command trigger a data flush from the data buffer to disk?---No.164

    I mean if I issue the DDL commands Such as DROP, TRUNCAE, CREATE, Can these commands trigger a data flush action?

  • 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

  • URL in lieu PH consumed within 3 months from the date of PH

    Hi friends
    I achieved Unrecorded leave in lieu of PH,through writing PCR but i am having another doubt..This URL in lieu of PH has to be consumed within 3 months from the date of public holiday,how to achieve this??any suggestions from u friends???
    Thanks&best regds
    Shaila

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they cannot deal with service issues that way.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail, when its your turn in the queue.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • 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 data extraction influence other processes in source system?

    hi,
    does data extraction influence other functions of source system (e.g. some background jobs can not be executed due to tables lock)?
    Regards,
    Andrzej

    Hi andrzej,
    The extraction process will not have much impact on the source system's other processes. But if u have got lots of data , it might have some effect while transferring the IDOCS. but as such, there should not be a problem of not data getting extracted. Is there any particular problem which ur phasing?
    Rewgards
    Sriram

  • Who worked with ICS' Model 4896 GPIB? I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    Hello. Most of the engineers in developer exchange are more familiar
    with NI products. Contacting ICS for technical support is a better
    course of action.

Maybe you are looking for

  • How can we hide the link "Attachment" in the preview of a Task??

    Hi all I have requirement in portal CE 7.1 as follows. all GP tasks are getting displayed in UWL that is fine. i want to hide the link "Attachment" in the preview of a Task?? once i open the task from UWL then that task item opens in new window where

  • Compiz animations not smooth(intel)

    i use intel driver on a 945 motherboard(gma 950) with 1gig ram and a core2duo compiz animations are not smooth.what can i do for smoother animations. xorg.conf Section "ServerLayout"     Identifier     "X.org Configured"     Screen      0  "Screen0"

  • Batch missing in inspection lot

    Hi All, 1. Porcess order created for final product A 2. Confirmation is done so GR posted with 101 for A and batch 01 Issue:  But in inspeciton lot there is no batch for this material . in QA03 the batch is not there. inspection type is 03 and usage

  • World Clock widget bug

    I noticed that the cooling fan on my PB G4 was running more or less continuously and that the case was very hot. This is quite unusual. I opened Actifvity Monitor and found that my CPU was at 85% activity while the computer was idle. I traced it to t

  • Air Drop not working on iMac

    My Airdrop is not finding my iPhone or my iPad.  I have all the latest updates.