LookUP in Routine

Hi,
I need to create a Lookup for some fields coming from 2 different PSA table (/BIC/B000........) in start routine.
I'm not good in ABAP, Please some one help me to write the codes.
Thanks,
Pria

This is the SELECT statement in the code that you have written:
SELECT WBS_ELEMT APPR_YEAR PROG_DEF_S PROG_POS /BIC/ZAPP_REQ FROM
/BIC/AZASIPROJ00
INTO TABLE I_S_ZASIPROJ
---> (INTO CORRESPONDING FIELDS OF TABLE I_S_ZASIPROJ can also be used, make sure your field names are proper)
for all entries in the source_package
where
WBS_ELEMT = SOURCE_FIELDS-WBS_ELEMT
APPR_YEAR = SOURCE_FIELDS-FISCYEAR.
IF SY-SUBRC EQ 0.
SORT I_S_ZASIPROJ BY WBS_ELEMT.
ENDIF.
*And on the field side*
(Should consider taking off this loop, as said earlier)
LOOP AT I_S_ZASIPROJ INTO WA_I_S_ZASIPROJ.
READ TABLE I_S_ZASIPROJ INTO WA_I_S_ZASIPROJ WITH KEY
WBS_ELEMT = SOURCE_FIELDS-WBS_ELEMT
APPR_YEAR = SOURCE_FIELDS-FISCYEAR
BINARY SEARCH.
IF SY-SUBRC EQ 0.
RESULT = WA_I_S_ZASIPROJ-PROG_POS.
ENDIF.
ENDLOOP.
You said that you have multiple records with the Key:
WBS_ELEMT = SOURCE_FIELDS-WBS_ELEMT
APPR_YEAR = SOURCE_FIELDS-FISCYEAR
If so, how will you get the different records? Because i think WBS_ELEMENT & APPR_YEAR will remain the same.
Do you have any other field that can be compared? If so, this will save the effort of the Loop in the Field side.
*Just use:*
READ TABLE I_S_ZASIPROJ INTO WA_I_S_ZASIPROJ WITH KEY
WBS_ELEMT = SOURCE_FIELDS-WBS_ELEMT
APPR_YEAR = SOURCE_FIELDS-FISCYEAR
BINARY SEARCH.
IF SY-SUBRC EQ 0.
RESULT = WA_I_S_ZASIPROJ-PROG_POS.
ENDIF.
One more thing you can try is using Field-Symbols. You can have dynamic memory allocation.
Syntax:
Field-Symbols: <WA_I_S_ZASIPROJ> TYPE I_S_ZASIPROJ.
(Instead of DATA: WA_I_S_ZASIPROJ TYPE I_S_ZASIPROJ.
(Only change in the Read Statement)
RESULT = <WA_I_S_ZASIPROJ>-PROG_POS.
You need not use the CLEAR statement for the Field-Symbol.
As said earlier, the code works fine & is faster in the Dev system. What is the number of records that we are looking at?
I guess, as your count in Test system is ~ 2 mils, it is taking some more time than in Dev.
Doing away with the loop should help you.
Now, coming to the Message part.
Go to SE91 -> Create a Message Class -> Assign a package ($TMP for time being) ->
Select the Message Number (000 to 999, any) -> Maintain Selected Entries (Pencil symbol) ->
Message Short Text: WBS Element & less than 50%  (Here '&' is a place holder) -> Save
In the Transformation -> Use the table rsmonitor (this is already defined in the Start Routine or field routine)
READ TABLE I_S_ZASIPROJ INTO WA_I_S_ZASIPROJ WITH KEY
WBS_ELEMT = SOURCE_FIELDS-WBS_ELEMT
APPR_YEAR = SOURCE_FIELDS-FISCYEAR
BINARY SEARCH.
IF SY-SUBRC EQ 0.
RESULT = WA_I_S_ZASIPROJ-PROG_POS.
ELSE.
MONITOR_REC-MSGID = 'ZMESSAGE'.
MONITOR_REC-MSGTY = E/ I /S /W  (E- Error, I - information, W -Warning.)
MONITOR_REC-MSGNO = '001'.
MONITOR_REC-MSGV1 = 'SOURCE_FIELDS-WBS_ELEMT'.
APPEND MONITOR_REC TO MONITOR.
* RAISE EXCEPTION TYPE CX_RSROUT_ABORT.
ENDIF.
It display in monitor screen as
ZMESSAGE W 'WBS Element (WBS_ELEMENT Number) less than 50%' .
May not be the exact code. So, just play around & check the syntax.
Please check: Creating monitor entries

Similar Messages

  • Key lookup in Routine

    Hi all,
    With a routine on my Customer InfoObject I want to write from two DSO's to an InfoCube. One DSO contains Sales data and the other Customer data. In case of a matching key in mentioned DSO's customer data must be written to the InfoCube. So therefor i need to do a customer lookup. This key contains ZRBDOCNR and ZRBPOSNR. Customer InfoObject = ZRBCUS. My question is: "how do i realize this in ABAP code?"
    Thanks in advance!

    Hi,
    here coustomer information can be looked up when the Key combination is matched.
    before updating data into Cube, first both data needs to be taken into Intenal table od Cube Start routine and Combine the data in another internal Table,
    this internal table data is taken as a check for updating into Cube.
    hope this Helps
    Regards
    Daya Sagar

  • Lookup routine problem

    Hi
        I have problem in Lookup routine in transformation.
    But need for some object which were not in Standard infocube 0sd_c03, i have created one customize Infocube ZSD_C03_1 where data have been coming from Standard 0SD_C03 infocube by Lookup Transformation routine & running full load DTP in Daily basis. It is working fn till today.
    But problem is that now size of data is very huge while full DTP run from 0sd_c03 to ZSD_C03_1. can any one give suggestion what should i do for only delta data come. lookup routine should update data in daily.plz help

    Hi
    In that case i would suggest you to have a DSO between the data loding process as your expectation cannot be met with data
    loading between cube to cube.
    Just create a standard DSo between the cubes and do the data loading so that the delta handling will be as per your
    expectation
    Prathish

  • IN BW how many  routines are there  in 3.5 and which scenario used

    Hi expert,
      i am pradeep. a job seeker . could please send me doc of routines in bw 3.5
    and i will be give good point my  id [email protected]
    regards
    pradeep

    Hi Pradeep
    transfer routine: When you want to write a routine at field level in transfer rule.
    Date key figure: Convert DATS format to DEC format
    Date Conversion in Flat File
    Transfer Routine ABAP
    conversion exit
    Date Conversion
    Problem with  conversion char to numc in transference rules
    conversion routine..?
    start routine in transfer rules: When you want to write a logic which is applicable on whole data package comming from data source
    Look up to load master data
    excluding
    Start Routine in Transfer Rules
    Sample code in Update Rule to restrict data selection?
    Append Datapak - transfer start routine
    Excluding Blank field in Infopackage Filter
    Trans Routine ABAP help ..
    update routine: Its data target specific, when you want to update any field in target by some mapping like 1:1,master data lookup,constant,routine
    How to call a function in Update Rules to reverse a key figure sign
    Need Sample Code for Update Rules
    Date calculation
    Difference between data in PSA and Data in Infocube
    No RETURNCODE <> 0 allowed in update routines in transfer mode
    the diffrerece between DEC and (yyyymmdd) 8 char in Time defination
    Access master data in update rules
    Date key figure: Convert DATS format to DEC format
    start routine in update rules: same as transfer routine...when you want to apply logic on data package available in infosource
    Is it possible to read a third ODS in update rules between two ODS?
    update rule coding while loading data from ODS to CUBE
    Start Routine in Update Rules to populate additional fields from ODS
    Coding in Update Rules accessing a Z-Table
    Start routine
    Thanks
    Tripple k

  • Update a column in PSA.

    Hi Gurus,
                 I am loading data from ERP to BW for 2LIS_13_VDITM. but it failed stating that a column(Reference Document) has a lower case letters. The data is in PSA now(45303 records). There are lower case letters(y,z,etc). PSA is showing data in 3 packets. How can I change the lower case to upper case.
    I used RSKC to allow lower y and z. And then I tried to update the records manually. But it did not work.
    How do I change all the lower case leeters to upper case letters in PSA for all the records in 3 packets?
    Any help would be appriciated.
    Thanks,
    Nandini.

    You could either change those InfoObjects to accept lowercase, by checking the Lowercase checkbox on the General tab for the InfoObject. This isn't advisable, however, if you're going to be doing any joins via an InfoSet or lookups in routines against this column because the case will cause longer execution times and potentially undesired results.
    The other thing you can do is put in code or routine in the TRFN to change the values of the data to uppercase prior to inserting into the target DSO or InfoCube.

  • ABAP routine/lookup in update rule

    Hello Gurus, I am trying to do a lookup from 2 ODS's into one. I am trying to join sales and delivery data.
    My current idea is that I will use the 2LIS_11_V_SSL extractor that has SO, SOitm, DO, DOitm data and bring that into an ODS that has those four items as the key.
    During that update, I will need specific fields (mostly key figures - Net Price from the SalesOrder ODS, and Del. Qty from the DelOrder ODS).
    The SO and DO ODSs each have a key of SO/SOitm and DO/DOitm respectively.
    What I am trying to do is write a routine for each of the necessary fields to do a lookup on the source ODS and bring in the field value according to the SO/SOitm or DO/DOitm key.
    A simplified example
    <u>Target ODS</u> Initially coming from 2LIS_11_V_SSL (keys)
    <b>SO
    SOitm
    DO
    DOitm</b>
    Net Price
    Del. Qty
    <u>SO ODS</u>          
    <b>SO              
    SOitem</b>          
    Net Price       
    <u>Del Order ODS</u>
    <b>DO
    DOitm</b>
    Del Qty.
    I have the 4 key fields coming from another extractor, need to lookup the key figures from the other ODSs on the load
    If I could get some example code on how to do this I would greatly appreciate it! I was told an internal table might do the trick, but after scouring the forums I can't find anything that seems close enough.
    Thanks!
    Justin
    Message was edited by: Justin  Molenaur
    Message was edited by: Justin  Molenaur

    Ajay (or anyone else)...one more question
    Is there a way to limit the number of times that the net price field may be written.
    for example, a SO item may be associated with multiple delivery order items, so you only want to write the net price field once PER sales order item. If we did it just like above, everytime a sales order item had multiple delivery order items, there would be multiple net price values for each delivery order item, which is not correct (see spreadsheet).
    Sales Order     Sales Order item     Delivery Order     Delivery Order item     Net Price (SO)     Del Qty (Del)
    1     10     100     10     15     150
    2     10     101     10     25     200
    <u>2     20     101     20     <b>50</b>     250
    2     20     101     30     <b>50</b>     299</u>
    3     10     102     10     23     213
    4     10     102     20     27     476
    So the challenge would be to create a counter(?) or something that will only allow a SOitm to have only one net price.
    Thanks for you help!
    Justin
    Message was edited by: Justin  Molenaur
    Message was edited by: Justin  Molenaur

  • Regarding start routine used for lookups

    Hi All,
    I am doing a lookup whose logic is being defined in start routine. My requirment is like this.
    I am having an infoobject(1) having a master data and it also have an attribute having the master data too.
    Now I am having one more object(2) having the masterdata and an attribute with out data.
    In my routine I have defined a logic to compare two infoobjects. If they are equal then load the data of the attribute of first infoobject into the second infoobject.
    I have defined the logic like this in routine.
    SELECT /BIC/Z_LOOKUP2
                         FROM /BIC/Z_LOOKUP1
        INTO /BIC/Z_LOOKUP4
           FOR ALL ENTRIES IN SOURE_PACKAGE[]
        WHERE  /BIC/Z_LOOKUP3 = SOURCE_FIELDS-/BIC/Z_LOOKUP1
        END SELECT.
    I am geeting an error as /BIC/Z_LLOKUP1 IS NOT defined in ABAP dictionary as a table,.
    How can I resolve this.
    Please help me.
    Z_LOOKUP1 is having Z_LOOKUP2 as an attribute and,
    Z_LLOKUP3 is having Z_LLOKUP4 as an attribute.
    Thanks.
    Vinay,

    Hi,
    Just check the master data table created for your infoObject Z_LOOKUP1. It would be something like /BIC/PZ_LOOKUP100.
    If you are still getting the error, post your exact code here and we can take a look.
    Hope this helps!
    Regards,
    Saurabh

  • Start Routine Lookup!

    Hi
    How to write a lookup in Start Routine to calling customer table. we are maintains values in custom table.
    i am
    Regds,DS

    Hi,
    You simply need to create an internal table of type customer table in start routine global declaration part.
    After that you will have to populate that internal table using select query in start routine. e.g.
    SELECT *
    FROM  XYZ
    into table it_xyz
    where key1 = 'AB'. etc.
    In this case XYZ is customer table and it_xyz is internal table. Once values are available in internal table you can use them in field routine or start routine as per the need.
    Regards,
    Durgesh.

  • ABAP DSO Lookup Routine

    I am new to ABAP......
    I am supposed to create a lookup into a DSO1 while loading data to DSO2.
    I wrote the routine as shown below. But, my problem is that my routine is not fetching any data into the DSO that i am loading into.
    Here is my routine
    Start Routine
    Global Declaration
    DATA: ITAB TYPE STANDARD TABLE OF /BIC/AZVC_MAT00,
          WA_ITAB TYPE  /BIC/AZVC_MAT00.
    SELECT   /BIC/ZVC_PLAN /BIC/ZVC_STYR  MATERIAL  /BIC/ZVC_BILN
    FROM /BIC/AZVC_MAT00  INTO CORRESPONDING FIELDS OF TABLE ITAB
    FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE
    /BIC/ZVC_PLAN = SOURCE_PACKAGE-PLAN1
        AND
    /BIC/ZVC_STYR = SOURCE_PACKAGE-STORAGEYEARS.
       endif.
    Field Routine
    READ TABLE ITAB INTO WA_ITAB
         WITH KEY
         /BIC/ZVC_PLAN = SOURCE_FIELDS-PLAN1
          /BIC/ZVC_STYR = SOURCE_FIELDS-STORAGEYEARS.
         IF SY-SUBRC = 0.
         RESULT = WA_ITAB-/BIC/ZVC_BILN.
           ENDIF.
    What am i doing wrong? Someone help me.
    Also, there is data in the active table of the DSO i created lookup to.

    Hi Phil,
    I am transforming the whole code into end routine and see if that gives you correct output or not.
    Declaration of internal table:
    TYPES: BEGIN OF ST_TAB,
                   /BIC/ZVC_PLAN TYPE  /BIC/OIZVC_PLAN,
                   /BIC/ZVC_STYR TYPE  /BIC/OIZVC_STYR,
                    MATERIAL         TYPE  /BI0/OIMATERIAL,              
                  /BIC/ZVC_BILN   TYPE   /BIC/OIZVC_BILN,
                  END OF ST_TAB.
    DATA: ITAB TYPE STANDARD TABLE OF ST_TAB,
          WA_ITAB TYPE  ST_TAB.
    SELECT   /BIC/ZVC_PLAN /BIC/ZVC_STYR  MATERIAL  /BIC/ZVC_BILN
    FROM /BIC/AZVC_MAT00  INTO  TABLE ITAB
    FOR ALL ENTRIES IN RESULT_PACKAGE WHERE
    /BIC/ZVC_PLAN = RESULT_PACKAGE-PLAN1
        AND
    /BIC/ZVC_STYR = RESULT_PACKAGE-STORAGEYEARS.
    loop at RESULT_PACKAGE ASSIGNING <result_fields>.
    READ TABLE ITAB INTO WA_ITAB
         WITH KEY
         /BIC/ZVC_PLAN = <RESULT_FIELDS>-PLAN1
          /BIC/ZVC_STYR = <RESULT_FIELDS>-STORAGEYEARS.
         IF SY-SUBRC = 0.
    <RESULT_FIELDS>-INFOOBJECT = WA_ITAB-/BIC/ZVC_BILN.
           ENDIF.
    ENDLOOP.
    *INFOOBJECT- Name of the infoobject which you created to store the value from look up DSO.
    Note: Please refer this help doc.Make sure you select that option so that the value gets populated for dso in case of end routine.
    http://help.sap.com/saphelp_nw70ehp2/helpdata/en/48/6e375c0b104e6de10000000a421937/content.htm
    Hope that helps.
    Regards,
    AL

  • Lookup DSO in Start Routine and End Routine to update date

    Hi Gurus,
    I need a Start Routine & help, while loading the data from DSO to Info Cube.
    In the DSO ( /BIC/AZSD_O0300 ) & in the InfoCube I have a common fields are
    0DOC_NUMBER ( DOCUMENT NUMBER), 0S_ORD_ITEM ( Sales Document Item Number ), 0SCHED_LINE ( Schedule Line ) and 0MATAV_DATE ( Material Available Date ).
    Data in DSO is as follows
    0DOCNUMBER_ 0SORD_ITEM_ 0SCHEDLINE_ 0MATAVDATE_
    1001 10 1 05/21/2011
    1001 20 2 05/26/2011
    1001 10 2 05/22/2011
    1001 20 1 05/18/2011
    1002 20 1 05/20/2011
    1002 10 1 05/24/2011
    1002 10 2 05/28/2011
    Data should load in the InfoCube as below.
    0DOCNUMBER    0S_ORD_ITEM     0SCHED_LINE    0MATAV_DATE
    1001          10    1   05/21/2011
    1001          20    2   05/18/2011
    1001          10    2   05/21/2011
    1001          20     1  05/18/2011
    1002         20     1  05/20/2011
    1002         10    1   05/24/2011
    1002         10     2   05/24/2011  
    When ever schedule line is 2 for the record we have to check both Document number and 0S_ORD_ITEM are same change the Material moving date to the date schedule line is 1 for the same document and same order item number.
    Your help is really appreciated.
    Thanks
    Ganesh Reddy.

    Thanks Parth and Raj. I have written code almost as you suggested just little changes.
    Start Routine
    TABLES:/BIC/AZSD_O0300.
    DATA:ITAB_DSO LIKE /BIC/AZSD_O0300.
    TYPES: BEGIN OF ITABTYPE,
    DOC_NUM TYPE /BI0/OIDOC_NUMBER,
    SAL_DOC_NUM TYPE /BI0/OIS_ORD_ITEM,
    SCHED_NUM TYPE /BI0/OISCHED_LINE,
    MAT_AV_DATE TYPE /BI0/OIMATAV_DATE,
    END OF ITABTYPE.
    DATA : ITAB TYPE STANDARD TABLE OF ITABTYPE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: wa_itab type ITABTYPE.
    SELECT DOC_NUMBER S_ORD_ITEM SCHED_LINE MATAV_DATE
      FROM /BIC/AZSD_O0300
      INTO TABLE ITAB
      WHERE SCHED_LINE = '1'.
    Field Routine.
    if SOURCE_FIELDS-S_ORD_ITEM <> '1'.
          read table itab into wa_itab with key    doc_num =
          SOURCE_FIELDS-DOC_NUMBER
                                             SAL_DOC_NUM =
                                             SOURCE_FIELDS-S_ORD_ITEM.
          if sy-subrc = 0.
          RESULT = wa_itab-MAT_AV_DATE.
        endif.
      endif.
    I haven't check how the data is coming. But for now I am closing this issue.
    Thanks Again
    Ganesh Reddy.

  • Check if a DSO has been lookup by other DSO/cube in start/end routine

    I have to support on of the client system which I am not part of the development.
    I found one DSO has been schedule to load data in daily process chain but it is not update to any target.
    Is it possible to check if this DSO has been using in the staging  i.e look up the reference field by other cube/DSO in start or end routine ?

    Hi,
    Possible by invoking respective field into code part.
    I think not much stuff required in this regard.
    Thanks - RK

  • Transformation routine for Infoobject lookup

    Hey guys,
    I am aware of Update rule routines but never done Transformation routine before. I didnt get any related post for my req.
    My requirement is on WBS element I have some attributes which is coming from std WBS Attr extractor but I have one custom attribute infooject which I want to populate through an Infoobject which is also a master data Infoprovider. For this I have to write a Tranfer rule routine.
    Please note these are transfer rules in BW 3.5 not BI 7. Please provide exact code. Appreciate your help.
    Thanks.
    BMW M///

    Declaration of Types table for your master data object in the declaration area....
    Replace your attributes in place of plant, GSRCSYS and CALMONTH
        TYPES: BEGIN OF TY_WBS,
                     /BIC/GPLANT TYPE /BIC/OIGPLANT,
                     /BIC/GSRCSYS TYPE /BIC/OIGSRCSYS,
                     CALMONTH TYPE /BI0/OICALMONTH,
               END OF TY_WBS.
        DATA: IT_WBS TYPE TABLE OF TY_WBS,
                    WA_WBS TYPE TY_WBS.
    /BIC/AWBS = your master data table name
    SELECT * FROM /BIC/AWBS INTO WA_WBS
        WHERE OBJVERS = 'A'.
    THen in the transformation Routine on field level use the below code to populate the value
    "  /BIC/GPLANT = L_SOURCE_PACKAGE-/BIC/GPLANT.
       substitute your objects here to query the master data object to get values.
    READ TABLE IT_WBS INTO WA_WBS WITH KEY
          /BIC/GPLANT = L_SOURCE_PACKAGE-/BIC/GPLANT.
    RESULT = WA_WBS-Your object name.
    Hope this will help you...

  • ODS Lookup Routine

    Hi Guys,
    I am using BI 7.0.
    My cube has 0material, 0salesorg, 0DISTR_CHAN,0rebate_grp and other characteristics. I have an ODS with 0material, 0salesorg, 0DISTR_CHAN,0rebate_grp only. I want to populate the 0rebate_grp data in the cube from the ods where 0material, 0salesorg, 0DISTR_CHAN are the key fields in the ODS.
    Do you think this can be done through direct mapping or i would need code. If code is needed, thanks for code samples.

    If 0rebate_grp data is present in ODS (key field or data field does not matter) than you can use direct mapping.
    You need to use routine only when field is not present in the source or you need to do some extra calcuation on the source field

  • Can you help me understand this sentence about Maser data/routine?

    Hi,
    I read the following statement from this forum:
    “… if u add an attribute to master data and that field is not getting populated from source system and you want to get it populated dynamically we can write look up code in routine such as getting data from some other master data table.”
    1. Can you clarify what this sentence really mean? Any examples?
    2. Why is it that in some cases when you modify master data, you don’t have to write a routine to populate it with data but in some cases you do?
    e.g. in the quote it says, if the attribute is not getting populated, why will it in some cases and others not?
    3. Please explain in particular “..to get it populated dynamically we can write look up code in routine..”
    4. Any hints on writing a look up code? Any example?
    Thanks

    Hi Amanda,
    I would understand the sentence you stated as related to load of TRANSACTION DATA (not populating the MASTER DATA) -- and aTripple k example (a good one) shows me that s/he treat it similarly.
    When you are retreiving a lot of data from the transaction system (R/3) you may really not getting values of some infoobjects. However, if the infoobject is an attribute of another infoobject which value we have in incoming data, we may get the value of the attribute from master data of main (basic) infoobject. For this you either may use the mentioned functional module (must be accessable through SE37 t-code) or write a lookup routine.
    Here (in the text itself and in the threads linked):
    Re: Look up at master data in  update routine 
    you may see examples of lookup routine and usage of that FM RSAU_READ_MASTER_DATA.
    Hope this helps.

  • Thumbrule for Start/End Routines Usage

    Friends,
                 Is there any thumb rule to decide when to use start or end routine in BW 7 in transformations ?  Can anybody provide a scenario for demonstration .. from performing simple lookups on different DSOs to get descriptions vs any other specific scenarios..   Is there any scenario in which only start or only end routine can be performed.. ?
    Any thoughts would be great..?
    thanks,
    Sunil

    Start routine is totally concerned with source data , where you need to write logic for source_package.
    Start routine will execute before transformation execution.
    Executes packageby package.
    loop at source_package into source-feilds.
    End routine works on target structure  and we have lo write logic on result_package.
    Genarally dso lookups are concerned with end routines.
    loop at result_package into result-feilds.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/609eea32-455e-2c10-c08a-c23adf8c934e
    http://forums.sdn.sap.com/thread.jspa?threadID=1963087
    Regards,
    rvc

Maybe you are looking for

  • Relative path with images

    Hi All - I have a strange situation with relative paths. When I use a relative path in cfinclude it works. But when I use a relative path is "src" attribute of <img>, it does not work. Can anyone suggest why could this be happening? Thanks

  • Show active current date and time in a Form continuously

    Hi, I am use Oracle Form 10.1.2 in Windows 2000. Can we show an active current date and time in a Form continuously? Perhaps in the main menu form. So the user can see the moving time, instantly when the time change (withour pushing F5 for refreshing

  • Min with group by

    i want to find the min(date) on a table using a select query that uses a group by, but i want to find the min(date) on the table and not the values grouped by. example col1 col2 1 10/04/07 2 11/04/07 1 09/04/07 4 04/04/06 want something like this sel

  • Automatic Posting between Between Business Area...

    Hi Experts, I have an issue like automatic posting from one business area to other business area. Here I have 2 BA's, I want to make settings like BA1 make a pymt on behalf of BA2. So the entry should be BA1 debit and BA2 credit(this is an example).

  • Has anyone been able to communicat​e via SPI from a DAQ card?

    I have been tasked to set up a test system communicating with an A to D (Analog to Digital) converter. The converter has been selected, and it communicates via SPI. I have LabVIEW 6.1 on my PC, and I have a 6062E PCMCIA card, and a 6031E PCI card ava