Example for a General Standards SIO4 Board in LabView

I have to integrate a cPCI SIO4 board from General Standards. There are LabView drivers comming with the Board and also an example vi. But, it doesn't work on my machine (WIN NT and/or 2000). So, reducing my learning phase, is there any example available to drive the SIO4 in any (prefered HDLC) mode.
Thanks
Peter

Sorry my General Standards cPCI SIO4 problem was not described exactly,
in the meantime I had enough time to investigate the problem. I think it is not a LabView problem, it is a
Problem of the vondors driver. The WIN NT drivers were delivered in a dll and a front panel file and they were converted via CVI to LabView format. So at the moment I use the vendor example to transmit and receive data. Transmission seems OK but, the receiving data is somtimes OK, somtimes NOT and there is no error indicated by LabView.
So my question is, did anyone have expirience with LabView and the General Standards cPCI SIO4 board ?
Or, is there another vendor (prefered NI) selling a board and LabView drivers with the following requirements:
1. 1Mbaud asynchronous data
2. 10Mbaud HDLC or SDLC in full duplex synchronous mode (send Tx clock and receive Rx clock)
sender and receiver may have different baud rates
3. 10Mbaud HDLC in half duplex asynchron or synchronous
sorry its not a real LabView problem but may be, there is a user that had the same problem in the past.
Peter

