BI Upgradation-Tests

Hi Experts,
We r upgrading BW to BI7.0. Im also included in this project.. We have  to test some objects in Sandbox...and what we have to do is:
1. Check the activation of Infoobjects, hierarchies, flexible update, update rules, infosources, source system etc
2. Check the BW standard functionality
3. Test the Cube and ODS data size reconciliation of diff data marts
4. test the programs and abap code.
Please let me know how we can do these...
Highly appreaciable
Regards
dyuthi

Hi Dyuthi,
Testing depends on your requirement.
Suppose if you have created reports, you will test whether the data is populated fine when compared to the report and the infoprovider.
After the data flow set up. Physically data to be loaded into the data targets.Data could be from flat file or R/3 or Non R/3 anything from souce system that data to be loaded into BW.
When you perform the unit testing, compare the values appearing in BW and present in the Source system.
During intrgration testing confirm that all the componants are properly set up with each other.
All these could be carried out in the Dev system.
After completing this change request are to be transported to the Quality Box.
In the quality system User Acceptance test to be carried out. There all the BW reports are being tested by the user. Parameters are like meeting their requirements are not. report execution time etc.
As soon as that is over then those change requests are to be moved into the production system.
Also check below threads for more info:
Testing in BW
Hi...BW testing
integration testing & unit testing
Integration Testing
SAP Help docs:
http://help.sap.com/saphelp_nw04/helpdata/en/d7/e210c8408e11d1896b0000e8322d00/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/3c/aba235413911d1893d0000e8323c4f/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2123b408e11d1896b0000e8322d00/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2123b408e11d1896b0000e8322d00/frameset.htm
Regards
Tg.

