Restore the entries of RSRVARIANT table in BI

Hello Gurus,
Unexpectedly I deleted the entries in RSRVARIANT table in development system.
Is there any way that I can copy the values from production system?
Please provide your inputs.
Thanks!!
Edited by: Sabbani on Aug 10, 2011 2:59 PM
Priority normalized
Edited by: Rob Burbank on Aug 10, 2011 9:25 AM

Go to RSA1.
Source system tab.
Right click on source system -
> Transfer Exchange Rates.
Hope this  helps.

Similar Messages

  • How to delete the entries in CDCLS table

    Hi All,
    There is a potential issue with the size of table CDCLS on production system. We need to reduce or manage the amount of data in this table. CDCLS is a cluster table and cannot be reduced directly,
    So first we were reduced the entries in CDHDR and then from CDPOS tables.
    After that we tried to reduce the entries from CDCLS table through the program - RSSCD7RE, We are facing the error as - no data available and No active archive key was selected.
    Please help me out, how to proceed further in this task. Thanks in advance.

    Go to DB15 and see the archiving object.
    You can also use the archiving object CHANGEDOCU, please refer SAP documents for that.
    Transaction is
    SARA -> Archive object CHANGEDOCU
    Message was edited by:
            ANIRUDDHA DAS

  • Who mainatined the entries in sap table

    Hi,
    Can someone please tell me how do I find which user mainatined the entries in table B006 or any sap table.
    Also how will I know who has authorization to maintain the entries.

    hi
    first go to SE16n and enter the table name as CDPOS  and in the selection screen enter the table name as B006 and execute now you will get the following
    change doc object
    object value
    document number
    make a note of the above and now goto se16n and enter the table name as cdhdr and enter the above values which you got in CDPOS
    like change doc object or object value and execute now you will get the user name who had maintained or changed the entries for that table
    regards

  • Who have made the entry in Z table

    Hi Friends,
               Can anyone tell me - how to find out who have made the entry in Z table ?
    Sonal

    Hi sonal,
    I want to say that if logging of tables is on in your server and you have also make log on in Technical settings of the table then you will be able to see the log using 'SE14'.
    First consult with basis about the setting of server and if they have set logging of tables ON
    THEN
    goto se11 and give your table name.
    open the table and click on  'Technical Settings'
    in last their is a check box 'Log data Changes'
    Check if this is on or not.
    If both condition are ok then you can check the log of your table in SE14
    using 'Object Log' button in application tool bar.
    Regards,
    Wasim Ahmed

  • How to delete the entries from NAST table

    Hi,
    Please help me out by providing any function module that delete's the entries from hte NAST table.
    Regards,
    Kiran.L

    REPORT ZSCD_TEST13.
    delete from nast where VSTAT = '1'.
    =====
    If you see the FM : NAST_DELETE_OBJECT, its only useful when NACHA = 7 (i.e. message transmission medium = Simple Mail)
    For others its not useful.
    We had similar issue few days back and after long RnD, we straightaway deleted the entries using the Zprogram.
    regards,
    Edited by: Pranu Pranu on Aug 19, 2008 1:42 PM

  • Delete all the entries in target table when message mapping?

    Hello Gurus,
    I have a requirement in the project. When I do message mapping, I need to delete all the entries in the target table and then insert the new rows. From searching the old posts, I know it is possible without BPM. Can anyone please help me out? I really appreciated it.
    Regards,
    Bai

    Hi Bai,
    Check the below links:
    http://help.sap.com/saphelp_nwpi711/helpdata/en/43/9519abb1146353e10000000a11466f/frameset.htm
    Defining a DELETE Statement 
    http://help.sap.com/saphelp_nwpi711/helpdata/en/44/7b6e85fde93673e10000000a114a6b/content.htm
    Thanks,

  • Does deletion of a document also deletes the entries in audit tables?

    Hi,
    Can anyone tell me that if a document is deleted from UCM (say it's archived and then deleted) will this also remove all the audit trails and entries in other tables(docmeta,revisions,workflowhistory.. etc) as well?
    Also if there are custom tables , will the entries be deleted automatically? How does this work?
    I have to generate reports for the documents that are not archived.
    Regards,
    saumya

    Hi,
    Tables like Workflow History need to persist these content items as its purpose is totally different. If a admin wants to know how many content went through a particular workflow, this is the table he could refer to and also know who approved them. It is up to you to truncate records in these tables depending upon the organization need. You can for example truncate records older than 5 years from these tables.
    Regards,
    - Anand

  • Checking the entries in internal table with Ztable

    Hi ,
      Please go through the below requirement and please give me the code.
    I am having an internal table ITAB with 5 entries and also having a Ztable with 10 entries. I should check weather any of the entry in the internal table ITAB  is present in the Ztable or not?
    Please give me the code
    Thanks in advance,
    Ajay

    Select f1 f2 f3 from ztable into itab1 "say ur ztab entries
    *now say ur itab contents are in itab2.
    sort itab2 by f1 " set the primary key in both .
    delete adjacent duplicates from itab2 comparing f1.
    Loop at itab2.
    read table itab1 with key f1 =  itab2-f1.
    if sy-subrc eq 0 .
    write:/ 'Entry exists '.
    endif.
    endloop.
    On every sy-subrc hit i.e eq 0 write statement tells u a hit and no of times = number of the entries.
    Vijay.

  • How to delete the entries in internal table

    Hi Experts,
    I have 2 internal tables ,
    if i find any same entries of 2 internal tables,  i have to delete that entries in first internal table.
    Regards,
    Srinivasu

    hi check this..
    report .
    data:begin of itab occurs 0,
         f1 type c ,
         f2 type i,
         end of itab .
    data:begin of itab1 occurs 0,
         f1 type c ,
         end of itab1 .
         itab-f1 = 'A'.
         itab-f2 = 12.
         append itab .
         itab-f1 = 'b'.
         itab-f2 = 12.
         append itab .
         itab-f1 = 'c'.
         itab-f2 = 12.
         append itab .
         itab1-f1 = 'A'.
         append itab1 .
    loop at itab1 .
    read table itab with key f1 = itab1-f1 .
    if sy-subrc  = 0.
    delete itab where  f1 = itab1-f1 .
    endif .
    endloop.
    loop at itab.
    write:/ itab-f1,itab-f2.
    endloop.

  • How to rebuild the config from the entries in the change logs

    Hi,
    We have overwritten something vital in the KEDR t.code through a transport.  The users have created their own entries in the KEDR t.code directly in the system because this t.code was available for editing although the Client was locked for customizing (option no changes allowed). Not sure why SAP allows KEDR to be edited although the client was locked for customizing. Anyone knows?
    Now the problem is how can we restore the entries maintained by the users?
    Fortunately this KEDR table is enabled for audit log. Is there a way to actually restore the entries from the change logs? Please advise.

    If the device is already in the Prime Infrastructure, you can open it in Device work center and select the device > use the configuration archive option > scheduled deploy.
    Also, the Prime Infrastructure Plug and Play feature allows you to perform an initial provisioning of a software image and configuration on a new device. For more details check :
    Automating Device Deployment Using Plug and Play Profiles
    Working with Device Configurations
    -Thanks
    Vinod

  • Removal of  Developer Key entry from DEVACCESS Table.

    Hi,
    On table DEVACCESS, in QTY/DEV/Prod there is one person with Developer Key listed that I would like to remove,  User is no more working and now we want to delete the entry from this table which has the User name followed by the Developer key assigned.
    Could any one guide me in deleting the Developer Key access from the DEVACCESS table.
    Satish.

    Another alternative is to use SE11 to create a maintenance view (ex: ZV_DEVACCESS).  Secure the maintenance view with a custom authorization group.  With the maintenance view you have the ability to use SM30 to maintain the DEVACCESS data.
    That keeps the DEVACCESS table from changing and thus no need to register the change with SAP.
    Cheers,
    Brian

  • Clear Entries in Variable Table

    Hello Experts,
    How can i clear the entries in variable table in PCR? what operation should i be using to clear entries in a pcr while processing payroll.
    Thanks,
    Janga K.

    Create a PCR to clear all the temporary variables that will be created in a sub-schema,
    and call it up at the beginning of that sub-schema with function ACTIO.
    The PCR itself is for ESG * and WT ****, and uses operation ZERO=&xxxx over and over, as in:
    ZVR2   *       ****       
            ZERO=&CURP
            ZERO=&FPAY
            ZERO=&LPAY
            ZERO=&SPLT
            ZERO=&9LLP
            ZERO=&JPAY
            ZERO=&TERM
            ZERO=&TLOA
            ZERO=&FLOA
            ZERO=&9HEJ
            ZERO=&P098
    P.S. : Use program RPDASC00 to look at your sub-schema and it's rules, and search for operation ADDWT& to find them.

  • In looking at my calendar for January, I found all the entries from last year. I thought I would delete the while month and start over, but it deleted all calendars from icloud.  Can I get them restored and how.  Stoormy

    In looking at my calendar for next year I found all the entries from last year were there as well as a few more  I intended to delete January and just start over but everything was deleted including from icloud,  Any way I can get those restored.
    Thanks  Glenn

    Maybe here:
    iCloud: Troubleshooting creating backups

  • How to add the entries and how to delete the entries from custom Z-table?

    Hi Experts,
    My requirement is I need to add the entries from program to three custom z-tables . Assume as zabc1,zabc2,zabc3.
    Here how to add the entries from program to Z-table.???
    And one more requirement is I want to provide a deletion checkbox in selection screen . Initial it was unchecked. If I am giving tick mark then the entries should be deleted from above custom Z-tables. this all will done in backgroung job?
    Could you please guide me the logic how to crack this???
    Let me know if you need more Info
    Thanks
    Sanju

    Hi Sanjana,
    What you can do is to use the ABAP keyword INSERT or MODIFY to add or modify records to a given database table. Here are the syntax taken from SAP documentation:
    *Insert Statement
    INSERT dbtab
    Syntax
    INSERT { {INTO target VALUES source }
           | {     target FROM   source } }.
    Effect
    The INSERT statement inserts one or more rows specified in source in the database table specified in target. The two variants with INTO and VALUES or without INTO with FROM behave identically, with the exception that you cannot specify any internal tables in source after VALUES.
    System Fields
    The INSERT statement sets the values of the system fields sy-subrc and sy-dbcnt.
    sy-subrc Meaning
    0 At least one row was inserted.
    4 At least one row could not be inserted, because the database table already contains a row with the same primary key or a unique secondary index.
    The INSERT statement sets sy-dbcnt to the number of rows inserted.
    Note
    The inserted rows are finally included in the table in the next database commit. Up until this point, they can still be removed by a database rollback.
    *Modify Statement
    MODIFY dbtab
    Syntax
    MODIFY target FROM source.
    Effect
    The MODIFY statement inserts one or several lines specified in source in the database table specified in target, or overwrites existing lines.
    System fields
    The MODIFY statement sets the values of the sy-subrc and sy-dbcnt system fields.
    sy-subrc Meaning
    0 At least one line is inserted or changed.
    4 At least one line could not be processed since there is already a line with the same unique name secondary index in the database table.
    The MODIFY statement sets sy-dbcnt to the number of processed lines.
    Note
    The changes are transferred finally to the database table with the next database commit. Up to that point, they can be reversed using a database rollback.
    Hope it helps...
    P.S. Please award points if it helps...

  • I just upgraded to the new mobile me calendar and now all my calendar entries on iCal have been erased. As I type this the calendar entries are still on the mobile me and iphone calendars. How do I restore the calendar entries to iCal?

    I just upgraded to the new mobile me calendar and now all my calendar entries on iCal have been erased. As I type this the calendar entries are still on the mobile me and iphone calendars. How do I restore the calendar entries to iCal?

    Please always post your System details when you have a query. The upgrade to the new MobileMe calendar produces different results, and different problems, with different versions of OSX.
    Snow Leopard: during the upgrade process your iCal calendars should be moved to MobileMe (this can take some time and you have to wait for it to happen). Once done, your iCal reads the calendars from MobileMe so any changes made in either place will be visible immediately. If this has not happened then this Apple Tech Note provides instructions:
    http://support.apple.com/kb/TS3397
    Leopard: when the upgrade is completed iCal on Leopard will not be able to see the MobileMe calendars until an additional process is carried out, detailed in this Apple Tech Note:
    http://support.apple.com/kb/HT4330
    Tiger: iCal on Tiger cannot read the MobileMe calendars, period. The only workaround is to upgrade to Leopard, or Snow Leopard if possible (Intel Mac required).

Maybe you are looking for

  • Cannot sync my iPhone 4S after I restored my old phone's content

    I purchaced a new (slightly used) iPhone yesterday and I had a back up on my computer from about a month ago. My old iPhone broke so I had to buy a new one. I set it up and restored my old data onto my phone, I have all of the old notes, all of the o

  • Can I use an mp3 file as one of my basic tracks in which to overdub onto?

    On the iPad I will want to take existing song files (say mp3) and have them be a track in which to overdub. Is this doable and if so is the process as simple as it is on my desktop computer?

  • Doubt in creation of Index

    Hi frnds,     Plz tell how to make INDEX in se11 tcode.         wht is Secondary index how to create? Thanks, Gowri

  • Unable to recover iphone

    I have purchased a iPhone 4 from a well known auction site and it has been working reasonably well but every so often it would pop up a window stating there was no service and it would have to be restored. I have tried a few permutations that have be

  • AP not connect to DHCP

    Dear all i  have problem that i have 2 access point models(1230,1250) on WISM (two controller) in 6513 cisco and all AP take it IP from DHCP : ip dhcp pool Mang.AP    network 10.1xx.220.0 255.255.254.0    default-router 10.1xx.220.10    option 43 hex