Save all data in alv(changed and unchanged)

Hello,
I have this weird situation. Suppose my alv has three columns. Its initial data is:
1  2  3
Now I add one more row into it, So my ALV looks like this now:
1 2 3
4 5 6
But now when I save the data only 4 5 6 is displayed and 1 2 3 is lost....
I have also tried using check_changed_data
Regards
Archit

Hi Archit,
Refer std program:
<b>BCALV_EDIT_04</b>
Reward points if this Helps.
Manish

Similar Messages

  • Error "Not all data could be changed in LC" when running DP macro

    We are getting the error, "Not all data could be changed in LC" when running DP macros and we are not sure why. It seems to only happen when we are executing it via a Process Chain but not using the DP background processing scheduling. Does anyone know why this is happening?

    Hi Stacy,
                         I hope you are seeing this in message spool.  This message comes up for various reasons. We used to see a message saying "No data saved".
    Some of the reasons could be " the new value (lets say 3 ) after the macro execution is same as after execution (3)".
    See if some of the values are fixed and could not be changed.
    I would take a selection id with just few values and execute the job for that selection id and compare the pre and after results. That should answer all your questions.

  • Not all data could be changed in LC (Message no. /SAPAPO/TS007)

    Hi Experts,
    When I run forecasting through automodel(strategy 56) in the background, For some combinations I got the warning message "Not all data could be changed in LC" (Message no. /SAPAPO/TS007). What does this message means?
    Thanks & Regards
    Yogeesha

    Hi
    Logically whenever you create a new CVCs in APO system you should execute the job /SAPAPO/TS_LCM_CONS_CHECK
    by default which will assign time series for the newly created CVCs.
    In the following case, it looks like you have created CVCs and than during th FCST job as it does not found the time series for newly created CVCs you received the following errors.
    You can execute the report now which will fix the issue, but I will suggest to execute this once CVC job creation is done as regular process.
    Please let us know, if this helps to answer you question.
    Thanks & Regards
    Amol

  • How to erase all data on macbook pro and reinstall operating system

    how to erase all data on macbook pro and reinstall operating system

    OS X Snow Leopard
    https://support.apple.com/en-us/HT3910
    http://www.thesafemac.com/how-to-reinstall-mac-os-x-from-scratch/
    OS X Yosemite
    https://support.apple.com/kb/PH18869?locale=en_US&viewlocale=en_US
    Best.

  • My iphone is synced and backed up with another computer which is now broken... and i have synced it with a new one but when i want to do anything itunes says all data will be erased and replaced with the current itunes library?what do i do?

    my iphone is synced and backed up with another computer which is now broken...i have synced it with my new computer  but it hasnt transfered anything over to itunes and when i try to add anything to my iphone it says all data will be erased and replaced with the current itunes? i dont want to lose all my apps and music.... i dont know how to go around this problem? i want to back it all up and sync it properly to my new computer so that is now my main computer , so i can add ring tones and music etc with out it erasing everything ive got. any answers would be great and muchly appreciated. thanks, im not sure what operating system my iphone has either.....

    It has always been very basic to always maintain a backup copy of your computer for just such an occasion.
    Use your backup copy of your computer to put everything on the new one.
    It sounds like you have failed to do this, which is not good at all.
    You will have to transfer your itunes purchases from your iphone.  Authorize your computer for your itunes account 
    About iTunes Store authorization and deauthorization
    Open itunes, plug in iphone, do NOT sync, click File>Transfer Purchases
    When you do sync you will lose your pics ( photo library - synced from your old computer), your itunes content ( music, apps, videos,etc) , your contacts and your calendars.  So do NOT sync yet.  This is why a backup copy is so important.
    Enter one unique contact and calendar entry on your computer.
    When you first sync, you should get the option to merger the data.  Choose it.
    If you want your pics, then you will need to e-mail them to yourself before you sync.  They will not be of the original quality as they are reduced when synced to iphone.
    When all is as goos as it can be, then backup your computer, and always maintain the backup.

  • How do i put tv programmes and videos from itunes to another iphone, without having to delete all data on the phone and replacing it with my library? i switched the 'sync only ticked songs and videos box' yet it still wont let me transfer videos from my i

    How do i put tv programmes and videos from itunes to another iphone, without having to delete all data on the phone and replacing it with my library? i switched the 'sync only ticked songs and videos' yet it still wont let me transfer videos from my itunes onto my new phone, any ideas??

    Copy the entire itunes folder from the old computer to the new computer.

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.Not working in USA timezone.

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works fine in our side (Timezone,kolkata ,india even for Timezone,slvaniya,USA) but our USA client is telling that on changing the date it not starts from start-up sequence.Can anyone plz suggest the reason for it.

    This is the code which we have used.
    //////////Return if it is first time for the day or not//////////////
    + (BOOL)isFirstTimeToday {
    BOOL result = YES;
    NSDate *now = [[NSDate alloc] init];     /// represents the current time
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: now];
    NSDate *today = [gregorian dateFromComponents:components];
    [now release];
    [gregorian release];
    NSDate *savedDate = [[NSUserDefaults standardUserDefaults] objectForKey:LAST_TIME_VISITED];
    if (savedDate) {
    if ([today earlierDate:savedDate] == today) {
    result = NO;
    return result;
    ////////Stores the date/////////////
    + (void)userDidVisitReenforceScreenToday {
    [[NSUserDefaults standardUserDefaults] setObject:[NSDate todayAtMidnight] forKey:LAST_TIME_VISITED];
    ////////////What [NSDate todayAtMidnight] stores/////////////////////
    + (NSDate *)daysFromNowAtMidnight:(NSInteger)nOfDays {
    NSDate *date = [NSDate dateWithTimeIntervalSinceNow: (86400*nOfDays)];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: date];
    NSDate *dateAtMidnight = [gregorian dateFromComponents:components];
    [gregorian release];
    NSLog(@"dateAtMidnight : %@",dateAtMidnight);
    return dateAtMidnight;
    + (NSDate *)todayAtMidnight {
    return [self daysFromNowAtMidnight:0];
    Please Suggest..

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    Try posting in the developer forums to see if you can get some assistance,you'll have to be a registered developer for access though.
    developer.apple.com

  • All dates of BOM change

    Hello!
    I'm writing a function that is searching for parts of a model in the BOM. I'm saving the result to a buffer table, so I need to find all dates of BOM change (at all levels). For example:
    01.06.2006 -> BOM created
    07.06.2006 -> material A added at level 4
    14.06.2006 -> material added at level 3
    26.07.2006 -> material deleted at level 1
    30.01.2007 -> material A replaced by B at level 4
    We are using change numbers to keep the history...
    I don't need to know what happend, I want to find out the dates of changes.
    Is it possible to find out these dates without exploding the whole BOM?

    Sorry! I sent this question twice by mistake! Please check my second thread: "BOM change dates". ThanX!
    Message was edited by:
            Donnie Darko

  • Help to save Vector data into a disk and load it back again

    Hi all
    I�m still need help to solve the problem of saving vector data object into disk and load it aging whenever I restart the program. I used one central design for the project. The codes below is most important part of the project.
    I stored data into vector collection through the GUI. My problem is, where should I put the FileOutputStream and ObjectInputStream in the steps below before the data that I stored in the Vector can be save in a disk and also to be loaded back to the vector when I restart program automatically. Pls I need help. Any assistance will be appreciate
    Step1:
    import java.io.*;
    public class UserP implements Serializable{
    private String staffNo;
    private String passW;
    public UserP(String staffNo,String passW){
    this.staffNo= staffNo;
    this.passW= passW;
    public String getUserCode(){
    return staffNo;
    public void setPassW(String passW ){
    //Use to change user password .
    this.passW= passW;
    public String getPassW(){
    return passW;
    Step2:
    import java.util.*;
    import java.io.*;
    public class UserPs implements Serializable{
    private Vector pUsers;
    public UserPS(){
    //initialize collection Object.
    this.pUsers= new Vector(10,10);
    //Helper method.
    private int getIndexFor(String staffNo){
    //Find the position index of User in the collection
    //Only used by the following method(getPUserFor, Add).
    for(int i=0; i< pUsers.size(); i++){
    UserP aUserP= (UserP) pUsers.elementAt(i);
    if(aUserP.getUserCode().equals(staffNo))
    return i;
    return -1;
    public UserP getPUserFor(String staffNo){
    int i= getIndexFor(staffNo);
    if(i < 0)
    return null;
    UserP aUserP= (UserPatient) pUsers.elementAt(i);
    return aUserP;
    public synchronized UserP add(UserP aUserP){
    //add the given prescription object to this collection but only if not already in.
    if(aUserP==null)
    return null;
    if(getIndexFor(aUserP.getUserCode()) >= 0)
    return null;
    pUsers.addElement(aUserP);
    return aUserP;
    public Enumeration list(){
    //returns the enumeration collection of UserP.
    return pUsers.elements();
    Step3:
    import java.io.*;
    //Every UserP has a collection of UserPs,a reference to such
    //collection is held by the instance variable 'userPs'.
    public class Hosp implements Serializable{
    private UserPs userPs;
    public Hosp(){
    userPs= new UserPs();
    public UserPs getUserPs(){
    // return a reference to the UserPatients collection
    return userPs;
    Step4 :
    public interface GateKeeper{
    public String addUserP(String staffNo,String passW);
    public String retrieveAllUserP();
    Step5:
    import java.util.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class GateKeeperImpl implements GateKeeper, Serializable {
    private Hosp hosp;
    public GateKeeperImpl(){ //CONSTRUCTION
    //Make an Hosp.
    hosp= new Hosp();
    public String addUserPs(String staffNo,String passW){
    if(stafNo == null)
    return("The staff is required.");
    if(passW.equals(""))
    return("Password is required.");
    UserP userP= new UserP(staffNo,passW);
    UserPs uPs =hosp.getUserPs();
    UserP collet= uPs.add(userP);
    if(collet == null)
    return ("This user is already in the collection.");
    else
    return ("The user has been added to the collection.");
    public String retrieveAllUserP(){
    UserPs uPs =hosp.getUserPs();
    String allUser="User informations:";
    Enumeration e= uPs.list();
    while(e.hasMoreElements()){
    UserP user =(UserP)e.nextElement();
    allUser = allUser +"\n"+"\n"+"UserCode:"+user.getUserCode()+" "+" "+"UserPassword:"+user.getPassW()+"\n";
    return allUser;
    Step 6:
    import java.util.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class HospFrame1 extends Jframe, implements Serializable {
    private GateKeeperImpl gate= new GateKeeperImpl();
    private JButton jButton1 = new JButton();
    private JButton jButton2 = new JButton();
    private JTextField sSfied = new JTextField();
    private JTextField pWfied = new JTextField();
    //Construct the frame
    public HospFrame1() {
    //The rest of the code comes here
    //The rest of the action method that used to implement also comes here.
    Step 7:
    import java.util.*;
    import java.io.*;
    import javax.swing.UIManager;
    public class Testing{
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e) {
    e.printStackTrace();
    HospFrame1 hops=new HospFrame1();
    try
         // to save data to afile
    FileOutputStream sFile = new FileOutputStream("theData.dat");
    ObjectOutputStream oos = new ObjectOutputStream(sFile);
    oos.writeObject(hops);
    oos.close();
    catch (Exception e){
    e.printStackTrace();
    try {
    //to read data from previous save file
    FileInputStream fin = new FileInputStream("theData.dat");
    ObjectInputStream yess = new ObjectInputStream(fin);
    hops =(HospFrame1) yess.readObject();
    yess.close();
    catch(Exception e){
    e.printStackTrace();

    Stop multi-posting and cross-posting your questions.

  • I keep getting a warnin that my pages document could not be auto saved. The file has been changed by another application. Click save anyway to keep your changes and save the changes made by the other application as a version, or click revert to keep the c

    I keep getting a warning stating that the document could not be auto saved in pages. The file has been changed by another application. Then it says click save any way to keep your changes and save the changes made by the other application as a version, or click revert to keep the changes from the other application and save your changes to a version.
    What in the heck does all that mean, and why are they trying to behave like a Windows product or a Microsoft office product. I just don't get it.
    Why is another application changing my documents? It's like they've created a virus within their own programs. It's a pain in the neck and makes no sense.

    I am also having the issue of a warning saying "could not be auto-saved in Pages. The file has been changed in another application. I then hit "save anyway", the warning will go away for a time, sometimes minutes, sometimes hourr, but then the warming reapprears saying the same thing. This is not the case with all Pages documents but it is the case with many.
    Working with a Retina Macbook Pro and current software
    These are newly created documents

  • Not sure how to transfer/save ALL data from old SIM card to new iPhone

    1) How can I save/keep/transfer all Messages and Notes when I put my SIM card into a new iPhone? 
        I have done that but only some of the Messages and Notes are there on new phone.
    2)  Also/or:  are all Messages and Notes saved on my Mac whenever I Sync / Update it? 
         And if so, WHERE on my computer do I find them? 
    *  The Apple site says to be sure to Sync phone "to keep all data" (of course) but I want to make sure that includes        ALL Notes and Messages and know where to find them on my computer to truly save and access them. 
    *  I have a 4S and the newer 4S with Siri.  I am going to give the 4S to a daughter and keep the 4S with Siri.
    3) Will the Genius Bar people help me with this if I can't myself, or do I need to go to AT&T (gag)?
    I need simplest of explanations and steps to follow, please!
    Many thank yous,
    Zoesma

    Zoesma wrote:
    Okay -- thanks to you, too!  I've only been using an iPHone since the 3G and had no idea.  Learn something new every day.  I totally  thought it stored the person's personal data so it could go from phone to phone.  Good to know--thanks!
    So it must store phone basic stuff, I guess.  I'll have to look into that.
    I gave you a link that explains how to get info from one iphone to another.

  • HT3529 I have lost all data on my iphone and the back-up is too old. How can I restore iMessage chats on my iPhone 4? I have all the chats on my Mac, but there seems to be no sync function from Mac to iphone. Please advice.

    Hi,
    I have lost all data on my iphone by mistake. I needed to restore the phone and I didnt realize my back-up was 1yr old, and now the phone is restored and I've got a year old contact list and iMessage chat history. Luckily my iMessage on the Mac is still valid and has all the chat history. My question is how can I restore iMessage chats on my iPhone 4 from my Mac? I have all the chat history on my Mac, but there seems to be no sync function from Mac to iphone. Please advice.

    If things seem to be going haywire with your phone, it seems that it MAY be a software issue.
    Now, that being said, that does not necessarily mean that it is a virus. Software issues do happen sometimes. It is probably just coincidence.
    What you need to do is restore the device using iTunes. This will fix any software issues. After you have done this, you can restore from an iCloud backup.
    iCloud does not back up the actual software, so no, the "virus" would not have gotten into the backups.
    The link below provides steps on restoring your device using iTunes as well as how to restore from an iCloud backup.
    http://support.apple.com/kb/ht1766
    Don't worry! Everything should be back to normal if you follow these steps.

  • To save the data rs232 into binary and to post them on a graph

    Hello I finish this year a project of electronic to present in front of jury. I would like to show the assets of the Labview software by carrying out the interface of my project under this program. I have to work before with this software and an auxiliary chart to make regulation speed engine and regulation of heating. This time I would need to use the serial port .I have a serial port connected to a  CPLD+mémory SRAM. This assembly will send data by serial port . The PC must take delivery of the data in binary format and separate each one of the bit ====>first I recept the first word of 8 bits; the first bit is posted on a line the second bit on one second line etc.... (thus 8lignes) and when I recept the following word of 8 bit I carry out the same thing. In the final analysis I must find 8 lines posting a value 0 or 1 as on a logical analyzer. I hope that you will be able to help me. Thank you and sorry for my bad english.

    Hi
    If I translate your question into my (also foreign) english I would say that you receive bytes from the serial line in the form of characters
    and that each bit is representing the state of a digital line.
    So you need to read characters from the serial line 1 at a time, convert this into a byte and this one into 8 bits and display it.
    Try to find all these steps and the forum will help you to add them together.
    succes
    greetings from the Netherlands

  • May I clear all data in my cloud and start over

    I have had a joint Apple account with my wife. I want to get a separate Apple account for her and then clear my data on the could and use the current account as only mine. How may I do that?

    Click here and follow the instructions. If the computer originally shipped with Mac OS X 10.6.8 or earlier, when you reach step 5, insert its original disk, restart with the C or Option key held down, use the Disk Utility to erase the internal drive, and install a fresh OS.
    (120133)

Maybe you are looking for

  • Can someone recommend a nice 27" monitor for my 15"Macbook Pro

    Hi, my boss just bought me a 27" Apple display for work.  I will also be working from home and would like to get another 27" for there - while I would love to get another Apple display, the cost prohibits this. I was looking at the Viewsonic VX2739WM

  • Case Sensitive External Drive for iTunes

    My iTunes Library is currently stored on a case sensitive external drive.  I am moving it to another drive that I found out is formatted as a non-case sensitive (both areJournaled).   When I tried to move my iTunes Library, it would not copy because

  • Mail: Unable to delete an email

    Hello everyone, don't know if this has been solved but I cannot delete the header of an email which is like glued in my mailbox! This is annoying . I have tried to remove the mail box, to delete it in finder. In spotlight I am able to find the mail (

  • Problem with Listener

    Hi, I have two oracle10g databases installed in the server. I have listener listening for both the db. Now i have created new listener which listens for both the db. but when I try to connect using second listener connection hangs. I can see two tnsl

  • I want to get OnLive Desktop in Canada

    So Onlive Desktop is only on the US app store so I can't get it. I heard that you can gift apps to other people so im wondering if it would work if someone from the US gifted me the app. I will tell the email if someone agrees to gift me the app