I can't Enter User Fields in Asset Class (t.code S_ALR_87009007)

Hi All,
In customizing I've to "Enter Your User Fields in Asset Class" (t.code S_ALR_87009007).
SAP doesn't allow me to change the filling in the view, I only can display them.
What cuold it depend on.
Thanks for your help.
G.

Hi Rossi,
This is not an authorisation issue at all.
S_ALR_87009007, this tcode can be used to maintain a default Eval Group for asset master creation with the specified asset class.
If your Maintainace Level at CLASS is not maintained for any evaluation group, you can edit the values over thers.
SPRO-> FA-> AA ->Master Data -> Screen Layout -> Define Screen Layout for Asset Master Data -> Define Screen Layout for Asset Master Data....here select your screen layout, which is assigned to your questioned asset class on OAOA and click on logical field groups -> Allocations -> Field Group rules.
Here for all eval groups, make the field status to optional and select check boxes CLASS, MNNO, SBNO and SAVE.
Now check with S_ALR_87009007, here you will be able to edit the inputs.
Hope this will resolve your issue.
Regards,
Srinu

Similar Messages

  • Can i change a field properties without affecting source code?

    I have an application that is running a test. A field ask a technician to add a serial number, however this field only accepts numeric characters and i have alphanumeric serial numbers. Can i change the porperty of this field wihtout affectinc the source code?

    gluviano wrote:
    > I have an application that is running a test. A field ask a technician
    > to add a serial number, however this field only accepts numeric
    > characters and i have alphanumeric serial numbers. Can i change the
    > porperty of this field wihtout affectinc the source code?
    No probably not, unless your chars are 0..9 and A..F only. In that case
    you could change the numeric control to display Hexadecimal numbers.
    Only 8 hex-char length however for the int32 which is the maximum size
    integer you can use.
    For anything else you need a string control to enter alpha chars. The
    problem is even more complicated as you will have to change more things
    downstram the wire where you use that serial number.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How can I enter user defined info into a seq file

    I would like to insert some user defined information that I can extract either viac C-code (step invoked) or from the Operator Interface once the seq file has been loaded into memory.

    Hi hurst,
    You probably want to create a dialog panel that will allow the user to enter the information.
    Where you store this information really depends on how much of the sequencefile needs to have access to this information.
    If its global then writing it to either StationGlobals or to FileGlobals. Writting to StationGlobals means it going to be available after the execution of your sequencefile has finished. Writing to FileGlobals means its only going to be available during the execution of your sequencefile and also only in scope for the sequencefile its contained in. Unless you change the default setting so that all sequencefiles use the same FileGlobals.
    To get the information to the SequenceFile will be by TestStand API calls using the PropertySetValue.
    Another way would be to use the propertyloader.
    There are plenty of examples either with TestStand or on the NI website on transferring data of all types from a step during execution.
    This is a bit general. Maybe if you can expand on your query.
    hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Addition of field in asset master record

    Dear All:
                  I want add a field IN HOUSE PRODUCTION in asset master data creation, Moreover i want to add a field of Iniatiator in Asset master data. Please guide where should i go in SPRO. Waiting for your reply.
    Regards
                  Atif

    You can use for this the User Fields in the asset masterdata
    Financial Accounting / Asset Accounting / Master Data / User Fields
        Define 4-Character Evaluation Groups
        Define 8-Character Evaluation Groups
        Change Key Words in the Evaluation Groups
        Develop Enhancement for User Fields in Asset Master Record

  • User field in FI document

    Hi guru,
    is it possible to add an user field in the position of FI document?
    Thanks in ad

    Hi
    Through Change layout you can get the user field in FI document.
    Rgds
    Vani

  • Enabling of the Business Area field in Asset Master Record

    Hello SAP Gurus,
    Can you explain how I can enable Business Area field in Asset Master Record becz it needs be change.How I can acheive this becz it is coming in disabled mode.

    Once u ticked the check box save it.Now u can change these field in main asset master record and if u have ticked Su no also then in sub asset master record also.Make sure filed status is optional.
    Now u go to AS02 if u want to change the filed for main asset or sub asset
    Please assign points

  • Hide a user field from the masks of SAP with SDK

    Hello everyone,
    how I can hide a user field on a form?
    I think there are two solutions:
    1) I can use the event "Form_Load" and change the property "visible" for the user field (bad)
    2) I think the best solution is to modify the configurations of the form, hiding the field for all users.
    I tried this with the example I write below, but the addon correctly change the values ​​in the table "CPRF​​", but still shows the SAP field and then when I close the program, the values ​​are reset again.
    I ask your help please. How I can do?
    thanks
    Info
    SAP 8.81 PL09
    SQL2008 DB
                Dim frmPref As FormPreferencesService
                Dim colPrefs As ColumnsPreferences
                Dim colPrefsPrm As ColumnsPreferencesParams
                Dim col As SAPbobsCOM.ColumnPreferences = Nothing
                '_SboCy  ==> SAPbobsCOM.Company
                '_sboCys ==> SAPbobsCOM.CompanyService
                'get Form Preferences Service
                frmPref = CType(_sboCys.GetBusinessService(ServiceTypes.FormPreferencesService), FormPreferencesService)
                'get Columns Preferences Params
                colPrefsPrm = CType(frmPref.GetDataInterface(FormPreferencesServiceDataInterfaces.fpsdiColumnsPreferencesParams), ColumnsPreferencesParams)
                'set the form id (e.g. A/R invoice=133)
                colPrefsPrm.FormID = "-139"
                'set the user id (e.g manager= 1)
                colPrefsPrm.User = 1
                'get the Columns Preferences according to the formId & user id
                colPrefs = frmPref.GetColumnsPreferences(colPrefsPrm)
                Dim exist As Boolean = False
                'change the width of all the visible items
                For i As Integer = 0 To colPrefs.Count - 1
                    If colPrefs.Item(i).ItemNumber = "U_MYFIELD" Then
                        colPrefs.Item(i).VisibleInForm = BoYesNoEnum.tNO
                        colPrefs.Item(i).EditableInForm = BoYesNoEnum.tNO
                        exist = True
                        Exit For
                    End If
                Next
                If Not exist Then
                    col = colPrefs.Add
                    col.Column = "-1"
                    col.EditableInExpanded = BoYesNoEnum.tNO
                    col.EditableInForm = BoYesNoEnum.tNO
                    col.FormID = "-139"
                    col.User = 1
                    col.ExpandedIndex = 1
                    col.Width = 0
                    col.VisibleInExpanded = BoYesNoEnum.tNO
                    col.VisibleInForm = BoYesNoEnum.tNO
                    col.ItemNumber = "U_MYFIELD"
                End If
                'Update
                frmPref.UpdateColumnsPreferences(colPrefsPrm, colPrefs)
                NothingObj(CObj(col))
                NothingObj(CObj(frmPref))
                NothingObj(CObj(colPrefs))
                NothingObj(CObj(colPrefsPrm))

    Hello Joris,
    I searched on help.sap.com and found the following link, it provides the constraints LDAP and UME sync has.
    http://help.sap.com/saphelp_nw70/helpdata/EN/48/d1d13f7fb44c21e10000000a1550b0/frameset.htm
    Regards,
    Siddhesh

  • In howmany ways we can find the User-exits

    In howmany ways we can find the User-exits?

    Hi,
    Copy this code,execute and run this program.Now mention your tcode and it will give you the list of user-exits present in a Tcode.
    *& Report zuserexit
    *& This program helps find Exits for any given transaction
    *& This code is originally adopted from http://www.sap-img.com
    report zuserexit no standard page heading.
    *TABLES
    tables :
    tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    tstct.
    *INTERNAL TABLES AND STRUCTURES
    Internal table to hold Repository Objects
    data : jtab like tadir occurs 0 with header line.
    *Global variables
    data : field1(30).
    data : v_devclass like tadir-devclass.
    *SELECTION-SCREEN
    parameters : p_tcode like tstc-tcode obligatory.
    *START-OF-SELECTION
    START-OF-SELECTION.
    SELECT construct to get data for a given tcode
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
    SELECT construct to get program names
    select single * from tadir where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    Moving the dev. class to v_devclass if program is of type 1
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir where name = tstc-pgmna.
    If Program type = Function Group
    if trdir-subc eq 'F'.
    select single * from tfdir where pname = tstc-pgmna.
    SELECT construct to get Attributes for Function Modules
    select single * from enlfdir where funcname = tfdir-funcname.
    SELECT construct to get FM names
    select single * from tadir where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    Moving the dev. class to v_devclass if program is of type F
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    SELECT construct to get SAP enhancements for the dev. class
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object = 'SMOD'
    and devclass = v_devclass.
    SELECT construct to get t code texts
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    REPORT OUTPUT
    format color col_positive intensified off.
    Displaying t-code name & text
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    List headings
    if not jtab[] is initial.
    write:/(95) sy-uline.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    write:/(95) sy-uline.
    SELECT construct to get SAP Enhancements - Short Texts
    loop at jtab.
    select single * from modsapt where sprsl = sy-langu
    and name = jtab-obj_name.
    format color col_normal intensified off.
    Exit names & texts
    write:/1 sy-vline,
    2 jtab-obj_name hotspot on,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.endloop.
    write:/(95) sy-uline.
    describe table jtab.
    skip.
    format color col_total intensified on.
    No of Exits
    write:/ 'No of Exits:' ,
    sy-tfill.
    else.
    format color col_negative intensified on.
    If no exits found
    write:/(95) 'No User Exit exists'.
    endif.
    else.
    format color col_negative intensified on.
    If tcode doesn't exist
    write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    Call txn SMOD with selected Exit
    at line-selection.
    get cursor field field1.
    check field1(4) eq 'JTAB'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    Reward if helpful.
    Regards,
    Harini.S

  • ERROR for User fields

    ERROR: No Records Found
    This is the error which i am getting when entering user fields (location) while creating WBS.
    Where do I enter the values.

    Hi ,
    Are you entering values in the 5th tab (User Fields) ?
    Check if you are entering values in the "geenral fields"
    and let us know what is the field key value you are entering !!!
    Best Regards,
    M.Amarendra

  • Project system (user field key)

    HI ALL
    Can i add user field TAB at Project Defination level. if yes then how.....
    Thanks
    shabbir

    Hope this helps...
    The following SAP enhancement is available for project definitions in
    the Project System:
    o   CNEX0006    Customer-specific fields in the project definition
    You can use this enhancement to add new customer-specific fields for the
    standard project definition in table PROJ.  To process these fields you
    can create your own screen, which the user can call up when maintaining
    standard project definitions.
    The enhancement CNEX0006 contains the following enhancement components:
    Menu entries:
        SAPLCJGR+CUD Project planning board
        SAPLCJWB+CUD Master data maintenance (CJ06, CJ07, CJ08)
    Function exits:
        EXIT_SAPLCJSS_002 for transferring data to your own program
        EXIT_SAPLCJSS_003 for transferring data from your program to R/3
    Screen areas:
        SAPLCJSS0205_CUSTSCR1_SAPLXCN10600
    Activities
    1.  Create the enhancement.
        To do this, either create a new project or use an existing one.
    2.  Create structure CI_PROJ in ABAP/4-Dictionary (transaction SE11) in
        your own development class.
      3.  Expand structure CI_PROJ to include your own fields.
          Note the following:
          -   You must use the name ranges reserved for customers.
          -   The maximum number of fields in database tables is 255 (in PROJ
              and CI PROJ - for SAP field and user-defined fields together).
              SAP reserves the right to add new fields to table PROJ; if the
              maximum number is reached, your user-defined fields could be
              excluded.
          Activate the structure.
      4.  Maintain the enhancement components:
          -   Assign the function customer fields a name.
          -   Add to the program code for the function exit EXIT_SAPLCJWB_002.
              This function exit transfers SAP data to your part of the
              program.
              To do this, call up the function module and double-click the
              include line.  Create the include module.
              In order to transfer the variables, you must insert a
              Move-corresponding statement in Include ZXCN1V11:
              move-corresponding sap_proj_imp to proj.
              Now define the "projs" data structure as global variable. To do
              this, jump to the main program SAPLXCN1. First, double click
              include LXCN1TOP and then include ZXCN1TOP. Create the object if
              required.
              Include the following tables statement in the source text for
              include ZXCN1TOP.
    tables
              tables proj.
          -   Add to the program code for the function exit EXIT_SAPLCJWB_003.
                This function exit takes the data from your part of the program
                and transfers it to the SAP standard program. Create your own
                corresponding include module.
                In order to transfer the variables, you must insert a
                Move-corresponding statement in Include ZXCN1U12:
                move-corresponding proj to cnci_proj_exp.
            -   Create the screen area.
                Double-click SAPLCJSS0205_CUSTSCR1_SAPLXCN10600 and then choose
                Fullscreen. The screen has been preconfigured by SAP. You can
                delete these fields and add new ones:
                Choose Goto -> Dict./Program fields
                Maintain the table/field name PROJ and select the fields to
                appear on the screen.
                Generate the screen.
            For detailed information, see OSS Note number 86050.
        5.  Activate the project.
            Only once you have activated the project, will your enhancement take
            effect.
        Note for Batch-Input
        For your customer-specific fields to be evaluated in the project
        information system, the structures in the project information system
        must be regenerated. To do this, start program RCNCT001.
        If you want to fill your customer-specific fields later using
        batch-input you must take the screen SAPLCJWB 0205 into consideration.
        Further notes
        Unlike modifications, enhancements are not influenced by a release
        upgrade because they are not part of the original SAP programs, rather,
    they exist in an area reserved for customers.
    You can also find documentation for this enhancement in the enhancement
    transaction.

  • Asset class doesn't appear in T.code AS01

    Hi
    I created Asset Class, and Screen layout with that asset class. But when I creat asset in T.code AS01, I click field "Asset Class", but that asset class doesn't appear. It notice following:
    "Asset class 213200 cannot be used in company code HDQC
    Message no. AA130
    Diagnosis
    When you create an asset, the system determines the chart of depreciation from the company code definition. In order for a chart of depreciation to be available for an asset class during asset maintenance, the chart of depreciation has to be entered for that asset class (Determine class valuation). Chart of depreciation HDQC that was determined is not entered for asset class 213200.
    System Response
    You cannot create any assets in your company code for this class.
    Procedure
    You can do one of the following:
    Use another asset class, for which chart of depreciation HDQC is defined.
    Maintain the asset class valuations for asset class 213200 in chart of depreciation HDQC. Chart of depreciation HDQC has to be specified in order for you to be able to maintain the valuation parameters of asset class 213200 for chart of depreciation HDQC"
    Please explain me as detailed as possible
    Thanks
    Ngocpt

    Thank you
    I understood my problem. When I determine depreciation area in Asset Class. It notice error:
    Contact your system administrator (table error)
    Message no. AA826
    Diagnosis
    Depreciation area 41 has not been defined in the chart of depreciation HDQC.
    Procedure
    Define the depreciation area using in FI-AA Customizing.
    Before I created depreciation area 41.After that I deleted depreciation area 41. So I can't determine depreciation area in Asset Class 213200
    You can help me to fix that error.
    Thanks
    Ngocpt

  • Asset class - GL

    What is the meaning of Generate Asset Classes From GL
    Accounts.
    Kindly can any one tell me what is the meaning of this in
    detail.
    Thanks
    Nag.

    Hi
    This is WIZARD and can do all settings here.  Check the below notes available at nod.
    Generate Asset Classes from G/L Accounts (1 to 1)
    In this step you generate:
    Asset classes
    Account determinations
    Screen layout rules
    Number ranges for the assignment of the main asset number
    These objects are generated in a 1 to 1 relationship to your asset balance sheet accounts. The system enters account determinations, screen layout rules and number ranges in the asset class as control parameters.
    Note: Carrying out this step is not mandatory. Generating your asset classes from your G/L accounts is an optional step you can use to simplify the creation of asset classes. If you want to define asset classes without the help of your G/L accounts, use the step Define asset classes. You also use the "Define asset classes" step to copy asset classes. Copying classes is useful for adding to your asset classes, if you generated asset classes from your G/L accounts using the current step.
    You define additional account determinations, screen layout controls and number ranges (if needed) in the section Organizational Structures.
    Requirements
    You must be able to enter all your asset balance sheet accounts.
    Standard settings
    SAP supplies example asset classes.
    Note
    This processing view has 7 navigation levels. The first navigation level is the overview screen containing the generating function. The next 6 navigation levels are detail screens for this overview screen. You have to work through all of the detail screens before you can start the generation of the asset classes in the first navigation level.
    The first detail screen (account selection) has to be processed first. There is no hierarchy for the remaining detail screens (no detail screens for the prior navigation level). They are not dependent on each other. You can work through each of these screens independently from the other.
    Activities
    A Wizard guides you through the different navigation steps. Asset classes are not generated until you save.
    1. Enter your chart of accounts and the chart of depreciation.
    2. Select all G/L accounts that are APC balance sheet accounts.
    3. The system prepared an account determination for each APC account, with a description that is the same as that of the given APC account.
    Add to the account determination by entering the corresponding accumulated depreciation account for each account determination.
    4. Enter accounts for expense, ordinary depreciation, and asset retirements for all account determinations.
    In a later step, you can change these accounts for each account determination.
    5. The system created a number range interval for each APC account.
    Change the number range intervals as needed:
    a) Change the limits of the number ranges.
    b) Specify whether the assignment of the main asset number should be external or internal.
    SAP recommends internal number assignment. You could define the number range intervals, for example, so that the first characters of the asset number agree with the first characters of the APC account number.
    6. The system created a screen layout control for each APC account.
    When the APC account has a number that is at most 5 characters long, the system automatically assigns the account number as the key for the screen layout control. If the account number has more than 5 characters, you have to enter the 5-character key for the screen layout control manually. Select the field groups that you want to be optional entries in the asset class.
    7. The system created an asset class with the same name as each APC account.
    Add to the asset classes:
    a) Specify the type of the asset class (asset under construction, low value asset with or without collective management, no special class type).
    b) Specify the default depreciation key and the default useful life for each depreciation area. You can add to this information for more depreciation areas in a later step.
    Caution
    You can use the function for generating asset classes more than once. The system uses the following logic when you do so:
    First, the system checks whether the company code is already in production status. If it is, then the system creates, based on the G/L accounts you have selected, only asset classes, account determinations and so on that were not yet created. Any existing asset classes are not changed; nor are they deleted and created again.
    If the company code is not yet in production, the system checks whether assets already exist for the existing asset classes. If not, the system deletes the existing asset classes and generates them again.
    If assets do exist, the system checks if there are also transactions for the assets. If there are no transactions, you can decide which of the following you want to do:
    Delete all asset classes and their assets, and generate them again
    Only add new asset classes
    If transactions exist for the assets, then you can only add new asset classes. In order to completely regenerate all asset classes, you first have to reset the company code (under "Production Startup").
    When you choose the "New start" function, the system does not delete any Customizing objects that were already created (asset classes, and so on). This function simply resets the internal working table for this transaction. This means that after you reset, the transaction is returned to its original state (state the first time it was called).
    Cheers
    Srinivas

  • User List with authority for T-Code

    Hello,
    I've to provide an overview (on regular basis) of users who have the authority for executing "Critical" T-Codes.
    The number of critical T-codes is around 30. I already checked transaction "S_BCE_68001400", but there i can only enter a single value for the T-Code. Does someone know a standard function module / method which i can use in a customer program.
    Thank you for your help.
    Dieter

    Hi,
    You can take the help of BASIS consultant actually,
    Or if you have authorization for transaction SUIM, you can play with differnet conbinations...
    That transaction will give you more freedom for your search criteria.
    Regards.
    Sumit Nene

  • FI-AA: Assignment asset class to chart of depreciation

    Hi all,
    does anybody know whether it's possible to assign asset classes to a specific chart of depreciation (or let's say to delete this assignment)?
    The background of the question is the following: Some asset classes should not be used in some company codes. All these company codes use the same chart of depreciation, so I thought there must be a possibility to delete the assignment of this asset class to this chart of depreciation. Unfortunately, I haven't found this setting in the IMG.
    The SAP Message no. AC 012 tells for example, that there is an assignment "asset class to chart of depreciation". This is the message:
    In order to be able to assign chart-of-depreciation-dependent data to asset class 120204, 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 120204 to more than one chart of depreciation
    However, at the moment this asset class is only assigned to chart of depreciation 1.
    As we have definitely more than one active chart of depreciation, there must be this assignment, but how can I change it?
    I've seen that I can set a block for an asset class in a chart of depreciation in transaction OAYZ (ANKB-XSPEB / Indicator: Block asset class chart of depreciation-specifc). But I think that I will still see the asset class in the match code search (F4) when I set this indicator.
    Does anybody know how I can delete an asset class form a chart of depreciation so that it won't be found via match code search? I've checked almost the whole FI-AA tree but haven't found a solution...
    Thank you very much!
    Regards,
    Peter

    Hi Eric,
    thanks for your answer. As far as I can see, the option "chart of depreciation only" in transaction AM05 has the same effect than the parameter "chart of depreciation" in transaction OAYZ.
    As I receive a transport request via transaction AM05, it seems that this changes the same customizing table.
    Fortunately, all company codes in this chart of depreciation need the same settings, so a validation rule seems not to be necessary.
    It's just strange that there is no possibility to edit the assignment asset class to chart of depreciation in customizing (I think the assignment to all asset classes in the system will be created automatically when I copy the chart of depreciation). I think the only possibility would be to edit the respective tables manually (what I definitely won't do).
    Another strange thing I see in the system: There are 2 asset classes 120203 and 120204, which are both set up equally. When I try to block these in AM05, I'll receive the error message AA 111 for asset class 120204, while the asset class 120203 can be blocked without problems. When I use matchcode search F4, I can see 120203 while 120204 is not found.
    Message AA111 is the following:
    Chart of dep. 100 does not exist in class 120204 (Create chart of deprec.)
    Diagnosis
    Chart of depreciation 100 does not exist in class 120204.
    Procedure
    Create the chart of depreciation 100 for asset class 120204 using the transaction 'Create asset class' and the function 'Create chart of dep.'.
    There is the assignment asset class to chart of depreciation.
    When I check asset class 120204 in OAYZ (Determine Depreciation Areas in the Asset Class) I'll get the following message (I don't get this message when I check 120203):
    Deprec. area 50 was changed and deactivated. Please check.
    Message no. AC 631
    Diagnosis
    Depreciation area 50 was added to asset class 120204 because this depreciation area was newly created in Customizing.
    System Response
    The system adds the new depreciation area to the asset class, but its status is 'deactivated.'
    Procedure
    Check if this action by the system is correct. Maintain the depreciation areas in the asset class, and remove the 'deactivated' indicator there, if you choose.
    For sure, depreciation area 50 was not newly created in customizing (as stated in the error message), as this depreciation are is in production for years! There must be another reason for this.
    However, this says to me that the assignment asset class to chart of depreciation is created by SAP automatically and this can't be influenced.
    Therefore I'll just block the asset class in the chart of depreciation with the disadvantage, that I'll see this asset class when I use the matchcode search F4 (e.g. in AS01). This seems to be the only solution.
    Thanks again for your help (you got some points for that ;-).
    Regards,
    Peter

  • Investment order to asset class

    hai,
    Is it possible to assign investment order to asset class (apart from AUC) instead of Asset Master.
    govind.

    Hi,
    it may not be possible, because the Asset class is defined in Customizing. At the time of customizing it is not known which investment order it will be used.
    Further more, Investment Order is basically created to monitor the capitalisation of Individual assets and not the Consolidated assets within the Asset class. This could be the reason that SAP has not provided the field in Asset class.
    Thanks
    Siva