Similar Messages

  • I Require an Example for Message based communication in VXI using LabVIEW

    I'm trying to use Tektronix/CDS 73A-453 for sending data to a remote terminal through MIL-STD 1553b. Please give some examples in this, as I am unable to start the project without knowing these basics. Thank You.

    Hi,
    If you are using LabVIEW or LabWindows/CVI you can find a driver for this instrument at this website. Select Tektronix/CDS as the manufacturer and enter 73A-453 in the Additional Keywords and hit go. This will bring up the two drivers. When you install this on your computer put it in the following directory:
    C:\Program Files\National Instruments\LabVIEW 7.1\instr.lib
    If you place it here the functions will show up in LabVIEW if you go to the Block Diagram's Functions Palette>>Instrument I/O>>Instrument Drivers. This should get you started. If you have more questions please repost.
    JenK

  • IV measurement example for PCI-MIO-16XE-10

    Is there Labview IV measurement examples for PCI-MIO-16XE-10 board ? I'm especially interested in producing the clean voltage out from the board. I'm seeing 10 meV noise in the analog voltage output.

    Hello,
    Reading the generated voltage with one of the anlaog input channels is the most recommended way to see if your board is giving an offset.
    I would also recommend to run the E-Series Calibrate VI. You can find this VI in the LV Functions Palette: Data Acquisition>>Calibration and Configuration. In the following link you will find an example that shows how to do this.
    Calibrate and E-Series Board using Internal Voltage Reference
    Good luck with your application!

  • Need standard Bapi or FM for creating General Ledger (FS00 transaction)

    Hi,
    I need to upload (create) Master General Ledger data.
    My requirement is to use standard Bapi or FM for this purpose.
    Please tell me which Bapi or FM i can use for this purpose.
    Thanks in advance.

    Hi Suresh,
    The Function module you specified is not released. So, I cant use it. Thanks for your suggestion.
    Hi friends,
    My requirement is to create General Ledger Account (FS00 or FS01) using a standard Bapi or FM. Please tell me which Bapi or FM I can use for this purpose.
    I identified one related Bapi for this purpose (BAPI_ACC_GL_POSTING_POST). But my functional consultant says it is for posting General Ledger and cannot be used for ceating General Ledger account.
    Please clarify me.

  • Examples for Fixed and variable prices for activity type

    Hi,
    Can someone please provide a real life example for the fixed and variable prices of an activity type?
    Moderator: Search SDN and SAP help material

    Hi,
    Fixed Price are those expenditures which remains constant in total amount irrespective of change in Volume of production.Eg Rent will be constant even if your production volume changes.The activity price calculated for such expenditures will also be constant per activity rate even if there is a change in the volume of production.
    Varriable price on the other hand changes with the volume of production .e.g power cost will change if you produce more.the the activity rate say KWH/ton will also change and its price will also change if you produce more.
    Generally activities for service center fixed costs will yield fixed price.
    Once you are done with planning in KP26.these plan amounts are used for standard cost estimate.when you are doing standard cost estimate, cost will calculated from BOM(Materials cost) and Routing(here you have activitype plan cost/hr.no.of hrs to finish goods).
    once you are with standard cost estimate it will update material master.
    To calculate variances(target costs Vs Actual cost),we use target cost.target cost is nothing but your standard cost estimate cost for that particular materials(Finished or Semi -Finished).
    you can check this in OKV6 T.code.
    Thanks,
    Rau

  • Example for FAGL_GET_OPEN_ITEMS_GL

    Hi All,
    I wanted to use the FM FAGL_GET_OPEN_ITEMS_GL
    Can any one tell me what are the parameters value  to pass for this function module.
    Please Explain this with Example.
    Thanks.

    import
    Posting date in the voucher
    Accounting area
    Table for accounts
    Quantity of field names
    Table for fagl_s_mig_field_into
    general flag
    Export
    Table of XSTRINGs
    reward if helpful
    Message was edited by:
            Kaushik Datta

  • I need simple example for alv grid

    hi
    i need code for simple example for alv grid.
    thanks.

    hi bharat,
                  this is report with most of the functionality.
    report zus_alv_demo_grid .
    tables:     ekko.
    type-pools: slis.
    types: begin of t_ekko,
    ebeln type ekpo-ebeln,
    ebelp type ekpo-ebelp,
    statu type ekpo-statu,
    aedat type ekpo-aedat,
    matnr type ekpo-matnr,
    menge type ekpo-menge,
    meins type ekpo-meins,
    netpr type ekpo-netpr,
    peinh type ekpo-peinh,
    line_color(4) type c, "Used to store row color
    end of t_ekko.
    data: it_ekko type standard table of t_ekko initial size 0,
           wa_ekko type t_ekko.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid.
    Data declaration for EVENT and PRINT PARAMETER.
    data: gt_events type slis_t_event,
           gd_prntparams type slis_print_alv.
    data declaration for sorting.
    data : it_sortcat   type slis_sortinfo_alv occurs 1,
           wa_sort like line of it_sortcat.
    data :  i_list_comments type slis_t_listheader.
    start-of-selection.
      perform data_retrieval.
    perform user_command.
      perform build_fieldcatalog.
      perform build_layout.
      perform build_events.
      perform build_print_params.
      perform build_sortcat.
      perform display_alv_report.
    end-of-selection.
    *TOP-OF-PAGE.
    PERFORM top-of-page.
    end-of-page.
    *&      Form  build_fieldcatalog
          text
    -->  p1        text
    <--  p2        text
    form build_fieldcatalog.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      fieldcatalog-col_pos     = 5.
      fieldcatalog-do_sum = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " build_fieldcatalog
    *&      Form  build_layout
          text
    -->  p1        text
    <--  p2        text
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    Set layout field for row attributes(i.e. color)
      gd_layout-info_fieldname =      'LINE_COLOR'.
    gd_layout-totals_only        = 'X'.
    gd_layout-f2code            = 'DISP'.  "Sets fcode for
    *when double
                                            "click(press f2)*
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text       = 'helllllo'.
    endform.                    " build_layout
    *&      Form  data_retrieval
          text
    -->  p1        text
    <--  p2        text
    form data_retrieval.
      data: ld_color(1) type c.
      select ebeln ebelp statu aedat matnr menge meins netpr
    peinh from ekpo  into table it_ekko.
    *Populate field with color attributes
      loop at it_ekko into wa_ekko.
    Populate color variable with colour properties
    Char 1 = C (This is a color property)
    Char 2 = 3 (Color codes: 1 - 7)
    Char 3 = Intensified on/off ( 1 or 0 )
    Char 4 = Inverse display on/off ( 1 or 0 )
              i.e. wa_ekko-line_color = 'C410'
        ld_color = ld_color + 1.
    Only 7 colours so need to reset color value
        if ld_color = 8.
          ld_color = 1.
        endif.
        concatenate 'C' ld_color '10' into wa_ekko-line_color.
    wa_ekko-line_color = 'C410'.
        modify it_ekko from wa_ekko.
      endloop.
    endform.                    " data_retrieval
    *&      Form  display_alv_report
          text
    -->  p1        text
    <--  p2        text
    form display_alv_report.
      gd_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program       = gd_repid
                is_layout                = gd_layout
                i_callback_top_of_page   = 'TOP-OF-PAGE'
                i_callback_user_command  = 'USER_COMMAND'
                i_callback_pf_status_set = 'SET_PF_STATUS'
                it_event                 = gt_events
                is_print                 = gd_prntparams
                it_fieldcat              = fieldcatalog[]
                it_sort                 = it_sortcat
                i_save                   = 'X'
           tables
                t_outtab                 = it_ekko
           exceptions
                program_error            = 1
                others                   = 2.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.              " DISPLAY_ALV_REPORT
    *&      Form  user_command
          text
    -->  p1        text
    <--  p2        text
    *&      Form  top-of-page
          text
    -->  p1        text
    <--  p2        text
    form top-of-page.
    *ALV Header declarations
      data: t_header type slis_t_listheader,
            wa_header type slis_listheader,
            t_line like wa_header-info,
            ld_lines type i,
            ld_linesc(10) type c.
    Title
      wa_header-typ  = 'H'.
      wa_header-info = 'EKKO Table Report'.
      append wa_header to t_header.
      clear wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      concatenate  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
       sy-datum(4) into wa_header-info."todays date
      append wa_header to t_header.
      clear: wa_header.
    Total No. of Records Selected
      describe table it_ekko lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'Total No. of Records Selected: ' ld_linesc
         into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
           it_list_commentary = t_header
           i_logo             = 'GANESH_LOGO'.
    endform.                    " top-of-page
          FORM user_command                                             *
    -->  R_UCOMM                                                       *
    -->  RS_SELFIELD                                                   *
    form user_command using r_ucomm like sy-ucomm
    rs_selfield type slis_selfield.
      case r_ucomm.
        when '&IC1'.
          if rs_selfield-fieldname = 'EBELN'.
            read table it_ekko into wa_ekko index rs_selfield-tabindex.
            set parameter id 'BES' field wa_ekko-ebeln.
            call transaction 'ME23N' and skip first screen.
          endif.
        when 'ULHAS'.
          if rs_selfield-fieldname = 'EBELN'.
            read table it_ekko into wa_ekko index rs_selfield-tabindex.
            set parameter id 'BES' field wa_ekko-ebeln.
            call transaction 'ME23N' and skip first screen.
          endif.
      endcase.
    endform.
          FORM set_pf_status                                            *
    -->  RT_EXTAB                                                      *
    form set_pf_status using rt_extab type slis_t_extab.
      set pf-status 'ZNEWSTATUS'.
    endform.
    *&      Form  build_events
          text
    -->  p1        text
    <--  p2        text
    form build_events.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
       exporting
         i_list_type           = 0
       importing
         et_events             = gt_events[]
    EXCEPTIONS
      LIST_TYPE_WRONG       = 1
      OTHERS                = 2
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
      read table gt_events with key name =  slis_ev_end_of_page
                  into ls_event.
      if sy-subrc = 0.
        move 'END_OF_PAGE' to ls_event-form.
        append ls_event to gt_events.
      endif.
      read table gt_events with key name =  slis_ev_end_of_list
                  into ls_event.
      if sy-subrc = 0.
        move 'END_OF_LIST' to ls_event-form.
        append ls_event to gt_events.
      endif.
    endform.                    " build_events
    *&      Form  build_print_params
          text
    -->  p1        text
    <--  p2        text
    form build_print_params.
      gd_prntparams-reserve_lines = '3'.   "Lines reserved for footer
      gd_prntparams-no_coverpage = 'X'.
    endform.                    " build_print_params
          FORM END_OF_PAGE                                              *
    form end_of_page.
      data: listwidth type i,
      ld_pagepos(10) type c,
      ld_page(10)    type c.
      write: sy-uline(50).
      skip.  write:/40 'Page:', sy-pagno .
    endform.
          FORM END_OF_LIST                                              *
    form end_of_list.
      data: listwidth type i,
      ld_pagepos(10) type c,
      ld_page(10)    type c.
      skip.  write:/40 'Page:', sy-pagno .
    endform.
    *&      Form  build_sortcat
          text
    -->  p1        text
    <--  p2        text
    form build_sortcat.
    wa_sort-spos      = 1.
    wa_sort-fieldname = 'EBELN'.
    append wa_sort to it_sortcat.
    wa_sort-spos      = 2.
    wa_sort-fieldname = 'EBELP'.
    append wa_sort to it_sortcat.
    endform.                    " build_sortcat
    Rewards if helpfull
    regards
    vijay dwivedi

  • Any example for a MFC, WTL or Win32 without Measurement Studio?

    It seems that NI wants you buy their Measurement Studio which can easily cost you a fortune. I am looking around a simple example for MFC, WTL without touching the measurement studio. But if you do not have measurement studio, NI only gives you very old examples in ANSI C which is difficult to implement to MFC or WTL. Apparently they want to increase their revenue by forcing you to buy the Measurement Studio. But I will not buy their hardware in the future if this is their strategy.
    Anyone successfully implement the ANSI C example to MFC or WTL without measurement studio? Can you share an example?

    Junqi,
    Im a little confused with this request in general. What development environment are you using? Visual Studio? Also, what language are you coding in? We provide C, C#, VB.net, and legacy VB6 examples with our DAQmx driver that do not require measurement studio. They can be found in documents\National Instruments\NI-DAQ\Examples 
    Now forgive me if Im misinformed about this, but MFC and WTL are just libraries that have some of the windows API wrapped into them, correct? If so, I dont see how interfacing with them is any different than interfacing with any other library, or why this would cause issues with doing DAQ calls. If you need help with the MFC or WTL library, there are many good places to find help with on the internet. MSDN, codeproject.com, and many others come up as having examples of using MFC in various projects.   
    The MS examples dont install withough MS because they wouldnt be able to be used because they use libraries that are installed with measurement studio, so they would be nonfunctional and largely useless. 
    Regards,
    Kyle Mozdzyn
    Applications Engineering
    National Instruments
    Regards,
    Kyle M.
    Applications Engineering
    National Instruments

  • How to switch licensed for "ADOBE DESIGN STANDARD" from iMac to Macbook Pro?

    I am currently licensed for "ADOBE DESIGN STANDARD" on an iMac. I have a new MacBook Pro and want to use that instead of the iMac. Do i need to get a new license key? or ??
    I know i can download an "eval" copy on the laptop, but how do i switch license keys? i'm not even sure i still have the (valid) license key for the iMac...can i request another??

    As long as you are staying within the same general platform (PC vs Mac) you do not need to change licensing.  You are allowed to have two activated installations with your license, so you should be able to install on the new machine without having to worry about the older one at all (unless you ever want to free up the second activation for yet another machine).  As you mentioned, you can download the trial version and use the serial number from your purchase to activate it to full use.
    If you registered your software with Adobe, the serial number should be available via your Adobe account online.  If you didn't register it then you will at least understand why it pays to do so. 
    IF you end up needing to resolve any issues with activating the product on the new machine you will need to contact Adobe Support directly.  Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • Daq down counter example for pci-mio-16e-4 wanted

    Hi!
    I am searching for an example vi of a down-counter for
    ttl pulse trains.
    thnx,
    Holger

    Thanks for that, but that was also my first idea. Unfortunaly there is no
    example for an DOWN counter in that directory. they all count up.
    i want to count incoming a ttl-pulse-train and terminate that train(by
    dio-line) when
    counted exactly a certain number of counts. if i check the counts (600Hz)
    each time by software, there seems to be no chance to terminate the train
    at the desired number of pulses and thatfore i will have to use the daq card
    on board counter. and my idea is, that a down counter (which is specified in
    the
    manual) would do it.
    my question therefore is, if anyone has ever used a DOWN counter, because
    i have no idea how to realise it/how to use the daq-included down-counter
    vi, which
    i don´t realy understood
    i am thankful for any reply!
    bes
    t regards,
    holger
    "Nirmal Sharma" schrieb im Newsbeitrag
    news:[email protected]..
    > Hi,
    > there are numerous examples which you can find at this path:
    > C:\Program Files\National Instruments\LabVIEW 6.1\examples\daq\counter
    >
    > or Goto Find examples in Labview launching Panel -> Hardware Input and
    > Output -> DAQ -> Counters
    >
    > If you are using DAQ card, Goto ->Count buffered edges or count Edges.
    >
    > Hope this works. Your feedbacks are welcome.
    >
    > Best Regards,
    > Nirmal Sharma

  • Examples for JAVA ME in Blu Ray

    Are there any code examples for using Java in Blu-Ray DVD players?

    For CS4 you must update the Roxio component http://forums.adobe.com/thread/400484?
    More on Encore and Roxio http://forums.adobe.com/thread/528582?tstart=0 or direct to
    http://kb.roxio.com/search.aspx?URL=/content/kb/General%20Information/000070GN&PARAMS
    Also, Run as Administrator http://forums.adobe.com/thread/771202?tstart=0
    tstart=0

  • LabVIEW 2010 FPGA Driver for Xilinx SPARTAN 3E Starter Board

    Dear Friends,
    Is there any possibility to release a LabVIEW 2010 FPGA Driver for Xilinx SPARTAN 3E Starter Board?
    Regards,
    wedo
    Solved!
    Go to Solution.

    Hi Brad,
    So glad to get your post here!
    I’m looking forward to download the new installer.
    I wonder whether the new driver will support the 10/100 Ethernet Physical Layer Interface, since the last drivers aren’t support this feature!?
    Also, will be any new examples included with the new driver? For instance: an example for the StartaFlash Memory; I have done an example for this but I couldn’t get it work! I don’t know why! You may check my post and the example in the following link!
    http://forums.ni.com/t5/LabVIEW/Spartan-3E-StrataF​lash-Memory-wrong-reading/m-p/1030898
    By the way, is there any plane to develop a driver for the Spartan-3E (1600Kgate) kit? Both kits (500KGate and 1600KGate) have the sample on-board peripherals, the only difference is in the number of Gates (FPGA chip). I think all that is needed is to add the component ID (29597843---->3E1600) and revise the xc3s1600e.bsd and 3sXXXe.nph.
    Thanks in advance & kindest regards,
    wedo

  • Certificate Requirement for Lync 2013 Standard Edition

    I have successfully run the setup of lync 2013 standard edition now I am stuck due to certificates required for lync 2013. when I generate a csr. it show the subjected urls for that.
    hostname.domain.com
    sip.domain.com
    diali.domain.com
    meet.domain.com
    admin.domain.com
    lyncdiscover.domain.com
    lyncdiscoverinternal.domain.com
    im.domain.com (External URL)
    so if I go for 3 party CA then I need 8 certicate only for internal lync. As I also need to connected federated partner and external user so I need Edge for again I need 3 more certificates
    web.domain.com
    a/v.domain.com
    sip.domain.com
    now when I go for these certificate it quit costly and I didn't understand why such certifcates required. can anyone help me to fix such requirement.
    Or, what are the necessary url to which I buy 3 party CA rest leave as it is.
    I also want to deploy Edge with single adopter as we have only one network so can anyone assist me to proceed it further.
    Talha Faraz Malik

    To save on the cost of your third party certificates, I would deploy an internal certificate authority to sign certificates for your internal front end.   For your third party certificate, you would only need the SANs for the edge and for your
    reverse proxy and as Edwin said, this can be a single cert with multiple SANs.
    For example, for your edge you would need:
    sip.domain.com
    web.domain.com
    You would not need A/V as this role does not require a SAN on your certificate.  On the same certificate, which you could also use on your reverse proxy, you'd likely want the following FQDNs.
    lyncdiscover.domain.com
    im.domain.com (your external web services FQDN)
    meet.domain.com
    dialin.domain.com
    You may also want to consider your internal web services FQDN and include the following so third party mobile devices can connect without needing a certificate installed:
    im_internal.domain.com (your internal web services FQDN)
    lyncdiscoverinternal.domain.com
    I'm sure that's not entirely clear yet, so feel free to ask more questions or what the purpose of each is. 
    When you say Edge with a single adapter, you mean a single adapter in a DMZ or internal?  You definably want two NICS, both in separate DMZs, but I've managed to get the edge working with a single adapter in a DMZ before.  What you don't want is
    the edge in your internal network.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Bar Code Sample Example for Usage in Smarform

    Dear Experts,
    We are trying to print the barcode on the Manufacturing Sheet and should contain the PART code, Serial Number and the Mfg. Date embeded in the bar code.
    Can somebody share the sample  Bar Code Example for Usage in Smarforms.
    I never got a chance to work on such development. We are getting different answers from our development partner and sould like to excersize this on my own.
    Appreciate your help
    Regards,
    Ravati

    Hi Ravati,  It's simple!!
    Follow the example below for printing barcode in smartform .
    There are some SAP standard barcodes(for ex.ARTNR,AUFNR ..etc) and also we can create our own barcode for it by using transaction code SE73.
    1. Steps for using existing barcode in Smartform
    For Printing Barcode in Smartform, you need to have the style with barcode active in it. So define new style where the standard settings should define the barcode that you want to use in the smartform.
    For example, For product information display I use the Style as ZMFG_BARCODE.
    Create paragraph & character format as "P1 - Product Description". In standard setting of character format P1, select the standard or custom defined barcode. This will ensure the printing of Product Information in Barcode format.
    Now Create Smartform with output options specifying style name which you have created with Barcode active.
    Complete your smartform coding, and when you want to display the information in barcode, concatinate all the required information and enclose that text in character format like,
    for Product Code assuming the technical field name as mara-matnr, it should be printed as below:
    <P1>&mara-matnr&</>
    2. Steps to create new barcode using SE73 - SAPScript Font Maintenance.
    In SE73, Select radio button "System barcode" to create new barcode.  While creation of this barcode, you have to describe the new barcode, select technology new, barcode symbology and barcode alignment.
    You may also chage the barcode parameter if required.
    Now follow the same steps to implement this new barcode.
    Hope this will help you.
    Regards,
    Pravin

  • Security System Example For Freesacle Microcontroller Kit

    Dears,
    I need the Example For the Security System Using the Freescale Microcontroller Kit with LabVIEW.
    this Example Can Be Seen on the Web cast For NI ELVIS Embedded Design:
    http://ni.adobeconnect.com/p35906816/?launcher=false&fcsContent=true&pbMode=normal
    Thanks
    Ahmed Abdulbaky

    I am also using same security vi's and having NI ELVIS II freescale board using HCS12 microcontroller P&E USB BDM Multilink option, but I am getting the error of 200559 while running my vi's as in my post.
    Ali Tariq Bhatti
    Advice: Some people talk on different issues and abusive against your post because they do not want to help and arguing with you on some other topic. You all will observe and I also observed, so also do not want to mention their name and best way is complaint them to the moderator. If anyone still wants to talk on different issues against the post, other way is to do private message.
    ~~~Be nice, have faith in ALLAH(God)~~~

Maybe you are looking for