How do I integrate an RTLS system to the Auto-ID Infrastructure (AII)

Where would I find documentation and/or code examples that explain how to integrate a Real Time Location System (RTLS) to the Auto-ID Infrastructure (AII)?

Hi Rchard,
The answer to your question will depend on many things. Here are three initial questions you should answer to get you started.
(1) What do you mean by RTLS - I have heard as many defnitions as there are people talking abou the concept. One view (CompTIA) is that it refers to a container tracking solution in a large container yard e.g. intermodal.
(2) Which business processes are you looking at? - AII 4.0 contains business processes (receiving, shipping, returnables) that you may be able to leverage in your solution. However, there may be other aspects of the solution (e.g. handheld RFID interrogator usage) which you may need to tie directly into XI. Another issue to watch for in regard to AII is the tag data standard - you will not want to use EPC-type tag data on a 433 MHz active tag and you may want to tie sensor data e.g. temperature or movement into your tag data. In this case AII may also be a difficult choice.
(3) Which tags you will use e.g. 433 MHz active versus passive LF or other passive tags will also make a huge difference in that they determine the scope of your solution e.g. what is feasible and what is not.
Hope this helps you get started with your question.
Cheers, Chris
([email protected])

Similar Messages

  • How is location represented in the Auto-ID Infrastructure (AII)?

    If a device provides position fixes with lat/long coordinates rather than a read point or GLN can that still be integrated to the AII infrastructure?

    Hi Richard,
       As mentioned by Arul its functionality of Device Controller which does the device management. If the Device Controller is smart (has the logic) enough to understand the location of Devices with respect to lat and long then its possible. As then the Device controller will send the relevant information to AII which then runs the relevant rule.
      Regards,
    Amit Deshpande

  • Could you please tell me how to configure NSP as « trusted » system  in the latest trial version of NetWeaver?

    Hi,
    Could you please tell me how to configure NSP as « trusted » system in the latest trial version of NetWeaver?
    Please see the attachment.
    Thanks,
    Marc

    Hi Marc,
    go to transaction STRUSTSSO2, generate a certificate for your system, then add it to certicate list and to ACL for your client.
    There will probabely be  several parameters to set in instance profile if you plan to use SSO.
    Best regards,
    Vincent

  • How do I integrate a new camera into the MAX system?

    I'm working on modifying the interface to an existing camera evaluation board. The design of the interface is changing enough that the current .ICD file and .txt for the camera might need to be changed. I'd like to know what information is available for creating a new configuration that can be used by MAX.
    I'm using the PCI-1422 board. Software is being developed using MSVC++. Windows 98 is most likely the target system.
    Additionally, the PCI-1422 board shows a series of control signals (Control<0..3>) available on the interface. However, I see no documentation on how these lines might be used. Can somebody point me in the right direction?
    Thanks for your time.

    You will get much better results posting this question to the Vision section of developer's exchange instead of here. This forum is for the Measurement Studio MSVC++ tools discussion.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • How do i install an opperating system on the hard disk?

    product name hp pavillion product number a6z59ua

    Hello and thanks for joining the HP forums.  If you have replaced a hard drive on your notebook you will need to order recovery discs in order to reinstall the operating system.  You can order recovery discs here:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00810334&cc=us&dlc=en&lc=en.  Thanks.
    I am an HP employee.
    Please post rather than sending a Private Message. It's good for the community and I might not be able to get back quickly.- Thank you.
    Please click the White Kudos star on the left to say thanks.
    Please mark Accept As Solution if this resolves your issue.

  • How to send Mail to external system - Check the program ?

    Hi all,
          The following is a ABAP Program to Send a mail to external mail id. this program is not showing error but when executed it say "No message sent"
    what i've to do to overcome this hurdles. if any solution or prerequisites then '
    please give me a solution. 
    PARAMETERS: psubject(40) type c default  'Hello',
                p_email(40)   type c default '[email protected]' .
    data:   it_packing_list like sopcklsti1 occurs 0 with header line,
            it_contents like solisti1 occurs 0 with header line,
            it_receivers like somlreci1 occurs 0 with header line,
            it_attachment like solisti1 occurs 0 with header line,
            gd_cnt type i,
            gd_sent_all(1) type c,
            gd_doc_data like sodocchgi1,
            gd_error type sy-subrc.
    data:   it_message type standard table of SOLISTI1 initial size 0
                    with header line.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Perform populate_message_table.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    PERFORM send_email_message.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *&      Form  POPULATE_MESSAGE_TABLE
          Adds text to email text table
    form populate_message_table.
      Append 'Email line 1' to it_message.
      Append 'Email line 2' to it_message.
      Append 'Email line 3' to it_message.
      Append 'Email line 4' to it_message.
    endform.                    " POPULATE_MESSAGE_TABLE
    *&      Form  SEND_EMAIL_MESSAGE
          Send email message
    form send_email_message.
    Fill the document data.
      gd_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = psubject.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table it_message lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
    Add the recipients email address
      clear it_receivers.
      refresh it_receivers.
      it_receivers-receiver = p_email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
    Call the FM to post the message to SAPMAIL
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = it_message
                receivers                  = it_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    Store function module return code
      gd_error = sy-subrc.
    Get it_receivers return code
      loop at it_receivers.
      endloop.
    endform.                    " SEND_EMAIL_MESSAGE
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
      wait up to 2 seconds.
      if gd_error eq 0.
          submit rsconn01 with mode = 'INT'
                        with output = 'X'
                        and return.
      endif.
    endform.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    Thanks in Advance,
        Manian

    Hi,
       I can get the idea but i'm asking u about the prerequisites such as SCOT - sap connect or something else has to be done before executing the program.
    if i need any pls let me know?
    I've tried the program but it say " No Message sent" and i didn't get any mail to mail id.
    thanks in advance,
      Manian.

  • How can I delete unwanted mail addresses from the auto fill list in e.mail

    When I go to type a mail adress on my ipad I get a drop down list of previous mail addresses including all the typo's and used once. There doesn't seem to be a way of deleting unwanted one's. Unless anyone knows better?
    Paul

    No, it can't be done. There have been many requests for this.
    All you can do is send feedback to Apple on it at http://www.apple.com/feedback/iPad.html

  • How to integrate a BW System in a XI Landscape?

    Hi Everybody..
    which are the steps that I need to perform in order to integrate a BW System in a XI Landscape?
    Thanks
    FedeX

    Hi Great links thanks...
    I do not how can get focused for going forward...
    <b>My Goal</b>
    I want to test a XML Data Source for a BW System
    <b>The Guide</b>
    The sample that I am following has some requirements...
    <i>1. Prerequisite
    The BW is integrated to the XI landscape.
    If this is not yet the case, follow the configuration guide
    of XI which you find here: SAP Service Marketplace
    ( http://service.sap.com/instguides )</i>
    That link does not point out a documente .. is a site with charges of information
    <b>The Situation</b>
    BW is definitively no integrated and I need to integrated it to go further with my test
    <b>How</b>
    I need a document or a guide or a link   which describes step by step How can one integrate a BW system to the XI Lanscape.
    where is that document in this ocean of information ?
    Thanks!!!
    Fedex

  • How to connect to the  multiple system in the same environment

    Hi Everyone ,
    We are integrating SAP EP and BOE . We are facing SSO problem ,as there are 2 system in same environment .
    Suppose we have XX1 and XX2 as BW backend system . IF Default entry on server is kept blank then we get :
    "u2022  Account information not recognized: No SAP system was passed as part of the user name and there was no default system defined. User credential validation cannot continue. " error.
    Whereas if we give XX1 as defaut system on server , then SSO is not happening we as are XX2 users .
    Anyone has any idea on how to connect to multiple backend system in the same environment .
    Edited by: shivani  mishra on May 20, 2010 11:22 AM

    Hi,
    As you can see in the help link below:
    http://help.sap.com/saphelp_nw70/helpdata/en/45/2f873d1ca96d7be10000000a114a6b/content.htm
    There is a trust system and the trusted systems. One system can trust in many other systems. You have just to configure it exporting and importing the certificates as explained in the link.

  • How to check if a file system in global zone is shared on zones

    Hello,
    Would you by any chance know how to detect if a file system in the global zone is shared with any zones created from the global zone (either shared with readonly or read-write)?
    Thanks in advance.
    Regards
    Frank

    Usually they're shared via lofs. So try 'df -kZ -F lofs'.
    Darren

  • How to publish a PI7.1 System in SR to create PRovider System in CE7.1

    Hi All,
    We have CE7.1 EHP1 System. When we try to create a provider system for a PI7.1 system in our landscape, the PI system is not available in the help entries.
    If we proceed wiht manual entry, in the end it thows the error " Provider system not published in service registry".
    Kindly let me know how to publish a PI7.1 system to the Service Registry so that we can create a Provider system in CE7.1.
    Thanks and Regards,
    Raghavan

    Hi
    Have a look on given threads
    [Publish services from PI 7.1 to the Service Registry|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417700)ID1123979950DB11040186000318583423End?blog=/pub/wlg/8788]
    [DISCOVERY SYSTEM|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/108ef7ba-8abd-2a10-f787-d5f29c5f1b88&overridelayout=true][Netweaver CE ESR & SR|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417700)ID1123979950DB11040186000318583423End?blog=/pub/wlg/8725]
    Best Regards
    Satish Kumar

  • Creating a Business system in the SLD

    I am receiving an error message when trying to create a business system in the SLD. The error is "The selected client has an associated logical system nae that is already  used for another business system. Select a different client."
    Here is my issue. The business system that I am creating is for our R/3 4.6C production system. I currently have a business system for our R/3 4.6C quality system. Our prodution and quality R/3 systems do have the same logical system name and client number. This is because we recreate our qaulity R/3 system from our production system.
    So, the question is, How do I create a business system in the SLD for my production R/3 system when the logical system name is used assoicated with and business system.
    I should add that all my R/3 systems have been created as technical systems without any problems.
    Thanks,
    Jim

    It is recommended to have all ALE names unique.
    If it is not possible the following workaround can be used.
    Create one system in SLD (business system/technical system) which contains the ALE name. Proposal: The production system
    Create the other systems(dev/QA) without the ALE name
    During configuration the production system will be configured as usual.
    For Dev/QA systems: Define in the receiver agreement the header mapping and use The Receiver service to reference the production system. Because you reference the production system the ALE name of the production system will be used to fill the idoc.

  • How to integrate with RMS system

    Hi experts,
      I want to integrate RMS(Retail Management System) with SAP PI system.
    Is it possible to integrate?
    If possible, Can you give me Idea How to integrate with this?
    Thanks & Regards,
    Poonam.

    > Want your more help. If I want to use SOAP adapter to integrate with RMS system.
    > So, what are the prerequisites are required in RMS system to be integrate with SAP PI through SOAP adapter?
    >
    Fist you have to make sure that RMS system showuld accept SOAP messages, that means u will send payload to RMS in the form of SOAP meesage using SOAP receriver Adapter.
    RMS system people have to provide URL , u will send data to address specified in URL.
    using Adapter is compmetely depend on Source or Taget system, betetr to talk with RMS system people like how they will take data from other systems,besed on that you can decided.
    Regards,
    Raj

  • How to integrate Solution Manager system to Enterprise Portal

    Hi all,
    HOW TO INTEGRATE SOLUTION MANAGER SYSTEM TO ENTERPRISE PORTAL SYSTEM

    Hi,
    First establish SSO between portal and solution manager.
    make the iview from com.sap.portal.epsolman.EPSolman
    check the link for help
    ep and solution manager support desk
    Thanks
    Santosh

  • How do I integrate SAP R/3 with an external system?

    Hi there!
    I've run into a problem integrating SAP R/3 with an external system. The external system provides a webservice, and when I try to get WSDL file from that service, I am getting asked of authorization and when I authorize, I get error 500. The access is anonymous, as I'm being told. When I try to get just a response, server requests authorization. No matter what login and password I supply, I always get error 401 saying I'm not authorized.
    I think the ICF is somewhat misconfigured, but how do I configure it? Or maybe there's a problem with requests I send. I don't know.
    Please help!
    Regards, Dima

    Hi,
    You don't provide any info on how you want to cosnume the web service, but pls check things like
    /people/thomas.jung3/blog/2005/04/21/webservice-navigator-page-for-abap-and-java
    /people/thomas.jung3/blog/2005/04/27/webservice-navigator-page-for-abap-and-java-part-2--abap-unit
    /people/thomas.jung3/blog/2005/05/13/calling-webservices-from-abap-via-https
    /people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

