ETRS89 / Portugal TM06

Hello, I'm trying to add the EPSG:3763 coordinate system, but I'm not able to do so.
Using the following:
INSERT INTO mdsys.cs_srs
VALUES ('ETRS89 / Portugal TM06',
3763,
3763,
'EPSG',
'PROJCS["ETRS89 / Portugal TM06", GEOGCS["ETRS89",DATUM["European Terrestrial Reference System 1989", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6258"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["Degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH],AUTHORITY["EPSG","4258"]],PROJECTION["Transverse Mercator", AUTHORITY["EPSG","9807"]],PARAMETER["Central_Meridian", -8.133108333333334], PARAMETER["Latitude_of_Origin", 39.66825833333334], PARAMETER["Scale_Factor", 1.0], PARAMETER["False_Easting", 0.0],PARAMETER["False_Northing", 0.0], UNIT["Meter", 1], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","3763"]]',
NULL);
Any ideas how to add new EPSG?

After some research I came out with the following script, what do you say?
Does it seems nice?
--EPSG:3763
PROJCS["ETRS89 / Portugal TM06",
          GEOGCS["ETRS89",
               DATUM["European Terrestrial Reference System 1989",
                    SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]],
                    TOWGS84[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
                    AUTHORITY["EPSG","6258"]],
               PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]],
               UNIT["Degree", 0.017453292519943295],
               AXIS["Geodetic longitude", EAST],
               AXIS["Geodetic latitude", NORTH],
               AUTHORITY["EPSG","4258"]
          PROJECTION["Transverse Mercator", AUTHORITY["EPSG","9807"]],
          PARAMETER["Central_Meridian", -8.133108333333334], --8802
          PARAMETER["Latitude_of_Origin", 39.66825833333334], --8801
          PARAMETER["Scale_Factor", 1.0], --8805
          PARAMETER["False_Easting", 0.0], --8806
          PARAMETER["False_Northing", 0.0], --8807
          UNIT["m", 1.0],
          AXIS["Easting", EAST],
          AXIS["Northing", NORTH],
          AUTHORITY["EPSG","3763"]
--- SDO_COORD_OPS
INSERT INTO MDSYS.SDO_COORD_OPS (
COORD_OP_ID,
COORD_OP_NAME,
COORD_OP_TYPE,
SOURCE_SRID,
TARGET_SRID,
COORD_TFM_VERSION,
COORD_OP_VARIANT,
COORD_OP_METHOD_ID,
UOM_ID_SOURCE_OFFSETS,
UOM_ID_TARGET_OFFSETS,
INFORMATION_SOURCE,
DATA_SOURCE,
SHOW_OPERATION,
IS_LEGACY,
LEGACY_CODE,
REVERSE_OP,
IS_IMPLEMENTED_FORWARD,
IS_IMPLEMENTED_REVERSE)
VALUES (
3763,
'ETRS89 PT-TM06',
'CONVERSION',
NULL,
NULL,
NULL,
NULL,
9807,
NULL,
NULL,
NULL,
'EPSG',
1,
'FALSE',
NULL,
1,
1,
1);
--SDO_COORD_OP_PARAM_VALS
--      PARAMETER["Central_Meridian", -8.133108333333334], --8802
--          PARAMETER["Latitude_of_Origin", 39.66825833333334], --8801
--          PARAMETER["Scale_Factor", 1.0], --8805
--          PARAMETER["False_Easting", 0.0], --8806
--          PARAMETER["False_Northing", 0.0], --8807
--8801     Latitude of natural origin     9102     degree
INSERT INTO mdsys.SDO_COORD_OP_PARAM_VALS (
COORD_OP_ID,
COORD_OP_METHOD_ID,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID)
VALUES (
3763,
9807,
8801,
39.66825833333334,
NULL,
9102);
--8802     Longitude of natural origin     9102     degree
INSERT INTO mdsys.SDO_COORD_OP_PARAM_VALS (
COORD_OP_ID,
COORD_OP_METHOD_ID,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID)
VALUES (
3763,
9807,
8802, -- param
-8.133108333333334, --valor
NULL,
9102); --unidades
--8807     False northing     9001     metre
INSERT INTO mdsys.SDO_COORD_OP_PARAM_VALS (
COORD_OP_ID,
COORD_OP_METHOD_ID,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID)
VALUES (
3763,
9807,
8807, -- param
0.0, --valor
NULL,
9001); --unidades
--8805     Scale factor at natural origin     9201     unity
INSERT INTO mdsys.SDO_COORD_OP_PARAM_VALS (
COORD_OP_ID,
COORD_OP_METHOD_ID,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID)
VALUES (
3763,
9807,
8805, -- param
1.0, --valor
NULL,
9201); --unidades
--8806     False easting     9001     metre
INSERT INTO mdsys.SDO_COORD_OP_PARAM_VALS (
COORD_OP_ID,
COORD_OP_METHOD_ID,
PARAMETER_ID,
PARAMETER_VALUE,
PARAM_VALUE_FILE_REF,
UOM_ID)
VALUES (
3763,
9807,
8806, -- param
0.0, --valor
NULL,
9001); --unidades
INSERT INTO MDSYS.SDO_COORD_REF_SYSTEM (
SRID,
COORD_REF_SYS_NAME,
COORD_REF_SYS_KIND,
COORD_SYS_ID,
DATUM_ID,
GEOG_CRS_DATUM_ID,
SOURCE_GEOG_SRID,
PROJECTION_CONV_ID,
CMPD_HORIZ_SRID,
CMPD_VERT_SRID,
INFORMATION_SOURCE,
DATA_SOURCE,
IS_LEGACY,
LEGACY_CODE,
LEGACY_WKTEXT,
LEGACY_CS_BOUNDS,
IS_VALID,
SUPPORTS_SDO_GEOMETRY)
VALUES (
3763,
'ETRS89 / Portugal TM06',
'PROJECTED',
4400,
NULL,
6258,
4258,
3763,
NULL,
NULL,
NULL,
'EPSG',
'FALSE',
NULL,
NULL,
NULL,
'TRUE',
'TRUE');

