Difference in License Types

Hi all,
In the license portal I have a "SF - Standby CPU license" . I want to know the restrictions or when to use this license.
Regards,
Luz Rodriguez

Hello Luz,
as far as I  remember, this license gives you the limited right to access and use the copy of the ASE in case of an interruption of your production.
I would guess you have a warm or cold standby ASE setup in your environment.
Regards
Stefan

Similar Messages

  • Difference b/w DATA TYPE and DATA OBJECT & differences b/w TYPE and LIKE

    hai
    can any one say the differences between Data type and Data Object.
    And also differences between TYPE and LIKE
    thanks
    Gani

    hi,
    _Data Types and Data Objects_
          Programs work with local program data – that is, with byte sequences in the working memory. Byte sequences that belong together are called fields and are characterized by a length, an identity (name), and – as a further attribute – by a data type. All programming languages have a concept that describes how the contents of a field are interpreted according to the data type.
          In the ABAP type concept, fields are called data objects. Each data object is thus an instance of an abstract data type. There are separate name spaces for data objects and data types. This means that a name can be the name of a data object as well as the name of a data type simultaneously.
    Data Types
       As well as occurring as attributes of a data object, data types can also be defined independently. You can then use them later on in conjunction with a data object. The definition of a user-defined data type is based on a set of predefined elementary data types. You can define data types either locally in the declaration part of a program using the TYPESstatement) or globally in the ABAP Dictionary. You can use your own data types to declare data objects or to check the types of parameters in generic operations.
         All programming languages distinguish between various types of data with various uses, such as ….. type data for storing or displaying values and numerical data for calculations. The attributes in question are described using data types. You can define, for example, how data is stored in the repository, and how the ABAP statements work with the data.
    Data types can be divided into elementary, reference, and complex types.
    a. Elementary Types
    These are data types of fixed or variable length that are not made up of other types.
    The difference between variable length data types and fixed length data types is that the length and the memory space required by data objects of variable length data types can change dynamically during runtime, and that these data types cannot be defined irreversibly while the data object is being declared.
    Predefined and User-Defined Elementary Data Types
    You can also define your own elementary data types in ABAP using the TYPES statement. You base these on the predefined data types. This determines all of the technical attributes of the new data type. For example, you could define a data type P_2 with two decimal places, based on the predefined data type P. You could then use this new type in your data declarations.
    b.  Reference Types
    Reference types are deep data types that describe reference variables, that is, data objects that contain references. A reference variable can be defined as a component of a complex data object such as a structure or internal table as well as a single field.
    c. Complex Data Types
    Complex data types are made up of other data types. A distinction is made here between structured types and table types.
    Data Objects
          Data objects are the physical units with which ABAP statements work at runtime. The contents of a data object occupy memory space in the program. ABAP statements access these contents by addressing the name of the data object and interpret them according to the data type.. For example, statements can write the contents of data objects in lists or in the database, they can pass them to and receive them from routines, they can change them by assigning new values, and they can compare them in logical expressions.
           Each ABAP data object has a set of technical attributes, which are fully defined at all times when an ABAP program is running (field length, number of decimal places, and data type). You declare data objects either statically in the declaration part of an ABAP program (the most important statement for this is DATA), or dynamically at runtime (for example, when you call procedures). As well as fields in the memory area of the program, the program also treats literals like data objects.
            A data object is a part of the repository whose content can be addressed and interpreted by the program. All data objects must be declared in the ABAP program and are not persistent, meaning that they only exist while the program is being executed. Before you can process persistent data (such as data from a database table or from a sequential file), you must read it into data objects first. Conversely, if you want to retain the contents of a data object beyond the end of the program, you must save it in a persistent form.
    Declaring Data Objects
          Apart from the interface parameters of procedures, you declare all of the data objects in an ABAP program or procedure in its declaration part. These declarative statements establish the data type of the object, along with any missing technical attributes. This takes place before the program is actually executed. The technical attributes can then be queried while the program is running.
         The interface parameters of procedures are generated as local data objects, but only when the procedure is actually called. You can define the technical attributes of the interface parameters in the procedure itself. If you do not, they adopt the attributes of the parameters from which they receive their values.
    ABAP contains the following kinds of data objects:
    a.  Literals
    Literals are not created by declarative statements. Instead, they exist in the program source code. Like all data objects, they have fixed technical attributes (field length, number of decimal places, data type), but no name. They are therefore referred to as unnamed data objects.
    b.  Named Data Objects
    Data objects that have a name that you can use to address the ABAP program are known as named objects. These can be objects of various types, including text symbols, variables and constants.
    Text symbols are pointers to texts in the text pool of the ABAP program. When the program starts, the corresponding data objects are generated from the texts stored in the text pool. They can be addressed using the name of the text symbol.
    Variables are data objects whose contents can be changed using ABAP statements. You declare variables using the DATA, CLASS-DATA, STATICS, PARAMETERS, SELECT-OPTIONS, and RANGESstatements.
    Constants are data objects whose contents cannot be changed. You declare constants using the CONSTANTSstatement.
    c.  Anonymous Data  Objects
    Data objects that cannot be addressed using a name are known as anonymous data objects. They are created using the CREATE DATAstatement and can be addressed using reference variables.
    d.  System-Defined Data Objects
    System-defined data objects do not have to be declared explicitly - they are always available at runtime.
    e.  Interface Work Areas
    Interface work areas are special variables that serve as interfaces between programs, screens, and logical databases. You declare interface work areas using the TABLES and NODESstatements.
    What is the difference between Type and Like?
    Answer1:
    TYPE, you assign datatype directly to the data object while declaring.
    LIKE,you assign the datatype of another object to the declaring data object. The datatype is referenced indirectly.
    Answer2:
    Type is a keyword used to refer to a data type whereas Like is a keyword used to copy the existing properties of already existing data object.
    Answer3:
    type refers the existing data type
    like refers the existing data object
    reward if useful
    thanks and regards
    suma sailaja pvn

  • Report generation for users having specific license type

    Hi friends,
    For my project purpose i have to generate report which has userId,License type of the user,corresponding composite role and single roles assigned to the user and transaction code.
    I can get the report for user and license type from USR06 and roles,transaction from SUIM.
    But I need a combined report of this. Is there any transaction code which helps me in doing this.Please let me know.
    Thanks in advance,
    With kind regards
    Karthick

    > For my project purpose i have to generate report which has
    userId,
    License type of the user, TCode:  USMM
    corresponding composite role and single roles assigned to the user and transaction code.
    1. Table:  AGR_USERS, AGR_TCODES / USR08
    2. SUIM -> a) Users by Complex selection criteria -> Execute -> Click on Roles => Full list of Roles per user.
                 -> b) Transaction -> Executable for users (all selection option)
    >
    > I can get the report for user and license type from USR06 and roles,transaction from SUIM.
    >
    > But I need a combined report of this. Is there any transaction code which helps me in doing this.Please let me know.
    1. As mentioned by Saby: use TCode SQV1 to map all the tables with a meaningful "foreign key".
    2. Download all Table contents and map them in excel by using functions.
    Regards,
    Dipanjan

  • Need to pull License type from GTS to R3 in case of STO documents

    Hi Gurus,
    Currently, In standard sales order process, we are using 2 functional modules in R3 to get the ECCN number and license type from GTS. This is required to populate on some billing output.
    Functional modules used are:
    /SAPSLL/***_DOCS_SD0C_FETCH_R3
    /SAPSLL/***_DOCS_SD0C_GET_R3
    Using above mentioned functional modules, we can only pull ECCN number and license type from GTS only if we pass sales document number to this FM and further system pulls ECCN and license type from GTS by referring the sales document number.
    Issue:
    We have a requirement is to pull the License type in case of STO documents also but STO documents/STO deliveries are not checked for GTS check, so we can not use above mentioned functional modules to pull the license type from GTS to R3 because STO/PO / deliveries do not exist in GTS.
    I just have the material number with me and I need to pull the license type from GTS to R3.
    Could anyone please advise the table name or any structure where i can pass the material number in GTS and can pull the license type to R3.
    Your kind response would be appreciated.

    Hi DG,
    Thanks for your kind response. Regarding your second point, I am already pulling the ECCN number by using one customized functional module so I already have ECCN number with me. Could you please brief me how I can pull the License type linked to an ECCN number. What is the relationship table/ logic for pulling the license type by passing the ECCN number ??
    Looking forward to your response.
    Regards,
    Anoop

  • What is the difference between Condition Type PB00 and PBXX

    Hallow all,
    Can anybody please explain, What is the Difference between Condition type PB00 and PBXX in Materials Management Pricing?
    And also please explain control or Application of both on Price determination ??
    Thanks in Advance !!!!!

    Hi,
    PB00 condition type is used for automatic pricing in PO
    PBXX condition type is used for manual pricing in PO
    In Pricing  access sequence  play a vital role . If you need pricing automatic in the PO, you have use of Access Sequences and Schema Group of Vendor.You can see the difference in both standard condition type PB00 and PBXX, where as PB00 is assigned to Access sequence(0002)but in case of PBXX no access sequense assigned.
    Regards,
    Biju K

  • Difference between line type and internal table?

    Hi..
    I wanted to know, what is the difference between Line type and Internal Table?

    Hi,
        Before the 4.7 release in SAP if we want to define an internal table we have to write the defination using the occurs statement and we need to define all the fields using INCLUDE STRUCTURE or indidually all the fields ine by one.
    From 4.7 release of R/3 SAP introduced the Line type concept and it's part of the ABAP OOPS concept. for internal table defination we don't need to use the occur statements. Instead INCLUDE structure  we need to create a Line type for that structure in Se11 and then we can define the internal table like :
    DATA : ITAB TYPE TABLE OF <LINE_TYPE>.
    Only thing is this table will be  a table without header. So for internal table processing we need to define a work area structure of type line of line type  . EX:
    DATA: WA_ITAB TYPE LINE OF <LINE_TYPE>.
    Hope this helps.
    Thanks,
    Greetson

  • Default License Type in SU01

    Hi experts,
    We have recently had a change in our licensing agreement such that almost all of our users (approximately 99%) will be assigned to one license type going forward.  With respect to creating new users with this license type, is there any way to default the license type in SU01, so we don't have to fill out this field every time (since all users will now be created with the same type)?
    Thanks,
    HC

    Thanks.  I had seen that and read it several times.  I reread it again.  It's still not what I'm after.  It looks to be a work-around to not having USMM access and was not actually implemented.  I have the needed USMM access.
    Let me phrase my issue...
    On Production, I start USMM.  In the lower half of the screen, I slect the "Price lists" tab.  Only the "SW Component Price List" is checked.  The "Default User Type" shows "Operational."
    I want it to be "SAP Business Warehouse User."  Thus when new users are created through SU01 the new user creation process will not have to include changing the license type from "Operational" to "SAP Business Warehouse User."
    Ultimately I just after having each new user created as an "SAP Business Warehouse User" when nothing is done through the SU01 license tab.
    Bob

  • What are the differences in file types?

    what are the differences in file types?    HOW DO i CONVERT TXT TO A FILE TYPE THAT PLAYS MUSIC/VIDEO?

    Every file on a computer is ultimately just a big collection of zeros and ones. Files with the .txt extension typically contain just text. If opened with a suitable program such as Notepad the text will be readable. Try to push the same file into a different application and you may get nonsense or crash the software. Well written software will attempt to validate the internal structure of the file it is given and reject anything it doesn't know how to handle. There are multiple audio file formats. Transcoding an audio file from one audio format to another is possible. Changing a text file into audio isn't possible unless it wasn't really a text file in the first place.
    tt2

  • License Type (Standard /NetWeaver)

    We are requesting the Product License Key of mySAP ERP 2005 ECC 6 with the SAP Kernel Release 7, Database is MS-SQL 2005 and Windows Server 2003 64 bit.
    When we are registering our Product on OSS Portal to request the Product License Key with the SAP Kernel 7 & selecting the Standard License, I am receiving the Product Key with the License Type NetWeaver but I had been selecting the Standard License. Product Key with the License Type NetWeaver is not accepting during the license installation.
    Then I do request the additional Product Key with the SAP Kernel Release 6.40 (not our kernel version) with the License Type Standard which is generating the Standard License key and has been installed successfully.
    SAP Kernel Release 7, which is our version, Product Key has been generating with the NetWeaver License Type is not able to install in the System.
    SAP Kernel Release 6.40, which is not our version, Product Key has been generating with the Standard License Type and has been installed successfully.
    We are using ERP 2005 ECC6 which is NetWeaver based might be problem in future,
    Does NetWeaver component could be disabled ?
    Does NetWeaver Component might not be ADD-ON ?
    Does Patches might not be installed successfully ?
    I have been obtained the Kernel information from System menu …Status….Other Kernel Info where kernel and other information are displaying.
    REgards
    Anwer Waseem
    SAP BASIS

    Hi Anwer,
    This issue should be handled by Support, not SDN.  Please open a message with SAP Support.
    Best Regards,
    Matt

  • Maintenance Certificate missed in license type

    Hello everyone,
    We are in the middle of the upgrade to our BW landscape from 3.5 to 7.01. After I upgraded our BWT system today and ready to apply support packages, as usual I go to apply maintenace certificate according to SAP's instruction on "How to Request a Maintenace Certificate manually through SAP support Portal". I found NO "maintenance certificate" under license type, only have "standard and Java" license type. It is very strange since I just applied "maintenance cerfiticate" on 5/15/2009 when I update support package for my BW sandbox (BWS)! Not sure why it is no longer there? Have you guys experience the same? And how can I get my maintenance certificate for my BWT system so I can move forward with my support package update?
    Thanks for your help. This is very important since our upgrade is stopped now.
    Yujun Ran

    Hi,
    What kesavan   has mentioned above is perfect for manually applying the Maintainance certificates.
    These certificates can be made to automatically distribute across the systems in the landscape.
    refer to the below FAQ, and also to the below notes;
    Note 1280664 - Distribution of maintenance certificates: Troubleshooting
    When will a Maintenance Certificate be required by SAP's software logistics tools?*
    Maintenance Certificate will be required for all customers as of January '09.
    Details:
    As of SPAM/SAINT- version 0034 the Maintenance Certificate will be required to import support packages. SPAM/SAINT- version 0034 will be released in January u201909.
    All support packages released in 2008 can be applied using a SPAM/SAINT- version prior to version 0034 and therefore do not require a Maintenance Certificate. Hence, when using SPAM/SAINT- version 0034 or higher version, all support packages require a valid Maintenance Certificate in order to be imported.
    Java support packages (imported using JSPM) will require a Maintenance Certificate in the near future. Currently a warning is displayed.
    Which version of SAP Solution Manager will be required to benefit from automatic deployment of Maintenance Certificates?
    SAP Solution Manager 7.0 SP 16 will be required to benefit from automatic deployment.
    Regards,
    Ravi
    Edited by: Ravi Kumar on Jun 23, 2009 8:40 AM
    Edited by: Ravi Kumar on Jun 23, 2009 8:44 AM

  • Difference between message type and idoc type

    Hi
    difference between message type and idoc type
    Regards
    Rama

    Hi,
    Message Type:
    A message type represents the application message exchanged between R/3 systems and R/3 and an external system. A message type characterises the data sent across systems and relates to the structure of the data called an IDOC type.
    Diff. with IDOC type
    An IDoc type specifies the structure of the data.
    A message type specifies the meaning of the data
    Diff. b/w IDOC type and IDOC
    An IDoc type is the definition of a specific data structure.
    An IDoc is an actual instance of data based on an IDoc type. Therefore, there can be many IDocs created from a single IDoc type.
    Example:
    MATMAS is the message type and MATMAS05 is IDoc type for Material Master.
    Thanks,
    Shankar

  • User license type 53 - error "User type 53 is not active

    Hi Experts,
    One of our end user is facing this     "User license type 53 - error "User type 53 is not active"   issue.
    Can any one help  me what need to be done for resolve this issue.
    Appreciate your early response.
    Thanks in advance.
    Sreenivasu  Balaka

    User Type 53 is:
    53        mySAP Limited Prof. (Cat III)                          mySAP Business Suite Limited Professional (Cat III)
    Check whether the active user types for both the user ids in these two systems are in sync or not. Also make sure that there is no wrong value is set in SU01 for the user id. Both system should contain same settings for company specific settings.. like ... Company address, Decimal Notation of users, Time Zone of user, License type etc. etc. ...
    Check these things and let us know what you got.
    fyi: User types can be activated in USMM..
    Regards,
    Dipanjan
    Edited by: Dipanjan Sanpui on Jun 15, 2009 6:06 AM

  • Difference Between Licensing and Registering

    Hello,
    What is the difference between Licensing and Registering a Product?

    Check your other thread:
    Off-cycle Product
    Re: Off-cycle Product

  • User license type

    we are on GRAC 10.1 SP6. Created custom field for user license type for both request form and role attribute, both appear. Also followed the SAP note 1736817 for mapping. Maintained mapping for connector group, assign group field mapping. custom field is mapped to system field name LIC_TYPE, table name IS_UCLASS. The field is available for edit on the request, but when submitted, the value does not populate on the target system. Also would like to have drop-down using ACTIVE field in table TUTYPA. If anyone has successfully done either of these, please respond.

    Dear Jack,
    did you also check note 1736818?
    Regards,
    Alessandro

  • Difference between open type flavors

    What is the difference between true type flavor and post script flavor? I noticed that ttf is often more expensive the otf. Does this mean ttf is more compatible with more applications? Are they both still compatabile with both macs and pcs?

    Re: - visio adn Type 1 fonts
    There was no Visio with Office 97.
    But for Visio 2000, that's exactly what I was trying to say. The
    versions that worked with T1 were those that hadn't yet been
    significantly altered by MS from their Visio Corp roots.
    MS acquired The Visio Corporation in 2000, and for all practical
    purposes just re-branded Visio 2000, which can be found in both Visio
    Corporation and Microsoft editions.
    MS did some rework to a version that was already in Visio's pipeline
    and released it in April 2001 as Visio 2002. T1 fonts worked in this
    release. This version did have some other transition problems
    resulting from the beginnings of integration into the MS product line.
    Visio 2003 was the first version fully integrated into the MS Office
    family, and I believe it was the first where T1 support was broken.
    And no, I don't think that the Office integration was directly
    related! Visio 2003 somehow also lost support for .eps import and export.
    - Herb

Maybe you are looking for