RAF Delta HR - Accidents (Spain) (Altas y fallecimientos)

Do do know if it is possible to prepare/download this kind of XML format file from any existing SAP HR program ??
It is possible to execute both standard programs in order to get RATSB and PAT accident remittances XML files althougth, as far as I am concerned,  there is no standard way to get RAF Delta XML file. Am I wrong??
Thanks in advance.

Similar Messages

  • Delta init accidentally deleted (urgent)

    Hi,
    I accidentally reinit an ODS after some delta request is loaded to it. I actually wanted to load this delta further up to some cubes, but now it's always 0 record because of the reinit. How can I load this delta to the cubes in this scenario?
    A bit urgent. Thank you!

    Hi Bin,
    Dont worry, run the infopackage without datatransfer and initialize ODS, after that you can run delta from ODS to CUBE....
    Check out and revert if you still facing prob...
    Cheers'
    HVR.

  • Initialization Flags deleted from Initialization options for Source System

    Hi BW Experts,
    We have loaded PCA data in Infocube last week with Fiscal Year/Period Selection Parameters like
    001.2004 to 016.2004
    001.2005 to 016.2005
    001.2006 to 016.2006
    001.2007 to 016.2050
    So we got 4 Initialization flags in Initialization options for Source System in SCHEDULER.
    After this we are running Deltas daily
    Accidentally All Initialization Flags deleted from SCHEDULER yesterday that we did not know yesterday.
    Deltas did not run today.
    Please can anyone tell me the solution for this.
    I have to run the Delta today. How can i get the yesterday records in my Data Target,
    Thanks & Regards,
    Anjali
    Message was edited by:
            Anjali

    Hi Anjali,
    Please delete the Init Request from your data target performed for Selection 001.2007 to 2050.
    Also delete <b>only those deltas request</b> from your Data target <b>which were performed after the above mentioned Init.</b>
    And then Re-Init with Selections on Fiscper - 001.2007 to 2050.
    Thanks
    CK
    Highlighted
            Chitrarth Kastwar

  • I accidentally delted my photo booth and i cannot find it in the thrash how do i get it agian?

    i some how deleted photo botth and cannot fin di t in the trash how do i get it again>

    Try reading this article, I think it is similar to your problem.
    https://discussions.apple.com/message/21402841#21402841

  • How do I restore accidentally delted apps

    My toddler daughter was jerking around iwth my iPad and deleted the iPod app that come with the phone.  How do I restore that? It wasn't a purchased app.  It was one of the apps that came with the iPad.

    You cannot delete built in apps. In all likelihood, she simply moved it to another home screen. Swipe to the left and right and see if you can locate it, or look in any folders you have.

  • Why editing iview id break the delta link in the portal page?

    For some reason, everytime I edit the iview id, the delta link in the page will be broken.
    After I changed the iview id, the iview id that I added as delta link in portal page remain same, and seems like become a separate copy , rather than the original delta link.
    This frustracted me as I have to remove the old iview , and add the new edited iview into the page again.
    Why is this happen? (I am very sure I didn't accidentally add the iview as copy, instead of delta link)
    By the way, I am in NW04s SP9.
    Thanks for help.
    Kent

    Hi Kent,
    > (I am very sure I didn't accidentally
    > add the iview as copy, instead of delta link)
    The wording "I am very sure" points to the fact that you didn't really check and re-try it?!
    I just checked it on NW04 / SPS18 (which corresponds to SP09 on NW2004s) - and it works like a charme. The delta-link on the test page points to the new ID (as the ID-Change-Wizard announces it).
    As I have no 2004s installation at hand, I would suggest really to re-check if you are really talking of a delta-link. If it really doesn't work on SP09 while it works on SP18 in parallel, you would have to open an OSS message. Anyhow, this really should behave analogously...
    Hope it helps
    Detlev

  • Initialisation option - Delta problem

    Hi guys..
    I tried to load my delta request and it says,no active delta initialisation is available for the data source.
    I checked in the infopack->scheduler->init option for source system,and there is no init request available there.( Think got deleted accidentally)
    In my target we have init request as well as delta requests for the past two months.
    So how do i reccover this initialisation request..
    Can i do initialisation without data transfer and then continue loading my deltas.Will it give any problem???
    Thanks & Regards
    Ragu

    Hello ,
    You can do the deltas without re-doing init. But it depends on the no. of deltas records since you have done init (populated setup) last time.
    if the deltas are huge, then by just running the v3 again may overflow the delta queues!!
    Due to this risk i suggested to redo the setup run.
    But if you have some costraints, you dont delete the set up tables. delte from Rsa7 the delta queues for ur datasource. reschdule the v3.
    again run the delta in BW. check with the reports against the R/3 tables-records(just to check if the delta queues didnt overflow and all deltas have been taken care of).
    Hope this helps..
    thanks,

  • Need a little help with RAF logic

    So Im making a program to give different users, different rights. This is the method that appends them to file and Map
         * Writes the players rights to the appendages
         * @param playerName Player to update
         * @param playerRights Rights to give the player
         * @param pointer The lines index in the files
         * @throws IOException If a read/write error occours
        public void writeRights(String playerName, Rights playerRights, long pointer) throws IOException {
            rightsRAF.seek(pointer);
            rightsRAF.write(("\n" + playerName + "::" + playerRights).getBytes());
            if(rightsRAF.read() != '\n') {
                rightsRAF.seek(rightsRAF.getFilePointer()-1);
                rightsRAF.write("\n".getBytes());
            rightsMap.put(playerName, playerRights);
        }1. The RAF goes to the predetermined index in the file, pointer, which is the line the users name starts on. Entries are stored in the file as "name::RIGHTS"
    2.It writes out the players name, and rights
    3. It checks to see if it accidentally wrote over the \n
    My problem now, is that some rights are longer than others. For example, if there was already an entry, "name::MODERATOR" and you overwrite it, with "name::OWNER" then it would turn into "name::OWNERATOR" because the rest of the line wasn't overwritten.
    I need some help with logic to determine how to overwrote the entire line, because sometimes you could go from a short one, to a long one, and need to append a new \n character, and sometimes you could go the other way around from long to short and end up with two words fused, I cant figure out how to determine whats a word that got partially overwritten and whats a new line totally.
    Thanks

    As pointed out you need to have fixed size records, or at least a maximum size.
    You also have another problem nobody commented on yet (I don't think) with the getBytes() calls. At that point in your code you will mangle most unicode Strings.
    All things being equal here I think your best solution is to use an embedded database like JavaDB with JDBC. I think you will find an XML solution to slow for your purposes.
    If you decide to continue the RAF route though here is an example. I know this is not exactly what you are doing but you can extrapolate from this...
    public void updatePlayerName(String playerName, int playerIndex){
       int recordlength = 200;  
       byte[] buff = playerName.getBytes("UTF-8");
       if(buff.length>recordlength){
          //truncate bytes. this is also not great because a character at the end could be mangled
          byte[] temp = new byte[recordlength];
          System.arraycopy(buff,0,temp,0,temp.length);
          buff = temp;
       long pointer = playerIndex * (recordlength+4);// plus 4 bytes per record for actual length
       raf.seek(pointer);
       raf.writeInt(buff.length);
       raf.write(buff);
    public String getPlayerName(int playerindex){
        int recordlength = 200;  
        long pointer = playerIndex * (recordlength+4);
        raf.seek(pointer);
        int lengthToRead = raf.readInt();
        //length to read should be checked for sanity or bad things will happen next
        byte[] buff = new byte[lengthToRead];
        raf. readFully(buff);
        return new String(buff,"UTF-8");
    }And then of course you'd have to add storing the "rights". It gets complicated in a hurry. I do really recommend the JDBC route.

  • Re-initialize of delta's

    Hi All,
    What is Re-initialization of delta's, why and when do we do Re-initialization and How can we achieve that.
    Is it applicable for LIS or LO's extraction process
    Thanks & Regards
    Lisa

    Hi Lisa,
    Re-Initialization of DELTA simply means resending an <i>INIT DELTA Request</i>.
    To fully explain it, it means, deletion and re-creation of existing <i>DELTA QUEUE</i> (<b>For LO Extractors</b>) or deletion and re-creation of last <i>Extraction Queue</i> using either Calendar Day, Numeric, Timestamp, Change Pointer Queue reference record.
    We do this for various reasons: It could be one of these
    1.) System Failure or crashes resulting to unrecoverable  R/3 source system as well as BW.
    2.) Extraction Problems that led to mismatch/unsync DELTA Information between BW and R/3.
    3.) Accidental deletion of DELTA Queue in either RSA7 or       BW.
    We can achive that by simply going to the Info package, delete existing DELTA INIT and Requesting a new INIT DELTA Request.
    Yes its applicable to LIS or LO Extraction as well as Generic Delta.
    I hope I have helped. If I did, please grant points...
    --Jkyle

  • Init Delta while client it's working

    Client demand us for make an init delta in diferents PM Cubes (0COOM_CO2 and 0PS_C04) for inconsistent problems.
    For a weekend server problems I have to do this on monday morning, while client was working inserting registers on R/3 side. This proces fulls about 5 hours and finished arround 2 pm.
    The question is, is it correct? client says us that the registers inserted during monday morning are not in BW now. Could be because on this time SAP was doing this init delta?
    All delta are correct, in green and wtih report icon.
    Thanks in advance.

    Thanks Raf for the reply,
    I've always heard that the customer has always the right, but in this case seems not. They were wrong filtering and so did not see the data.
    Although I have learned two things, you should not make a Init delta during the week, and that nothing is going to do it.
    Regards

  • Can I retrieve a document I accidentally deleted

    I had flyers and other docs that I delted accidentally a couple weeks ago. Can I retrieve them?

    Hello captronmusic,
    Thank you for contacting Apple Support Communities.
    It depends on how you deleted the documents.
    See the following:
    OS X Mountain Lion: Remove files and folders from your computer
    http://support.apple.com/kb/PH10628
    Specifically:
    If you change your mind
    Click the Trash icon to open it and then drag the item out of the Trash, or select the item and choose File > Put Back.
    This applies if you havn't emptied the Trash.
    Regards,
    Jeff D.

  • Datafile delted...unable to connect

    Hi Gurus,
    I am new to the BKP and Recovery techniques. Today i tried to recover a database whenever a datafile got delted accidentally. The following are the steps i exeuted in the test
    1.I created a tablespace test in the database.
    2.Shutdown immediate.
    3.Now with the another session at OS level i deleted the test.dbf file.
    4.Now i tried to connect to the same database then it started throwing the following error.
    ===========================================================
    ORA-01041: internal error. hostdef extension doesn't exist
    ===========================================================
    This is the message in the alter.log file
    *** SERVICE NAME:() 2006-09-14 11:23:49.906
    *** SESSION ID:(167.1) 2006-09-14 11:23:49.906
    ORA-01157: cannot identify/lock data file 18 - see DBWR trace file
    ORA-01110: data file 18: 'E:\ORCL\TEST.DBF'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Thanks in advance....
    Regards,
    Nagarjun.

    You need to restore this datafile, from steps provided by you I supose you didnot backup this datafile, but if you have your db in archivelog you can use one of below procedures:
    User managed backup procedure:
    [email protected]> create tablespace recovery_test datafile 'c:\oracle\oradata\mob92\recovery_test01.dbf' size 5M;
    Tablespace created.
    [email protected]> create table tall tablespace recovery_test as select * from all_objects;
    Table created.
    [email protected]> alter tablespace recovery_test add datafile 'c:\oracle\oradata\mob92\recovery_test02.dbf' size 5M;
    Tablespace altered.
    [email protected]> @ connect "/ as sysdba"
    [email protected]> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    [email protected]> startup
    ORACLE instance started.
    Total System Global Area 64036368 bytes
    Fixed Size 454160 bytes
    Variable Size 50331648 bytes
    Database Buffers 12582912 bytes
    Redo Buffers 667648 bytes
    Database mounted.
    ORA-01157: cannot identify/lock data file 13 - see DBWR trace file
    ORA-01110: data file 13: 'C:\ORACLE\ORADATA\MOB92\RECOVERY_TEST02.DBF'
    [email protected]> alter database create datafile 'C:\ORACLE\ORADATA\MOB92\RECOVERY_TEST02.DBF' as
    2 'C:\ORACLE\ORADATA\MOB92\RECOVERY_TEST02.DBF';
    Database altered.
    [email protected]> recover datafile 13;
    Media recovery complete.
    [email protected]> alter database open;
    Database altered.
    [email protected]>
    [email protected]> select name, status from v$datafile where file# = 13;
    NAME
    STATUS
    C:\ORACLE\ORADATA\MOB92\RECOVERY_TEST02.DBF
    ONLINE
    [email protected]> select * from v$recover_file;
    no rows selected
    The same using RMAN:
    RMAN> backup database;
    RMAN>
    [email protected]> alter tablespace BT add datafile 'C:\ORACLE\ORADATA\MOB92\BT02.DBF' size 10M;
    Tablespace altered.
    [email protected]> create table a100 tablespace bt as select * from all_objects;
    Table created.
    [email protected]> host del C:\ORACLE\ORADATA\MOB92\BT02.DBF
    [email protected]> startup
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    ORACLE instance started.
    Total System Global Area 64036368 bytes
    Fixed Size 454160 bytes
    Variable Size 50331648 bytes
    Database Buffers 12582912 bytes
    Redo Buffers 667648 bytes
    Database mounted.
    ORA-01157: cannot identify/lock data file 14 - see DBWR trace file
    ORA-01110: data file 14: 'C:\ORACLE\ORADATA\MOB92\BT02.DBF'
    [email protected]> select * from v$recover_file;
    FILE# ONLINE ONLINE_ ERROR CHANGE# TIME
    14 ONLINE ONLINE FILE NOT FOUND 0
    [email protected]> select file#, name, status
    2 from v$datafile
    3 where file# = 14;
    FILE# NAME STATUS
    14 C:\ORACLE\ORADATA\MOB92\BT02.DBF ONLINE
    RMAN> run {
    2> sql "alter database datafile 14 offline";
    3> sql "alter database create datafile ''c:\oracle\ORADATA\MOB92\BT02.DBF''";
    4> recover datafile 14;
    5> sql "alter database datafile 14 online";
    6> }
    using target database controlfile instead of recovery catalog
    sql statement: alter database datafile 14 offline
    sql statement: alter database create datafile ''c:\oracle\ORADATA\MOB92\BT02.DBF''
    Starting recover at 28-AUG-06
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=15 devtype=DISK
    starting media recovery
    media recovery complete
    Finished recover at 28-AUG-06
    sql statement: alter database datafile 14 online
    [email protected]> select * from v$recover_file;
    no rows selected
    Best Regards
    Krystia Zieja /mob

  • I accidentally deleted the "Settings" icon on my Iphone. How can it be restored?

    I accidentally delted the "Settings" icon on my Iphone. How can it be restored?
    Thank you

    To help you find it... Try this...
    Reset your Home screen to the default layout:
    Choose Settings > General > Reset and tap Reset Home Screen Layout.

  • Accidentally purchased roaming data whilst on holiday

    Hi,
    I was browsing the data options whilst I am holiday in Spain and as I was scrolling through I accidentally pressed the buy button which is located incredibly close to the area I was scrolling at.
    As there was no confirmation I wasn't able to cancel it before the purchase had gone through which is completely ridiculous considering it was £25 for 500mb that I don't even want or need!
    Not to mention that the service for this data package out here is completely unusable anyway as simple Web pages can't even finish loading!
    I'd like a refund if possible and the removal of the data from my account as I don't even want it!

    Hi , Welcome to the EE Community. Funnily enough, I did exactly the same thing as you whilst on holiday in Spain (hope you're enjoying it)! Whilst I bought a cheaper package, I too was surprised at the lack of proper confirmation (I had somehow purchased it whilst my phone was in my pocket). I got onto EE via Twitter and spoke to their Live Chat team. I basically said I'm not looking for a refund, but suggested they add an additional layer of protection before allowing a purchase of over £10, which could be the CVV number on the card or the password linked to your EE account, or even clicking on a link in an SMS message.  I don't think they'll be able to refund this for you, but hopefully they'll begin to add measures to help prevent accidental purchases. If you have Twitter, you can try tweeting them @EE and they may be able to advise further. Good luck, and try and focus on enjoying your holiday!  Cheers,
    Titanium
    Was my post helpful? Please take 2 seconds to hit the 'Kudos' button below

  • Delta failure

    HI all,
    When Delta load occures from DSO to CUBE load was failed.In this issue we need  to make the request  to Red and delete the request from the cube. Then need to delete the Datamart status in the DSO.
    My Question is, why we need to make the request red  and delete first and then go for Datamart Staus.What happen if we do viceversa.
    Can any one give suitable answer.
    Regards,
    Bunny

    Hi Pranav,
    The reason why we turn the bad request red and then delete the request prior to the deletion of data mart is as follows:
    1) If we turn the request red then we are sending the message to the source system that the last delta was not correct and the records need to be extracted again.
    2) The delta queue keeps the last delta records only till the next delta run goes green.
    If we don't turn the request red and in case of a green request being deleted accidentally or due to some other reason, then we stand a chance of data loss from the source system. Hence as a precaution we always turn a request that needs to be re extracted to red and then delete the request.
    We cannot delete the data mart status if the request still exists in the data target(s). The system will not allow you to delete the data mart directly, it will say data already exists in the target(s).
    Hope this clarifies your doubts related to deltas.
    Regards,
    Manoj

Maybe you are looking for

  • Installed itunes on my new computer but none of my purchases are there?

    My computer died & I bought a new windows 8 laptop.  I loaded itunes but nothing I've purchased shows up in the library.  Their are songs under music but they are not mine.  Where did I go wrong & can anyone help me?

  • Problem with creating BDC program

    Hi All, I was trying to create a BDC program for transaction SE63 (language translation). I am doing it for text modules translation. For this, screen contains two fields, one is source language and another is target language and both are input disab

  • Incorrectly calculating hfe/input impedance

    Hello Multisim calculates wrongly the input impedance of a common emitter stage - judging from the voltage drop on the base resistor network it appears it assumes a hfe of about 10, when the real value is over 500. I used the 2N2222A as a model, and

  • I Am Getting Failed Notifications When Installing SQL SERVER 2008 can any one suggest me Wt can i do

    Overall summary:   Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.   Exit code (Decimal):           -20686

  • [Solved] Network problem, unable to ping, dhcpcd issue

    Friends: Issue on hand. I upgraded Arch which is running as guest inside VirtualBox. When machine boots up I don't have access to network. I cant ping yahoo or google or any site. The following steps work for regaining network access back cat /run/dh