Maybe you are looking for

  • Foreign Currency Valuation Run Re - look

    Hi experts, I am working on ECC 6.0. I have runned FCV and its successful showing the differences in exchange rates. How to take a re - look to that balances again .since i have closed the window. i want to analyse the values any code or path..? Than

  • SQL Developer 3.2 : Unable to browse java source in the db

    Hi: I noticed a regression in SQL Developer 3.2 in respect to 3.1 (on windows). as of SQL Developer 3.1.7.7.42 I was able to browse java sources stored and compiled in the database. The tabs "Details", "Source", "Policies" were correctly populated. I

  • Need to enable Oracle Role

    Post Author: GaryI CA Forum: Data Connectivity and SQL I am using Crystal Reports for Visual Studio 2005 and an Oracle database. From my C# application, I am dynamically setting the location of the database to use in the report with the code fragment

  • Class Loader Time in VisualGC 3.0-Display

    Hello, I�m monitoring my application with visualgc 3.0 under jdk1.5_09. I�m wondering why the Class Loader Time-Panel always shows activity even the amount of loaded classes remains nearly constant. What is shown is this panel??? Does the classloader

  • Linking Raw and JPEG Proxies in a Catelog

    Hello I have three different questions here: 1. I was curious if there's a way to re link RAW files with the JPEGs once we enter Meta Data in a New Catalog?  2. Is there a way to HIDE the RAW files from other users? 3. When we make a new XMP file is