Standard method for storing gps values

what is the standard method to store gps values in database tables.

user10447332 wrote:
for storing gps values oracle spatial is copmulsary? is there any alternative solutionYou hijacking the OP's thread?
I assume you mean "compulsary". ;)
No, nothing is compulsary, you could store GPS values in your own data structure if you choose. However Oracle spatial is usually the place where spatial data such as GPS values are processed.
Depends what you want to do with it.

Similar Messages

  • While doing LSMW standard method for Customer master creation..

    while doing LSMW standard method for Customer master creation.....
    In 13th step I am getting this king of error
    FB012                    Session 1 : Special character for 'empty field' is /
    FB007                    Session 1 session name ZPROJ was opened
    FB109                    Trans. 1 : Transaction xd01 is not supported
    FB016                    ... Last header record ...
    FB014                    ... BKN00-STYPE 1
    FB014                    ... BKN00-TCODE xd01
    FB014                    ... BKN00-KUNNR
    FB014                    ... BKN00-BUKRS
    FB014                    ... BKN00-VKORG A1
    FB014                    ... BKN00-VTWEG 00
    FB014                    ... BKN00-SPART 0
    FB014                    ... BKN00-KTOKD
    FB014                    ... BKN00-KKBER BP01
    FB013                    ....Editing was terminated
    Can anyone help how to solve this?

    Hello TJK,
    <b>FB012 Session 1 : Special character for 'empty field' is /</b>
    This is the special function in LSMW, for empty field system will put / sign automatically, so you need not to worry about that.
    <b>FB007 Session 1 session name ZPROJ was opened</b> It is opening session ZPROJ which is your project name/object name.
    <b>FB109 Trans. 1 : Transaction xd01 is not supported</b>
    Check out your field mapping and conversion rule for object.
    <b>FB013 ....Editing was terminated</b>
    It is not finding proper field mapping rule / file inputs so the sytem terminates the LSMW object.
    Check your field mapping and conversion rule, check your source fields, save the file in tab delimited format.
    Hope this helps.
    Regards
    Arif Mansuri

  • Is there any native method for converting String value to Hungarian notat..

    Hello. there.
    This might be very simple question. but I'm just curious about this.
    I am wondering if Java API offer the any native method for converting uppercased string value to lowercase which obey the Hungarian notation.
    What I'm going to do is using Reflection for excuting RFC function on SAP. I was found it is very similar to JDBC Programming.
    Please refer to blow codes.
    //mTable
    JCoTable mTable = function.getTableParameterList().getTable(rtnTblNm);
        for (int i = 0; i < mTable.getNumRows(); i++) {
         mTable.setRow(i);
         HashMap tmpData = new HashMap ();
              for (int j=0; j < mTable.getNumColumns(); j++) {
                     // I want to set key String [userNo] instead of  [USER_NO] here.
              tmpData.put(mTable.getMetaData().getName(j).toLowerCase(), mTable.getString(j));
              result.add(tmpData);
    } Basically, The idea was from ibatis framework [com.ibatis.common.beans.classInfo] dropcase();
    Any idea would be very helpful for me. Thank you.
    Edited by: hosung.seo on Aug 30, 2009 10:42 PM
    Edited by: hosung.seo on Aug 30, 2009 10:50 PM

    ejp wrote:
    Hungarian notation is a representation of logical/arithmetic expressions in postfix form. Not what you're talking about.
    So your title is very confusing to the people here who know what it means, which is probably all of them, because people read threads based on their title.From now on, I will pay more attention when I post an question.
    If the titile as " +Is there any native method for converting String value to camelcase?"+ would be easier to what i'm pointing at.
    As I mentioned in above sorce code, converting [USER_NO] to [userNo] isn't relevant Hungarian notation. yes, it was ambiguous. Agree! :)
    But some answer wasn't fit to converting case or recognizing "underscore" delimiter. I was expecting toCamelCase() such as blew. Thanks.
        public static String toCamelCase(String name) {
            String lowerName = name.toLowerCase();
            String[] pieces = lowerName.split("_");
            if (pieces.length == 1) {
                return lowerName;
            StringBuffer result = new StringBuffer(pieces[0]);
            for (int i = 1; i < pieces.length; i++) {
                result.append(Character.toUpperCase(pieces.charAt(0)));
    result.append(pieces[i].substring(1));
    return result.toString();

  • Standard method of storing config info in an EJB application

    HI,
    What is the standard way of storing config information in an EJB application?

    Open source GlobalEnvironment at http://www.acelet.com/opensource/index.html.
    Also, you can use SuperEnvironment, a GUI, to manage it:
    http://www.acelet.com/super/SuperEnvironment/index.html.
    SuperEnvironment also has a plug-in for Netbeans.

  • Standard program for uploading budget values in expenses

    Hi Experts,
    can u please tell me the standard program to upload budget values in Expenses
    thanks & regards..
    Narendra

    Hi,
    This is a sample program to upload through excel sheet.
    Check this code to upload vendor master through SHDB transaction.
    report ZVEND_MST no standard page heading line-size
    255.
    *include bdcrecx1.
    *parameters: dataset(132) lower case default
    'c:\vend.mst'.
       DO NOT CHANGE - the generated data section - DO
    NOT CHANGE    ***
      If it is nessesary to change the data section use
    the rules:
      1.) Each definition of a field exists of two lines
      2.) The first line shows exactly the comment
          '* data element: ' followed with the data
    element
          which describes the field.
          If you don't have a data element use the
          comment without a data element name
      3.) The second line shows the fieldname of the
          structure, the fieldname must consist of
          a fieldname and optional the character '_' and
          three numbers and the field length in brackets
      4.) Each field must be type C.
    Generated data section with specific formatting -
    DO NOT CHANGE  ***
    data: begin of record,
    data element: LIF16
            LIFNR_001(016),
    data element: BUKRS
            BUKRS_002(004),
    data element: EKORG
            EKORG_003(004),
    data element: KTOKK
            KTOKK_004(004),
    data element: NAME1_GP
            NAME1_005(035),
    data element: SORTL
            SORTL_006(010),
    data element: LAND1_GP
            LAND1_007(003),
    data element: SPRAS
            SPRAS_008(002),
    data element: BSTWA
            WAERS_009(005),
          end of record.
    End generated data section ***
    DATA : ITAB TABLE OF RECORD WITH HEADER LINE.
    start-of-selection.
    *perform open_dataset using dataset.
    *perform open_group.
    *do.
    *read dataset dataset into record.
    *if sy-subrc <> 0. exit. endif.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\VENDOR.TXT'  
    "TEXT FILE
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = ITAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT ITAB.
    *In Loop Change Record With ITAB
    like record-lifnr_001 with itab-lifnr_001 
      perform bdc_dynpro      using 'SAPMF02K' '0100'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_field       using 'RF02K-LIFNR'
                                  record-LIFNR_001.
      perform bdc_field       using 'RF02K-BUKRS'
                                  record-BUKRS_002.
      perform bdc_field       using 'RF02K-EKORG'
                                  record-EKORG_003.
      perform bdc_field       using 'RF02K-KTOKK'
                                  record-KTOKK_004.
      perform bdc_dynpro      using 'SAPMF02K' '0110'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-SPRAS'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_field       using 'LFA1-NAME1'
                                  record-NAME1_005.
      perform bdc_field       using 'LFA1-SORTL'
                                  record-SORTL_006.
      perform bdc_field       using 'LFA1-LAND1'
                                  record-LAND1_007.
      perform bdc_field       using 'LFA1-SPRAS'
                                  record-SPRAS_008.
      perform bdc_dynpro      using 'SAPMF02K' '0120'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-KUNNR'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0130'.
      perform bdc_field       using 'BDC_CURSOR'
                                  'LFBK-BANKS(01)'.
      perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
      perform bdc_dynpro      using 'SAPMF02K' '0210'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB1-AKONT'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0215'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB1-ZTERM'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0220'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFB5-MAHNA'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_dynpro      using 'SAPMF02K' '0310'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'LFM1-WAERS'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '/00'.
      perform bdc_field       using 'LFM1-WAERS'
                                    record-WAERS_009.
      perform bdc_dynpro      using 'SAPMF02K' '0320'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RF02K-LIFNR'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=ENTR'.
      perform bdc_dynpro      using 'SAPLSPO1' '0300'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=YES'.
      perform bdc_transaction using 'XK01'.
    endLOOP..
    Check It, Activate it and process in SM35.

  • Standard extractor for forecast & consumptions values (prow and mver table)

    Hi All,
    Is there any SAP BI standard extractor for forecast and consumptions data ?
    For information,
    ECC6 Forecast table : PROW.
    ECC6 Consumptions table : MVER.
    Thx.
    radj.
    Edited by: Radjech Radjech on Jul 27, 2011 11:13 AM
    Edited by: Radjech Radjech on Jul 27, 2011 11:25 AM

    I have created a generic extractor, in the past, with the FEBEP table. However, my requirement was to join it with the BSID and BSAD tables in order to determine payments that have been received into the lockbox but not cleared, so that the Credit Department has a more up-to-date look at customer accounts.
    If you have multiple companies you could end up with a Cartesian product when the data for this view is rendered because the Accounting Document and Fiscal Year don't uniquely identify records in BSEG and BKPF. Additionally, you wouldn't know exactly which Accounting Document Line Item is the correct record on BSEG. Both of these cases are potential sticky points for both a custom view or User Exit in CMOD, unless you've been given by the end customer a way to mitigate these. For instance, you may be able to derive the Company Code for the FEBEP entry by using the Cost Center or Profit Center, unless your Cost Centers or Profit Centers can span across companies.

  • What is the best method for storing/retrieving images?

    Friends,
    OS: RHEL AS 3
    DB: 9iR2
    We have some critical situation. We need to scan all our Purchase orders and to store in our pc. we don't want to store the images in the database. it will be a big headache. We have 4 branches in different cities. All the branches are connected to our local network. We have novell server in every branches to store the oracle forms and the db is centralized in our head office. The purpose is to view any PO in any branch.
    so,what will be the best solution for storing the images for our archiving?
    thanks & regards

    Yes - a good quality external hard drive is the answer
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • Webdynpro abap-method for saving updated values in new database table

    Hi Experts,
    I am creating an ALV  application in weddynpro abap where i have given update button to update fields & save button to save values in mastertable,but whenever i am updating & saving ,it will overwrit previous values. For this,I need  to create a separate method to save the updated values of the fields in a new database table.
    Looking forward for solutions.
    Thank You!

    becuase of the below statement u r getting the error
    insert into ZTAB_CS_ISSSAL values Item_Dates.
    u declared the field Item_Dates as Stru_Issuesal-DATES
    and u were trying to inesrting the record in the table ZTAB_CS_ISSSAL with the field Item_Dates
    the error is related to the compatible.
    so declare work area for updating the table should be of type ZTAB_CS_ISSSAL.

  • Table name for storing condition value determined for Transactions

    Hi,
    For a routine that we need to write for pricing procedure, we need to pick up the value of the condition record that gets determined in any order.
    We were not able to find this table name.
    Any pointers?
    regards,
    Jaya

    >
    Jaya Nigam wrote:
    > Hi,
    > For a routine that we need to write for pricing procedure, we need to pick up the value of the condition record that gets determined in any order.
    >
    > We were not able to find this table name.
    > Any pointers?
    > regards,
    > Jaya
    Hi Jaya,
    It will be really helpful if you tell the business requirement.
    However you can use the following code snippet to loop the conditions.Hope this helps.
    IPricingItemUserExit prItem
    used in method calling as an parameter
    java.util.Vector conditions =prItem.getConditionsWithoutInvisible();
    for (int i = 0; i < conditions.size(); i++)
    IPricingConditionUserExit cond =
                                       (IPricingConditionUserExit) conditions.get(i);
    Warm Regards,
    Sumit

  • Need example of delimiter of Scanner method for breaking the values

    Please give me an example of the delimiter method of Scanner class from which I can break up a value for example
    if a user enters from scanner credit card number 12-56789-8990 "-" dash must occur in between. like this format xx-xxxxxx-xxxxx-xx.

    Guess what, there's a discussion going on about the very same topic here.
    You wouldn't happen to have two user accounts for flame-free cross posting, would you?
    db

  • Method for measuring low value of RPM using counters

    I need to measure frequency of low values,which is the best for obtaining a low value of RPM,the hardware used is NI-PXI 6602 card.

    There are examples written for measuring the frequency of TTL signals. If you are using LabVIEW, you can search the data acquisition examples and you will find a separate folder for counters (...Program Files\National Instruments\LabVIEW\examples). There will be a NI-TIO.llb which will contain all examples you can use with the NI 6602. There is a Measure Frequency VI that will work for you. For text-based programming environments, there will be examples installed within the ...\Program Files\National Instruments\NI-DAQ\Examples directory. I hope this helps.
    Regards,
    Todd D.
    Applications Engineer
    National Instruments

  • Method for storing a session id that works on all browsers

    How do I store a simple text session id on the browser, and makes sure it works on all browsers? Cokies can be turned off, and it does not work on WAP phones at all. URL-rewrinting is souch a clumpsy method, I think.
    Is it possible to make my own HTTP header, and if I do, will it be possible to retrive this header from the browser in the next request?

    nope, http headers are lost once returned to the browser. You can add a hidden field with the session id to the form.

  • Which is better storing string values in Map or String buffer

    Hi,
    I have a store a 10 string values in a cookie. Do i use a String buffer and append all values or put it in a hash map.
    If i put in a string buffer i have to use a string tokenizer to loop and extract the values., but if i am using a map then
    retrieval will be easier, but in terms of memory management, which is better. as i have to create this cookie for every unique IP hitting my site.
    Thanks,
    Viiveek

    viiveek wrote:
    I have a store a 10 string values in a cookie. Do i use a String buffer and append all values or put it in a hash map.
    If i put in a string buffer i have to use a string tokenizer to loop and extract the values., but if i am using a map then
    retrieval will be easier, but in terms of memory management, which is better. as i have to create this cookie for every unique IP hitting my site. In terms of memory management, StringBuffer could potentially be better as there is no need to keep key objects in memory.
    That doesn't make it a good idea. The bytes of memory you'd lose by using a Map would be made up by the fact that Map was expressly made for storing key/value pairs. Memory management should be about the 200th factor you should consider.

  • Recommendation for storing/archiving AVCHD material

    I'm sure this isn't a new question but after a bit of searching I still wasn't able to find it on this forum.
    I have one of the newish Sony consumer cameras with flash memory. I use Log and Transfer in FCE to import the footage and that's all good. However I have noticed that when I use the Sony software that came with the camera to import the footage (Windows only) the files end up being a lot smaller. Unfortunately I can't use these files with FCE and there are plenty of posts on this forum detailing why not.
    My question is: what is the "best practice" method for storing/archiving AVCHD footage? If I keep the .MOV files that FCE creates then I will be storing 4 or 5 times as much data as the .MTS (and related files) created by the Sony software supplied with the camera. So should I be importing the footage twice - once into FCE and once in Windows - and archiving the smaller (Windows/Sony) files? If I do this then how can I get FCE to recognise them if I ever need the source files again - do I have to transfer them back to the camera or use a third party product to convert them? What do others do?

    I back up the entire original AVCHD folder off the camera onto another hard drive. Store and maintain like an iTunes library of MP3 files. You can rename the top-level AVCHD folder as long as all the subfolders remain intact. Those files are about 1/10th the size of the ingested footage and a lot more manageable. In fact, I never actually log and transfer from the camera itself. Just copy the files to backup immediately, then mount whatever folder applies. I also keep a final uncompressed QuickTime movie of each "finished" project. Eventually, I toss the ingested footage for older projects. This means it would be somewhat difficult to go back and rebuild an older project, but I'm personally more of a "done and next project" person. Others might not be. AVCHD footage takes up no more disk space than than HDV once it's imported. It all gets converted to the much larger Apple Intermediate Codec for editing. Your decision is essentially whether you want to back up tapes or back up electronic files of your original media, and how long you want to keep the bloated AIC media on your drive for continual tweaking down the road. Either way, you'll likely want a couple large hard drives.

  • Standard report for leading prod. order with variance  value  & qty.

    Hi Gurus,
    I am searching for  a standard Tcode to get the variance value/Qty against all the leading production orders which are settled in a particular period.
    Note: If a leading production order contains more than one sub orders then the qunatity of sub orders should merge with the leaing order and all the variance from individual sub orders should also merge with the leading production order.
    Please suggest the tables and fileds are used for storing the leading and non leading production order and its corresponding Planned/Actual and Variance values.
    Please guide me.
    Regards,
    Ramakant.

    Hi,
    Thanks for your early response.
    Actually i am unable to use tcode: KKBC_ORD rather able to use KKBC only.
    Using KKBC (Target/actual/production variance) and activating collective order from setting option only able to see the details for a particular leading production order only relating toa  particular period .
    My requirement is to display all the production orders settled in a particular period along with (Material code /order number/ Qty/Actual value and variance value).
    Note: If any leading order exists then that should be collective order i.e.(value and Qty should come against the leading order number).
    If there is any standard tcode exists please let me know else provide the tables and logic to bui;d up such a report.
    Regards,
    Ramakanta

Maybe you are looking for

  • How can I record a route on OVI Maps?

    I have done this before so I know it can be done. I just forgot how I did it. So here's what I did, I started driving from my house and told ovi maps to calculate my route when I reached my destination I said stop navigation(or something on those lin

  • Adobe InDesign CS6 (8.1.0) update Installation failed. Error Code: U44M1P7

    Can anyone guide me on how to resolve this error code: U44M1P7?

  • FDK 9 will not open file

    I have a c api I created to create a book with a template it copies FM files from a templete folder and renames the book and documents form a text file with the name it will be using. The problem is the api will not open the text file, I keep getting

  • Network Password not accepted, works on other computers

    We have an Airport extreme (looks like a UFO). Everything worked fine last night, but this morning our MacBook Pro cannot join the network because the password times out - Have rebooted both computes and Airport, no success. Other computers in the ho

  • File browsing

    Hello everybody! I'm new to java but i want to start to learn to create some applications for mobile phones. I have some ideas for a project to train on, so i have 2 questions which are more about the access and possibilities which java ME can give t