Mapping BW TO CRM?

Hi Gurus
How to Map BW info cube and BW info set to CRM
Cheers
Mahi

hi
Using InfoSets and BW Queries in the Segment Builder
InfoSets and BW queries are used to access business partner master data (stored for example in the R/3 System) and transactional data stored in the SAP BW System respectively.
The attributes used within these InfoSets and BW queries can be fields belonging to:
·         Business partner tables (business partner master data)
·         Key figures determined in SAP BW
·         Marketing attributes
InfoSets
To create InfoSets, from the SAP Easy Access menu, choose Architecture and Technology ® ABAP Workbench ® Utilities ® SAP Query ®  InfoSets.
Any InfoSets you create for use in the Segment Builder must be created in a cross-client work area.  Therefore, on the interface for creating InfoSets, you should first choose Environment ® Query Areas, and select Global Area (Cross-Client). This setting ensures that your InfoSets appear for selection in the input help for the field InfoSet when creating data sources (Marketing ® Segmentation of Business Partners ® Marketing Segments ® Maintain Data Sources for Segment Builder).
For information on how to create InfoSets, see the SAP Library under mySAP Technology Components ® ABAP Workbench (BC-DWB) ® SAP Query (BC-SRV-QUE).
Tips for InfoSets
       1.      The most important and simplest point is that the Segment Builder creates target groups containing business partners. Therefore the InfoSet must make its selections using fields relating to the business partner and must be able to return business partner keys. Ideally these keys are GUIDs. If this is not possible (for example because this InfoSet lies in a system in which the GUID is not known, such as an SAP BW or an SAP R/3 System) then it must be a key that can be converted into a GUID in CRM. If this is the case, you must specify a function module in data source maintenance to perform the conversion in the field Function Module). For InfoSet queries, for example, we recommend function module CRM_MKTTG_PF_BP_TAB_TO_GUID, and for other data sources, CRM_MKTTG_PF_CONV_ID_TO_GUID is available.
If the InfoSet is a table join, then it is safest to use BUT000 as the basis table.
       2.      If you are using a report program, then the structure belonging to this report must contain the business partner GUID (or a field that can be converted into the GUID).
       3.      The InfoSet should be constructed so that it contains every field that is required for selection in the Segment Builder and these fields only! When you create an InfoSet, the system displays the dialog box InfoSet: Title and Database. On this dialog box, ensure that you select the field No automatic text recognition (under Options) since otherwise the system will generate the texts for all the fields in the InfoSet behind which text fields are defined. These fields are then written into the InfoSet which may lower performance.
       4.      Do not build one large InfoSet containing a large number of joins. Instead, build InfoSets which join only those tables required for the selection attribute to be created. For example, if you want to create the selection attribute “Date of Birth” your InfoSet should use table BUT000 only (because “Date of Birth” is one of the fields in this table). It is not advisable to read the date of birth from an InfoSet which joins the BUT000 with the address table ADRC.
Tips for BW Queries
Query Definition
       1.      In the Business Explorer Analyzer (Business Explorer  ®Analyzer) ensure that you set the indicator "Release for OLE DB for OLAP" for the query (under Properties).
       2.      Ensure that your BW user is a dialog user, since otherwise the input field for queries in data source maintenance will not work (RFC connection between SAP BW and SAP CRM). To check this setting, in the BW system choose Tools ® Administration ® User Maintenance ® Users.  Under the Logon Data for the relevant user, ensure that Dialog is selected as User type.
       3.      Do not specify any variables as "required".
       4.      Ensure that the query has business partner as info object.
       5.      Ensure that the business partner is in the row, the key figures in the column(s).
       6.      Do not define any conditions for the key figures in the query itself. Instead define conditions in the Segment Builder by specifying filter values for the relevant attributes.
Performance Points:
To ensure the best possible system performance, try where possible to avoid:
       1.      Unnecessary characteristics, attributes, or key figures
       2.      Superfluous conditions or variables
       3.      Complex key figures
       4.      Large cubes
       5.      Complex hierarchies
       6.      A lot of coding in variables filled by means of user exits
In addition, specify for characteristics either variables or restrictions but not both together.
best regards
ashish