Maybe you are looking for

  • Mail app crashes every time I open it

    No recent updates or changes to phone, but every time I open the mail app it starts to check for messages and then crashes back to the home screen. I can't check mail, send mail, etc.

  • How to read open customer items from Archive system i.e BSID & BSAD tables

    Hi, We have a requirement to get the customer line items data that were open as of key date from archive system and present it as customer aging through a custon report. Example,in SAP R/3 we have data for last 3 yrs and beyod that the data is in arc

  • NSX  Manager return 400 "Invalid SecurityCertificate"

    I had deployed a environment with NSX + vSphere + OpenStack. I'm not use VOVA, OpenStack is deployed by RDO. I have modify neutron configuration and nsx.ini in controller node,  nova.conf in nova-compute node. When I use OpenStack dashboard to create

  • MIRO Retention Accounting Entries

    Hi Gurus , We have a Scenario where we mentioned a Retention Amount at Header . System automatically distribute the Percentage Amount at Item levels.When we post a MIRO related to that PO , system post an accouting entries to vendor reconcillation ac

  • Importing a AVI to edit

    So I've installed the trial and PS6 stops working when I try to import video frames to layers. The file is AVI and its about 5mb in size. Maybe there are some settings I can look at? I'm searching the forums looking for a solution and apologize if th