DELETE data issue

hi
i want to user RPUREOPN program to delete some infotype data.
but i run it and get :
You want to start a program which changes data without having logged
on with the correct password. You have been denied authorization to
do this.
how to get authorization to do it!
and in selection of field:Date of reorganization and flag
how about affact in this program.
thank you advance!

after running the program, you mean to say some authorisation error is coming right
then use SU53 T.Code to get what exact object has failed for authorisation
give it to your system admin for executing without error

Similar Messages

  • Deleting data issues

    Hello,
    I am working on a project that I was told by the PM that when deleting data from the system, the system would be out of space and the system will shutdown. Would someone help me understand how the word from the PM’s could be so wrong and BW illiterate and that the client doesn’t have the money to buy disk space or get a BWQ system to do validation. May be they should not implement BW at all period.
    How can a BW developer do their testing without deleting and reloading data?
    Thanks
    "<i>Bitterness is not about resentment, pain, grief, or regret, it is about people who are unable to let go because they believe others have done them wrong</i>" ~ Anonymous
    "<i>Don't go around saying the world owes you a living. The world owes you nothing. It was here first</i>." ~ Mark Twain, US humorist, novelist, author, & wit (1835 - 1910)
    "<i>When dealing with people, let us remember we are not dealing with creatures of logic. We are dealing with creatures of emotion, creatures bustling with prejudices and motivated by pride and vanity</i>." ~ Dale Carnegie
    "<i>Do not flatter yourself...Who would want to get lung cancer and die from second hand smoker. Get out of my life and let me be. You deserve one another...</i>." ~ Anonymous

    I dont think there is an answer to your work predicament here on SDN. In general though, try to prove to your project team and/or manager that you are technically superior. The key would be to not alienate or denigrate your PM. In the politest possible mannger, ask your PM to explain how that would occur because you are having difficulties connecting the dots.
    If diskspace is a concern, try to map out the issues that occur with incomplete testing. If you can put the problems into terms they understand such as 'decreased quality, lower end user satisfaction, high support costs, increased probability of production down time' you might have a chance to sway their opinion.

  • Error while deleting data from a write optimized DSO using a Process Chain?

    Dear Bwers,
    I am facing a strange error while using process chains to delete data from data target which is a write optimized DSO. The process shows as failed but the data gets deleted in the DSO. The error message is as below. Did anybody have a similar problem? Any suggestions.
    Thanks
    Raj
    Error while deleting content of InfoCube/DataStore object ZLSD_G03
    Message no. RSDODSO153

    Please, check if you get any short dump in ST22 related to this issue.

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

  • Can't Delete Data in One Month in a calculated currency EPM 10 NW

    Good Morning,
    I have an issue with data in my system. We are having issues deleting data from our calculated currencies for the month of January. We load our data to LC and then run currency conversion to populate our USD, CAD, etc report currencies. We run a nightly compression on the data. We needed to adjust some numbers in LC and run currency conversion. When I ran the currency conversion the data in the calculated currencies did not update with the new LC balances. So I tried to delete the data in the calculated currencies and then re run currency conversion for the time period. But when I tried to run the Data Manager Package it did not clear the data. It gives a succeeded message but when you look at the Package Log it shows 0 records cleared. I then tried to upload zero's to the same data intersections and it did not work either. I got a success message but the data did not delete. I have had my BI guys check the back end lock tables and nothing is locked. We don't use work status so there are not any work status locks on that month of data. I don't think it is the Data Manager package becuase I can run the same DM package on any other time period and it works. If anyone has any ideas of things that could be causing this I would really appreciate it.

    I am attaching the FX Conversion Code to this message as well as attaching it. If you have any suggestions I would greatly appreciate it.
    Here is the BADI logic from the FX Conversion BADI
    method if_uj_custom_logic~execute.
      " this badi would be called from finance model as well finance_des model
      data: lt_acct_type_attr type zbpc_t_acct_type_attr,
            lt_pc_currency type zbpc_t_pc_curr.
      get_parameters( exporting it_param = it_param ).
      " category can only be a single base member
      if check_category( ) <> 'X'.
        insert_error_log( ).
        raise exception type cx_uj_custom_logic .
      endif.
      lt_acct_type_attr = get_account_attr( ).
      lt_pc_currency = get_pc_currency( ).
      read_rates_cube( ).
      " gv_app_id is initialized in the init method.
      case gv_app_id.
        when 'FINANCE'.
          process_fxconv_4_finance( exporting it_acct_type_attr = lt_acct_type_attr it_pc_currency = lt_pc_currency ).
          add_plug_4_finance( exporting it_pc_currency = lt_pc_currency  ).
        when 'FINANCE_DES'.
          process_fxconv_4_finance_des( exporting it_acct_type_attr = lt_acct_type_attr it_pc_currency = lt_pc_currency ).
    *      add_plug_4_finance_des( exporting it_pc_currency = lt_pc_currency ).
      endcase.
    *  write_2_cube( ).
    endmethod.

  • Data Issue

    Hi All ..
               We are facing one data issue DSO.  One record is worngly loaded with some project iD ( Ex record is having ID GE1234 insted of having LE4423) remaining details are same . we are loading the data furtherly to master data table from the DSO. if i try  for reporting for project id LE4423 ,information not avilable because it is heaving wrong ID,it is key also.But in the Source system (CFG) side Data is correct with ID LE4423.
             In update rule we are following one to one mapping for all infoobjects.My requirement is i need to have in my DSo LE4423 . I need to overwrite the record id GE1234 with LE4423 without affecting other fields in the record.
            Shall i load till PSA with the ID LE4423 ..then if load this single record to DSO will overwrite the GE1234 by choosing other field as key field.  but we are following one to one mapping in update rule.
    Please help me on this. i need to hev a correct id for record.
    Thanks ,
    Prem.

    You can use selective deletion to delete the record with Project ID = GE1234
    Load the data till PSA
    Load the data to DSO using selection Project ID = LE4423 in DTP from PSA.
    check in further data targets also for mismatch of data
    Hope it helps,
    Naveen Vytla
    Edited by: Naveen Vytla on Nov 18, 2008 10:49 AM

  • When i was trying to update my iPhone 5s to the latest version of ios 8.1 , it required more space so i had to delete data manually, meanwhile i was doing so the phone got stuck and went off & when it came on again i found it on the recovery mode  ??

    hello there everyone
    I lost everything cause I wanted to update my phone
    here is what happened with me exactly :-
    I plugged in my phone into the charger  & connected my phone to a wireless connection to  start the operation of updating it, I immediately noticed that I dont have the required space to proceed the download so i had to delete data manually, & meanwhile i was doing so my phone became slow  and it got stuck then it went off after that it came on again but it was on the recovery mode ??
    did I lose everything ??? what did I do wrong  ??? what can i do to recover this ??

    Hi, Milanista5
    Thank you for visiting Apple Support Communities.
    When experiencing issues restoring or updating an iPhone, here are the best articles to go through.  If you received a specific error number when restoring, see the section labeled Get more help in the second article below.
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    iOS: Troubleshooting update and restore issues
    http://support.apple.com/kb/ts1275
    Cheers,
    Jason H.

  • Overlap date Issue 0hrposition_attr

    Hi
    I'm facing one records overlap date Issue with 0hrposition_attr.Out of 4  records one records i'm getting as start date as future date and end date as past date.I checked in the source i did not see such records.Due to this issue the records are not updated in the target.But i did not notice such issue with 0hrposition_Text  and 0HRPOSITION_CCTR_ATTR load went fine with out any over lap.
    Eg:
    POSITION          VALID FROM          VALID TO
    12345678            04/01/2014            04/20/2014
    12345678            04/21/2014            04/24/2014
    12345678            04/25/2014            04/24/2014
    12345678            04/25/2014            12/31/9999
    I debug  but i did not see any issue,So there any way that  i can delete that particular  records at PSA level so that loads went successful.I attacdshed the document for better idea.
    Regards
    Raj

    Hi,
    only these record is getting the problem and all records.
    check the one record at RSA3 for testing purpose same record check in BW side.
    if you getting like this not problem you can check the only latest record
    12345678       
    04/25/2014       
    12/31/9999
    put the filter at VALID TO data 12/31/9999 and form date 04/25/2014.
    you want lookup the code just add the one more point.
    WHERE POSITION = RESULT_PACKAGE- 0POSITION
         and DATETO = '99991231'.
    it will pick the only latest record.
    Thanks,
    Phani.

  • Error about mapping with sqlexec when delete data

    I've created a sample replication process
    There's no problem when i'm inserting data (lookup process is working well too)
    but when i'm deleting data from source table it cannot delete record in target table
    and this is the error
    ERROR OGG-01296 Oracle GoldenGate Delivery for Oracle, CC.prm: Error mapping from GG_SOURCE.SOURCE to GG_TARGET.TRG_MAP
    and this is code of replicat process
    replicat cc
    userid gg_target,password oracle
    sourcedefs D:\GG\target\dirdef\source.def
    map gg_source.source
    , target gg_target.trg_map
    , def ssource
    , sqlexec (id chk_acct
         , query "select account_id_lkp id_out from lkp where account_id_lkp = :id_in"
         , params (id_in = acct_id))
    , colmap (USEDEFAULTS
         ,ACCOUNT_NUMBER = ACCT_ID
         ,ACCT_MAP = @GETVAL (chk_acct.id_out));
    Could anyone plese help?

    Hi Deepshika,
    Could you also advice me how u resolved this issue i am also getting same issue...i have also activate MSDTC Service ,Inbound/Outbound allowed & also allowed Distributed transaction in Firewall.
    Regards
    Shehzad

  • Blackberry Protect - Delete data command executed on new Z10 and not lost Z10

    My BB Z10 was stolen and somebody took the battery off immediately. I executed command to display message and delete data using blackberry protect. Command will be executed whenever the thief turns phone on. Afterwards, I restored data from blackberry link on my new blackberry z10 using old blackberry id. When my new z10 phone was up the commands which i sent to lost z10 got executed on my new blackberry! Now I am not able to trace lost blackberry. Somehow same pin got assigned to new blackberry on blackberry protect. Is there any way I can bring back lost blackberry details on blackberry protect and trace it?

    Hi and Welcome to the Community!
    Firstly, you must get your current BB using the exact same BBID credentials that were used when your old BB was using BB Protect for backup. To do so, you will have to WIPE your current BB and, when you are setting it up new again, use the same credentials from your old BB. But, take heed of this:
    Article ID: KB31489 BlackBerry Protect for BlackBerry smartphones does not display any backup files to restore
    If, by "archived", you did contrary to what that KB states, then it is too late...there is no recovery of things that get deleted from the BBID account.
    Your situation is a perfect case study as to why BB Protect is a fine component of a good backup procedure, but by no means should it ever be counted on as the sole component.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT4623 recovering deleted data from iphone

    How can you recover deleted data from iphone 4, my phone was compromised and data was delted pictures text messages and emails.

    If you didn't backup your photos you cannot recover them. 
    Search Google for products that might do what you wish.  This is not an Apple issue and not appropriate for this forum.

  • Deleted data from iphone thanks to itunes synchronisation

    Yesterday, without realising it, I synchronised my iphone (thanks to this automatic synchronisation service offered as a default on itunes, grrrr) to my husband's itunes account which had NOTHING on it. I have now lost everything on my iphone, including apps, photos, purchased itunes, saved contacts, everything. The setting on the iphone has gone back to basics. Can someone please tell me if there is a way for me to recover everything that itunes deleted from my iphone? I have searched through itunes and my iphone, and there is nothing that specifically answers the issue of accidentally deleting data from iphone due to itunes synchronisation. HELP!

    In regards to iTunes content, an iPhone can be synced with an iTunes library on a single computer only, and photos can be transferred via the iTunes sync/transfer process from a single computer only.
    Even with iTunes set to sync an iPod or iPhone automatically when connected, when connecting an iPhone to iTunes on a different computer than is used to sync with the iPhone, a warning message is provided along with a warning message that all iTunes content on the iPhone will be erased first, which must be approved.
    Contacts on your iPhone are not touched unless you select to sync contacts with a supported address book application on the computer which is selected under the Info tab for the iPhone sync preferences with iTunes, which is not selected automatically.
    3rd party apps can be downloaded again with iTunes on a computer that is logged in with your iTunes account or with your iPhone and you won't be charged again for a purchased app as long as you use the same iTunes account to download the app that was used to purchase the app originally, but not the same with music, which can be downloaded once.

  • Deleted data of info structure

    Hi PP Gurus,
    As per user's requirement I changed selection field period to day in report MCIS info structure S818. At that time I click ok in warning message of deletion previous data with the business approver's permission. But now he is saying that he wants historical data. Can anybody help me in this how to recollect historical data?
    Jayesh
    SAP PP
    Edited by: Jayesh Narvankar on Feb 15, 2012 9:02 AM

    Hi Ajit Kumar,
    Thanks for your valuable help to me. I followed below steps -
    1) Regenerate order cost: File PMCO - Removed test run, selected my order types and executed
    2) PMIS: Statistical stup of infostructures - Info structure S818, save under version &(, number of parallel process 10, name of run TP02222012, packet size 1000 and clicked check box new run?. Then executed
    3) Copy / delete version of an info structure - Info stucture S818, clicked on copy + delete. source version &(, target version 000, alredy radio button selected no copy method and checked box do not copy initional records. Then executed.
    Suggest me me anything missed or any unnecessary step is there.
    Everything ran succesfully in development server, but in quality server I am unable to do third step. When I am doing this third step in background system completeing this job in few seconds where as in development server it took more than 2 - 3 hours. In quality server log is showing 0 records converted.
    Quality server is not allowing to do anything with version 000. Not allowing to take back up of version 000 or not allowing to delete data of version 000.
    Ajit this is critical issue for me. Any cost client want historical data of infostructure S818. I am worried that in development server system allowed everything correctly and not allowing in quality server. Then how can do in production server.
    Please help me
    Jayesh Narvankar
    9820477364

  • Repeat delta data issue

    Hello guys,
    I have a strange issue here. I load say ODS2 from ODS1. When trying to load ODS2 one day, i find and issue and the load is turned red. When i executed the delta IP again, it asked for the repeat of the delta, for which i said yes. I did not delete any datamart status from ODS1. This repeat got me double records than the original request, and now i have doubled records in ODS2. Since ODS2 is on addition, the doubling data issue. Does anyone had this problem? Why the repeat of delta updated double the number of records than what it shud be? will be great if anyone can come up with a clarification.
    Regards
    Sriram

    Hi Sriram,
    At First you need to Delete the Request from ODS2,
    Question is which request should be deleted. answered below.
    In ODS1 --> Note the Request where Repeat of delta has occured. Check the datamart Request  of that Repeat Request. This datamark request clearly shows that At what request in ODS2 its updated.
    Now your job step by step as below:-
    1. Delete request in ODS2 (Please note :request which you had taken in the datamart of ODS1).
    2. Delete the Datamart of the ODS1 at the Repeat delta request.
    3. Delete Request of ODS1(till where you had removed the datamart for this ODS)
    4. Go to reconstruction tab and reconstruct the request which are correct (eliminate failed request)
    Please note:- please reconstruct one(1) request and then datamart. Once you do this you will come to know the logic behind.
    5. Then Datamart to ODS2.
    If its complicated to understand, please call call me
    Thanks
    Regards
    Hari

  • How do I delete data? I cant download stuff?

    I need to delete data from my iPad 2.  I can't download new issues of a magazine. Screen warning says I have to delete data. I don't power off the iPad routinely so files keep accumulating, I think. I dont want to reformat. What to do?

    The simplest thing to do, would be to connect your iPad to your computer via USB and manage your iPad via iTunes Sync.  You can remove music, photo's, apps, etc., which will free up space so you can download what you want to download.  When you delete via iTunes, you can see exactly what space was freed up and how much space you have left.

Maybe you are looking for

  • How do I print from a specific point in booklet

    Hi, cannot work this out. I have printed the first two spreads of a book then on the third spotted a mistake as it was coming out so cancelled printing. For the life of me I cannot make indesign understand I want to print from the third spread which

  • The path '....' cannot be found (cont.)

    The path '...' cannot be found. Verify that you have access to this location and try again, or try to find the installation package 'iTunes.msi' in a folder from which you can install the product iTunes. What in the WORLD does that mean?

  • Interested in Apple TV, have questions... :)

    Hello Apple folks, My wife and I are looking at either getting an Apple TV or a Bluray player, and wanted to know some things about the Apple TV. I've done some reading on the Apple.com website and saw that there are some compelling things about the

  • Can there be models on corporate order that's not in TABook?

    My employer has odered a T400 for me from Lenovo SG. The part No. is, 7434-A15, which is non existent in the TABook ver 346 (Sep 2008). Can there be a part no. that is not in TABook. Are the corporate orders not covered under TABook? Is there any oth

  • When will Aperture provide RAW support for the Nikon D4s?

    Just got my D4s and can't work with the RAW files in Aperture 3 ... It says 'incompatible file format'...