Can I have a developer Key?

Hello,
I activated the SAP HANA Insurance, but I need one developer Key. How can I have a developer Key?
Is possible create the CDS or view table inside Hana database with this istance?
Thank in advance.
Best Regards,
Marino

Hello Marino,
in case you would like to use the systems for a Proof of concept and actually use your own data, you would have to purchase the SAP Cloud Appliance Library Subscription license first and then you can use the systems with the software with your own licenses.
Trial systems can not be used for a PoC or a prototype or with your own data. These are explicitly excluded from trials in the Terms and Conditions already.
for further details see the FAQ
http://scn.sap.com/docs/DOC-58120
regards
Ingo Hilgefort

Similar Messages

  • How can I delete a developer key?

    Hi people!
    In R/3 where or how can I delete a developer key?
    Thanks!

    Why do you want to delete Developer Key ?
    Table name is DEVACCESS.
    Thanks
    Seshu

  • Can I have a primary key as a non-unique column

    Hi all,
    I have a table with 35 columns and only one column in a not null column. But this column data is not unique. I want to create a primary key with non-unique index, can I don it, if it is not possible is there any other way to it. Please help me with this.
    Thanks for your help.vinaykotha

    1) Do the 'Unique Column combination' check first, using this example. (Pl. Change the column name and number of columns you consider as candidate key.) The SQL as follows:-
    ;WITH CTE (ProductKey, CustomerKey, SalesTerritoryKey, DupRec)
     AS
      (SELECT ProductKey, CustomerKey, SalesTerritoryKey, ROW_NUMBER() OVER
         (PARTITION BY ProductKey, CustomerKey, SalesTerritoryKey
          ORDER BY ProductKey, CustomerKey, SalesTerritoryKey) AS DupRec
       FROM dbo.FactSales 
    SELECT *
    FROM CTE
    WHERE DupRec > 1
    2) if CTE Table returns no records, you are good to create a Composite CLUSTERED PRIMARY KEY, like:
    ALTER TABLE dbo.FactSales
    ADD CONSTRAINT PK_ProductKey_CustomerKey_SalesTerritoryKey 
    PRIMARY KEY CLUSTERED (ProductKey, CustomerKey, SalesTerritoryKey);
    If no error..bingo! if NOT, Don't worry, create a Composite Index like this:-
    3)
    CREATE NONCLUSTERED INDEX [IX_ProductKey_CustomerKey_SalesTerritoryKey] 
    ON dbo.FactSales(ProductKey, CustomerKey, SalesTerritoryKey);
    This will work still efficiently. Usually all transaction table are like that like Daily_Order table, Ship_Details table etc.
    -NC

  • How can I have a shortcut key that is not a JMenuItem

    Hi,
    I'm trying to make "ctrl-f" a shortcut key in my program.
    I know I can do this as a JMenuItem by:
    menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F, KeyEvent.CTRL_MASK));
    However, I would rather not have it in the menu.
    How would I do this without having it as a JMenuItem?
    Thanks,
    Daniel Lorimer

    As a user I hate designs like this. How am I supposed to know what all the shortcut keys are? Using a menu item is a form of self documentation
    Anyway, check out the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/misc/keybinding.html]How to Use Key Bindings.

  • About the use of the developer key

    I am a newbie to Flash :[
    I am trying to create a multi-player game and I found a VideoPhone sample that each client must have a key.
    But in this forum, I found a MMORPG that do not need any key for login.
    How can I do to implement this?

    The video phone example in the Adobe lab ask us to enter the developer key to start the connection and to call others.
    But I want to make a game which doesn't need the users to have a developer key. The users can simply type a name and then the game will start the connection automatically. How can I implement this?
    Do I need to get a number of developer keys for distributing to the users when the users login?
    Or, only one developer key is okay to implement it?

  • Developer key issue

    Hi,
    all please let  me know it is possible we use one developer key two system.we have same sid and same host name and it is install same solman key.and same user name.
    Thanks
    kumar

    Hi,
    By registering a developer in service market place we will get a developer key. So it is depends on the customer number in SAP and the SID you are using when you are applying for the license in Market place.
    If you use same SID with the same customer number you can use the same developer key for two different installations.
    Thanks,
    Ven

  • Tool to generate SAP Developer key (exists)

    Dear Experts,
    I have incident here from our consultant who got a proper SAP Developer key. After few questions, we found out he got it via a tool which can generate a proper SAP developer key. I have checked in Marketplace SCCR, there was no record for his user ID's.
    Anyone ever encountered this incident? I still don't believed people can generate exact SAP Developer key (I registered his ID's from SAP Marketplace and more surprising got the same number). I just curious how this possible.
    Thanks a lot,
    Best Regards,
    Achmad

    Hi Glen,
    I am agree with you and raised complain to the consultant. I know there are some way to hack requirement for developer key but my current issue is he got the proper (exact) SAP developer key without generated via Marketplace. How that is possible?
    My opinion, only person who got in touch with SAP kernel developer (or hacker of SAP kernel) you know exactly how to generate SAP developer key.
    I just curious because this is the first time I got this incident from my 15 years SAP life. hacking ABAP program to avoid developer key are one thing, but generating proper and exact SAP developer key without marketplace is totally differently level of hacker.
    Best Regards,
    Achmad

  • DEMOSYSTEM and developer key

    Hi,
    I set up the DEMOSYSTEM, SAP NetWeaver 2004s Sneak Preview,  Full ABAP, on my computer. I want it can be used for development training. I would like to create different users with development rights. How to do so ? Is it possible ? I tried to copy the BCUSER, but such rights are not copied.
    A solution can be to create a client for each users, but it seems to be heavy.
    Does anyone know another way to develop on the DEMOSYSTEM with several users ?
    Thanks in advance.

    That's right, you can not get a developer key for this system.  You must use the supplied one for BCUSER.  You can however have more than one person log on at a time for training.
    Regards,
    Rich Heilman

  • Can we use SQL developer tool to READ/WRITE BerkeleyDB by any means

    We use Berkeley Db as a persistent database, which holds data less frequently changed data. Can is it possible to use SQL Developer tool or any other front end tool that can connect and communicate to Berkeley db file for INSERT, UPDATE, DELETE records.

    I assume you're referring to Berkeley DB SQL (BDB SQL API).
    SQL Developer is not certified to work with BDB SQL; see the SQL Developer Certifications page.
    Something similar was asked some time ago, about connecting JDeveloper to BDB SQL; see this Re: How connect Oracle JDeveloper 11g to Berkeley DB 11g. The SQL tools in JDeveloper and SQL Developer are similar and built on the same components, so my answer there can be extended to SQL Developer as well. While you can probably have SQL Developer properly connect to a BDB SQL database, I am afraid you won't be able to do more than just viewing the data; likely any attempt to generate DDL or DML statements, export data, or run DML statements against the database will fail.
    If you migrated to BDB SQL from SQLite and were using a front-end tool for SQLite, it should be possible to use that with BDB SQL as well.
    Regards,
    Andrei

  • How can I give me the access to create a developer key in the market?

    Hi!
    I'm new in the basis area and I don't have access to create a developer key. A consultant need a developer key.
    How can I give me the access in the market place to create it?
    Thanks!

    Hi
    You need to get the access key from SAP.
    Refer to the procedure of obtaining access keys from SAP in BASIS.
    Security
    Regards,
    Raj

  • The problem I have since I upgraded to Mavericks version 10.9.1 The problem appears only with Mail not with other programs, not even with my browser. When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command   to e

    the problem I have since I upgraded to Mavericks version 10.9.1
    The problem appears only with Mail not with other programs, not even with my browser.
    When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command + to enlarge the text, although I can reduce it with Command -.
    As I have a problem with my eyes, This is a serious matter for me.
    When I write an e-mail, if I select text and press Command +, it just displaces the text to the right.
    Now, my husband has a USB keyboard. If he connects it to my computer, his regular Command + does not work either, but  he uses the extended keyboard, then it works. Unfortunately, he needs it for a musical application which does not work with a wireless keyboard.

    Firefox 3.6.4 and 3.6.6 use a process called, "plugin-container.exe" which was using up most of my CPU when I opened up multiple tabs that contained Adobe Flash files, and caused Firefox to lock up.
    My solution was to use Firefox 3.5.10 which you can get from the Mozilla website at [http://www.mozilla.com/en-US/firefox/all-older.html]
    I am using Adobe Flash 10.1.53.64 without any problem in this version of Firefox. Check the release notes, I believe it contains all the latest security fixes in "Firefox 3.6.4".
    Hopefully, they will fix Firefox 3.6 in the next version (e.g. Firefox 3.6.7), until then you should probably use "Firefox 3.5.10".

  • I have lost Lightroom 5.6 due to a hard drive crash. The old hard drive has been replaced. How can I get LR5 back? I don't have a disc. I still have my LR4 disc and key. I have another adobe  key, but don't know if it relates to LR5.

    I have lost Lightroom 5 due to a crashed hard drive. I don't have a back up disc, and I dont think I have a key. I have a an adobe key recorded but don't know if it relates to LR5. I have an LR4 disc and key. LR5 is still intact and running on my laptop, but I need to use LR% on my desktop PC. I need an address to try a download so that I can try the key which might fit it. Any ideas how I can transfer the program (with key) from my laptop? Any other ideas?
    John Carden <[email protected]>

    Just download and install.
    you can find by internet search for "download Lightroom", or click here:
    https://creative.adobe.com/products/download/lightroom
    Note: trial software is same as licensed software, once you license it.. (I hope you still have the license key).

  • How many key fields can we have in a DSO?

    Hi,
    how many key fields can we have in a DSO.is it 16 or any number of key fields can be used? If only 16 are allowed pls let me know how to add more key fileds (my requirement is 21 keyfields) .
    Thanks in advance,
    Praveen

    Hi,
    Thanks for the reply. Pls let me know the procedure to include 5 more key fields because i have 21 keyfields which i have to use.
    Thanks&Regards
    Praveen

  • How can I have multiple instances of a column that itself holds a foreign key reference?

    I am new to Visual Studio so to start learning it I first of all downloaded a sample available at https://code.msdn.microsoft.com/ADPNET-Entity-Framework-2d1160cb and started working around it. Since I have fairly good knowledge of VB6 and SQL it did
    not take much time for me to understand the whole pattern the sample is based on. Had Microsoft given a detail explanation or a walk through of the sample it would have been much easier to understand the basics. However, I somehow managed to work around it
    and have build a small desktop application in wpf using Entity Framework and MVVM. But a point has come where I have got completely stuck up finding no way out. The problem is as under:
    I have two tables. 1 Advocate and 2 Party. Table Advocate would contain names of advocates and would have a primary key. Similarly Party would have names and their respective primary keys.
    Then I have another two tables 1. Case and 2 CaseDetail. Table Case would simply hold three columns: 1. CaseId 2. CaseNo and 3. Year. Table CaseDetail would have CaseDetailId as a primary key the CaseId as a Foreign Key. Now what I need is that a particular
    case could have multiple advocates and multiple petitioners. So the table CaseDetail would have two columns to hold advocateId and PartyId as a Foreign Keys. 
    If you look at the sample referred above you would not find how to deal with such a case. When I follow the pattern of the sample I get host of design time and runtime errors. 
    Therefore, please suggest what strategy should be adopted in a scenario described above while developing WPF application using Entity Framework and MVVM.

    I am new to Visual Studio so to start learning it I first of all downloaded a sample available at https://code.msdn.microsoft.com/ADPNET-Entity-Framework-2d1160cb and started working around it. Since I have fairly good knowledge of VB6 and SQL it did not
    take much time for me to understand the whole pattern the sample is based on. Had Microsoft given a detail explanation or a walk through of the sample it would have been much easier to understand the basics. However, I somehow managed to work around it and
    have build a small desktop application in wpf using Entity Framework and MVVM. But a point has come where I have got completely stuck up finding no way out. The problem is as under:
    I have two tables. 1 Advocate and 2 Party. Table Advocate would contain names of advocates and would have a primary key. Similarly Party would have names and their respective primary keys.
    Then I have another two tables 1. Case and 2 CaseDetail. Table Case would simply hold three columns: 1. CaseId 2. CaseNo and 3. Year. Table CaseDetail would have CaseDetailId as a primary key the CaseId as a Foreign Key. Now what I need is that a particular
    case could have multiple advocates and multiple petitioners. So the table CaseDetail would have two columns to hold advocateId and PartyId as a Foreign Keys. 
    If you look at the sample referred above you would not find how to deal with such a case. When I follow the pattern of the sample I get host of design time and runtime errors. 
    Therefore, please suggest what strategy should be adopted in a scenario described above while developing WPF application using Entity Framework and MVVM.

  • Can we have a Hierarchy in the Prompt of webi? promot as key-text?

    Hello all,
    Can we have a Hierarchy in the Prompt of webi? We are using Fund Center hierarchy and the user wants to select the top node to get all the nodes under it in hierarchies?
    Also along same lines can we display the Long text and Key ofthe FUnd center in prompt (hierarchy or not)
    Thanks in advance for all the replies.

    Hi david, Gowtham
    Thanks for the replies. I was able to get a hierarchy in the prompt. I created mandatory hierarchy variable in the bex query which is feeding the universe and it automatically came over as hierarchy. I am still not able to get how would you create cascade on same object, I understand the market and region (2 different object) example. So if you can please explain.
    With that said I still am not sure how you would display your prompt with description of objects rather than technical names. Any insight on that please?
    Thanks a lot

Maybe you are looking for

  • How to do a NAT to multiple MACs via the same public IP

    Heay y'all, I have multiple MACs that I need to admin via the same public IP. I'm trying to activate the NAT function on my airport 802.11n, but I can only register 1 internal IP address for the same port number. Example: public UDP port: 3283, 5900

  • How to sort Data in XML template (rtf) file?

    Hi, I have an oracle 11i custom report (rdf) with an xml output to a PDF. There is a formula column in the report. Now I need the data to be sorted on this formula column. As we cannot sort on formula column, i have decided to find a way to sort it i

  • Pivot Source Filter is Broken

    I built a pivot table based on combining three identical spreadsheets.  The pivot table appears to work, but if I filter on a field in the source table, it does not filter the entire table - only the top part of it, based on the first imported spread

  • I have dead time after a transition on one of my slides and I can not get rid of it

    I have a transition between slides and then once the transition occurs, there is dead blank space for 5 seconds and then the next slide comes in.  I have tried everything to get rid of the dead space but I can not seem to resolve the issue.  Anyone h

  • [solved]gui is wrong on transmission and deadbeef only..... hmmmm

    Hi.... for some reason, since the systemd upgrade, transmission-gtk, deadbeef and nm-applet dont display correctly.... they look ok, but the colours are not as the gtk theme should be.... for example, the gtk theme is making pcmanfm have file, edit,