Client refresh procedure

hi all,
   i have two system landscape, dev and pro, on hp-unix, oracle 9.1 and sap 4.7.
i want refresh the dev client (it have  old data). i want know.
who to do my dev client refresh ?
how to check compare space req ?
i need procedure doc. where i will get...please provide link then i can download.
thnaks and  regards,
swathi

Hi Swathi,
I normally do a client copy using export and import. I felt very comfortable to perform a export/import rather than a remote copy which will put a tremendous load in your existing network.
These are the steps I follow to refresh my client in DEV / QA from PRD,
1. Export the DEV users in a transport request.
2. Schedule the YSTABSIZ to check the size of the DEV client (Login with the target client)
3. Delete the DEV client using SCC5.
3. Export the Production data (Select the appropriate profiile for your need) SCC8
4. Compare the DB size of each table space of DEV with PRD. Estimate the DB space growth after deletion ( DEV data) and importing the PRD data. This can be done through experience and there is no step by step guide to do the activity. Add datafiles if needed in dev system.
5. Write a shell script to GZIP the exported file. (Perform GZIPing of exported data)
6. Write a shell script to convert the GZIP file to TAR file.
7. FTP the TAR file from Production host to Development host.
8. Write a shell script to UNTAR the file..
9. Write a shell script to UNZIP the files
10. Now you have the production data to Import.
11. Use STMS to import the production client in to Dev system.
12. Import the user master transports for the DEV system.
13. Perform Post processing activities after client import.
Now you have your production client in Dev system.
regards,
VInodh.