Similar Messages

  • Dunning Letter Report for Portugal

    Hi All
    For Dunning Letter Portugal language rdf file made some changes in layout like removing break for credit
    and debit transactions and moving address field to right side
    But fields from Dunning letter setup in applications (first line) is getting truncated to half even after redoing changes it is behaving
    in similar way any hints on fixing this issue will be helpfull
    Thanks
    Kamalakar.G

    Hi Husain...Thanks for immediate response. There is already data being pulled by standard function modules like PRINT_DUNNING_NOTICE(copied into Z). Can we use that in simpler way(without the need of any new driver program with all the data population again)? And your answer is correct which I already thought earlier and kept it as a last resort, because I need to populate all the data again, convert spool to pdf and send pdf's to all selected customers And one more thing is that the requirement is to schedule a background job which takes care of sending all the emails . So any more ideas?

  • SNC - Sistema de Normalização Contabilistica - Portugal

    Bom dia,
    No decorrer deste ano foi aprovado em concelho de ministros o novo Sistema de Normalização Contabilistica, que entrará em vigor no inicio do ano de 2010 em Portugal.
    Alguem tem a noção dos impactos e que metodologias se deverá aplicar para que a transição para esta nova realidade se efectue de forma pacifica?
    Terá a SAP alguma estratégia para a alteração para esta nova realidade? (tenho conhecimento da ferramenta SLO - system landscape optimization, para a alteração do plano de contas, mas esta nova abordagem não se resume á alteração do plano de contas, mas sim a um conjunto de principios contabilisticos que deverão ser repeitados pelas empresas).
    Qual a vossa opinião sobre este assunto?

    Oi Jackson
    Sugiro você dar uma olhada nas best practices.
    http://service.sap.com/bestpractices
    Selecione baseline packages > Portugal > Technical > Content Library
    Ali você vai achar o guia de configuração, fluxo do processo e procedimento de negócio para todos módulos e processos de negócio suportados.
    * vale também para outros países inclusive o Brasil.
    Abraço
    Eduardo Chagas

  • I live in Sweden and Portugal, can I have two apple accounts one for each country?

    Hi,
    I need your help, at the present moment I devide my time between two countries Sweden and Portugal, my Apple acoount is based in sweden, my question is can I open an account in Portugal and keep the Swedish account or i am only allowd an account?

    yes
    you can open your apple  account  any where

  • How can I send a complaint to apple Portugal?

    I sent my ipad for repair through a dealer shop in Portugal, because it is still under warranty.
    After 15 days, I was forced to move to the shop to be informed that the tracking system was active and apple could not repair the device.
    When the shop assistant turned it on, it was found that this function had already been disabled , which I confirmed in my icloud later.
    Basically I was forced to send the ipad, once again, for repair because it continues without charging (in fact he had no battery , it only worked because plugged in, now) and I have to wait another 30 days to recover it, because it was opened a new process.
    Given that they had all my contacts, it's ridiculus they had not told me, because I could easilly turned off the location function at home in the iCloud, and they could repair the ipad while they had it. Saving all this trouble!
    This leads me to believe that you apple is slowing down the process for the warranty period to pass, and I end up with a damageded device.
    Apple is acclaimed for the quality of its products , which is why people expend a lot of money to bying them, it's a disappointment to be treated this way.
    Even worse, Is that it does not have an adequate email for which I can complay properly .

    http://www.apple.com/support/itunes/contact/

  • Is it possible for me to buy an iPhone 4S in Malaysia and use it in Portugal?

    I would like to know if an iPhone 4S purchased in Malaysia will work here in Portugal, using Portuguese Network.
    Thanks

    If you purchase an officially unlocked iPhone, directly from Apple, it will work, but again, unless you purchase the phone in Portugal, you won't have any warranty or support in Portugal.

  • Update sales employee for Portugal

    This functionality is available for Spain and this request is for Portugal as this is not available for that localization.
    Functionality requeted consisted on updating sales employee data for Portugal,  so you can change the sales employee or buyer data for all the documents listed  below at any time (including after the document is closed), at both document and row level.
    Documents:
    A/R Invoice & A/P Invoice
    A/R Down Payment Request & A/P Down Payment Request
    A/R Down Payment Invoice & A/P Down Payment Invoice
    A/R Reserve Invoice & A/P Reserve Invoice
    A/R Credit Memo & A/P Credit Memo
    Delivery & Goods Receipt PO
    Return & Goods Return
    If the change is done at the document level, a message asking the user whether to apply the change on the rows should appear.

    Hola Carmen,
    That functionality is available since B1 2007A SP01 PL07. Please check SAP Note 1369615 for more information.
    Please visited the LEGAL REQUIREMENTS AND IMPORTANT CORRECTIONS Channel Portal page regularly to check for important changes.
    ¿Vale?
    Regards,
    Vítor Vieira

  • Traveling to Portugal --  Adapter/Converter Recommendations??

    I'm traveling to Portugal and I need to be able to charge my MacBook while I'm there. I went ahead and did some pretty superficial research that told me to buy both an adapter and a converter so that I don't fry my laptop. However, the converters I've found (which converts 220/240V AC to 110/120V AC) say they should only be used with heat appliances, not computers, and not for extended periods of time. Can anyone recommend an adapter, converter, or both that will allow me to charge my comp overseas without killing it based on personal experience (even if it's from RadioShack or Best Buy, etc.)?

    The power adapter that is provided with your Apple computer will handle a range of AC input voltage (100-240) and line frequencies (50-60Hz). The AC power in Portugal falls into this range, and you do not need to buy a power converter. You might have to buy an AC prong adapter, and it's cheapest to buy one after you arrive at your destination.

  • App Store - App available in Portugal's App Store only - Can't buy it

    I have recently purchased the Wall Climbing car iW500 iSpace from Weccan on a Chinese website. The package arrived today and I can't get the app on the App Store.
    I live in Brazil and up until today I have been using the U.S. iTunes Store. Brazil's iTunes Store has just been created.
    After I Googled the app online, I found a link to the iTunes App Store in Portugal, but iTunes says I can't use my Apple ID to get it because I'm only supposed to buy stuff in Brazil's store.
    Can someone help me out?
    It's supposed to be a X-mas present for my 6-year-old son.
    Tx,
    Erick

    You credit or debit card credentials must be associated with same country where you purchase iTunes media.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching the billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations, although it’s worth nothing that features like iTunes in the CLoud and iTunes Match are designed to work best when using a single iTunes Store account, as you can only switch accounts with these services every 90 days."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • VAT declaration of Portugal (Anexo i)

    Anybody nows how to excecute the anexo i in the vat declaratioon of Portugal in the report RFUVPT00.
    I have applied a note 1167985 but the anexo does not apper in the file.
    Thank you very much in advance

    Dear friend,
    Please refer the below note.
    SAP Note 849459
    Reg
    Madhu M

  • Anual VAT Declaration Portugal - Anexo L

    Hello,
    I'm customizing the system for the anual VAT declaration for Portugal, and I have a doubt about the ANEXO_L_M, because the in the tcode DMEE for the Tree Type UMS3 i don't have format tree PT_ANEXO_L_M.
    I saw the note 1177103 where one of the manual steps is to upload this tree, but this corrections are already delivered in Support package SAPKH60303, and we have the support package SAPKH60306 installed.
    Shouldn't this format tree already been in the system?
    Best Regards,

  • Portugal Payment medium format - PS2 - configuration and custom program

    Hello,
    this is my first post here, so first of all "hi!" and second, sorry if this thread isn't in the right forum.
    I need to do a custom copy of the PS2 payment medium format, which is used in Portugal. It would be a short development, I just need that the line starting with ":08:" only appears when using a pre-defined payment method.
    I've seen that in the FBZP tcode, in the "Pmnt method in company code" customizing point, at the bottom there is this section, "Payment medium", where you can inform the Format (which it should be PS2) or the payment medium program (i think that for Portugal it's RFFOM100). You can only inform one option. Which one do you recommend? (I'm more used to work with purchase orders, so this are my first steps in the payment program)
    So my question is, in order to do this custom code, should it be a copy of the PS2 format (ZPS2?) or a copy of the RFFOM100 program? In any case, where can i look for the code section where to replace the standard SAP code for our custom program?
    Thank you very much!
    Warm regards,
    Gustavo

    Hi Gustavo,
    If you take a look in FBZP - Payment Method Country, you will see a "Payment Mathod" section. There you will have 2 payments programs type: Paymt Medium Workbench (PMW) and Classical.
    PS2 payment medium format is only used for PMW type and RFF* for Classical PM. These work to print and execute payments through F110.
    In my understading you should use PS2 because is the original need on your question.
    I hope I help you. Reply me if you have more questions.

  • Cash discount in Portugal

    Hello,
    I am currently implementing SBO in Portugal, they are using a lot the cash discounts, exactly as discounts linked to payment terms.
    I have been told that for legal reason the cash discount can not be set up as it is used to be via payment terms in SBO since it is mandatory to create  credit notes for cash discount.
    Could anyone confirm me the right of way of doing for Portugal ?
    Thanks

    Hi!
    You can use the Discount field available at Payment Screen Row Level.

  • How can I order a Blackberry in Portugal?

    How can I order a Blackberry in Portugal? Blackberry shop doesn't give me a option

    No, I am guessing that's the price.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • What do I have to do to order a photo book from Portugal? There is no photo service in Portugal!!!

    I'm living in Portugal and I have created a photo book with iPhoto 11 with all the instructions in Portuguese. When I was about to order it, I couln't finish my order because there no photo service in Portugal. I'm very disappointed !! There is any possibility to order it from Spain? What do I have to do?

    I have requested a moderator move your thread from the MacBook Pro forum.   There is a separate iPhoto forum.  This is a user to user forum, thus no one can really guess Apple's policy here.   It may depend entirely on the internet provider's location that you are connected to, or it may depend on the iTunes Store settings or Mac App Store settings.  There is this support page for ordering albums.  One for the Spanish store, and one for the Portuguese store below:
    http://store.apple.com/es/help/print_products
    http://store.apple.com/pt/help/print_products

Maybe you are looking for

  • Photoshop CC 2014 closes when start up for a few seconds

    Hi, When I try to open the Photoshop CC 2014. It will close after it has started up for a few seconds without any error message dialog in the Photoshop or error log in Event Viewer. I have just subscribed for the package Photoshop & Light Room combo

  • Upon start-up, i get flashing icons...

    first a globe, then a folder "face" and question mark that repeat for a while before the regular apple icon comes up. what does this mean and what can i do to fix it?

  • Multithreaded graphics applet gets NullPointerException

    Hi! This is a complex issue and the code's big, so i'll try to explain the main part. I have five classes. AppletClass (this one extends Applet) GraphicItem (just a little sprite which can draw itself) Thread1 (draws a bunch of GraphicItems in backgr

  • Solaris 2.5 x86

    Running solaris 10 on new machine. Have older x86 software I would like to bring into use. Does anyone know if versions older than 8/9 are available to download (free). ?v2.5 Thanks, HH

  • Error in settlement CJ88

    Hello All, Good Day! I have encountered error while running CJ88 WBS settlement, according to it: "Data Inconsistency: Parallel depr. area is not posted" Message no. AAPQ104 What is the possible cause of this? Please advice. Thanks in advance! Jhero