Problem with Depreciation Run

HI,
while doing a depreciation user is getting prob that No value for profitability segment.
help me out as soon as possible.

Hi Andreas,
thank you for your reply.
in 46 C, the field is called Session Name (RAREP-GROUP).  Have no clue if that helps.
What program is called when you run AFAB in 46C?
I get RABUCH00. If you view the coding then look at line 82 (in the SAP standard version):
BDC-Steuerung
SELECTION-SCREEN BEGIN OF BLOCK BL5
                 WITH FRAME
                 TITLE TEXT-C02.
PARAMETERS:
          P_GROUP LIKE <b>RAREP-GROUP </b> DEFAULT 'RABUCH',   "Gruppe
          P_HDAT  LIKE RAREP-HDAT   DEFAULT SPACE,      "Sperren bis
          P_KEEP  LIKE RAREP-KEEP   DEFAULT SPACE.      "Mappe halten
SELECTION-SCREEN END OF BLOCK BL5.
This coding is missing from the program used in ERP 2005 to call AFAB (RAPOST2000) thus we cannot type in a session name - which is what we use later on in SM37.
SAP must have its reasons and I am looking forward to hearing them.
What I am looking for is a workaround to the issue so that we can still run our testing before posting.
Ryan

Similar Messages

  • Problem with depreciation posting for an asset with a '0' net book value.

    Hi,
    I have a problem with depreciation posting on one asset. I think it should not be calculated and posted at all.
    On 1st November 2010 (our Fiscal year starts on 1st November) there was acquisition posted to an asset and then it was reversed on the same day - so the net book value was '0'.
    In AFAB depreciation run for April 2011 - it posted depreciatoion of 0.01 Euro, so now the book value is -0.01.
    Do you know how this could have happened and what can I do to get the value of this asset back to 0?
    Thank you,
    Karol

    Hi Murlidhar,
    Thank you for your reply.
    I just have one doubt - as depreciation of 0.01 Eur was posted in previous period leaving net value of asset equal to -0.01 Eur.
    Shouldn't I get ritd of this asset value before I proceed with the steps you suggested?
    I think it is not possible to reverse the depreciation - so I struggle to find a way to bring asset value back to zero.
    Thank you,
    Karol

  • HT1338 We are currently running CS3 on Macs with OS 10.5.8 but need to upgrade the OS in order to prepare e-books. Will we have any problems with CS3 running on the later OS?

    We are currently running CS3 on Macs with OS 10.5.8 but need to upgrade the OS in order to prepare e-books. Will we have any problems with CS3 running on the later OS?

    Check the Adobe website for compatibility.
    Ciao.

  • Problem with battery running down more quickly after downloading OS6 to 3GS iPhone

    Problem with battery running down more quickly after I downloaded OS6 to 3GS iPhone.

    gdgmacguy
    I guess I should have asked for the "definitive" fix. I read several "fixes" but it seems no one knows if Apple has a definitive fix. Kind of like going into an Apple store and getting three different answers from three different reps. At least they are not rude and no, I don't have a problem searching the forum.
    <Edited by Host>

  • FI-AA : Problem in Depreciation Run and Year end closing.

    i am doing asset year end closing and new fiscal year open, i followed the steps as followings..
    Step 1 Did depreciation run using T-code AFAB- no error
    step 2 checked depreciation run in AFAR was correct(no error)
    step 3.did actual run of new fiscal year open using tcode AJRW.
    step 4 : did actual fiscal year closing t-code AJAB.
    but now the problem is still i am not able to see any asset reports when open the report meg. says "fiscal year change not done for company code xxxxx"
    problem due to  is any patch need to be executed? or due to any other application error?, pls advice to solve this my issue.
    with best regards,

    Hello
    Choose Periodic processing ® Fiscal year change.
    Enter the company code and the new fiscal year.
    Choose Program ® Exec. in background.
    Process the assets with errors that were identified during the fiscal year change (Tools ® Assets with errors).
    Reg
    *Assign points if useful

  • No depreciation values with depreciation run.

    Good day from sunny South Africa.
    It happens some monthends at my client that there is no depreciation values calculated for some assets. The client then load and post 1.00 and remove and post 1.00 to the scrap value of the relevant assets and that fixes the problem. Depreciation is then calculated with the next depreciation run. What could be the problem?
    Kind regards
    Marnus

    Hi Marnus,
    sounds strange, and maybe my first impression seems a little bit too easy. But anyhow, my impression when reading this was that the current asset values were not calculated correctly. Did you do an AFAR run or recalculate the asset values with AS02 in the past?
    By posting an amount to the asset and reversing it, the posting logic triggers a new calculation of asset values implicitely.
    That could be one (simple) explanation. But as Zaid already wrote, there could be several other reasons. More info could bring more light into this problem.
    Regards,
    Markus

  • Problem with threads running javaw

    Hi,
    Having a problem with multi thread programming using client server sockets. The program works find when starting the the application in a console using java muti.java , but when using javaw multi.java the program doesnt die and have to kill it in the task manager. The program doesnt display any of my gui error messages either when the server disconnect the client. all works find in a console. any advice on this as I havent been able to understand why this is happening? any comment would be appreciated.
    troy.

    troy,
    Try and post a minimum code sample of your app which
    does not work.
    When using javaw, make sure you redirect the standard
    error and standard output streams to file.
    Graeme.Hi Graeme,
    I dont understand what you mean by redirection to file? some of my code below.
    The code works fine under a console, code is supposed to exit when the client (the other server )disconnects. the problem is that but the clientworker side of the code still works. which under console it doesnt.
    public class Server{
    ServerSocket aServerSocket;
    Socket dianosticsSocket;
    Socket nPortExpress;
    ClientListener aClientListener;
    LinkedList queue = new LinkedList();
    int port = 0;
    int clientPort = 0;
    String clientName = null;
    boolean serverAlive = true;
    * Server constructor generates a server
    * Socket and then starts a client threads.
    * @param aPort      socket port of local machine.
    public Server(int aPort, String aClientName, int aClientPort){
    port = aPort;
    clientName = aClientName;
    clientPort = aClientPort;
    try{
    // create a new thread
    aServerSocket = new ServerSocket(port) ;
    // connect to the nPortExpress
    aClientListener = new ClientListener(InetAddress.getByName(clientName), clientPort, queue,this);
    // aClientListener.setDaemon(true);
    aClientListener.start();
    // start a dianostic port
    DiagnosticsServer aDiagnosticsServer = new DiagnosticsServer(port,queue,aClientListener);
    // System.out.println("Server is running on port " + port + "...");
    // System.out.println("Connect to nPort");
    catch(Exception e)
    // System.out.println("ERROR: Server port " + port + " not available");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Server port " + port + " not available", JOptionPane.ERROR_MESSAGE);
    serverAlive = false;
    System.exit(1);
    while(serverAlive&&aClientListener.hostSocket.isConnected()){
    try{
    // connect the client
    Socket aClient = aServerSocket.accept();
    //System.out.println("open client connection");
    //System.out.println("client local: "+ aClient.getLocalAddress().toString());
    // System.out.println("client localport: "+ aClient.getLocalPort());
    // System.out.println("client : "+ aClient.getInetAddress().toString());
    // System.out.println("client port: "+ aClient.getLocalPort());
    // make a new client thread
    ClientWorker clientThread = new ClientWorker(aClient, queue, aClientListener, false);
    // start thread
    clientThread.start();
    catch(Exception e)
    //System.out.println("ERROR: Client connection failure");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Client connection failure", JOptionPane.ERROR_MESSAGE);
    }// end while
    } // end constructor Server
    void serverExit(){
         JOptionPane.showMessageDialog(null, "Server ","ERROR: nPort Failure", JOptionPane.ERROR_MESSAGE);
         System.exit(1);
    }// end class Server
    *** connect to another server
    public class ClientListener extends Thread{
    InetAddress hostName;
    int hostPort;
    Socket hostSocket;
    BufferedReader in;
    PrintWriter out;
    boolean loggedIn;
    LinkedList queue;      // reference to Server queue
    Server serverRef; // reference to main server
    * ClientListener connects to the host server.
    * @param aHostName is the name of the host eg server name or IP address.
    * @param aHostPort is a port number of the host.
    * @param aLoginName is the users login name.
    public ClientListener(InetAddress aHostName, int aHostPort,LinkedList aQueue,Server aServer)      // reference to Server queue)
    hostName = aHostName;
    hostPort = aHostPort;
    queue = aQueue;
    serverRef = aServer;      
    // connect to the server
    try{
    hostSocket = new Socket(hostName, hostPort);
    catch(IOException e){
    //System.out.println("ERROR: Connection Host Failed");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Connection to nPort Failed", JOptionPane.ERROR_MESSAGE);     
    System.exit(0);
    } // end constructor ClientListener
    ** multi client connection server
    ClientWorker(Socket aSocket,LinkedList aQueue, ClientListener aClientListener, boolean diagnostics){
    queue = aQueue;
    addToQueue(this);
    client = aSocket;
    clientRef = aClientListener;
    aDiagnostic = diagnostics;
    } // end constructor ClientWorker
    * run method is the main loop of the server program
    * in change of handle new client connection as well
    * as handle all messages and errors.
    public void run(){
    boolean alive = true;
    String aSubString = "";
    in = null;
    out = null;
    loginName = "";
    loggedIn = false;
    while (alive && client.isConnected()&& clientRef.hostSocket.isConnected()){
    try{
    in = new BufferedReader(new InputStreamReader(client.getInputStream()));
    out = new PrintWriter(new OutputStreamWriter(client.getOutputStream()));
    if(aDiagnostic){
    out.println("WELCOME to diagnostics");
    broadCastDia("Connect : diagnostics "+client.getInetAddress().toString());
    out.flush();
    else {       
    out.println("WELCOME to Troy's Server");
    broadCastDia("Connect : client "+client.getInetAddress().toString());
         out.flush();
    String line;
    while(((line = in.readLine())!= null)){
    StringTokenizer aStringToken = new StringTokenizer(line, " ");
    if(!aDiagnostic){
    broadCastDia(line);
    clientRef.sendMessage(line); // send mesage out to netExpress
    out.println(line);
    out.flush();
    else{
    if(line.equals("GETIPS"))
    getIPs();
    else{
    clientRef.sendMessage(line); // send mesage out to netExpress
    out.println(line);
    out.flush();
    } // end while
    catch(Exception e){
    // System.out.println("ERROR:Client Connection reset");
                             JOptionPane.showMessageDialog(null, (e.toString()),"ERROR:Client Connection reset", JOptionPane.ERROR_MESSAGE);     
    try{
    if(aDiagnostic){
    broadCastDia("Disconnect : diagnostics "+client.getInetAddress().toString());
    out.flush();
    else {       
    broadCastDia("Disconnect : client "+client.getInetAddress().toString());
         out.flush();
    // close the buffers and connection;
    in.close();
    out.close();
    client.close();
    // System.out.println("out");
    // remove from list
    removeThreadQueue(this);
    alive = false;
    catch(Exception e){
    // System.out.println("ERROR: Client Connection reset failure");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Client Connection reset failure", JOptionPane.ERROR_MESSAGE);     
    }// end while
    } // end method run
    * method run - Generates io stream for communicating with the server and
    * starts the client gui. Run also parses the input commands from the server.
    public void run(){
    boolean alive = true;
    try{
    // begin to life the gui
    // aGuiClient = new ClientGui(hostName.getHostName(), hostPort, loginName, this);
    // aGuiClient.show();
    in = new BufferedReader(new InputStreamReader(hostSocket.getInputStream()));
    out = new PrintWriter(new OutputStreamWriter(hostSocket.getOutputStream()));
    while (alive && hostSocket.isConnected()){
    String line;
    while(((line = in.readLine())!= null)){
    System.out.println(line);
    broadCast(line);
    } // end while
    } // end while
    catch(Exception e){
    //     System.out.println("ERRORa Connection to host reset");
    JOptionPane.showMessageDialog(null, (e.toString()),"ERROR: Connection to nPort reset", JOptionPane.ERROR_MESSAGE);
    try{
    hostSocket.close();
         }catch(Exception a){
         JOptionPane.showMessageDialog(null, (a.toString()),"ERROR: Exception", JOptionPane.ERROR_MESSAGE);
    alive = false;
    System.exit(1);
    } // end method run

  • A few problems with Leopard running on my White iMac...

    I have only found 2 problems so far with Leopard running on my iMac. First off, the most annoying one:
    Sometimes, especially when switching users, the screen turns to the "gray screen of death." You know, the one with the request to restart your computer in like 4 languages and a huge picture of a power button... anyway, it is getting quite annoying and I wish I could make it stop. It has also happened when I have been dealing with moving large amounts of data, "large pictures, movies, etc.)
    And now, the second problem. I was just looking up the memory left on my hard drive when I noticed something I hadn't before. my 160gb hard drive had 50gb left. not too strange there. but when I checked through all the things (apps, users, system, library, developer, etc.) in it (I simply did apple-i and checked the gb each of them took up) and after a quick add-up on my calculator widget, all the things in the hard drive added up to 50gb. so I have 50gb free, 50gb used and a 160gb hard drive. How does that work? Do I need to do something to get that extra 60gb back or is it just gone???

    STEVE!!! wrote:
    Is there any way just to show hidden folders like on a PC?
    There's probably a way to coerce Finder.app into showing everything
    (all is possible in unix) -- but I don't know the OS-X magic words.
    It told me that improper of the "sudo" command could lead to data loss
    and i don't want to risk doing anything stupid (like a misspelling) that
    could lead to my hard drive being wrecked.
    Good advice. IMO, the 'du' (disk usage) command is safe, because it's
    'read only' -- but I undestand that you'd be hesitant to trust your data
    to advice fom an anonymous voice from "The Internets." I can't/won't
    argue with common sense.
    You can run the same command without the 'sudo' prefix. It might
    miss a few things and/or spit some 'permission denied' messages,
    but the results will at least be a lower-bound of disk usage.
    ...in the beginning was the command line,
    Looby

  • Problem with depreciation area (Incorrect currency exchange rate is used)

    Good day to all SDN forumers!
    I'm having a problem with one depreciation area that we set up. The reason why we configured this depreciation area is for us to enable to monitor all asset postings in another (group) currency aside from the local currency. We set it up in such a way that the depreciation would not post and would thus only "convert" the asset postings to group currency using the table rates in table TCURR (via OB08).
    The problem is despite having defined an exchange rate for the current period, the system still picks up the exchange rate for 01/01/2001 which is incorrect. This affected all reports which displays incorrect values whenever I view the postings using the 2nd depreciation area we set up. Is there a way we can correct this?
    I'd really appreciate your comments and suggestions guys. Thanks a lot and more power!

    Update:
    I created a new depreciation area by copying an existing area and updated some of the configuration. The problem is still there though, since the depreciation area still reflects the <b>incorrect</b> rate (similar to that of the previous depreciation area) whenever I access it using Asset Explorer. What's surprising is that even though I've already set the exchange rate (e.g. USD to EUR)  to match that of the asset's capitalization / acquisition date, the posted values still do not reflect what I defined in table TCURR. Instead, it reflects the exchange rate used by the old depreciation area. Help anyone? We are already in a production client and transfer/retirement of all the assets is not an option the client would like to undertake.
    Edited by: Patrick on Nov 6, 2008 4:45 AM

  • Problem with MRP running

    Hello Gurus,
    i have a problem with my product. lets take an example. my semifinished product abc is made up of a, b and c.
    i have made them(abc, a, b and c) to use MRP type VB. i made palnning file entry and BOM and then i run the MRP.
    I run single item multilevel MRP for semi-finished product abc, it showed me result in MRP running only for abc but not for a, b and c.
    can u please tell me where i am making any mistake.
    regards

    Hi Maggi,
    If you have used mrp run for single item,single level  planning (ie) md03, it will plan only for that particular material & will not plan for the dependent material in the BOM.
    If you run with t.code md02, MRP run for single item,multi level, all the dependent requirements will be planned.
    Also VB is for reorder point planning. ie if you maint reorder level as 100 for a,b & c materials & if the stock goes below 100, say  50 Nos. for all the three material. Then procurement proposal(Pur req) will be created for 50 nos for all the material(a,b,c).
    If you use MRP type PD, there is no question of reorder level, during mrp run system check the stock of the dependent requirements. If there is a shortage procurement proposal are created.
    Regards,
    Senthilkumar SD

  • Problem with Macro Running When Closing a Document

    Hi Folks;
    I'm trying to develop a Visio macro that runs when I close a document, but I've run into a snag...
    The problem is that the code below only works when I press the 'X' in the corner of the document to close it.  If I try to close it using
    File -> Close, I get the error "Run Time Error -2032464741 (86db0c9b) An exception occurred", and the debugger highlights the first 'Application' line.
    I need the code to work regardless of the close operation, and I'm not sure how to make that happen (since I assumed it should've work the same regardless).
    Private Function Document_QueryCancelDocumentClose(ByVal doc As IVDocument) As Boolean
    Document_QueryCancelDocumentClose = True
    If MsgBox("If you made changes, did you UPDATE the Diagram History? (Select Yes if no changes were made)", vbYesNo + vbCritical + vbDefaultButton2, "Warning - DIAGRAM HISTORY UPDATED?") = vbYes Then
    Application.ActiveDocument.Pages.ItemU("Diagram").Layers.Item("Warning").CellsC(4) = 1
    Document_QueryCancelDocumentClose = False
    Else
    Document_QueryCancelDocumentClose = True
    End If
    End Function
    Any help would be appreciated.
    Zang

    I'm betting your typical "try this" response is not what anyone wants.  But since you've chimed in... my problems with the Visio event model are PLENTY.  Print and save events that cannot be cancelled, document close that doesn't fire on application
    close, and Application.BeforeDocumentSaveAs that occurs WAY AFTER the document has been saved are just a few.  (Did Microsoft even test these events??)  The official Microsoft response to ALL of this was, in a word, "repurpose" it. Essentially they
    advocate completely rewriting the actual Save and Print portions of the interface and corresponding logic in Visio by intercepting keystrokes and redirecting ribbon extensibility idMso ="FileSave" and idMso ="FileSaveAs" commands to your own methods. 
    To quote paid support:
    "You may repurpose Save command in Visio as suggested in my previous email, however there is a design limitation that does not allow repurposing Print backstage button.
    In order to achieve Visio Print repurpose, the workaround is to hide the print back stage altogether and plug with custom backstage ribbon xml."
    We now also repurpose idMso="FilePrintQuick", idMso="FilePrintPreview", and idMso="FileClose" customUI commands, but we still had to use the logic above to catch save before closing. 
    Valid methods that work while Visio is active will fail within Application close.  IT IS A BUG IN VISIO.  That is what this post is about.

  • Problem with the running apps

      I couldn't open my apps, when i press on the app it will open but with in a few seconds it will automatically minimizes the app and it not running can u please give the solution to it .

    Hi balaviswanath,
    Does this issue occur to all apps?
    If so, let’s run app troubleshooter for result:
    Troubleshoot problems with an app
    http://windows.microsoft.com/en-IN/windows-8/what-troubleshoot-problems-app
    Alex Zhao
    TechNet Community Support

  • Problem with DOM4j running on JRockit

    Until recently, we were using SUN Java JVM for running our applications and now we run it on JRockit. Ever since we made this change, we are experiencing this strange problem with DOM4j.
    There is a certain set of XMLs in our application, which do not have any schema (neither DTD nor XSD). We use DOM4J (v1.4) for on the fly unmarshalling of these XMLs and then use XPath to extract the data. There is method in DOM4j (Element.selectNodes()) which extracts the relevant information from the XML based on the XPath provided. The problem is, this List which this method returns, contains a 'null'. This would result in a NullPointerException later on in the program execution.
    Please note that since we did not have this problem in SUN JVM, I presume that there is some kind of incompatibility between JRockit and DOM4j. That is why I am posting this question here.
    Thanks in advance.
    Cheers,
    -Nagendra

    Hi Henrik,
    Thanks for your reply.
    We are using R26.4 version of JRockit.
    This problem occurs only on our production servers and the occurance in not consistent as well. Early on in the runtime of the server, everything is ok (including the functionality which would give this problem). But, aprroximately after 2 days of running, the server starts giving this problem. Forcing us to restart the application. Since application uptime is a critical deliverable for us, this problem has become a bottleneck for us.
    Haven't tried -Xnoopt JVM option yet.
    Thanks.
    -Nagendra

  • Problem with Fan Running

    I'm having problems with my new(ish) iMac. This problem is a bit involved so please bear with me.
    While adding a torrent to my downloading program azureus, my computer froze. It would not allow me to shut down or do anything. So I unplugged the machine and waited awhile and attempted to restart. To my horror, it would not start up. I then unplugged the power cord in the back and held the power button while plugging the cord back in and then released and pressed the power button again. My computer turned back on, hooray, BUT, now the fan is running very loudly and has not stopped. I restarted, shut down and left it alone, and now I'm very confused. Any suggestions?
    thanks
    -Lisa

    Hi Lisa!
    You should go to this link: http://docs.info.apple.com/article.html?artnum=301733 - you've basically reset the SMU on your machine but read the article and follow carefully. You should go ahead and reset the PRAM, which is also covered in the article.
    Rick
    Message was edited by: JMEH
    Next time this happens, just hold the off button for a few extra seconds and your Mac will shut down.

  • Any problems with lion running on core 2 duo 2007 MBPro ?

    Curious to hear if anyone has had any problems with Lion before I upgrade.
    Thanks.

    OK, so this is a shot in the dark, but maybe it's worth a try.
    Since the problem only occurs when running on battery, perhaps changing the Energy Saver settings to match the settings used for when it's plugged in will fix the problem. The default settings for how the computer operates are different for the battery and power adaptor. When you unplug the power, the computer automatically shifts to the alternate settings.
    So, try this:
    -Open System Preferences->Energy Saver
    -In the "Settings for" drop-down menu, select "Battery".
    -In the "Optimization" drop-down menu, select "Better Performance".
    -Under the Sleep tab, choose "Never" for both computer and display sleep and uncheck the box for "Put the hard disk to sleep when possible".
    -Under the Options tab, uncheck the first two boxes.
    15" MacBook Pro 2.33 GHz   Mac OS X (10.4.8)  

Maybe you are looking for