ECC Data Copy and changes to salary information

We are planning a copy from our productioon system to our quality system and we would like to know what is the best way to change salary information in our QA environment.

Hi Davison,
My understanding is explained from your query, you dont need the exact salary details of data in prd system to be copied to QA system. If it sounds right, then I hope Infotype 8 cannot be mass changed using LSMW due to table control. I will suggest you to go for custom program.
With Regards,
Giriesh M

Similar Messages

  • Run the data copy and comments copy with the same key

    I want to Run the data copy and comments copy with the same key.
    I tried to challenge in the following way, but it is an error.
    1. Add the process in the process chain [/ CPMB / COPY] process in the process chain that could be new to copy the chain [/ CPMB / COPY_COMMENTS] (see capture)
    2. Select the newly can process chain to add a package, make a change to the script as follows:
    PROMPT(RADIOBUTTON,%TARGETMODE%,"Handling of records",0,{"Copy records with match key","Copy by replacing data in same data region of Entity, Category, Time and Audit ID"},{"0","2"})
    PROMPT(RADIOBUTTON,%RUNLOGIC%,"Select whether to run default logic for stored values after copying",0,{"Yes","No"},{"1","0"})
    PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when importing data.",1,{"Yes, check for work status settings before importing","No, do not check work status settings"},{"1","0"})
    PROMPT(COPYMOVEINPUT,%SELECTION%,%TOSELECTION%,"Select the members to COPY and where to",%DIMS%,0)
    INFO(%TEMPNO1%,%INCREASENO%)
    INFO(%ACTNO%,%INCREASENO%)
    INFO(%SELECTION_KEYDATE%,)
    TASK(/CPMB/COPY_COMMENTS,SELECTION,%SELECTION%)
    TASK(/CPMB/COPY_COMMENTS,TOSELECTION,%TOSELECTION%)
    TASK(/CPMB/COPY_COMMENTS,CHECKLCK,%CHECKLCK%)
    TASK(/CPMB/CM_CONVERT,OUTPUTNO,%TEMPNO1%)
    TASK(/CPMB/CM_CONVERT,ACT_FILE_NO,%ACTNO%)
    TASK(/CPMB/CM_CONVERT,SAPPSET,%APPSET%)
    TASK(/CPMB/CM_CONVERT,SAPP,%APP%)
    TASK(/CPMB/CM_CONVERT,SELECTION,%SELECTION%)
    TASK(/CPMB/CM_CONVERT,TOSELECTION,%TOSELECTION%)
    TASK(/CPMB/CM_CONVERT,KEYDATE,%SELECTION_KEYDATE%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,CHECKLCK,1)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,SELECTION,%TOSELECTION%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,KEYDATE,%SELECTION_KEYDATE%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,DUMPLOADMODE,3)
    TASK(/CPMB/APPEND_LOAD,PREPROCESSMODE,0)
    TASK(/CPMB/APPEND_LOAD,TARGETMODE,0)
    TASK(/CPMB/APPEND_LOAD,INPUTNO,%TEMPNO1%)
    TASK(/CPMB/APPEND_LOAD,ACT_FILE_NO,%ACTNO%)
    TASK(/CPMB/APPEND_LOAD,RUNLOGIC,1)
    TASK(/CPMB/APPEND_LOAD,CHECKLCK,1)
    TASK(/CPMB/APPEND_LOAD,KEYDATE,%SELECTION_KEYDATE%)

    We performed similar transfer of data from one planning model to another using DM package linked to BADI. In your scenario there is additional complexity of doing lookup from DSO and should be possible.
    Also check these references for performing lookup in DSO.
    abap code to populate data from DSO
    something about SAP: How to look for DSO’s tables?

  • Got a pop-up from some company that wants me to up-date firefox and change to their browser? Tylerdowner says firefox is old but the update says not

    like I said b4, a pop-up says to update firefox and change my browser to theirs, this pop-up did not ID itself in any manner
    Tylerdowner says my version is old but I just wiped the old one and got the latest one less than a month ago. Just to be sure I went to the up date page to check and I'm running the latest version
    ''Please stay in your original thread - https://support.mozilla.org/en-US/questions/972362''
    ''locking this thread as a duplicate''

    Hello,
    The latest version is 33.0.3. It is always safer '''not''' to trust a dialog that pops up without your interaction.
    Assuming your computer isn't infected with malware, a safe way to update is to go to:
    * Help (or [[Image: New Fx Menu]] > [[Image: Help-29]]) > About Firefox
    Or download a new copy at:
    * (stub installer) https://www.mozilla.org/en-US/firefox/new/
    * (for different localizations/full installer) https://www.mozilla.org/en-US/firefox/all/
    Never give your computer's control to anyone remotely, and don't contact any number unless its from the official website's Contact Us page. If you are worried that your computer has been infected with malware, any one of these forums specializing in malware removal can help you:
    * Bleeping Computer - http://www.bleepingcomputer.com/forums
    * Spyware Warrior Forums - http://www.spywarewarrior.com/index.php
    * SWI Forums - http://www.spywareinfoforum.com/
    The people who will answer your questions there will ask you to submit reports from virus/malware scans so that they can determine whether your computer is in fact infected, and the steps you need to take in order to remove the infection.

  • Working days between two date fields and Changing Factory Calendar

    Hi,
    I have to calculate working days between two date fields excluding the weekends and public holidays for Switzerland.
    I have written the routine using factory calender and its working fine except for two problems now:
    1. If any one of the date field is empty then teh rsult should be zero.
    2. And the below code is working from 1996 but my cleints wants it to work for years before 1996 as well.
    I also tried to change the Start date in SCAL for factory calendar but it says enter values between 1995 to 2020.
    I am new to ABAP. Please help me how i can achieve these for below code.
    DATA: IT_HOLIDAYS type TABLE OF ISCAL_DAY,
          IS_HOLIDAYS TYPE ISCAL_DAY.
    DATA: T_DATE TYPE SY-DATUM,
          P_DATE TYPE SY-DATUM.
    DATA : X_DATE(4) TYPE C.
    DATA: CNT TYPE I.
    REFRESH : IT_HOLIDAYS.
    CLEAR : IT_HOLIDAYS.
    T_DATE = SOURCE_FIELDS-/BIC/ZCCCHP812.
    P_DATE = SOURCE_FIELDS-/BIC/ZCCCHP810.
    CALL FUNCTION 'HOLIDAY_GET'
    EXPORTING
    HOLIDAY_CALENDAR = 'CH'
    FACTORY_CALENDAR = 'CH'
    DATE_FROM = P_DATE
    DATE_TO   = T_DATE
    TABLES
    HOLIDAYS = IT_HOLIDAYS
    EXCEPTIONS
    FACTORY_CALENDAR_NOT_FOUND = 1
    HOLIDAY_CALENDAR_NOT_FOUND = 2
    DATE_HAS_INVALID_FORMAT = 3
    DATE_INCONSISTENCY = 4
    OTHERS = 5.
    DESCRIBE TABLE IT_HOLIDAYS LINES CNT.
    X_DATE = T_DATE - P_DATE - CNT.
    RESULT = X_DATE.
    Please help
    Regards
    Zabina
    Edited by: Syed786 on Nov 2, 2011 9:15 AM

    Hi Zabina,
    Try this function module  'DURATION_DETERMINE'.
    Give the factory calendar and unit as DAY
    With regards,
    Rajesh

  • BT activation date confirmed and changed 4 times! ...

    Back in November last year I had placed an order to move my services (phone and BT infinity 2 at the time) to my new home (new build) and asked for an activation date of 22 December. At the time I paid for line rental for onw year in advance, which I now regret.
    Shortly thereafter I started receiving messages and calls from BT stating that my services activation would be delayed and a date of Jan 26 2015 was eventually confirmed. As this date approached, I then got a message that the activation date had actually moved to May 22! Convinced it was an error of some sort (it also appeared on my account information online), I called BT and was assured that it would be much earlier than that but that they could not confirm when at the time. I called again later and it was eventually revealed to me that my current order was not progressing and they would open another.So, I had another order created with a potential activation date of Jan 30, but I was assured that they would try to fast track it. This was around Jan 15.
    Time went by and I eventually received calls/messages/emails stating that a Jan 26 date was indeed confirmed for an engineer visit. The 26th came and nobody showed up. I called the next day, and the staff were apologetic about the situation and explained that it was an Openreach issue and that some work was still ongoing to get my services activated. I replied as I had before that many people in my street already had phone and broadband so surely the area was covered (the online coverage checker states that I can get BT infinity 2...). In the end a date of Jan 29 was again confirmed and I asked specifically if they were sure they could make it this time - I was assured that it would be the last slippage.
    Sadly, it was not to be. Just yesterday I received a call saying that my service was again delayed and as such I would have to choose another activation date - the earliest offered being Feb 5. The reasons were again to do with Openreach not fulfilling their end of the bargain, and the fact that I was in a "bronze" zone. I replied that I was loosing count of how many times my activation date had been moved and re-confirmed, but was again assured that this would be the last time...
    So now, I wait for Feb 5. I am considering cancelling my services with BT altogether but unsure of whether I would get my line rental saver payment back if I do so.
    If a mod checks this and is willing to help, I would very appreciative. Thank you.

    Hi estrolas3,
    Thanks for posting and welcome to the forum, I'm sorry about the delay activating your line.  Please use the 'contact the mods' link in my forum profile to send in your details and we'll check the order. You can find the link by clicking on my username.
    Thanks
    Neil
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Data copy and lookup

    Hi Gurus,
    I have the below scenario and would like to know what would be the best approach.
    I have a planning model. (model name = Plan)
    I have a copy of my planning model with an additional dimension cost center (model name = plan_copy)
    I need to copy data from plan model to plan_copy model and populate the cost center dimension by lookup a DSO in BW.
    DSO contains master data with the right keys that I need to lookup while copying data.
    Please let me know what would be the best approach to do it?
    Should I bring the DSO data in BPC somewhere? I can't bring it in a dimension as its one to many relationship data.
    Should I bring it in any type of BPC model and write script logic to lookup in the new BPC model?
    Can I use a BADI to lookup in the DSO while copying data?

    We performed similar transfer of data from one planning model to another using DM package linked to BADI. In your scenario there is additional complexity of doing lookup from DSO and should be possible.
    Also check these references for performing lookup in DSO.
    abap code to populate data from DSO
    something about SAP: How to look for DSO’s tables?

  • Lightroom changes file date (build and changeing date) by jpg files

    Hallo
    I am using Lightroom on Mac OS X Snow Leopard. The Problem is that Lightroom changes both dates of the file (the date when the file was build and the date when you have made changings on the file) when i save the Metadates to the file.
    This happens only by jpg files. By raw / xmp files is the date of the raw file not changed, the both dates of the xmp are also changed like by jpg.
    I want not to change the time when the file was build. So that i can see in the Finder / Explorer when the file was build ( Photo taken).
    How can I solve this Problem.
    Thanks for Help

    Do not save the metadata to the files. It's quite unnecessary to do so, but of course, you should have full backups of the images and the catalog(s) [.lrcat].

  • How does FDS Data syncronization and change tracking works? example needed

    Hi All,
    I found the FDS feature of detecting the change in data and
    only updating that particular change to the server-side data.
    Could you point out some good implemented examples or
    tutorial. I am not able to find one...........
    Also point out some references/examples on how data
    syncronization works with an example..........
    Thanks in Advance,
    Vijay Karthik

    Hi HustLiliAn,
    Thank you very much for you quick reply. I have to say sorry that my code is only partially belonging to me so I cannot distribute all of them, beg your understanding
    To overcome the delay, I open both Tx and Rx session at the beginning of the code so I don't need to initial and abort session before and after using respectively. It could save a lot of time (I measure the same delay as you shown). I read from WBX application notes (http://files.ettus.com/uhd_docs/manual/html/dboards.html) that if the system is working in the duplex mode, then antenna TX/RX is using for transmission and RX2 is using for reception. I simply tested it and it seems true.
    Since two antennas are working concurrently, the receiving antenna (RX2) can receive packet even it is sent by TX/RX. My problem is, in software level I have used the if structure to make transmission and reception work successively, RX2 can still receive signal sent by TX/RX. That is the real problem. Probably we can write some compensation VI which we can remove it by using the transmitted signal, but I still want to know is there any official solution for it.
    BTW, I use the modulation toolkit. Its demodulation VI is also quite slow.
    Thank you for your reading. I am not a native English speaker, so if my post make you confuse, please let me know and I would like to elaborate it again.

  • Address Book copy and change

    Hello there,
    I was wondering how I can copy all phone-no. entries of all users and add a new label but keep the existing no. and add a prefix.
    Example:
    Jon Doe, work:0013051234567 (keep this entry and create a new one: Jone Doe, work-1:999,0013051234567)...
    Is this possible and how?

    That helped. Try this:property ServicePrefix : "0435269981,"
    property ServiceName : "-10881"
    tell application "Address Book"
    repeat with personEntry in people --in group "Test"
    set personID to id of personEntry
    repeat with phoneEntry in phones of person id personID
    set phoneLabel to label of phoneEntry & ServiceName
    --set phoneNumber to value of phoneEntry
    set phoneNumber to cleanedUpNumber of me instead of (value of phoneEntry)
    if first character of phoneNumber is "+" then
    set phoneNumber to ServicePrefix & characters 2 thru length of (phoneNumber)
    else
    set phoneNumber to ServicePrefix & phoneNumber
    end if
    make new phone at end of phones of person id personID with properties {label:phoneLabel, value:phoneNumber}
    end repeat
    end repeat
    end tell
    on cleanedUpNumber instead of oldNumber
    set isPlus to (first character of oldNumber = "+")
    set isIntl to ((characters 1 thru 2 of oldNumber) as string = "00")
    --if isIntl then display dialog oldNumber & " is Intl"
    set isInCountry to (first character of oldNumber = "0" and not isIntl)
    --if isInCountry then display dialog oldNumber & " is in country"
    set isUnknownType to not isPlus and not isIntl and not isInCountry
    if isPlus then return "00" & characters 2 thru (length of oldNumber) of oldNumber
    if isIntl then return oldNumber
    if isInCountry then return "0041" & characters 2 thru (length of oldNumber) of oldNumber
    if isUnknownType then return oldNumber
    end cleanedUpNumber
    The two dashes "--" make everything in the line after them a comment. That was for my debugging.
    Also note that this will fail if there are anything but + or 0 as the first characters. One of my test subjects had (+44). That didn't work as I didn't try to code for it.

  • Error when Copying and Changing Area Menu S000

    Hi Guys,
    I have copied the area menu S000 to Z000 and I have been able to add my own menus there. However, there are some unnecesary menus on that area menu and I am trying to remove them. I have been able to remove the children of these menus, but am not able to remove the roots. Whenever I try to remove them, it gives the error:
    "Delete only nodes with enhancement ID '' (node ID:'CAMPUS')", for example.
    The menu items are:
    Student Lifecycle Management,Hospital, Clinical System, Insurance, Telecommunications, and Utilities Industry.
    Also, the added menus are put at the top of the area menu, is there a way of putting them at the bottom?
    Regards

    HI - I too have the same / similar problem. I have copied S000 to Z000 ... but now if I set Z000 as default menu then it shows Hospital and Campus Management etc. But these dont show when using S000.
    I either need to prevent them showing (in the same way as they dont show in S000) or delete them from Z000 but deleting them is also a problem for me becuase of the error message described above "Delete only nodes with enhancement ID"
    Any ideas appreciated
    Thx

  • How to copy and paste avail information onto web address bar when receiving e-mail

    When I get an e-mail with new information that I have applied to a certain website and cannot click it on, the e-mail tells me to copy and paste the new information on the address bar of my web browser ????  How do I do this; highlight the area to be copied (which I can find "copy" at the top of my e-mails), but can't find "paste" anywhere???
    Thank You!!
    Maddy6
    (Personal information removed by moderator)
    This question was solved.
    View Solution.

    Hello, and Welcome to the HP Support Community!
    It would help us reply to you if you gave us more information... Which HP device are you using?  A Windows PC with a keyboard?
    An Android Tablet?  A ChromeBook?
    If Windows, the keyboard shortcuts always work.  Highlight the address, type "Control-C" to copy the information.
    Now click in the address box of the browser and using the keyboard, type "Control-V" to Paste.    Think as the "V" as an arrow pointing to "paste it here!"   
    (To perform each function, press and hold the control key first, then tap the letter you wish).
    Other ways to paste is to right-click your mouse and choose "Paste" (after copying something).
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Commit and changes in database

    Hi,
    If someone makes an sql request but without commiting at the end, what happens exactly with the databuffer blocks.
    Is the DBWR works for these datas?
    I see a few people working with the oracle express 10 g version: their post is both client and server .
    They never commit their sql requests( insert , update, delete) and we can see that changes occur inthe database.
    How can you explain it to me?
    What occurs exactly with the DBWR process, concerning these datas?
    Thanks a lot for your answer.
    Best regards.
    Nathalie

    when a session changes data its shadow process reads blocks from DB file into buffer cache, and modifies rows in these blocks. these blocks become marked as dirty. At same time old versions of these blocks are copied into Undo segments to be used by other sessions until this session finishes the transaction. At same time all changes of rows in data blocks and changes of Undo segments written to Redo Log.
    DBWR sometimes issues so called checkpoints during that it flushes all dirty blocks to db file.
    It flushes dirty blocks of Undo segments as well.
    That is why you see physical changes in db files.
    However no other session sees logical changes of table rows done by the session until it issues Commit. Other sessions read rows from old versions of blocks from Undo.
    When the session commits it places mark into Redo log removes pointers to Undo from data blocks and releases Undo.
    something like that...
    But you better read Concepts docs, there is better explanation.

  • I cannot download any apps on my Iphone.  It keeps telling me to go to Itune store and change my billing informationa and I have done this and it stiil says the same thing and won't let me download any apps.

    I cannot downlaod any apps on my IPhone.  It keeps telling me to go to the ITune store and change my billing information and I have done that and it still won't let me download apps.

    This may not be the exact message that you are getting, but the reasons explained in here might be why you are getting this message. Take a look.
    http://support.apple.com/kb/ts1646

  • New and changed edition of a book in a different size: best route?

    I have a book in InDesign CS6 in a single InDesign document. The book is currently layed out as A4 portrait (297mm x 210mm) but that limits my professional printing options. A second edition of the book will be written with changes and additional materials. I plan to keep the old InDesign document for the first edition and create a new InDesign document for the second edition. That document will then have 280mmx216mm (or 8.5in x 11in) size with a gutter margin implemented.
    Now, I want to start the new edition from the existing content of the first edition. So, I have a couple of options:
    - Create a file copy and change document layout from that one
    - Create a new document with the correct size and do some sort of export-from-old/import-to-new (idml?)
    I've started with the first route. I changed the masters (2). I tried layout rules but that became a mess (my lack of expertise I guess) and also when I had some pages that I tried to reapply a master to, instead of applying it, that action inseerted two new blank pages based on the master, not what I want. So I restarted, leaving layout rules for what they are, changed the masters, but the result is that all the text frames have to be reset to the Master's size by hand. I can reapply the master, but the text frame keeps its old size.
    I must add that my document has something like 170 diagrams, some inline, some anchored, some floating that need to go over to the new one. Preferably not by hand.
    If I want to create a new document with the smallest possible change of carrying over any problems of the original and the smallest amount of work to get to the new version (in the ultimate case I have no problem redoing all the 170 diagram placements or changing the size of all text frames on each page by hand, but I'd rather not) what can I do?

    There is always going to be some manual work involved in reformatting a book like this, especially with the images, particularly those that are not anchored and may need to be repositioned. Layout Adjustment can help a lot -- I use it for this from time to time -- if you turn it on before making any changes, then make sure the margin guides are set to the size of the main text block before you attempt to make any change to document setup.
    Once the margins are correctly setup you can use Document Setup to change the page size, and then go to each master page and change the margin settings to what they should be, if different, and to move master objects that you would not be overriding. That should get you 80-90% of the way to your new layout, and you can save the file with a new name. You want to avoid reapplying master pages that have objects that you've overridden.

  • Data Consistency when Copying/ Refreshing ECC 6.0 and SRM-SUS 5.0 Systems

    Hello,
    We are planning a refresh / system copy of an ECC 6.0 and SRM-SUS 5.0 system
    The refreshes will be completed from backups taken of production systems refreshed onto the QA Landscape.
    I have referenced the following SDN thread that provides some guidelines on how to refresh R/3 and SRM systems and maintain data consistency between the systems using BDLS and changing entries that correspond to backend RFC destinations:
    [Is there a process/program  to update tables/data after System Refresh?;
    This thread is fairly old and relates to earlier versions of R/3 (4.7) and SRM (3.0).  We have heard that at higher system versions there may be technical reasons why a refresh canu2019t be performed.
    Does anyone have experience of completing successful refreshes of landscape that contain ECC and SRM systems at higher SAP versions (ideally ECC 6.0 and SRM-SUS 5.0)  Does anyone know whether it is technically possible?
    Are there any additional steps that we need to be aware of at these higher SAP versions in completing the copy to ensure that the data remains consistent between ECC and SRM?
    Thanks
    Frances

    I have seen this somewhere in the forum: See if this helps you
    BDLS: Convertion of logical system (SRM).
    Check entry in table TWPURLSVR.
    Check RFC connections (R/3 and SRM)
    SPRO, check or set the following points:
    Set up Distribution Model and distribute it
    Define backend system
    Define backend sytem per product category
    Setting for vendor synchronization
    Numbe ranges
    Define object in backend sytem
    Define external services (catalogs)
    Check WF customizing: SWU3, settings for tasks
    SICF: maintain the service BBPSTART, SAPCONNECT
    SE38:
    Run SIAC_PUBLISH_ALL_INTERNAL
    Run BBP_LOCATIONS_GET_ALL
    Update vendor BBPUPDVD
    Check Middleware if used.
    Run BBP_GET_EXRATE.
    Schedule jobs (bbp_get_status2, clean_reqreq_up)
    Convert attributes with RHOM_ATTRIBUTE_REPLACE

Maybe you are looking for

  • How much "power" will my VGA out give me?

    I was just wondering, how much power the graphics card is on my iBook G3. I have used the TV out through the headphone jack, and it works ok, but very low quality. I see there is a mini-VGA out. For $20 - I can get an adapter that turns that port int

  • How to give loop to the template

    hello, i had created smartform, in that i had created the template. Now the driver program had passing two records. But the template at a time will process the one record. So can we please specify how to loop into internal table which is coming into

  • IMac calibration tips please!

    Hi there all, I would be ecstatic if anyone could lend me some tips as to how I go about calibrating my iMac. When I have been working on images in Lightroom and Aperture and then create a jpg to export for printing at an online printers the overall

  • Conditional formatting an html email body

    Hi, I'm pulling some data out of a database and creating an email with an html body.  I'd like to highlight some of the rows in a colour if for example a particular column is flagged with a zero, I can call the column "expired".  I need it highlighte

  • Volume bar troubles

    My volume bar will not work on my iPad 2. I have reset all settings and made sure the slide switch is set to lock, not mute.  It will play sound with headsets but not over Bluetooth. it shows sound effects but no volume settings... Should I reset set