Similar Messages

  • Mapping Format in CRM 2007

    Hi,
    I am trying to create a mapping format in CRM 2007 when I select Person or Organization in the category I need 'Search term1/Serach term2' in the available target fields category. Could anyone let me know how to do this. Please let me know the component for this.
    Thanks
    Sai

    This is what you will need to do
    http://help.sap.com/saphelp_crm60/helpdata/en/46/32c332ff4914dce10000000a155369/content.htm
    Edited by: SKP on Apr 2, 2009 6:46 PM

  • Mapping ECC to CRM

    Hi,
    I am new to abap and I have this requirement to work on. I need to create some tables in ECC and then map those tables to CRM via the middleware. And data has to be passed from ECC to CRM everytime there is a change in ECC. Is there any tutorial or link that will explain to me how I can MAP ECC and CRM. Please help.
    Moderator message: sorry, these forums cannot replace proper training, please search for available information.
    Edited by: Thomas Zloch on Nov 29, 2011 1:03 PM

    Hi Kris,
    We  maintain the mapping between ECC BP Grouping to CRM BP Grouping in ECC with transaction code PIDE.
    In your case do the following settings is required in PIDE -->R/3->CRM: Assign Account Grp. to BP Classification
    Values are maintained in ( )
    Account Group (CUBP)  
    Description(Sold To party)       
    Classification    (B)
    BP Grouping    (Z1)       
    External (Tick     )
    Maintain same number range in ECC & CRM.
    Best Regards,
    Rajendra Sonawane

  • MAP R3 to CRM  Material Master  -- Urgent

    Hi all,
    I have currently using BADI PRODUCT_CUSTOMER2 with method MAP_R3_TO_CRM_MATERIAL. I have done the coding and required configuration. I suppose to be able to see the changes done in COMMPR01 in CRM from MM02 in R3. However, I fail to see the changes at CRM.
    I have read through note 428989 for the mapping instruction. During debugging, I manage to see all the changes done in R3 at the CRM side.. until the populating part, everything looks fine and okie for me. But when everything gone through, including the SMQ2 ibound queue finish running, i still fail to see the changes.
    Below is the populating code that i have implemented in the badi, anyone can give me some advice on the code (basically the code refer to the reference file). Do i need to include some extra field or table at the populating part. Thanks.
    begin of mapping data into bdoc:
    LOOP AT lt_cat_settype_rel_all INTO ls_cat_settype_rel.
    read comc_settype record:
    CALL FUNCTION 'COM_SETTYPE_READ_SINGLE'
    EXPORTING
    iv_settype_guid = ls_cat_settype_rel-frgtype_guid
    IMPORTING
    es_settype = ls_settype
    EXCEPTIONS
    not_found = 1
    no_import_values = 2
    no_text_found = 3.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    CONTINUE.
    ENDIF.
    CASE ls_settype-frgtype_id.
    WHEN lc_zxe_843_kgen.
    ls_zxe_843_kgen-relation-owner = 'X'.
    ls_zxe_843_kgen-relation-logsys = cs_product_bdoc-header-com_product-logsys.
    ls_zxe_843_kgen-data-zz0010 = ls_zisc_mara_data-zzlead.
    ls_zxe_843_kgen-data-zz0011 = ls_zisc_mara_data-zzamr.
    ls_zxe_843_kgen-data-zz0012 = ls_zisc_mara_data-zzasr.
    ls_zxe_843_kgen-data-zz0013 = ls_zisc_mara_data-zzlmang.
    ls_zxe_843_kgen-data-zz0014 = ls_zisc_mara_data-zzmmang.
    APPEND ls_zxe_843_kgen TO cs_product_bdoc-data-zxe_843_kgen.
    APPEND ls_settype-frgtype_id TO cs_product_bdoc-data-mnt_settype.
    ENDCASE.
    ENDLOOP.
    ENDCASE.
    ENDLOOP.
    Any help or idea is very much appreciated. Thanks.
    Any doubt can always drop me a message as well.

    Use the below code for your req.
    CONSTANTS:
          c_on TYPE comt_boolean VALUE 'X',
          c_off TYPE comt_boolean VALUE ' ',
          C_PROD_XPORT(20) type C VALUE 'ZCOM_MANUFAC',
          c_mara(4)     TYPE c VALUE 'MARA'.
                                 Work Areas                              *
      DATA: str_category_bdoc       TYPE comt_prod_cat_rel_maintain,
            str_category            TYPE comt_prod_cat_rel,
            str_settype             TYPE comt_settype_ext,
            str_cat_settype_rel     TYPE comt_cat_frag_rel,
            str_comm_category   TYPE comm_category,
            str_comm_prprdcatr  TYPE comm_prprdcatr,
            str_ZPROD_XPORT  type ZCOM_TA_MANUFAC_MAINTAIN,
            str_other_info      TYPE  bapiextc.
      DATA: begin of str_com_mara,
               bismt(18) type c,
            end of str_com_mara.
                                Internal Tables                          *
      DATA: it_categories          TYPE comt_prod_cat_rel_tab,
            it_cat_settype_rel     TYPE comt_cat_frag_rel_tab,
            it_cat_settype_rel_all TYPE comt_cat_frag_rel_tab.
                                Field Symbols                            *
      FIELD-SYMBOLS:
                <source_x> TYPE x,
                <target_x> TYPE x.
    *Get all categories related to the product from CRM online:
      CALL FUNCTION 'COM_PROD_CAT_REL_READ_WITH_PR'
        EXPORTING
          iv_product_guid  = cs_product_bdoc-header-com_product-product_guid
          iv_update_buffer = space
        IMPORTING
          et_set           = it_categories.
    *Add all categories related to the product from BDOC:
      LOOP AT cs_product_bdoc-header-categories INTO str_category_bdoc.
        MOVE-CORRESPONDING str_category_bdoc-data TO str_category.
        READ TABLE it_categories
             WITH KEY hierarchy_guid = str_category-hierarchy_guid
             TRANSPORTING NO FIELDS.
        IF sy-subrc = 0.
          MODIFY it_categories FROM str_category INDEX sy-tabix.
        ELSE.
          APPEND str_category TO it_categories.
        ENDIF.
      ENDLOOP.
      LOOP AT it_categories INTO str_category.
    *Get category set type relations:
        CALL FUNCTION 'COM_CAT_FRAG_REL_READ'
          EXPORTING
            iv_category_guid = str_category-category_guid
          IMPORTING
            et_cat_frag_rel  = it_cat_settype_rel
          EXCEPTIONS
            wrong_call       = 1
            OTHERS           = 2.
        IF sy-subrc = 0.
          APPEND LINES OF it_cat_settype_rel TO it_cat_settype_rel_all.
        ENDIF.
          ENDLOOP.
        DELETE ADJACENT DUPLICATES FROM it_cat_settype_rel_all.
    *Getting the info into the Set Types.
        LOOP AT it_cat_settype_rel_all INTO str_cat_settype_rel.
          CALL FUNCTION 'COM_SETTYPE_READ_SINGLE'
            EXPORTING
              IV_SETTYPE_GUID  = str_cat_settype_rel-frgtype_guid
              IV_LANGU         = SY-LANGU
            IMPORTING
              ES_SETTYPE       = str_settype
            EXCEPTIONS
              NOT_FOUND        = 1
              NO_IMPORT_VALUES = 2
              NO_TEXT_FOUND    = 3
              OTHERS           = 4.
          IF sy-subrc <> 0.
            CONTINUE.
          ENDIF.
          CASE str_settype-frgtype_id.
            WHEN C_PROD_XPORT.                           "Set Type Name 'ZCOM_MANUFAC'                "'ZTM_PROD_XPORT'
              str_zprod_xport-relation-owner   =  c_on.
              str_zprod_xport-relation-logsys  = cs_product_bdoc-header-com_product-logsys.
    *Polutate MARA Fields
    *Get the info record using Communication Structure 1
    *Table Name and Material Number ( struc = 'MARA' and matnr = current material number )
              LOOP AT it_other_info INTO str_other_info
                         WHERE field1(20)  = C_MARA
                         AND   field1+20(18) = is_mara-material.
              ENDLOOP.
    *Get data from Communication Structure 2 ( Old Material Number )
              ASSIGN str_other_info-field2 TO <source_x> CASTING.
              ASSIGN str_com_mara          TO <target_x> CASTING.
              IF <source_x> IS ASSIGNED AND
                   <target_x> IS ASSIGNED.
                <target_x> = <source_x>.
              ELSE.
                CONTINUE.
              ENDIF.
    *Assign the data from Communication Structure 2 ( Manufacturer Part Number ) to the corresponding field in set type structure.
              str_zprod_xport-data-ZZ0014 = str_com_mara-bismt.
              APPEND str_zprod_xport TO cs_product_bdoc-data-ZCOM_MANUFAC.
              APPEND str_settype-frgtype_id TO cs_product_bdoc-data-mnt_settype.
          ENDCASE.
        ENDLOOP.
      endmethod.
    We have implemented the similar functionality in our project.
    Reward points If it helps.

  • Mapping values on CRM

    Hi,
    I'm new on CRM and I'm trying to mapping values from KNA1 table in R/3 system to crmm_but_frg0041 table on CRM system. The fields on CRM system are ATTRIBUTE, ATTRIB_2 and ATTRIB_3. I thinks this is possible to do with BDOCs. My question is, which function module or exit can I change, on CRM System, to mapping these fields?
    Thks
    Paulo Paixã

    Hi Sharifuddin ,
    This is a great tip. Half of the work it's done but with this tip I realized  that some fields form table KNA1 like KDKG1..KDKG5, doesn't exist on C_BP_STRUCT sturture of the Zxxx funtion module. Do you know if I have other place on CRM side to mapping these fields?
    Thanks
    Paulo Paixã

  • Internal assignment table that maps the ERP & CRM Partner ID's

    Hello Experts,
    In CRM-ISU integration,
    If we are maintaining different number range, in which table its maintaining the details of both Business PartnerID's
    or how they link each other?
    In one document i read this statement.
    "There is always an internal assignment table that maps the ERP business partner ID to the corresponding CRM business partner to ensure a consistent data exchange."
    thanks in advance,
    Sreejith

    HI,
    In CRM there is a table BUT0ID which stores the ERP business partner ID as ID Number against CRM business partners.
    Pass the CRM BP in the Business partner field to get the ERP BP number in the ID number field.
    Regards,
    PP

  • ELM Mapping tool in CRM 5.2

    Hi Friends
    We are on CRM 5.2 and trying to use the ELM mapping tool, where in we define the mapping format. However transaction CRMD_MKTLIST_MAP gives a message that use new interface. The other transaction to maintain the external list works fine.
    Please help regarding how to access the Define mapping format transaction...is there any new transaction for that ?
    Thanks in Advance.
    -MP
    Edited by: Mohanpreet singh on May 25, 2009 11:57 PM

    Hi ,
    In CRM Version 4.0 or 5.0, mapping formats were created for External List Management. After you upgrade to Version 5.1 or higher, these mapping formats are no longer available on the screen for maintaining external lists.
    In CRM Version 5.1, the mapping function for External List Management was converted to new database tables. Mapping formats that were created before CRM 5.1 must be migrated into these new tables.
    The old interface for maintaining mapping formats is based on the old database tables, which means that they can no longer be used.
    As long as the mapping formats are not migrated, they are not available on the screen for maintaining external lists.
    The Process to migrate from old mapping formats to New Mapping Format is like this :
    Start transaction SA38 in SAP GUI. Enter CRM_MKTLIST_MAP_MIGRATE as the program name. You can navigate from the menu to the program documentation. Read this documentation to understand how the program is to be used.
    Then start the program and select the mapping formats to be migrated from the list displayed.
    The program only provides you with the mapping formats in the logon client. You must start the program in each client in your system in which you want to migrate mapping formats.
    Hope This Helps .
    Regards ,
    Nags .

  • Mapping fields ECC - CRM

    Hello,
    I need to know in which CRM fields are stored the ECC fields, for example.
    I need to know in which CRM field is stored the Client Group field of ECC.
    How can I get this info?
    Best Regards.

    This time BP.
    Best Regards

  • Mapping of CRM BP standard field to ECC Standard field

    Hi Experts ,
    We have a requirement in which we need to copy "Identification Type" field (table field BUT01D-TYPE) in "Identification Tab" of Business Partner from CRM into ECC Standard Field 'Corporate Group' in Control Data in XD01 (Table Field KNA1-KONZS).
    Please let me know where I can do the mapping of the CRM field to ECC field for this requirement .
    thanks in advance.
    Anil

    Go to se19 and choose name for the implementaion and click create. Definition is 'CRM_DATAEXCHG_BADI'. Choose description for the implementation and Save your implementation. Next you have to implement method CRM_DATAEXCH_R3D_MBDOC_FILL by doubleclicking on it. Data coming from r3 are witen in table TI_BAPIMTCS. And to write data to crm you can use direct logic or fill structure of CT_BUS_TRANS_MSG.
    For more information about the badi goto SE18 and open badi CRM_DATAEXCHG_BADI and hit Documentation button.

  • How to map CRM BP relationship and R/3 customer partner funnction

    Hello !
    Please, I need the following actions:
    1) during BP initial download from R/3 to CRM, a specific partner function should be mapped by a CRM relationship (Example: in R/3 master data, customer X is the Payer of customer Y. I'd like this partner function "Payer" should be mapped by BP relationship "Payer" in CRM);
    2) a particular relationship between BPs in CRM should be mapped by  the corresponding R/3 partner function during upload from CRM to R/3.
    Please, can anyone help me ?
    Thank you.
    Kind regards.
    Elena

    Hi, Venkat.
    Thank you for your answer, but the question is: is it possible to define the correspondece between R/3 partner function and CRM relationship ? I know transaction PIDE: it allows to map R/3 accont group and CRM roles.
    Thank you very much.
    Bye.
    Elena

  • Error in BP Mapping from ECC to CRM 5.0 -Specify a card type error

    Hi gurus,
    I have taken
    *Specify a card type-Message no. R1561*
    error in case of mapping cust_main data from ECC to CRM 5.0. When I check the selection result of Bdoc messages by getting SMW01 facing with above this error.
    Could you please help me to overbeat this error in a quick way in order to map properly...
    Thanks so much
    Best regards,
    Fahrettin Kerem BOZBIYIK

    Hi Kai,
    Firstly thank you for your notes notification!
    That's right symptom is right over there but in our ECC system my related customer has no credit card type data in payment cards data tab so that why would I have taken the Bdoc validation error occasionally in case of mapping process to CRM 5.0 such as I mentioned?...
    Best Regards,
    FKB

  • Mapping of Sales Org of CRM and R/3

    Hello all,
    the sales org in CRM are mapped to the sales orgs in R/3 and there is data flow between R/3 and CRM.Where is the mapping done.In CRM, CRMD_ORGMAN contains org data however this is in the CRM number range.How can I find out which sales org in CRM corresponds to which sales org in R/3.
    Regards,
    Rahul

    Hi Rahul,
    Execute Transaction: CRMC_R3_ORG_GENERATE
    Select the org u want to copy to CRM.
    Click on 'Generate Selected Lines'.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • CRM business role - user mapping initial load

    Hi,
    I'm tyring to initial load the data from the CRM systems into IDM. I'm able to get all data of the users expect their business role mapping(parameter in CRM).
    in the read pass of the user from the abap initial load , the attribute for the parameter is as follows,
                        Target                                                                             Source
    sap%$rep.$NAME%Parameter1:Info:VARCHAR:255|                        parameter1
    but no data is stored in the parameter1 table though the user has some parameter mapped in the CRM system                 
    Can anyone plz help to load this user-business role mapping details.
    Thanks in Advance.
    Regards,
    Pricy

    Hello Pricy,
    can you just give me some hints on what you are trying to do exactly?
    My assumptions:
    - CRM business role is stored as user parameter in ABAP SU01 user data, right?
    - you want to read all the ABAP user data from your CRM system INCLUDING the user parameter data from ABAP SU01 user data, right?
    If that is the case at least the loading part should work pretty fine. I just tried this on my local system and had no issues, all user parameters of my existing ABAP users where loaded into one temporary table.
    -> Pass: ReadABAPUsers -> table "sap%$rep.$NAME%Parameter1:Info:VARCHAR:255|"
    Did you find this temp table created on your database correctly? My table is there and is called "sapT01_001Parameter1" (where my repository is named T01_001) and it contains all the existing user parameters.
    What exactly is your issue?
    Regards,
    René

  • CRM Business Partner and Customer Mapping

    Hi,
    I wanted to know, how do we find out, that a BDOC of type BUPA_MAIN in SMW3_BDOC will be a customer or a Business Partner.
    Is there some way to know this thing.
    Regards,
    Rishav

    Hi Rishav,
    Here is how you can find it out.
    In transaction smw01, you get get the BP number. In trancaction BP in CRM. you can check the role of the BP. Then you can check the clasification that is mapped to this role of BP. Then in ERP go to transaction PIDE and check the mapping from from CRM->ERP. There you can find the Account group mapped to this classicication.You can find all the customer account groups in ERP using transaction OVT0.
    All  these account groups would be mapped to customers in ERP.
    Hope this clarifies your query.
    Best Regards,
    Shourav

  • BW1 transaction for mapping newfield to data source in CRM

    Hi,
    This will be BW gurus working in the CRM Opportunity area.
      Based on my current understanding I have copied the 0CRM_OPPT_H into ZCRM_OPPT_H and wanted to see whether I can map more partner function to map to the data source.
    Currently, the following fields are offered by the SAP Delivered data source 0crm_oppt_h in CRM.
    PARTNET FUNC    DATA source field     BDOC Mapping bwa1
    IN CRM          0crm_oppt_h
    Contact person   contact_person    PARTNER-PARTNER_NO
    <NOT used>       EXECUTING_CC      PARTNER-PARTNER_NO
    configured PF    COMPETITOR        PARTNER-PARTNER_NO
    Emp responsible  PERSON_RESP       PARTNER-PARTNER_NO
    Sales Prospect   PROSPECT          PARTNER-PARTNER_NO
    SALES_EMPLOYEE   Employee          PARTNER-PARTNER_NO
    Currently we have configured 4 more partner functions for our opportunity transaction, which are not available in the 0CRM_OPPT_H data source. However we shall need these fields to send to BW.
    How can we extend the mapping in BWA1 after extending/appending the extraction structure (CRMT_BW_OPPT_H) of the data source? Shall we continue to map these addition fields in the data source to PARTNER-PARTNER_NO as mentioned above? What puzzles us that this is header info and the PARTNER_NO is able to bring info for different partner func.. How this is being possible?
    If we also map the same for the additional partner fields will we be  able to aviod the BADI/User exit and the code associated that populated these fields?
    What is the BKM? How the BWA1 can be used for Extending for more partrner( functions?)
    Thanks
    AGN

    Hi Aswin,
      while this is really helpful to enable me to dig into further, the basic question is not yet answered.
    Currently the data source 0CRM_OPPT_H are able to extract the following partner data
    contact person
    prospect
    channel pertner
    empoyee responsible
    However only one( contact person  00000017)  is mentioned in our  CRM system in the SPRO steps that you have shown.. My first question is how then the data source is able to get the other partner function....
    2> Secondly even if I mention all the partner functions in that transaction( as you have mentioned) how do the data source really know where to populate which partner function data.. since the bdoc mapping is Partner-partne_no...
    For example if I maintain the following in SPRO
    00000017  contact person
    00000026  emplyee responsible
    How do the data source gets rightly populated ( contact person value in the contact_person field and vice versa).. when the BDOC Mapping for both these two fields are simply partner-partner_no?
    Appreciate a detail explanation from you on this.
    Thanks
    AGN