Similar Messages

  • What are the security post refresh procedures in general?

    Hi,
    Can anyone list me out What are the security post refresh procedures in general?
    Thanks and Regards,
    Damanaidu J

    >
    Damanaidu jawaharlal wrote:
    > Hi,
    >
    > Can you cite with respect to CUA.
    >
    > Thanks and Regards,
    > Damanaidu J
    CUA
    ====
    CUA behaves differently during a system/client copy and this is the approach we took and it was successful.  The goal is to take a backup of the source before CUA deletion then restore. Do not delete CUA and just attempt to rebuild it, all the roles will be gone.  Backup and restore will be the approach I recommend.
    a1.  Take a snap shot of your QA user and role assignments before copy.
    1.  (Basis) First make a backup of the source system.  This is important before step 2.
    2.  After successful backup delete the CUA from the source system. 
    3.  After successful copy to target system, restore backup to source system.
    4.  Depending how the copy was done, users and passwords should be in the target system but all the role assignments will be gone. 
    5.  Start assigning roles base on your requirements.  If you need to restore the old QA settings that is captured in a1.
    Perhaps others can add in other steps I might have missed.
    Good Luck!

  • System refresh procedure!!!

    Can anyone of you please help me in understanding the system refresh procedure??What it is used for and how does it help an organisation!!!

    Read
    http://help.sap.com/saphelp_nw70/helpdata/EN/a2/2f0c173a5e43d19585724239ff4de7/frameset.htm
    Markus

  • Diff. between Client Refresh and System Refresh ?

    Hi Gurus,
    Can anyone tell me the difference between System Refresh and Client Refresh ??
    Regards,
    Kalyan

    Hai,
    Check the below link.....
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/difference-between-client-refresh-and-system-refresh-1838354?cv=expanded
    Regards,
    Yoganand.V

  • Please tell me the step by step process of Client Refresh from PRD to QAS

    Dear All,
      We need to Client refreshment form PRD to QAS. The client refresh used to Client export and import method, but our requirement for only last six month data from PRD to QAS. The any option is need only last six month data move from PRD to QAS. Please guide us this issue.
    Best Regards,
    Thiru

    Hi Thiru,
    There is no standard functionality that does this.  There are service offerings from SAP -- TDMS -- and other 3rd party tools that can, though.
    Best Regards,
    Matt

  • Difference between system refresh and client refresh

    Hi all,
         I have one dout what is the difference between system refresh and client refresh,kindly tell me the answer?
    BR
    krishnamurthy.

    Hi,
    Client is part of a system.
    Client copy :Can happen within a single system(local client copy)  or to other system (i.e b/w systems) .
    Here we have some profiles to extract the data depending on the need.
    System Copy: We are copying the entire system to other system.we get the entire systems data (DB) .
    In both the cases we have to make sure that they are on same application component and are on same patch level.
    Thanks!!
    Edited by: Vani n on Jun 27, 2008 2:45 PM

  • How to call the client side procedure...with trigger code

    hi
    i have made a client side procedure with one IN PARAMETER having datatype number. i call this procedure through a button in which i declare a CURSOR
    (all_emp)...so in the BEGIN SECTION i make a loop as (FOR e IN all_emp LOOP) and then call the client side procedure as CALC_EMP_PR_ALW_DED(e.emp_id); but here the error show that is statment ignored....
    so plz help me that where i am wrong.... here is the trigger code
    working in forms 6i...
    IF SHOW_LOV('LOV_EMP') THEN
         NULL;
    END IF;
    DECLARE
         CURSOR all_emp IS
                   SELECT DISTINCT e.emp_id
                   FROM alw_ded ad,emp_alw_ded ead,emp e
                   WHERE NVL(ead.status,'A') = 'A'
                   AND NVL(e.stat,'A') = 'A'
                   AND ead.ad_id = ad.ad_id
                   AND e.emp_id = ead.emp_id
                   AND ead.emp_id = :CON_BLK.emp_id;
    BEGIN
              FOR e IN all_emp LOOP
                   CALC_EMP_PR_ALW_DED(e.emp_id);
              END LOOP;
    END;
    thankx in advance

    yes i did same and i send u the procedure code as... now i wnt to use these
    PROCEDURE CALC_EMP_PR_ALW_DED(P_EMP_ID IN NUMBER) IS
    v_basic NUMBER; --Basic Pay of employee
    v_l_p CHAR(1); -- Percentage or Lump sum
    v_amount NUMBER; -- Amount or value of Allow/ded/contr
    v_max_limit NUMBER;
    v_type NUMBER; -- Allow/ded/cont          
    v_b_g CHAR(1); -- Basic or Gross
    v_min_limit NUMBER;
    v_emp_id NUMBER;
    v_user Varchar2(20);
    v_gross NUMBER;
    v_max_amount NUMBER; -- DEDUCTION ACTUAL AMOUNT NOT MAX
    up_limit NUMBER;
    new_amt number;
    CURSOR all_alw_ded IS
         SELECT ad.abbre,ead.ead_id,e.emp_id,descrip,l_p,ad.amount,nvl(ad.max_limit,0) max_limit,b_g,ad.type,nvl(ad.min_limit,0) min_limit
                   FROM alw_ded ad,emp_alw_ded ead,emp e
                   WHERE NVL(ead.status,'A') = 'A'
                   AND NVL(ad.TYPE,'A') = 'A'
                   AND ead.ad_id = ad.ad_id
                   AND e.emp_id = ead.emp_id
                   AND e.emp_id = P_EMP_ID;
    BEGIN
              SELECT USER
              INTO v_user
              FROM
              DUAL;
                   FOR e IN all_alw_ded LOOP
                                  IF e.type = 'A' THEN
                                  new_amt := Trunc(e.amount);
                                  ELSE
                                       new_amt := Round(e.amount);
                                  END IF;
                             IF e.l_p = 'P' AND e.b_g = 'B' THEN
                                  v_basic := nvl(HRPR.EMP_BASIC(e.emp_id),0);
                             END IF;          
                                       SELECT nvl(BASIC_PAY,0) INTO v_basic FROM EMP WHERE EMP_ID=P_EMP_ID;
                                       IF NVL(e.max_limit,0) > 0 THEN
                                            up_limit := nvl(((v_basic * nvl(e.amount,0))/100),0);     
                                            IF up_limit > e.max_limit THEN
                                                 v_max_amount := nvl(e.max_limit,0);
                                       --     v_max_amount :=100;
                                            ELSE
                                                 v_max_amount := ((nvl(v_basic,0) * nvl(e.amount,0))/100);
                                            END IF;
                                            ELSE
                                                 v_max_amount := ((nvl(v_basic,0) * nvl(e.amount,0))/100);
                                                 --     v_max_amount :=200;
                                            END IF;
                             IF e.l_p = 'P' AND e.b_g = 'G' THEN -- %AGE AND GROSS... CHECK NOT PRESENT...?? AHSAN 10-09-05
                                  v_gross := HRPR.EMP_GROSS(e.emp_id);
                                  IF e.type = 'A' THEN
                                       new_amt := Trunc((v_gross * e.amount)/100);
                                  ELSE
                                       new_amt := Round((v_gross * e.amount)/100);
                                  END IF;
                             END IF;
                   END LOOP;
              END;
    -- END; ------- PROCEDURE END

  • WebI report in Rich Client refreshing - But not in the webbased WebI client

    Dear experts,
    I am quite new to BO and I am currently facing the following problem regarding our WebI reports:
    I created a WebI report in the WebI Rich Client. This report accesses an OLAP universe, which in turn gets data from a SAP BW through a BI query. I also exported the report to the CMS. In InfoView, it is displayed correctly as well. The report displays the data alright.
    Now here comes the strange part of it: When refreshing the report from within the WebI Rich Client, the data is being updated (the current BW data is being shown) as it is supposed to. BUT when refreshing the report from within the WebI Java client (in InfoView), the report would not update, i.e. it would not display the current BW data but instead the old data. When scheduling instance creation the instances would also not display the current data.
    We are am running BO XI 3.1, no FixPacks.
    Does anybody have a clue why this is happening?
    Any hint would be appreciated.
    Many thanks in advance!
    Best,
    Kai

    Hi Ingo,
    Many thanks for your reply!
    The report would not refresh after I hit "Refresh data" ("Daten regenerieren" in German). Plus the newly created instances (one instance is being created every 5 mins) would also not show the current data.
    The funny thing is that as soon as I go back to the Rich Client and hit "Refresh data" in the Rich Client, the report would always show the current data, never the old ones.
    We should probably continue discussing in just one thread (Scheduled WebI report instances with differing values), this issue seems to be interrelated somehow anyway. Sorry for opening up multiple threads.
    Thanks and best regards,
    Kai

  • ORACLE 10 INSTANT CLIENT:The procedure entry point OCILobRead2 could not...

    The problem still remain:
    I've installed oracle 10g instant client
    SQL*Plus: Release 10.2.0.3.0 - Production on Wed Jan 10 12:43:40 20
    PHP VERSION: php-5.2.0 for Win32
    APACHE VERSION: apache_2.0.59 for WIN32
    But I've the same old error when I try to restart Apache:
    The procedure entry point OCILobRead2 could not be located in the dinamic link library OCI.dll
    Is there anyone who can help me to solve this kind of problem?
    Thanks in advance.

    The solution is that you need to have Oracle 10g client side libraries
    installed (or you have to recompile PHP yourself). The oci8 extension
    has some version dependent code and the person who builds Windows PHP
    builds it with the latest version of Oracle. I was discussing the
    impact of this just this week.
    Luckily Oracle Instant Client can be downloaded and used for free from
    http://www.oracle.com/technology/tech/oci/instantclient/index.html
    Also see
    http://www.oracle.com/technology/pub/notes/technote_php_instant.html
    -- cj

  • Oracle.DataAccess.Client stored procedure ORA-01403

    Hello,
    Microsoft announced that System.Data.OracleClient is deprecated and will be no more supported so I try to use the driver Oracle.DataAccess.Client after having installed ODP.
    It works fine except for stored procedures.
    After calling a stored procedure that increases a value in a column I meet this error :
    ORA-01403: no data found
    ORA-06512: at "XXXXX.MY_FUNCTION", line 15
    ORA-06512: at line 1
    Oracle Data Provider for .NET
    at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure, Boolean bCheck)
    at Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, String procedure, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, Boolean bCheck)
    at Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery()
    The same function worked very well during several years with OracleClient !
    Does any body has an idea ?
    Best regards
    Alan

    Hello,
    I had the solution by an other forum.
    It's necessary to define the property BindByName at true.
    The driver OracleClient did that by default not the driver DataAccess !
    Best regards

  • BI CLIENT REFRESH FROM PRD TO DEV

    DEAR GURUS,
    I want to do client copy from production to development of BI server. I want to carry out the infocubes, queries, etcc. from prd to dev.
    for the above activity which profile i want to select for client copy.
    After client copy shall i get all the infocubes,queries of prd server.
    Because for system copy i don't have that much space in dev server.
    please guide me
    regards
    santhosh

    Hi,
    Pls chk this:
    How to System Copy in SAP Business Intelligence System Landscapes (NW2004)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bff13df2-0c01-0010-6ba7-bc50346a6fd8
    Strategies, Techniques, and Best Practices to Upgrade, Copy, and Migrate SAP BW Systems
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b8d163a7-0301-0010-d9b0-98f692ea3c60
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bff13df2-0c01-0010-6ba7-bc50346a6fd8
    Note 184322 - Procedure after DB copy of BW source systems
    Note 886102 - System Landscape Copy for SAP BW 2.X, 3.X and NW2004s BI
    Note 771209 - NW04: System copy (supplementary note)
    Note 89188 - R/3 Source System Copy
    Regards
    CSM Reddy

  • RAM variable refresh procedure

    Hello,
    It is possible to create RAM maintenance procedure which makes aggregation (refresh) in hybrid database only fact data with limit (ex. only for one month) without changing data outside limit and without changing dimensions ?

    No it is not possible to do this in RAM/RAA

  • Web Client Refresh

    When using a web client, everything works fine the first time in. If I use
    the "refresh" button or "back" button and then try to load any web client
    I end up with a blank screen. The "need to load files" dialog comes up,
    the files download and then dies. If I close IE, and start over, it works,
    once.
    I've talked to NI but they can not duplicate the problem, but they think
    the problem is in an IE or Windows setting. I tried the web demo on the
    NI site and had the same problem. I have tried files on various computers
    with Win95, Win98, NT IE4 and IE5. I even tried to unload all of Lookout
    and IE and then reloading IE with all the defaults. The same problem occurs
    on all.
    Microsoft's site mentioned a way to review the error log files w
    hen active
    x clients fail to load. No errors there.
    Has anyone seen this problem?

    I am using Lookout 4.0.1 B51. In the mean time, I did find a machine that
    everything works on, running NT 4, B1381 SP3. I have noticed that sometimes
    when I shut down a process under IE, it will hang after the window has closed
    and I have to use task manager to kill it (related?).
    Jim
    "Ross Houston" wrote:
    >>Jim,>>Are you using Lookout 4.0 or Lookout 4.0.1? There is a known problem
    with>Lookout 4.0 that could possbily manifest itself as what you describe.
    (It's>process-dependent though, so it might not misbehave in every process.)
    The>problem was not with the ActiveX side of things at all, but with Lookout>itself.
    When you hit the refresh button, you are essentially telling Lookout>to
    shutdown completely and then re
    start immediately. In a multithreaded>application
    this can sometimes cause trouble if some of the threads from>the old run
    are still around when the new run starts. In Lookout 4.0.1 we>made sure
    that all of these threads are gone and that Lookout starts clean.>>Ross Houston>Lookout
    R&D>>"Jim Mauldin" wrote>>When using a web
    client, everything works fine the first time in. If I>use>the "refresh"
    button or "back" button and then try to load any web client>I>end up with
    a blank screen. The "need to load files" dialog comes up,>the>files download
    and then dies. If I close IE, and start over, it works,>once.>>I've>talked
    to NI but they can not duplicate the problem, but they think>the problem>is
    in an IE or Windows setting. I tried the web demo on the>NI site and>had
    the same problem. I have tried files on various computers>with Win95,>Win98,
    NT IE4 and IE5. I even tried to unload all of Lookout>and IE and then>reloading
    IE with all the defaults. The sa
    me problem occurs>on all. >>Microsoft's>site
    mentioned a way to review the error log files when active>x clients>fail
    to load. No errors there.>>Has anyone seen this problem?>

  • Cliente refresh - performance

    Hi All,
    When I've to refresh some client and by refresh I mean maintain the same cliente number with new data, I usualy delete it first (scc5) and then copy it (SCCL)
    Is there any performance difference between separate the steps and just do a client copy without delete the target first?
    Regards

    I do not think that this relates to any performance problem.
    Infact, this is the first time I got to see that before client copy, someone is deleting the client and do newclient/SCCL.
    We always do sccl not by deleting the target and recreating but by just overwriting. why we need deletion ? why you do it ?

  • Can server side notify client automatically instead of client refreshing

    generally, when we get messages to client, we use refresh requests from server make changes. Dose anyone know in Java has any mechanism that the server can notify client automatically, and dosen't need the client request server initially?
    how to implement this?

    Thanx, but if not in Http, can java relealize this? For instance, use socket or something else?

Maybe you are looking for

  • Macbook Air Trackpad And Keyboard Unresponsive!! PLEASE HELP!

    Hello everyone, a while ago (about 2 months) my Macbook air started having troubles with its trackpack and keyboard. At random times they would become unresponsive and just stop working. They would work for like 1 second when the computer turns on bu

  • Problem ical synch to icloud

    iCloud calendar acting up. Web app for icloud calendar synchs fine with ipad and iphone.  iCal on my Mac desktop doesn't synch in either direction.  Deleted icloud account on mac and installed it again.  No joy.  Constant "Calendar - Updating" messag

  • }_} W( )w this 'Book is amazing!

    I just realized that the iBook is the most robust Laptop ever made! My iBook has fallen down stairs, taken a punch, been spilt on, experienced temperatures of almost 85* C. Lost most of its foot things and even been shaken around which in full operat

  • Microsoft office test drive

    Microsoft Office Test Drive came with my new iMac. I already have Microsoft Office and it was copied over when my files were transfered to my new computer. I would automatically be taken to Test Drive whenever I opened a document I had already create

  • ALE or LSMW

    Hi All, My requirement is to move Organization Management data(infotypes 1000,1001) from one SAP system to another SAP system, can i use ALE concept for the same? If yes, what advantages can i have over LSMW? which is the better approach? What are th