Define Asset Class - Screen not displayed

Hi,
I can display all the screens related to the FXA but not the one related to the creation of an asset class (define asset class).
Navigating in the SDN database, I found few topics like:
1 - Reinstall the add-on: I did it but nothing changed
2 - Force the reinstallation / upgrade the add-on : prior to doing so, I modified two tables :
@BFEXTDBVERSION / @BA_SMOD : I did it but it failed too
Therefore, do you have any other advice for this issue?
Thanks
Stéphane

Hi Stephane,
Check this link
how to create an asset class
Fixed Asset Master Data Problem
Regards
Jambulingam.P

Similar Messages

  • Error *Chart of dep-dependent assignment to asset class 100306 not possible

    Dear All
    I got error Chart of dep - dependent assignment to asset class 100306 not possible
    Diagnosis
        You tried to assign chart-of-depreciation-dependent data to asset class
        100306.
    System Response
        The assignment is not allowed.
    Procedure
        In order to be able to assign chart-of-depreciation-dependent data to
        asset class 100306, the following conditions have to be met. You have to
        have already
        1.  Defined at least two active charts of depreciation
        2.  Assigned asset class 100306 to more than one chart of depreciation
        However, at the moment this asset class is only assigned to chart of
        depreciation 1.
    I already checked following this but I didn't found the mistake (already assign COD to company code).
    Please anyone help me to solved this.
    Thanks in advance.
    Best Regards,
    Utarat.P

    Hi Utarat,
    whenever you create an asset the system checks first the table ANKP.  If you have chart-of-depreciation-dependend account determination, than  an entry in the table ANKP is made. If you than make a copy from such  a asset class in the asset class there is another account  determination than in the table ANKP and the system takes the account determination from the table ANKP and not from the asset class.                                                                               
    Normally you can't define chart-of-depreciation-dependent assignments  (with transaction ANK1) if there is only one chart of depreciation. As a result you'll get error AC012. So, I think there was a  second chart which was deleted.                                                                               
    If you'd like to change (or delete) this assignments you can use            
    the following workaround:                                                   
        SM34 -> View ANKA_ALL -> Maintain                                       
           - select asset class ART (for example)                               
           - then click in the left column on "Chart of dep - dep data"      
    Regards Bernhard

  • AS01 Error message "Asset Class is not Entered"

    When using the Transaction code AS01, we get an error message stating "Asset class is not Entered" and is not allowing us to use the T.Code but just gives us an option to Exit from the screen.
    Because of this behaviour it is not allowing to enter any data in AS01 but only allows us to exit from the screen.
    This is happening in ECC 6.0 EHP3 system.
    Has anyone come across this kind of behaviour ?
    Thanks in advance !
    Regards,
    Murali Narayanan

    Hi Murali
    Try transaction code OAAY and check if your class is assigned to depreciation area.
    This is the last step before making asset class available for use.
    Of course, all other settings have to be maintained properly.
    OR
    Check the Account determination, Screen Layout, No Ranges and Asset Class Determinations once again. And also check the Chart of Dep assignment to Co.Code.
    OR
    Please check OAYZ for all depreciation areas to be active.
    Rgds
    Zub

  • Screen not displaying correctly. It keeps moving as the mouse moves

    Screen not displaying correctly. It keeps moving as the mouse moves

    Your problem is not the same as that of the original poster of this thread, and it can be very confusing for everybody if we try to answer more than one question in each thread.
    In order for us to give your problem our undivided attention to try to solve it, would you kindly start your own thread, describing the trouble you are having in the fullest detail, including completing your details to show what Mac or iDevice you are using, what operating system, and what version of the application in question. Please remember to post in the forum relevant to your hardware or version of OS X.

  • My screen not display propely

    i have problem wth my iPad2.the screen not display propely.pls help me

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • Some asset classes do not show up for a user in S_ALR_87011990

    Hi
    When the asset history sheet is run in S_ALR_87011990, a user is unable to display some asset classes in the report. This was referred to security team. They say that everything looks fine and nothing appears wrong for that user--roles and profiles ok etc.,. No worklists are being used and no variants are being used. No dynamic selections either.
    Can someone let me know why the user is unable to display some asset classes. Asset classes that the user is unable to display were created last year. Most users are able to display these asset classes in the report except this user.
    Please  help and provide some exact solution.
    Best wishes
    Rajmohan..

    Hi Rajmohan,
    most probably it is a authorization problem.
    Please compare the assets which are not shown with this user. It could be a cost center.
    regards Bernhard

  • Interactive report: third screen not displaying

    Hi Experts,
    I am doing a interactive report in ALV grid...and my requirement is
    when the user clicks on SPMON which is displayed on the initial screen the first screen
    should display and in first screen when the user clicks LIFNR second screen should display..
    I am able to display initial and first screen but second screen is not displaying...I am
    pasting a pinch of my code please have a look and advice me..
    FORM USER_COMM USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC1'.
          IF R_SELFIELD-FIELDNAME = 'SPMON'.
            READ TABLE IT_TAB INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_1[].
            CLEAR IT_TAB_1.
            LOOP AT IT_FIRST WHERE WERK EQ IT_TAB-WERK AND SPMON EQ IT_TAB-SPMON
                               AND ART = IT_TAB-ART.
              MOVE IT_FIRST-WERK       TO  IT_TAB_1-WERK.
              MOVE IT_FIRST-LIFNR      TO  IT_TAB_1-LIFNR.
              MOVE IT_FIRST-MEANQ      TO  IT_TAB_1-MEANQ.
              MOVE IT_FIRST-BASME_QM   TO  IT_TAB_1-BASME_QM.
               APPEND IT_TAB_1.
              CLEAR: IT_FIRST, IT_TAB_1.
            ENDLOOP.
            REFRESH IT_FIELDCAT1[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT1
            USING:
              'IT_TAB_1' 'WERK' ' ' 'PLANT' ' ' ' ',
              'IT_TAB_1' 'LIFNR' ' ' 'VENDOR NUMBER' ' ' ' ',
              'IT_TAB_1' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
              'IT_TAB_1' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_USER_COMMAND             = 'USER_COMM_1'
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT1[]
             TABLES
                T_OUTTAB                          = IT_TAB_1[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM
    For second screen : which is not working
    FORM USER_COMM_1 USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC2'.
          IF R_SELFIELD-FIELDNAME = 'LIFNR'.
            READ TABLE IT_TAB_1 INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_2[].
            CLEAR IT_TAB_2.
            LOOP AT IT_SECOND WHERE WERK EQ IT_TAB_1-WERK AND
    SPMON EQ IT_TAB_1-SPMON AND ART = IT_TAB_1-ART AND LIFNR = IT_TAB_1-LIFNR.
              MOVE IT_SECOND-ART        TO  IT_TAB_2-ART.
              MOVE IT_SECOND-SPMON      TO  IT_TAB_2-SPMON.
              MOVE IT_SECOND-MATNR      TO  IT_TAB_2-MATNR.
                   APPEND IT_TAB_2.
              CLEAR: IT_SECOND, IT_TAB_2.
            ENDLOOP.
            REFRESH IT_FIELDCAT2[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT2
                    USING:
                      'IT_TAB_2' 'MATNR' ' ' 'MATERIAL NUMBER' ' ' ' ',
                      'IT_TAB_2' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
                      'IT_TAB_2' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT2[]
              TABLES
                T_OUTTAB                          = IT_TAB_2[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM_1
    Please advice
    Karthik
    Edited by: Karthik R on Apr 29, 2009 12:22 PM

    Use both conditions in USER_COMM.
    FORM USER_COMM USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC1'.
          IF R_SELFIELD-FIELDNAME = 'SPMON'.                      " Field name SPMON
            READ TABLE IT_TAB INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_1[].
            CLEAR IT_TAB_1.
            LOOP AT IT_FIRST WHERE WERK EQ IT_TAB-WERK AND SPMON EQ IT_TAB-SPMON
                               AND ART = IT_TAB-ART.
              MOVE IT_FIRST-WERK       TO  IT_TAB_1-WERK.
              MOVE IT_FIRST-LIFNR      TO  IT_TAB_1-LIFNR.
              MOVE IT_FIRST-MEANQ      TO  IT_TAB_1-MEANQ.
              MOVE IT_FIRST-BASME_QM   TO  IT_TAB_1-BASME_QM.
               APPEND IT_TAB_1.
              CLEAR: IT_FIRST, IT_TAB_1.
            ENDLOOP.
            REFRESH IT_FIELDCAT1[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT1
            USING:
              'IT_TAB_1' 'WERK' ' ' 'PLANT' ' ' ' ',
              'IT_TAB_1' 'LIFNR' ' ' 'VENDOR NUMBER' ' ' ' ',
              'IT_TAB_1' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
              'IT_TAB_1' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_USER_COMMAND             = 'USER_COMM_1'
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT1[]
             TABLES
                T_OUTTAB                          = IT_TAB_1[]
          ELSEIF R_SELFIELD-FIELDNAME = 'LIFNR'.              " ELSE FIELDNAME LIFNR
            READ TABLE IT_TAB_1 INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_2[].
            CLEAR IT_TAB_2.
            LOOP AT IT_SECOND WHERE WERK EQ IT_TAB_1-WERK AND
            SPMON EQ IT_TAB_1-SPMON AND ART = IT_TAB_1-ART AND LIFNR = IT_TAB_1-LIFNR.
              MOVE IT_SECOND-ART        TO  IT_TAB_2-ART.
              MOVE IT_SECOND-SPMON      TO  IT_TAB_2-SPMON.
              MOVE IT_SECOND-MATNR      TO  IT_TAB_2-MATNR.
                   APPEND IT_TAB_2.
              CLEAR: IT_SECOND, IT_TAB_2.
            ENDLOOP.
            REFRESH IT_FIELDCAT2[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT2
                    USING:
                      'IT_TAB_2' 'MATNR' ' ' 'MATERIAL NUMBER' ' ' ' ',
                      'IT_TAB_2' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
                      'IT_TAB_2' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT2[]
              TABLES
                T_OUTTAB                          = IT_TAB_2[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM
    Regards,
    Gurpreet

  • Asset class does not show any results on the asset history sheet

    I have an asset that was acquired on 31.03.10. When I run the asset history sheet for all asset classes, it shows up(under the acquisition column). However, when I run the Asset History Sheet for only that one asset class, there are no results.
    Am I missing some config or is this a bug?
    Fixed Assets addon. SBO 2007A SP0, PL48.
    Financials >Fixed Assets > Asset History Sheet.
    Enter Asset class and Date: March 2010.Click OK.
    The report is empty.

    The problem was the asset class name. The character ' is not allowed and was not recognized by the asset history sheet report.

  • Variable Screen not display in Web

    Hi all
           When i execute  the Query ZBP02_Q001 in Web, the Variable Input Screen  of the Query is not display first,but display the content of the ZBP02_Q001 directly in the Web. All of the Varibale is not mandatory;
    i am using BI 7.0;
          Anyone can give a help!
      Thanks in advance.

    Hi Cao,
    May be your infoobject are holding constants, which led to direct execution without the selection screen.
    Inorder to get the selection screen, select the infoobject and make its settings as optional and it will be displayed in your selection screen.
    So whenever you use optional for an infoobject, that specific infoobject alone will appear on the selection screen.
    Regards
    Thenmuga Selvan

  • Captivate 6 Slide Audio screen not displaying correctly

    Upon trying to rerecord a slides's audio today this screen opened up - I could record, but not save because the save button is not displaying.  I was able to record new audio on the same project on Friday.  I tried deleting and recodring new audio and the same screen came up.  I tried a different project - same thing happened.  I rebooted twice.  Any ideas?
    Thanks!
    Rachel

    Hello,
    If you check the address bar of your screenshot, you will see that you are in "C:\Documents and Settings\[user name]\Application Data\Adobe" folder
    Might be a possiblity that "Local Settings" folder is hidden, click on Tools -> Folder Options, under View tab, you have the option to "Show hidded files and folders"
    You will see Local Settings folder once you click on OK, then you can access C:\Documents and Settings\[user name]\Local Settings\Application Data\Adobe and rename "Captivate 6.0" folder.
    Hope this helps !!
    Thanks,
    Vikram

  • Outlook web login screen not displaying correctly on Exchange 2007 service pack install

    Hello everyone,
    I believe our exchange server installed a service pack 3 update and after rebooting the server, we noticed that the Outlook web access login screen is not displaying correctly.  The page looks white with some black X's (I think that's where the
    pictures/background images used to be).  We tried to restart the ISS service with no luck.  I would appreciate any help you guys can provide.
    Thanks,
    Brian Kourdou

    Hi,
    I have seen this issue in another similar thread, that issue was solved by re-creating the OWA virtual directory.
    Please try the following steps to solve this issue.
    Open EMC, navigate to Server Configuration -> Client Access, under Outlook Web App tab, double-click owa (default web site) properties.
    Then check InternalURL, ExternalURL, Forms-Based Authentication settings ect
    Open EMS, use Get-OwaVirtualDirectory get the list of virtual directories and identify the directory which is giving the problem.
    Remove it with this command
    Remove-OwaVirtualDirectory “owa (Default Web Site)”
    Now create it again with the following command
    New-OwaVirtualDirectory -OwaVersion “Exchange2007″ -Name “owa (Default Web Site)”
    Then configure the “owa” virtual directory settings like InternalURL, ExternalURL, Forms-Based Authentications etc… & check the OWA by logging with some test users.
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • IPad air screen not displaying correctly

    My iPad Air screen has recently started displaying with a pink hue in two of the corners, showing as a medium sized oval in one corner and a small circle in the other. There are also some vertical pink streaks that are less marked. It's really noticeable when the screen is displaying a white background. The only recent changes I have made is downloading the new IOS 8 update. There has been no trauma or damage to the iPad. It is still covered under the 1 year limited warranty. is there any way to fix this in my own?! Thank you!

    Hello there katelynlc,
    It sounds like you have some graphical anomolies on your screen that have a pink hue. If it is a software issue it will be resolvable by either first resetting the iPad:
    Turn your iOS device off and on (restart) and reset
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    Or backing up and restoring your iPad as a new device:
    iOS: How to back up your data and set up your device as a new device
    If restoring as new does resolve it, restore your backup and verify it still works. 
    If not, then the iPad will need service:
    iPad Repair and Service - Apple Support
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Qosmio X305 screen not displaying like my desktops LCD screen

    My screen seems to be displaying dull images.
    I'm kinda concerened, because it's an LCD screen, and its not displaying like my desktops LCD screen.
    I put the brightness up, and that helped to see the images better, but they still are not of the quality they should be.
    Is there a way to fix this? Or is that just how it is?

    Many Desktop LCD Monitors can get very bright, much brighter than most notebooks. So it may just be how it is. Perhaps you could go to the shops and compare it to other X300's on display.
    Try resetting or modifying the Contrast/Colour/Brightness settings in the nVidia control panel.

  • Z1 screen not displaying

    I had taken mobile 3 days ago..But now i am facing problems that is screen is not displaying but phone is working. What is the reason for it.

    Hi vinnu,
    Welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    This may be related to a software based issue, I first suggest that you hold down the Power Key and Volume Down key together and restart the handset.
    If this has not affect then I can only suggest that you try performing a software repair on the handset, this can be done by doing the following
    PC Companion
    To repair the phone software
    1.     Install PC Companion on a Windows PC from Support 
    2.     In PC Companion, under Support Zone and click Start. 
    3.     Under Phone Software Update, click Start.
    4.     Click repair phone.
    5.     Follow the on-screen instructions. 
    I apologize for any inconvenience this may cause.
    Don't forget to mark posts that answers the topic as Accepted Solution. 
    If you find any post helpful, press Kudos.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • 2006 Mac Pro + NEC 3090 - grey screen not displayed during boot

    I have a September '06 Mac Pro 1,1 (Woodcrest variant) hooked up to an NEC 3090 30" LCD monitor, running OS X 10.5.7. Previously, I was using an Eizo S2110W 21" LCD; turning the monitor and computer on would cause the following to be displayed (in order):
    1. Light grey background with dark grey Apple logo with spinning thing.
    2. Solid blue background.
    3. Leopard wallpaper.
    4. Log-in dialogue.
    Since using the NEC, the grey screen is not displayed at all: the display stays blank until the blue screen is displayed, and then the Leopard wallpaper and so on. This is using the 2560x1600 native resolution of the display, and has occurred using both 10.5.6 and 10.5.7.
    If I change the resolution to 1280x960 and boot, the grey screen is displayed. If I change it to 1600x1200, I get weird corruption on-screen during the period when the grey screen should be displayed; for some reason, this includes part of the desktop wallpaper I was using before I rebooted.
    Resetting the non-volatile RAM using Command-Option-P-R works for the very first time I boot the computer, though the grey screen is displayed at very low resolution. If I reboot from the log-in dialogue immediately afterwards, normal behaviour occurs - i.e. the blank screen.
    The upshot of all of the above is that if I want to boot into Windows, or install OS X (e.g. when Snow Leopard comes out), I have to remember to boot into my existing OS X installation, change resolution, reboot whilst remembering also to hold down the ALT/Option key. It would be much easier if I could do away with having to change resolution.
    I have tried connecting the monitor to a PPC Mac mini at 1600x1200 (it won't go any higher), using Tiger 10.4.11 (not sure of exact version - the latest). At this resolution, the grey screen is displayed.
    Using a '08 MacBook Air (first generation) and the supplied DVI adapter, also at 1600x1200, nothing is displayed on the NEC until I get to the log-in screen. This occurs if the NEC is set to be the primary display or the secondary one - the only difference is where the log-in dialogue is displayed. I am not familiar with dual-screen behaviour, so I can't say whether anything is supposed to be displayed or not (i.e. does the grey appear on both displays?).
    I have been in touch with NEC Europe support on this issue, who suggested it might have something to do with the 10.5.7 release. I know this not to be the case, as it was occurring prior to 10.5.7 being released.
    Any ideas?

    Put more of your hardware listed in your profile.
    I looked and don't see you list your graphics card anywhere.
    Graphic card it came with was either X1900 (watch for heat and dust bunnies and clogged vent);
    OEM 7300GT (seems unlikely).
    You could have replaced either with 8800GT or ATI 3870.
    Require 10.5.2+ ideally 10.5.6+.
    Some problems cropped up with 10.5.7. 10.5.7 doesn't work on some (many) 3rd party displays and stay with 10.5.6 if necessary until it is fixed or resolved.
    But you say it happens with 10.5.6 also, and was doing so before 10.5.7? which makes your problem somewhat different or unique.
    Zapping PRAM or NVRAM reset obviously shouldn't be needed repeatedly. And your graphics card probably needs to be replaced, or test with another card to rule it out.

Maybe you are looking for