Similar Messages

  • Satellite M40x will not boot up after CPU upgrade test

    I have an M40x Laptop. I took the CPU out of it to replace it with another to test the computer booted up fine so I shut down and took it out and put it's original CPU back in, and it would not boot. Now it will not boot up at all with either of the CPU's all. When I turn on the power all I get is a white screen for a few seconds and the laptop shuts itself back down. Both the CPU's are good because I have since tested them in other computers to make sure that was not the problem.
    Anyone have any ideas on what is causing this??

    Im not surprised.
    As far as I know Toshiba does not support any CPU upgrades and it's not advisable to do something like that.
    Its a fact that the CPU replacement on the notebooks is not easy and mostly not recommended.
    The processors used in portables are connected to the system board using a process called TCP (Tape Carrier Package). This is a permanent connection method and is used in the interests of miniaturization and heat dissipation.
    Did you assign the new heat paste? Its necessary and important if you want to connect the CPU again.
    So possibly this is a reason for the no booting.
    I think more details you will get from the service guys in your country

  • Technical Upgrade & Testing

    We are doing technical upgrade from 4.6C to ECC 6.0.
    After we are through with the SPDD and SPAU modificaitons in the development environment, do we need to Functional Unit Test (by unit test, I mean complete fucntionality test) in there for all the objects in these SPAU and SPDD lists?
    Or is there any other way I can get all the programs tested. I am asking cause we have about 3000 objects in the SPAU list and we need to work on the modifications within a span of 3-4 weeks only!
    Any help is appreciated.

    Hello Anand,
    When upgrading from 4.6c to ECC 6 I would recommend complete functional unit test for all your company's  business processes.  This should include some kind of regression testing to ensure that existing functionality still works as well as the functionality that may have changed as indicated by the objects on the SPAU and SPDD lists.
    Having said that I understand the reality of a short implementaion time.  You may need to narrow your testing focus to just critical business processes.  Or you could use SPAU to identify where major changes have occured.  Either way this is not a support pack but a major upgrade and testing will be extensve.
    I know that this is not a great help.  Hope the upgrade goes well.
    Regards
    Greg Kern,

  • Oracle packages - nested table cursor - 11g upgrade testing

    I have a package call Crisis_Contacts. This package has a function(generate_file) in it that has a create cusor statement which calls on another function(split) in another package called NCF_UTL. In testing our code for a 11g upgrade the cursor statement calling on the split function is throwing a Error: ORA-00600: internal error code, arguments: [4814], [5], [0], [0], [], [], [], [], [], [], [], [] when compiling the package, which it was not doing prior to upgrade. Can you suggest a possible workaround or mod to this code to stop the error from occuring.
    Basically, this code is reading html files and spliting them into section and loading them into the cursor. Then the cursor is read to write them to a table. Then it reads the table and transmits the lines of html to another location.
    CREATE OR REPLACE package body ACADMGR.crisis_contacts as
    function generate_file( file_type in varchar2,
    person_pidm in integer := null,
    person_id in varchar2 := null,
    dry_run in varchar2 := 'N',
    pidm_filter in varchar2 := null,
    include_placeholders in varchar2 := 'N',
    comments in varchar2 := null ) return integer is
    cursor typeDef is
    select * from crisis_contact_file_type ccft
    where ccft.file_type = generate_file.file_type;
    file_type_def typeDef%rowtype;
    cursor fieldDef is
    select * from crisis_contact_file_field ccff
    where ccff.file_type = generate_file.file_type
    order by seq asc;
    type r_typ is ref cursor;
    r r_typ;
    datasel varchar2(32767) := '';
    r_pidm integer;
    pers_pidm integer := person_pidm;
    prev_pidm integer;
    r_tag varchar2(255);
    r_val varchar2(4000);
    type field_list is table of varchar2(256);
    type field_index is table of integer index by varchar2(256);
    type val_list is table of varchar2(4000);
    type req_tbl is table of boolean index by varchar2(256);
    req_fields field_list := field_list();
    all_req_seen boolean;
    fields field_list := field_list();
    vals val_list := val_list();
    field_idx field_index;
    out_id integer;
    out_line integer := 0;
    buf varchar2(4000);
    saved_out_line integer := 0;
    xml_section_lf_delims ncf_utl.split_tbl := ncf_utl.split_tbl( ncf_utl.crlf, chr(13), chr(10) );
    cursor splitcur( txt in varchar2 ) is
    select column_value line from table(ncf_utl.split( txt, xml_section_lf_delims ));
    cursor get_output is
    select text from crisis_contact_file_line
    where output_id = out_id
    order by line_no asc;
    log_time date := sysdate;
    log_seq integer := 1;
    procedure outp( txt in varchar2 ) is
    begin
    --dbms_output.put_line( txt );
    insert into crisis_contact_file_line
    ( output_id, line_no, text )
    values
    ( out_id, out_line, txt );
    out_line := out_line + 1;
    end;
    procedure split_outp( txt in varchar2 ) is
    begin
    if txt is not null then
    for r in splitCur( txt ) loop
    outp( r.line );
    end loop;
    end if;
    end;
    begin
    open typeDef;
    fetch typeDef into file_type_def;
    close typeDef;
    if pers_pidm is null and person_id is not null then
    select distinct(spriden_pidm) into pers_pidm from spriden
    where spriden_id = person_id;
    end if;
    insert into crisis_contact_file_out ( file_type, comments ) values ( file_type, comments )
    returning output_id into out_id;
    datasel := gen_outfile_sql( file_type, pers_pidm, pidm_filter, include_placeholders );
    if dry_run = 'Y' then
    ncf_utl.output_text( datasel );
    else
    split_outp( file_type_def.preamble );
    buf := '';
    for f in fieldDef loop
    fields.extend;
    fields(fields.last) := f.alias;
    field_idx(f.output_field) := fields.last;
    vals.extend();
    if f.mandatory = 'Y' then
    req_fields.extend;
    req_fields(req_fields.last) := f.output_field;
    end if;
    if file_type_def.file_mode = 'DELIM' and file_type_def.print_heading = 'Y' then
    buf := buf || case when fieldDef%rowcount > 1 then nvl(file_type_def.delimiter,',') else '' end ||
    nvl(file_type_def.quote,'') || nvl(f.alias,f.output_field) || nvl(file_type_def.quote,'');
    end if;
    end loop;
    if length(buf) > 0 then
    outp(buf);
    end if;
    --outp( '<?xml version="1.0" encoding="UTF-8"?>' );
    --outp( '<recipients>' );
    open r for datasel;
    loop
    fetch r into r_pidm, r_tag, r_val;
    exit when r%notfound;
    if prev_pidm is null or prev_pidm != r_pidm then
    if prev_pidm is not null then
    split_outp( file_type_def.record_end );
    all_req_seen := true;
    --check and reset 'seen' flags for required fields
    for i in 1..req_fields.count loop
    if vals(field_idx(req_fields(i))) is null then
    all_req_seen := false;
    end if;
    end loop;
    --if not all_req_seen then
    -- rollback to USER_START;
    -- out_line := saved_out_line;
    --end if;
    if all_req_seen then
    buf := '';
    for i in 1..fields.count loop
    if file_type_def.file_mode = 'XML' then
    outp( ' <' || fields(i) || '>' || vals(i) || '</' || fields(i) || '>' );
    elsif file_type_def.file_mode = 'DELIM' then
    buf := buf || case when i > 1 then nvl(file_type_def.delimiter,',') else '' end ||
    nvl(file_type_def.quote,'') || vals(i) || nvl(file_type_def.quote,'');
    end if;
    end loop;
    if file_type_def.file_mode = 'DELIM' then
    outp(buf);
    end if;
    end if;
    end if;
    --savepoint USER_START;
    --saved_out_line := out_line;
    if r_tag != 'endofdata' then
    split_outp( file_type_def.record_start );
    end if;
    for i in 1..fields.count loop
    vals(i) := null;
    end loop;
    end if;
    prev_pidm := r_pidm;
    if field_idx.exists(r_tag) then
    if r_val is not null then
    vals(field_idx(r_tag)) := r_val;
    end if;
    end if;
    end loop;
    if pers_pidm is not null then
    split_outp( file_type_def.record_end );
    end if;
    split_outp( file_type_def.postamble );
    --for o in get_output loop
    -- dbms_output.put_line( o.text );
    --end loop;
    end if;
    return out_id;
    end generate_file;
    procedure gen_and_transmit( file_type in varchar2,
    username in varchar2, pass in varchar2,
    pidm_filter in varchar2 := null,
    include_placeholders in varchar2 := 'N',
    comments in varchar2 := null,
    url_base in varchar2 := null, url_path in varchar2 := null,
    ssl_wallet_path in varchar2 := null, ssl_wallet_pass in varchar2 := null ) is
    out_id integer;
    begin
    out_id := generate_file( file_type, pidm_filter => pidm_filter,
    include_placeholders => include_placeholders,
    comments => comments );
    --transmit_file( out_id, username, pass,
    transmit_file( out_id, 'mhaywood', '------------',
    url_base => url_base, url_path => url_path,
    ssl_wallet_path => ssl_wallet_path, ssl_wallet_pass => ssl_wallet_pass );
    end gen_and_transmit;
    begin
    UTL_HTTP.set_persistent_conn_support( true, 10 );
    end;
    create or replace
    PACKAGE BODY NCF_UTL IS
    PROCEDURE OUTPUT_TEXT( BUFFER IN VARCHAR2, LINE_LEN IN INTEGER := 80 ) IS
    TYPE CHRLIST IS TABLE OF VARCHAR2(1);
    cr VARCHAR2(1) := CHR(13);
         lf VARCHAR2(1) := CHR(10);
         tab VARCHAR2(1) := CHR(9);
         whitespace CHRLIST := CHRLIST( ' ', tab );
         pos INTEGER := 1;
         len INTEGER;
         brk INTEGER;
         curbrk INTEGER;
         lnbrk INTEGER;
         whtbrk INTEGER;
         i INTEGER;
    BEGIN
    len := LENGTH(BUFFER);
         WHILE pos <= len
         LOOP
         WHILE SUBSTR( BUFFER, pos, 1 ) IN ( cr, lf )
         LOOP
         pos := pos + 1;
         END LOOP;
         --find the next newline type char, or pos+250 if one isn't found
    lnbrk := LEAST( NVL(NULLIF(INSTR( BUFFER, cr, pos ),0),pos+250),
                             NVL(NULLIF(INSTR( BUFFER, lf, pos ),0),pos+250) );
         --after the loop:
         -- whtbrk should be the last whitespace char before LINE_LEN + pos
         -- (or == pos, if none found)
         -- curbrk should be == 0 or the 1st whitespace after LINE_LEN + pos
         whtbrk := pos;
         curbrk := pos;
         FOR i IN 1..whitespace.COUNT
         LOOP
         LOOP
         curbrk := INSTR( BUFFER, whitespace(i), whtbrk + 1 );
              IF curbrk <= pos + LINE_LEN AND curbrk >= whtbrk THEN
              whtbrk := curbrk;
              END IF;
              EXIT WHEN curbrk > pos + LINE_LEN OR curbrk = 0;
              END LOOP;
              EXIT WHEN curbrk > pos + LINE_LEN;
         END LOOP;
         brk := LEAST( len + 1, lnbrk, NVL( NULLIF( whtbrk, pos ), pos + 250 ),
                        NVL( NULLIF( curbrk, 0 ), pos + 250 ), pos + 250 );
         dbms_output.put_line( SUBSTR( BUFFER, pos, brk - pos ) );
         pos := brk;
         END LOOP;
    END;
    function split( str in varchar2, d0 in varchar2, d1 in varchar2 := null,
    d2 in varchar2 := null, d3 in varchar2 := null,
    d4 in varchar2 := null, d5 in varchar2 := null,
    d6 in varchar2 := null, d7 in varchar2 := null,
    d8 in varchar2 := null, d9 in varchar2 := null )
    return split_tbl pipelined is
    pos integer := 1;
    curidx integer;
    idx integer;
    delims split_tbl;
    idx_delim varchar2(32767);
    len integer := length( str );
    begin
    if d0 is null then
    --split on whitespace
    delims := split_tbl( ' ', chr(9), chr(10), chr(13) );
    else
    delims := split_tbl( d0, d1, d2, d3, d4, d5, d6, d7, d8, d9 );
    end if;
    loop
    idx := -1;
    --we want the lowest value of IDX > 0
    for i in 1..delims.count loop
    curidx := instr( str, delims(i), pos, 1 );
    if curidx > 0 then
    if idx = -1 or curidx < idx then
    idx := curidx;
    idx_delim := delims(i);
    end if;
    end if;
    end loop;
    if idx > 0 then
    --if splitting on whitespace, treat any amount of it as
    --a single delimiter
    if d0 is not null or idx > pos then
    pipe row( substr( str, pos, idx - pos ) );
    end if;
    else
    -- also make sure to ignore trailing whitespace
    if d0 is not null or pos <= len then
    pipe row( substr( str, pos ) );
    end if;
    exit;
    end if;
    pos := idx + length( idx_delim );
    end loop;
    return;
    end split;
    function split( str in varchar2, delimiters in split_tbl := null )
    return split_tbl pipelined is
    i integer;
    cursor spcur( d0 in varchar2 := null, d1 in varchar2 := null,
    d2 in varchar2 := null, d3 in varchar2 := null,
    d4 in varchar2 := null, d5 in varchar2 := null,
    d6 in varchar2 := null, d7 in varchar2 := null,
    d8 in varchar2 := null, d9 in varchar2 := null ) is
    select column_value v from table (split(str,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9));
    function x( i in integer ) return varchar2 is
    begin
    if delimiters.exists(i) then
    return delimiters(i);
    else
    return null;
    end if;
    end;
    begin
    for r in spcur( x(0),x(1),x(2),x(3),x(4),x(5),x(6),x(7),x(8),x(9) ) loop
    pipe row( r.v );
    end loop;
    end split;
    END;
    Thanks

    Curious behavior, but irrelevant, IMHO, since one never switches back and forth between two releases in the real world. All that STARTUP UPGRADE does is that it enables upgrade scripts to be run - it does not prevent statements like CREATE USER from being executed since the upgrade may create new needed accounts
    http://docs.oracle.com/cd/E11882_01/server.112/e16604/ch_twelve045.htm#SQPUG128
    HTH
    Srini

  • Second upgrade test: back to 46C

    Hi,
    In a Solaris 10 UltraSPARC box we have already test an upgrade from a 46C (with 46D EXT Kernel) to ECC 6.0 one of our test istance.
    Today, I will test a second upgrade from 46C to 60... we have just restore database and re-create control file with a production (it is a 46C system) so now Oracle is up and running.
    To have 46C istance.... could I copy a kernel directory form a 46C system (without using SAPinst with backup/restore method) ? ... or I must uninstall ECC 6.0 system with SAPinst, install a 46C system with R3SETUP and then upgrade.
    Oracle, of course, is 10.2.0.4 with several patches.
    Thank you for attention.
    Ganimede Dignan.
    Regards.

    > To have 46C istance.... could I copy a kernel directory form a 46C system (without using SAPinst with backup/restore method) ? ... or I must uninstall ECC 6.0 system with SAPinst, install a 46C system with R3SETUP and then upgrade.
    you can copy the old kernel (4.6c) and old profiles.
    Markus

  • SAP Technical Upgrade Testing

    We are doing an upgrade from 4.6 C to ECC 6.0. My question is related to integration testing.
    When we upgrade, do we need to compare the test execution results from both the systems i.e. 4.6C as well as ECC 6.0? Does it make any sense? As far as I know, we should only test the upgraded system during integration testing.
    Awaiting your replies!

    Hi,
    You need to test the older version with Newer Upgrade as technical upgrade objective is
    One to One Mapping of previous Business process with Upgraded version.
    for e.g. Depreciation run for the Assets will give same result in the  new upgraded version May be the Display and cosmetic changes are done to the new Program but the results should not differ.
    As ECC6.0 has switch framework it may happen that some of the extension is active unknowingly which affects the business process
    So it is always recommended to test the existing 4.6c Business process with ECC6.0 environment.
    Thanks and Regards
    Pushkar Joshi

  • Trouble doing a database upgrade test for SCCM upgrade from SP1 to SP2

    I'm trying to do this test and am having trouble.  I'm following the instructions in
    http://technet.microsoft.com/en-us/library/bb693648.aspx.  However when I enter the command at a command prompt: setup /testdbupgrade e:\database test\sms_hlb_new I get the message: The setup command line option is not valid on this computer. 
    Any help anyone can provide to get around this problem would be appreciated.  I'm not a SQL admin and haven't done an SCCM upgrade before so any tips for a newbie would be great.  Thanks!

    The procedures are basically the same. You can even attach a copy of the database where ConfigMgr is runnig on (be careful to not /testupgrade the wrong one then). You cannot provide a command line parameter to point to a remote SQL server, but you can
    start setup.exe on any machine (so local to the SQL where the copy of the DP is)Torsten Meringer | http://www.mssccmfaq.de

  • R12 upgrade testing

    Hi all,
    We have upgraded from 11.5.10.2 to  R12 (12.1.3) on linux platform (rhel 4.6 to 6.2)
    Can any one suggest what testing(technical) we have to go through after the R12 upgrade has been done.
    Thanks

    In addition to what you can find in the upgrade manual Oracle E-Business Suite Upgrade Guide the list of sanity check question would include something like the following:
    - Create/Update users/responsibilities/functions/menus
    - Submit different types of concurrent programs
    - Ensure CM and Workflow is working as expected
    - Verify OPMN components and log files
    - Verify your custom tops (if any exists)
    .. etc
    You should come up with your own list when you upgrade your test instance and verify the same for production upgrade.
    You may Google "R12 Upgrade Lesson Learned" and/or "R12 Post Technical Upgrade" and you should get many hits.
    Thanks,
    Hussein

  • Upgrade test

    Hi we are going for a upgrade from ecc4.6c to 6.0
    what all are the scenarios i need to test in SAP HR for 4.6c?
    This is my 1st project so gurus please guide me
    thanks
    iyer

    Hi,
    There are 2 ways of upgrade to ECC 6.0. Technical and Functional. If the upgrade is technical then you may have to test the entire application but the changes you have to do might be less and caused due to technical changes. I am not sure on Functional upgrade.
    Thanks,
    Preetham.

  • Oracle  9.2.0.1.0 to 10g Upgradation testing

    Hi All,
    We are upgrading our database from Oracle 9i to 10g.
    Our development environment is Ascential Datastage ETL Tool
    Our project has been already developed by some other team and now only database up gradation is happening.
    Need some clarifications and solutions
    1)     How we can get to know all these objects are properly upgraded
    2)     What can be the best testing strategy for testing all these database objects like tables, functions, procedures , views, sequences etc. If any similar document has been prepared by any of the projects, please send to my mail id
    3)     Is there anything we need to do change in any of the objects to make compatible with 10g. like any functions that has to be replaced or datatype mismatching etc …..
    4)     The type of testing needs to be done for different database objects.

    Anyone familiar with the way English is spoken in America, excluding one small enclave in North Carolina perhaps, should understand a couple of things:
    1. I understand a bit of Hindi so I understood some of the background conversation while on the phone with the spammers.
    2. The individuals speaking to me were as dumb as a bag of hammers.
    Now according to Wikipedia the planet has about 370 million people who speak Hindi as a first language and another 580 who speak it as a second language. 950 million people minus two seems a reasonable ratio.
    Anyone looking too hard to find an insult can likely find it looking at their own reflection in the mirror. Grow up and get over it folks.
    BTW: Don ... you are the one that referred people to your website claiming it contained the list that you use. Taking you at face value it appears that your list does not include doing a backup. Perhaps you are so expert in the practice that you "understand" that but if you are going to refer novices to your site you need to offer them a complete list along with the ubiquitous advertising.
    Anyone wanting my list can get it for free ... here it is:
    1. Read the relevant Oracle documents
    2. Go to metalink and research any problems others have had with the procedure
    3. Create an RDA, zip it, and have it ready to upload to metalink
    4. Perform a level 0 backup using RMAN
    5. Verify the backup is valid and can be used for a restore
    6. Start flashback logging if not already running
    7. Create a guaranteed restore point
    8. Follow the directions at Step 1 except as modified by docs read in Step 2.
    Not one of those steps is in your list Don? And, quite frankly, I think people would be ill-advised to consider steps on what to do for "SLOW PERFORMANCE AFTER UPGRADE" any guidance on performing the upgrade itself.
    But heck ... anytime you can send people to a page full of advertisements why miss the chance.
    People interested in tuning would be well advised to go to one of these URLs:
    http://www.jlcomp.demon.co.uk/faq/ind_faq.html#Performance_and_Tuning
    http://www.hotsos.com/oop.html

  • Upgrade test server to Windows2003

    Hi,
    Our essbase test box is running on Windows 2000 and the essbase version is 6.5.4. Our IT infrastructure group is seeking to upgrade os to Windows 2003 directly on the test box. Would this impact existing essbase applications on the server? Since essbase is 6.5.4, Oracle Hyperion does not have any documentation to tell if this is suported. Can a direct os upgrade be done without impact to essbase? OR maybe it's not supported, but someone did it without any issue?
    Thanks.

    @Sandeep gotcha... I was giving a generic statement for all versions there... nevertheless.. thanks for pointin out...
    Hi,
    You can have a backup of entire folder structure of app folder.
    once you had upgraded the OS and reinstalled Essbase you can copy the app folder to apppath and try creating each application trhough MaxL.
    Essbase will create an entry in sec file for each application and will take all the databases and other objects from the folder structure.
    You may need to create all the filters, groups, users, subst variables again as these will normally stored in sec file.
    But I would suggest to proceed with OS upgrade without uninstalling Essbase. I guess it might work as it is.
    But to be on safer side, take the backup of app folder and prepare scripts to recreate filters, groups, users, subst variables.
    - Krish

  • Post Kernel Upgrade Tests ?

    Hi All,
    We recently upgraded to the latest 700 kernel (179) in our BI, PI, SM and CRM Development Environments due to address some known gateway issues, and as recommended by SAP.
    Before moving through to QA and PROD, apart from normal business validation, I would like to perform some basis validation tests also in DEV. Could anyone recommend some basis checks that would help me to validate the Kernel ?
    Thanks.

    There is no particular post upgrade kernel tests as such.
    But if you want to verify that the latest patch is reflecting in SAP system, you can login to sap system and go to:
    +System >> status >> and press Shift + F5 (other kernel info).+
    It will show the current kernel patch level in SAP.
    Cheers,
    Jazz

  • FIXED: I now have a Trial/Test License for Upgrade Test in Lab

    I have a couple DMM servers at version 5.2.3, and I need to test the ability of 5.4 to work with our InformaCast Server.  I installed the 5.4 VM on ESXi, but I need a license to get the VM to send media output to a DMP in my lab setup.  I currently have 60 DMP licenses (30, plus 10 pack, plus another 10 pack), but I'm only using 39 of them, so maybe I could use one of my 10 packs which are currently on my production DMM server -- assuming I could later UNinstall them from the lab and put them back on my production box?
    UPDATE:  I have the license now.  I think I should probably post a separate discussion thread now, because I realize I need to have the DMP on the same major version of software, but I'm not sure if I can downgrade after an upgrade to a DMP (in case the server is not going to work for us, at the new version).
    Message was edited by: Paul Richardson

    You can downgrade a DMP the same way you upgrade it. Just select the older version of code for your player when you have finished testing in your lab environment.
    Sent from Cisco Technical Support iPad App

  • Physical to Virtual Copy of 11i EBS and 10gR2 DB instances for Upgrade Test

    We recently completed a P2V copy of our 11.5.10.2 EBS instance and its corresponding database. We then ran the adcfgclone.pl script on each tier to rename the SID and basically create a new instance. When I navigate to the newly assigned web address to access this environment for testing, I can get to http://host.domain:port, click on Apps Logon Links, then E-business Home Page. Once I click that, I'm redirected to the original (Physical) instance's site. Any idea how I can resolve this issue?
    Please let me know if you need additional information.
    Thanks!
    Kristopher

    I've checked all that you mentioned in your post, and everything refers to my new host.domain:port. I haven't made any changes at the OS level regarding this new VM. Are there any OS-level changes that need to be made to point to this new host? I've already run the txkrun.pl script as follows:
    txkrun.pl -script=SetAdvCfg -appsuser=<appsuser> -appspass=<appspass> -enable=HTTPLoadBal
    and answered the prompts to reflect the new host and domain.
    Thanks!
    Kristopher

  • Upgrade test version to full version FAIL

    after using the lightroom test version for 30 days, I bought the full version via Amazon. Software installation is completed but I still cannot use the programm. I am also not being asked to enter any system key. What am i doing wrong?

    What am i doing wrong?
    What are you doing? Describe in detail.

