The fiscal year specified differs by more than a year from the fiscal year

Dear All
To rectify depreciation posted at development server I run OAGL which reset all depreciation posted (From FY 2008 to 2010), now when I am trying to post depreciation by AFAB for FY 2008 system showing error message
No posting possible in fiscal year 2008
Message no. AA688
Diagnosis
No posting is possible in the fiscal year 2008 specified. The fiscal year specified differs by more than a year from the fiscal year in which the last postings were performed.
Procedure
Correct your fiscal year specifications.
please advice me what step to be follow
Regards
Sekhar

Hi Sekhar,
Error AA688 typically occurs in two situations:
1) A company code did not have any depreciation posted in the previous year. See note 144441.
2) If in a comany code no depreciation has been posted ever, then it is important to note that the periods of the last depreciation posting  in table TABA and the year and period of the last depreciation posting in table T093D (fields AFBLPE and AFBLGJ) are initial. You can set these fields to 000 / 0000 with the correction report attached in SAP note 26073.
See if any of this information helps you further.
Brigitte

Similar Messages

  • How do you attach/email more than one document from the pages app?

    How do you send more than one document from the pages app on an iPad?

    This is entirely frustrating and I have yet to find an answer for this question even though people have been asking it on the internet for over a year!
    I am relatively new to apple and I was considering staying with them for my next iphone because of my apps, but after paying for this app and discovering I can't email more than one document "page" at a time? This makes no sense. Please fix this apple, I'd like to say you have replaced my tablet PC for home-office work but now I am reconsidering...

  • Hello,is there a way to make a word processing document in pages with 1" margins because at the top of page it has more than 1", and can the box at the top be deleted

    hello, is there a way to make a word processing document in pages with !" inch margins? i ask this because there is a box where you can write text and the you start your document, but it takes more than 1 inch from the top, can that box be removed? and why whatever you write in the box appears in every page of the paper? is there a way to avoid this? sorry I do not use computers very often and i just want to write an essay for my english clss, thanks for your help.

    The box is called Headers and is used for thing that will be repeated on several pages like page numbering and names etc.. You can uncheck it in the Inspector > Document tab

  • How to bring the more than one rows from the table into the script

    Hi
    I have to bring more than one rows from the table into the Main windows of the script. so plz help me out.
    Thanks in Advance
    Ananya

    Hi Ananya,
       Bring more than one row into main window of script.
       For this you need to do some changes for data which you pass to main window.At a time you need to pass more than one row,so for this you need to define one structure.See below code.
    Types:begin of ty_rows,
         include structure (your row_structure),
         include structure (your row_sturcture),
    Types:end of ty_rows.
    for example....
    If i need to pass 2 vendor details at a time to main window then the structure should be like this.
    Types:begin of ty_rows,
           vendor1 like lfa1-lifnr,
           vendor1_name like lfa1-name1,
           vendor2 like lfa1-lifnr,
           vendor2_name like lfa1-name1,
          end of ty_rows.
    Data:i_main type standard table of ty_rows,
         wa_main type ty_rows.
    Based on condition you can pass more than one rows of your actual internal table data to i_main internal table.
    Then you can pass i_main internal table to your main window.
        I think this will help you.
    Cheers,
    Bujji

  • How can I select more than one song from the search results?

    I want to create playlists based on certain words in the song title. For example, I may want to create a playlist of all my songs with LOVE in the title.
    Doing the search is easy, but I can't select more than one song at a time. Is there any way in iTunes 12 for Windows to do this? I found an answer in iTunes for Mac, and it basically says to "un-check "Search Entire Library." " but I don't see that option in iTunes for Windows.
    Here is the link to that question: how can i select more than one song from drop down search bar
    I hope some Windows user can help me out.

    Found the "Search Entire Library" option - click on the small (VERY small for my eyesight) down arrow next to the magnifying glass. Also need to select "Filter by: Songs", and then the songs in the main window show the results.
    I'm going to leave this up on the board because 1) in case someone else has this question, and 2) I don't know how to delete it anyway.

  • Viewing more than 9 Forms from the Window Menu Item

    Hi,
    I would like to know if you can list more than 9 Forms at one time from the Windows Menu Item before you have to select the MORE WINDOWS option to display the entire list of currently opened forms.
    Can this be set in the .mmb or some config file?
    It would be nice to have a list of about 12 Forms to choose from at one time before selecting the MORE WINDOWS option.
    Christina.

    Hi Frank,
    The Forms version our system uses is Oracle Forms 6i.
    A user would like to know if this scenario is possible during runtime.
    However, I would like to know what modifications can I make during design time to make this possible.
    Thanks.
    Christina.

  • Can you display more than one library from the same account?

    If I open iTunes on two computers in my house, I can only show one library on my apple tv. When I turn on the second computer, the first library goes away.
    Can you show one at the same time?
    Thanks

    Welcome to the Apple Community.
    Yes you can share more than one library at a time, just make sure that the homesharing ID and password you use for each one is the same on all of the libraries.

  • Script to Delete more than 1 user from the database

    Hi All,
    I have a list of users in a file and i want to write a script to delete all these
    users from my database.
    I have tried deleting users using:
    drop user user1,user2,user3..... but it doesn't seem to work.
    Can anyone suggest how do i read the users from the file and delete them one by one

    You can use an external table :
    SYS@db102 SQL> select username from all_users
      2  where username like 'USER%';
    USERNAME
    USER1
    USER2
    USER3
    SYS@db102 SQL> !cat users_to_drop.txt
    USER1
    USER2
    USER3
    SYS@db102 SQL> create table test.users_to_drop
      2  (
      3     userx   char(30)
      4  )
      5    organization external
      6  ( type oracle_loader
      7    default directory work
      8    access parameters
      9     ( records delimited by newline
    10     )
    11     location ('users_to_drop.txt')
    12  )
    SYS@db102 SQL> /
    Table created.
    SYS@db102 SQL> begin
      2     for U in (select userx from test.users_to_drop) loop
      3             dbms_output.put_line('Dropping '||U.userx);
      4             execute immediate 'drop user '||U.userx||' cascade';
      5     end loop;
      6  end;
    SYS@db102 SQL> /
    Dropping USER1
    Dropping USER2
    Dropping USER3
    PL/SQL procedure successfully completed.
    SYS@db102 SQL> select username from all_users
      2  where username like 'USER%';
    no rows selected
    SYS@db102 SQL>

  • Delete more than 1 user from the database

    Hi All,
    I have a list of users in a file and i want to write a script to delete all these
    users from my database.
    I have tried deleting users using:
    drop user user1,user2,user3..... but it doesn't seem to work.
    Can anyone suggest how do i read the users from the file and delete them one by one

    I have written a script but getting a error.Can anyone help :-
    create or replace PROCEDURE drop_user
    is
    v_filehandle utl_file.file_type;
    v_user VARCHAR2(20);
    lv1 VARCHAR2(200);
    err_code VARCHAR2(20);
    err_msg VARCHAR2(250);
    BEGIN
    v_filehandle:=utl_file.fopen('/tmp','user_list.lst','R');
    LOOP
    BEGIN
    utl_file.get_line(v_filehandle,v_user);
    lv1:='drop user'|| v_user;
    execute immediate lv1;
    EXCEPTION
    WHEN OTHERS THEN
    err_code := SQLCODE;
         err_msg := substr(SQLERRM, 1, 200);
         dbms_output.put_line(err_code|| ':-' || err_msg);
    END;
    END LOOP;
    utl_file.fclose(v_filehandle);
    END DROP_USER;
    ERROR :
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "SYS.UTL_FILE", line 98
    ORA-06512: at "SYS.UTL_FILE", line 157
    ORA-06512: at "TOM.DROP_USER", line 9
    ORA-06512: at line 1

  • Can I split the screen in Adobe to show more than one ducument at the same time? ie. view three different documents on one screen

    I am trying to look at three Adobe documents at the same time.  Can I split the screen to do this, otherwise I must keep flipping back and forth to read the documents.

    You can arrange the open windows in any way that suits you (assuming you're on Windows - not Touch - or Mac). You can't link the scrolling though.

  • How could I get the pdf-file output to contain more than one page from certain homepages

    2011-08-22
    I have been using Firefox for many years now. I like this browser better than Safari. However. I have a problem when I have connected to a homepage over the web and want to write the content out to a pfd-file. The pdf-file does sometimes contain only one page. The material is good enough for two or more pages of output. I have checked that using Safari browser. I´d like to continue using Firefox so please tell med what to do!
    Göran Stille
    [email protected]
    Computer Mac Powerbook G4
    Processor 1.67 GHz PowerPC G4
    Operative system OSX 10.5.8
    Firefox version 3.6.2

    excellent.
    quiteimposing does exactly what i wanted.
    thanks a lot.
    now only problem is that demo version prints large x mark on pages
    is there any free plugins available or any other way to get rid of x mark.
    thanks in advance.

  • Is there any way to delete more than one email from the iPhone at a time?

    What if I know I've read everything already online - can I press my Mail icon and instead of opening & deleting one by one, can't I delete everything in my Mail that's there? THANKS!

    Use the edit button, then select all messages you want to delete, and press "Delete" button. You still have to select one by one, but you'd have to do it anyway.

  • How do I manage more than one Ipod from the same computer?

    I just bought my boyfriend an Ipod and I want to set it up for him before I give it to him. We only have one computer and I'm not sure what to do. Can we both work from one itunes or can I install it twice?

    Just plug it in.
    You do not need to install iTunes twice.
    See this -> How to use multiple iPods on one computer

  • How can i use the same front panel graph in more than one events in an event structure?

    i want to display the signals from my sensorDAQ in a graph.but i have more than one event in the event structure to acquire the signal and display it in the graph.the first event is to acquire the threshold signals and its displayed in the graph as a feedback.after the first event is executed, i will call the second event,where the further signals are acuired and compared with the threshold signals from the event 1.my question is how can i use the same front panel control in more than two events in the event structure?please answer me i'm stuck.
    Solved!
    Go to Solution.

    Hi,
    I have attached here an example of doing the same using shift registers and local variables. Take a look. Shift register is always a better option than local variables.
    Regards,
    Nitzz
    (Give kudos to good answers, Mark it as a solution if your problem is Solved) 
    Attachments:
    Graph and shift registers.vi ‏12 KB
    graph and local variables.vi ‏12 KB

  • How to email more than one photo from camera roll

    How do e-mail more than one photo from the camera roll at a time?

    Go to the camera roll, open the thumbnails, click on the arrow in the top right, select up to 5 photos, click on share in the top left and select email.

Maybe you are looking for