How to get 4 digit year in pl/sql?

select TO_DATE ('99991231', 'yyyymmdd')
from dual;
The above query gives output as --> 12/31/9999
but using the same in pl/sql it gives --> 31-DEC-99
declare
v_date varchar2(12) := '99991231';
v_tmp date;
begin
select TO_DATE (v_date, 'yyyymmdd') into v_tmp
from dual;
dbms_output.put_line(v_tmp);
end;
I would like to see 12/31/9999 in pl/sql. How can i do this?

That surprises me since it implies that you nls_date_format is different in pl/sql than it is in sql. Are you doing this in sqlplus or some other tool? Are you running both samples in the same session.
SQL> SELECT TO_DATE ('99991231', 'yyyymmdd')
  2  FROM dual;
TO_DATE('99
31-DEC-9999
SQL> DECLARE
  2     v_date VARCHAR2(12) := '99991231';
  3     v_tmp DATE;
  4  BEGIN
  5     SELECT TO_DATE (v_date, 'yyyymmdd') into v_tmp
  6     FROM dual;
  7  DBMS_OUTPUT.Put_Line(v_tmp);
  8  END;
  9  /
31-DEC-9999
PL/SQL procedure successfully completed.Having said that, in general, if you want a date displayed in a specific format, you need to use TO_CHAR on it with a format mask you want, and not rely on an implicit conversion as you are doing here.
John

Similar Messages

  • How to get Listener Information using PL/SQL code

    How to get Listener Information using PL/SQL code

    user2075318 wrote:
    How to get Listener Information using PL/SQL codeThis approach (somewhat of a hack) can be used - but it does not really provide meaningful data at application layer.
    SQL> create or replace function TnsPing( ipAddress varchar2, port number default 1521 ) return varchar2 is
      2          type THexArray is table of varchar2(2);
      3          --// tnsping packet (should be 10g and 11g listener compatible)
      4          TNS_PING_PACKET constant THexArray := new THexArray(
      5                  '00', '57', '00', '00', '01', '00', '00', '00',
      6                  '01', '39', '01', '2C', '00', '00', '08', '00',
      7                  '7F', 'FF', '7F', '08', '00', '00', '01', '00',
      8                  '00', '1D', '00', '3A', '00', '00', '00', '00',
      9                  '00', '00', '00', '00', '00', '00', '00', '00',
    10                  '00', '00', '00', '00', '00', '00', '00', '00',
    11                  '00', '00', '00', '00', '00', '00', '00', '00',
    12                  '00', '00', '28', '43', '4F', '4E', '4E', '45',
    13                  '43', '54', '5F', '44', '41', '54', '41', '3D',
    14                  '28', '43', '4F', '4D', '4D', '41', '4E', '44',
    15                  '3D', '70', '69', '6E', '67', '29', '29'
    16          );
    17 
    18          socket  UTL_TCP.connection;
    19          txBytes number;
    20          rxBytes number;
    21          rawBuf  raw(1024);
    22          resp    varchar2(1024);
    23  begin
    24          socket := UTL_TCP.open_connection(
    25                          remote_host => ipAddress,
    26                          remote_port => port,
    27                          tx_timeout => 10
    28                  );
    29 
    30          --// convert hex array into a raw buffer
    31          for i in 1..TNS_PING_PACKET.Count loop
    32                  rawBuf := rawBuf || HexToRaw( TNS_PING_PACKET(i) );
    33          end loop;
    34 
    35          --// send packet
    36          txBytes := UTL_TCP.write_raw( socket, rawBuf, TNS_PING_PACKET.Count  );
    37 
    38          --// read response
    39          rxBytes := UTL_TCP.read_raw( socket, rawBuf, 1024 );
    40 
    41          UTL_TCP.close_connection( socket );
    42 
    43          --// convert response to varchar2
    44          resp := UTL_RAW.Cast_To_Varchar2( rawBuf );
    45 
    46          --// strip the header from the response and return the text only
    47          return( substr(resp,13) );
    48  end;
    49  /
    Function created.
    SQL>
    SQL> select tnsping( '10.251.93.30' ) as TNSPING from dual;
    TNSPING
    (DESCRIPTION=(TMP=)(VSNNUM=169869568)(ERR=0)(ALIAS=LISTENER))
    SQL> select tnsping( '10.251.95.69' ) as TNSPING from dual;
    TNSPING
    (DESCRIPTION=(TMP=)(VSNNUM=0)(ERR=0)(ALIAS=LISTENER))
    SQL>

  • Two digit year cutoff in SQL Server 2008 R2

    Hi All,
    We have a 2008R2 setup here and have SSIS jobs importing data from flat files into our database. Some sources only give us 2 digit years unfortunately. 
    Looking at some data, the default 2 digit year cutoff  is not really appropriate to our setup, a value of 2080 would be better. However, when checking the official documentation here:
    http://msdn.microsoft.com/en-us/library/ms191004(v=sql.105).aspx
    there is a warning to leave the value alone to maintain backwards compatibility. This warning is NOT present for the newer versions of SQL Server. Is this just a generic warning about the general application landscape, or is there some Microsoft code somewhere
    within SQL Server/SSIS/SSRS which assumes this default is locked to 2049? In other words, if I understand the application landscape at my office - am I safe to change this? Or is there some underlying code which will break?
    Also, am I right in the assumption that once a 2 digit year is imported into a database table, it's then converted to a 4 digit year, so any existing data is "safe" from this setting being changed? In other words, the DB loses all memory of whether
    an imported date was originally imported as a 2 digit year?
    Thanks

    Import the string dates into DATE/DATETIME format.
    DATE/DATETIME has 4 digit year.
    You can convert it differently than the automatic 2049 flip year.
    DATE/TIME functions & string conversions:
    http://www.sqlusa.com/bestpractices/datetimeconversion/
    Here is an automatic conversion example.
    DECLARE @StringDate char(8) = '10/23/80';
    DECLARE @Date DATE;
    SELECT @Date=CONVERT(date, @StringDate, 1);
    SELECT @Date;
    -- 1980-10-23
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • How to get rid of quotes in SQL?

    Hi All!
    Does anybody know how to get rid of quotes in
    generated SQL? I don't mean manual editing.
    Are there any properties controlling this
    behavior (adding "" automatically)?
    Thanks in advance!
    Sincerely,
    Lev

    Use PreparedSatement class,
    e.g.
    // Where the name field is defined as char, i.e. needs quotes in SQL.
    String sql = "select * from person where name = ? ";
    PreparedStatement statement = connection.prepareSatement(sql);
    statement.setString(1, "Bob");
    statement.executeQuery();
    This will get rid of hardcoding db vendor dependant quotes in your sql,
    Hope this helped.

  • How to get Current Year

    Dear Friends
    I am writing a fast formula for medical reimbursement.
    My fiscal year start will be 01-mar every year and end date will be 30apr every year.
    Every year I need the current start date and end date like Accruals.
    Can anyone please suggest me how to get this input.
    Expecting your reply.
    Thanks
    Syed

    You will need something like this to achieve the objective
    Copying from pay_in_tax_utils.get_financial_year_start
    <div>
    if to_number(to_char(p_date,'MM')) >=4 then
    l_year := to_char(p_date,'YYYY');
    pay_in_utils.set_location(g_debug,l_procedure,20);
    else
    l_year := to_number(to_char(p_date,'YYYY')) -1 ;
    pay_in_utils.set_location(g_debug,l_procedure,30);
    end if ;
    pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,40);
    return (to_date('01-04-'||l_year,'DD-MM-YYYY'));
    </div>

  • How to get information from desktops into SQL?

    Hello Everyone,
    I could use some help with an idea that I have been working on. I basically am looking for a way to capture information from desktops and get that data into a SQL database. Could anyone give me any links, kb articles, etc on how I can go about doing this?
    Any help would be very appreciated
    Thanks :)

    Powershell is the tool for you. If you could please move this post to powershell; you should get better response.  I almost certain that there are already some powershell scripts that does this, or at least will give you a report or a excel\csv file
    with this information.
    once you have that info you import that data into sql and sql server agent jobs you can automate. 
    Below are some of the resources :
    http://serverfault.com/questions/585223/how-to-list-all-computers-operating-system-on-a-network-in-powershell
    https://www.simple-talk.com/sql/database-administration/let-powershell-do-an-inventory-of-your-servers/
    http://gallery.technet.microsoft.com/scriptcenter/Hardware-Inventory-Using-fe6611e0
    http://blogs.technet.com/b/heyscriptingguy/archive/2006/11/09/how-can-i-use-windows-powershell-to-get-a-list-of-all-my-computers.aspx
    Again, please move this powershell thread. you will get better response,
    Hope it Helps!!

  • How to get columns horizontal in pl/sql procedure

    My task is I want to retrieve all the Insert Statements of the rows that are present in each table of a particular Schema.
    When I give input as Schema name(Scott) in a Procedure, Then the procedure retrieves all the Insert statements of rows of all tables that are present in scott user.
    For this I started like this
    CREATE OR REPLACE PROCEDURE MYPROC(UID DBA_OBJECTS.OWNER%TYPE)
    AS
    CURSOR MYCUR IS select o.owner, o.object_name,c.column_name
    from dba_objects o, dba_tab_cols c where o.owner=c.OWNER(+) AND O.OWNER=UID
    AND O.OBJECT_NAME=C.TABLE_NAME AND ROWNUM<20 AND O.OBJECT_TYPE='TABLE';
    BEGIN
    FOR EREC IN MYCUR LOOP
    DBMS_OUTPUT.PUT_LINE('insert into '||erec.object_name||'('||erec.column_name||')'||'values(');
    END LOOP;
    END MYPROC;
    When I execute this procedure I got the result as follows.
    EXEC MYPROC('SCOTT');
    insert into DEPT(DEPTNO)values(
    insert into DEPT(DNAME)values(
    insert into DEPT(LOC)values(
    insert into EMP(EMPNO)values(
    insert into EMP(ENAME)values(
    insert into EMP(JOB)values(
    insert into EMP(MGR)values(
    insert into EMP(HIREDATE)values(
    insert into EMP(SAL)values(
    insert into EMP(COMM)values(
    insert into EMP(DEPTNO)values(
    insert into BONUS(ENAME)values(
    insert into BONUS(JOB)values(
    insert into BONUS(SAL)values(
    insert into BONUS(COMM)values(
    insert into SALGRADE(GRADE)values(
    insert into SALGRADE(LOSAL)values(
    insert into SALGRADE(HISAL)values(
    insert into PROJECT(PNO)values(
    As you see the columns are coming in line by line.
    Now My question is I want the columns of each table to come in only One Insert Statement.i.e. one insert statement for one table. All columns of one table should in one row. How to do this?
    Please Help me
    Thanks in Advance.

    Hi,
    two loops works the easiest way
    CREATE OR REPLACE PROCEDURE MYPROC(UID DBA_OBJECTS.OWNER%TYPE)
    AS
    CURSOR MYtab
    IS
    select o.owner, o.object_name
    from dba_objects o where O.OWNER=UID
    and ROWNUM<20
    AND O.OBJECT_TYPE='TABLE';
    CURSOR MYCol(b_owner varchar2,b_table varchar2)
    IS
    select c.column_name
    from dba_tab_cols c where c.owner=b_OWNER AND b_table=C.TABLE_NAME;
    l_line varchar2(2000);
    begin
      for r_tab in mytab
    loop
      l_line :='insert into '||r_tab.object_name||'(');
      for r_col in mycol(r_tab.owner,r_tab.object_name)
      loop
        l_line := l_line||r_col.column_name||',';
      end loop;
      l_line := rtrim(l_line,',')||') values (';
    dbms_output.put_line(l_line);
    end loop;
    end;Hope this will give you some insights how to get the results.
    Herald ten Dam
    Superconsult.nl

  • How to get hardware related metrics of SQL Server through query ?

    Hi Folks,
                   I am newbie to the SQL Server programming. I also follow this forum only now. I am not sure if these kind of question had been asked in the past. Let me furnish you more detail about my query. I do like
    to get few details regarding the SQL server. I do need the following details to get the information about it through query
    SQL Server Installation directory
    No. Of CPU(as i read SQL Server standard support 4 cpu and Enterprise support 32 CPU)
    CPU Speed of the SQL Server installed machine
    Disk Storage details
    Operating system on which the SQL Server is installed
    Location of the swap file of SQL Server
    TempDB directory path
    System database directory path
    User database location 
    Log files location
    I do like to get information like this through query. Can i know if such information can be get through query or it should be get only thro' WMI. Please drop your ideas in getting these details.
    Thanks in Advance,
    Regards,
    JeiSurya

    Try this query in the below link 
    http://gallery.technet.microsoft.com/Query-to-find-all-the-8fa765e6
    you will get the SQL Server and H/W Details like 
    IP Address 
    FQDN 
    CurrentSQLNodeName 
    SQL Instance Name 
    SQL Server Product
    SQL Server Edition 
    Service Pack 
    SQL Server Version 
    Operating System
    OS SP Level
    OS Build Number
    SystemManufacturer 
    Processor Type 
    System Model 
    Total RAM in MB 
    NumberOfPhysicalCPUs 
    NumberOfCoresInEachCPU 
    TotalNumberOfCores 
    NumberOfLogicalCPUs

  • How to get Last Year Sales and YTD Sales without using AGO and TODATE?

    Hi all,
    I have got Company and Time dimensions and Sales Fact. My requirement is to get Last Year sales for each company without using AGO function and YTD without using TODATE function. (Due to performance issue as AGO and TODATE do not insert a Cache entry).
    Can someone please help me to achieve my requirement? Thanks in advance.

    Hi Satya,
    Thanks again for your reply. To start with I don't have data for the years 2012 and 2011 to test as I am using SH sample schema from Oracle. I have applied your solution but it does not seem to be working for the previous years like 2000, 2001. My requirement is to have a dashboard prompt "YEAR" and let the user choose whatever year he wants.
    Please have a look at the column formulas of my analysis (As per your solution) :
    ***here B_YEAR is replaced by CALENDAR_YEAR.  
    Amount: "F1 Sales"."Amount"
    AmountYTD:  FILTER("F1 Sales"."Amount" USING "D1 Time"."CALENDAR_YEAR" =YEAR(CURRENT_DATE))
    Amount LY: FILTER("F1 Sales"."Amount" USING "D1 Time"."CALENDAR_YEAR" =YEAR(CURRENT_DATE)-1)and the physical query generated by BI Server: (as you can see I have got a filter CALENDAR_YEAR= 2000)
    WITH
    SAWITH0 AS (select sum(T1074.AMOUNT_SOLD) as c1,
         sum(case  when T1035.CALENDAR_YEAR = TO_NUMBER(TO_CHAR(TO_DATE('2012-05-03' , 'YYYY-MM-DD'), 'yyyy'), '9999') then T1074.AMOUNT_SOLD end ) as c2,
         sum(case  when TO_NUMBER(TO_CHAR(TO_DATE('2012-05-03' , 'YYYY-MM-DD'), 'yyyy'), '9999') - 1 = T1035.CALENDAR_YEAR then T1074.AMOUNT_SOLD end ) as c3,
         T1035.CALENDAR_MONTH_DESC as c4,
         T1035.CALENDAR_YEAR as c5,
         T1035.CALENDAR_MONTH_ID as c6
    from
         TIMES T1035 /* D1 Time */ ,
         SALES T1074 /* F1 Sales */
    where  ( T1035.CALENDAR_YEAR = 2000 and T1035.TIME_ID = T1074.TIME_ID )
    group by T1035.CALENDAR_MONTH_DESC, T1035.CALENDAR_MONTH_ID, T1035.CALENDAR_YEAR)
    select distinct 0 as c1,
         D1.c4 as c2,
         D1.c5 as c3,
         D1.c1 as c4,
         D1.c2 as c5,
         D1.c3 as c6,
         D1.c6 as c7
    from
         SAWITH0 D1
    order by c3, c2 Thanks in advance.

  • How to Get Prior Year Month Value in Query

    I have a query requirement to get the Sales and Sales Previous Year in the result line for a Product.
    Calendar Month is also in the rows of the query.
    Example - I would need Sales for 10/2009 and Sales Previous Year for 10/2008.
    I'm using the variable CMONTH as an interval with offsets to get 24 months before and after the current month.
    How can I get Sales Previous Year on the same line as using variable offsets on 0CMONTH does not work as
    0CMONTH is always considered to be the current month ?

    Yes, I understand - sorry, I was thinking about 0calmonth2 or is it 3 ??, the one with just the month, not the year, being in the rows.... it will give you the breakdown by months for each column.
    if you want to be able to select on the months, create an interval variable on the 0calmonth2 like mentioned already - you wont need to offset on that one though, because you already got the offset on the year...
    regards
    jacob
    Edited by: Jacob Jansen on Oct 8, 2009 7:18 PM
    Edited by: Jacob Jansen on Oct 8, 2009 7:20 PM

  • How to get currency format using pl sql function

    Hi all,
    I am a newbee on the forum. currently i am facing an issue with the Format of Currency in an rdf report. This is a field of tax amount & i need to make some conditional formatting on this like if the tax amount is Zero then some static note is to be added before this field.
    I have tried a lot of functions on it like the one as below:
    IF :cp_org_id = 102
    AND :invoice_currency_code <> 'CAD'
    AND TO_CHAR (NVL (:cf_tax_amount, 0)) = 0
    THEN
    RETURN (TRUE);
    ELSE
    RETURN (FALSE);
    This is working fine in case of Zero tax amount But gets error out when there some Tax amount exists. It gives a VALUE ERROR in this format Trigger.
    Kindly suggest me how to solve this issue with right function. If possible then write the pseudo Code also.
    Thanks in advance
    D_Verma

    In addition to Satyaki:
    It might be a 'Reports Thing'.
    It works in SQL*Plus (although relying on implicit conversions is a bad idea, as mentioned):
    MHO%xe> begin
      2  IF 102 = 102
      3  AND 'DAC' != 'CAD'
      4  AND TO_CHAR (NVL (null, 0)) = 0
      5  THEN
      6  dbms_output.put_line('TRUE');
      7  ELSE
      8  dbms_output.put_line('FALSE');
      9  end if;
    10  end;
    11  /
    TRUE
    PL/SQL-procedure is geslaagd.
    MHO%xe> begin
      2  IF 102 = 102
      3  AND 'DAC' != 'CAD'
      4  AND TO_CHAR (NVL (0, 0)) = 0
      5  THEN
      6  dbms_output.put_line('TRUE');
      7  ELSE
      8  dbms_output.put_line('FALSE');
      9  end if;
    10  end;
    11  /
    TRUE
    PL/SQL-procedure is geslaagd.
    MHO%xe> begin
      2  IF 102 = 102
      3  AND 'DAC' != 'CAD'
      4  AND TO_CHAR (NVL ('0', '0')) = '0'
      5  THEN
      6  dbms_output.put_line('TRUE');
      7  ELSE
      8  dbms_output.put_line('FALSE');
      9  end if;
    10  end;
    11  /
    TRUE
    PL/SQL-procedure is geslaagd.

  • HOW TO GET TOP N RECORDS IN SQL , URGENT

    Hi,
    I want to get the TOP 2 and BOTTOM 2 records (TOP 2 SAL , BOTTOM 2 SAL) from the following query result for each department . How do I get it using a SQL statement ? Thanks
    SQL> SELECT A.DNAME, B.ENAME, B.SAL FROM DEPT A, EMP B WHERE A.DEPTNO = B.DEPTNO ORDER BY DNAME, SAL
    DNAME------------ENAME--------SAL
    ACCOUNTING-------KING--------5000
    ----------------CLARK--------2450
    ---------------MILLER--------1300
    RESEARCH--------SCOTT--------3000
    -----------------FORD--------3000
    ----------------JONES--------2975
    ----------------ADAMS--------1100
    ----------------SMITH---------800
    SALES-----------BLAKE--------2850
    ----------------ALLEN--------1600
    ---------------TURNER--------1500
    -----------------WARD--------1250
    ---------------MARTIN--------1250
    ----------------JAMES---------950
    14 rows selected.

    If Feroz is asking the TOP 2 Salaried employees and BOTTOM 2 Salaried employees
    for ***EACH**** DEPARTMENT, then following SQL is one of the many ways(proves good with performance).Also brings top2+ bottom2 in one shot.SELECT dname, ename, sal FROM
    (SELECT d.DNAME, e.ENAME, e.SAL,
           dense_rank() over(PARTITION BY e.DEPTNO ORDER BY e.SAL) dr
    FROM EMP e, DEPT d
    WHERE e.DEPTNO = d.DEPTNO)
    WHERE dr <= 2
    UNION
    SELECT dname, ename, sal FROM
    (SELECT d.DNAME, e.ENAME, e.SAL,
           dense_rank() over(PARTITION BY e.DEPTNO ORDER BY e.SAL DESC) dr
    FROM EMP e, DEPT d
    WHERE e.DEPTNO = d.DEPTNO)
    WHERE dr <= 2
    /Thx,
    SriDHAR

  • How to get .ocp file when converting sql database to oracle database?

    Hi all,
    Hope doing well,
    sir i am using sql developer tool for migration from sql server to oracle
    i am using this offline but i don't know how to create .ocp file
    please help me.
    it's urgent
    waiting for reply.
    thanks in advance.

    The OCP files are created during OFFLINE Migration. In SQl Developer click on Tools -> Migration -> Create Database Capture Scripts. Choose an output directory, make sure to select the correct platform (Windows) and select MS SQl Server from the drop down list.
    You'll get in the directory specified earlier the batch and OCP files required to create the source model using the offline method.
    Have a look at this web site: http://www.oracle.com/technetwork/products/migration/sqlserver-095136.html
    It contains more info including a link to a video demonstrating the offline capture method.

  • How to get missing year and months

    hi,
       I have to get count of each month of each year using SP
    the parameters are date range , it can be
    more than one year.
    the problem is, in database there is data for few months only , but user can enter a big date range.
    and i have show each month's count, if it does not exits then each month should show 0.
                 one approach was to get the count existing data for each year-month in a temp table, then loop through to insert missing year-month and finally select them.
                second approach was to create temp table of year-month which is passed from parameter, buy subtracting two dates. then use left join to get the above result.
    please suggest if there is any other way to accomplish the task?
    yours sincerely

    Can you show sample data + expected result?
    SELECT COUNT(*) ,MONTH(dt) m, YEAR(dt) y FROM tbl
    GROUP BY MONTH(dt), YEAR(dt)
    but , I am only guessing, moreover , if you are using SQL Server 2008 and onwards take a look at grouping sets fetaure
    SELECT custid, empid, YEAR(orderdate) AS orderyear, count(qty) AS qty
    FROM dbo.Orders
    GROUP BY GROUPING SETS
      ( custid          ),
      ( empid           ),
      ( YEAR(orderdate) )
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to get one year licence for CE

    I received a mail that developers can use CE for one year.
    The SDN Subscriptions program is happy to announce that the SAP NetWeaver, Composition Subscription is now available for purchase in Germany and the United States. As a developer, now you have a lean, highly productive, standards-based integrated development, modeling, and runtime environment which will enable you to create and extend business processes that leverage both SAP and non-SAP applications and data. This one-year subscription provides access to the following software and services:- A one year developer license for SAP NetWeaver Composition Environment (SAP NetWeaver CE) that enables you to evaluate, develop, and test your Java applications.
    Edited by: shen peng on Dec 19, 2007 9:41 AM

    Hi Shen
    Follow these steps to get license key.
    1) Start NetWeaver Administrator (e.g. [http:/localhost:50000/nwa)
    2) Choose Tab Configuration Management and then Infrastructure.
    On the Infrastructure page choose option Licenses.
    The Licenses: Java Licenses application shows the System Parameters. Note the Active Hardware Key (e.g. S1426118465) and system ID (CE1).
    3) Start a License Key Request using http://service.sap.com/licensekey
    Provide the following information
    System ID: CE1
    Product ("Produkt"): SAP NETWEAVER
    Product Version ("Product Version"): SAP NETWEAVER 7.0 (2004S)
    System Type ("Systemart"): Development System ("Entwicklungssystem")
    Database System ("Datenbanksystem"): MaxDB (Former SAP DB)
    Product ID ("Produkt-ID"): J2EE-Engine
    Hardware Key ("HW-Schlüssel"): , e.g. S1426118465
    Complete the form and post the request. Then system will send you an email with the license key attached to your SAP email account. This may take a few minutes.
    Once you have received the email, save the attachment to your desktop.
    Switch to the Internet Explorer window with the NetWeaver Administrator. Continue in the screen from which you determined the Hardware Key. In Group Available Licenses Choose Install From File. In the popup window choose Browse and select the license key file you stored on your desktop. Then choose Add.
    Hope this helps.
    regards
    Pankaj

Maybe you are looking for

  • Error 109C ImportProcessServer.exe while importing a .mp4 clip in PPRO CS4 ver 4.2.1

    I just purchase Adobe Premiere Pro a few days ago - and subsequently updated it to Ver 4.2.1.  A started a new project - I tried to import some video footage I just shot with a GOPro Hemet Cam while skiing at our local mountain.  I can easlily see th

  • Error while activating transfer rules

    Transfer method 'TRFC with PSA' is not supported by the source system Message no. RSAR508 Diagnosis The PSA transfer method is used to transfer data from source system GBQ480 to transfer structure 0ASSET_ATTR_G4. Source system GBQ480 does not support

  • No data to refresh in BPC clients with Russian regional settings

    Hello, colleagues I hope to get some advices and information about saving data in BPC client computers with non-English regional settings (e.g., decimal point is set ","). Our BPC server has English regional settings. BPC 7.0, SQL Server 2008. I crea

  • Zoom-in on webpages not remaining after re-start

    I have the latest Firefox for Windows on my computer. The default font sizes when opening the browser were too large, so I zoomed in twice (using 'view', then 'zoom-in'). It worked for the session. But once I close and re-open the browser, that chang

  • Business Partner Cockpit error in CRM

    Hi, I am getting error in transaction CRMD_ORDER when we proceed in the following steps: 1) Login to CRM server 2) Go to transaction CRMD_ORDER 3) Find -- > Select --> Lead 4) Click on START --> Click on only 100 docs 5) Select Number 7 6) Click on B