Maybe you are looking for

  • House Bank G/L account is missing

    Hello all, I am trying to import BPs (business partners) via DTW. The data to import is very simple (CardCode, CardName, CardType, Currency, Federal TaxID and VatLiable). However, when the import process is finished I get the following error message:

  • WCS Heat-MAP

    I am using the planning mode available in the WCS to generate proposals, Is there any way that in the proposal I can just view the heatmap and not the AP's. The reason for this is, I just generated the proposal of a mall. As the space is  huge it is

  • How do I configure safari to open external links in the existing window

    The current version of Safari (8.02) always opens an external link (such as from Mail) in a new tab.  I would like to configure so that it loads the link in the existing open tab (window).  Is there a way to do that?  If so can some one tell me how t

  • Suggestion for improvement of Nokia N9

    I don't know about everyone else, but I love my Nokia N9, but recently I have had to switch phone to the Samsung Galaxy S3. Main reasons for the change - Storage space and apps. 1. I would suggest having a expandable slot for Micro SD to increase sto

  • Adobe reader quits unexpectedly on yosemite ,even after reinstallation

    I am using a 13 inch  Mac book pro running yosemite. Adobe reader 11.0.10 quits unexpectedly. Tried deleting and reinstalling, no use. Any way out. Hoping for a reply.                             Dr.Anand