Maybe you are looking for

  • Error in reading the XML file

    Hi, I am trying to read the values of the node of XML file. The structure of the XML file is: <?xml version = "1.0"?> <DOCUMENT> <LANGUAGE_TRANS> <TRANSLATION> <CODE>3</CODE> <VALUE>Please select a number</VALUE> </TRANSLATION> <TRANSLATION> <CODE>5<

  • Query on Workflow/SRM

    Hi All, I have a query on workflow/SRM. Recently our client upgrade from 4.6c to ECC 6.0 and we are facing with the below problem after the upgrade. Users create Purchase Orders through shopping carts in SRM system; requisitioner will receive a notif

  • Macbook pro hard drive upgrade - will it work on my spec?

    Hi People Basically looking for advise, as i know the basics, but heard there could be issues with the drive i want and macbook Pro's, so looking for advice whether the drive will work or not. Now i know that i need the hard drives without the shock

  • DW 8 not native to my particular Mac???

    I just upgraded to a new Mac Mini with OS X 10.4.7, 1.66 GHz Intel Core Duo Processors, 2GB DDR2 SDRAM, and DW 8. I design and maintain a large site for my company and ever since I've made the swap to my Mac (I was previously using a PC), I've notice

  • LabView in Intranet

    Hello Friends,       I am new to LabView programming and I have little query about LabView . Shall I put my LabView Real Time Chassis in Local Intranet & access it form Desktop PC? and can I can Single Chassis on Multiple Desktop machines simulataneo