Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

tcode: AS91 : Asset master: can we upload the data for non editable fields

Former Member
0 Kudos
1,615

Hi guys,

When i am trying to upload some data for AS91 tcode thru LSMW and BDC, I could not upload the data to few fields , which are NON-EDITABLE mode of a screen of AS91.

Process to go to the screen as follows.

1)Tcode AS91, provide Aseet class, company code

2)click take over values , after entering description and capitalized on field.

3)enter cost center (eg: 440500), plant (1000)

now we get a screen, where we have last column, which is not editable

how to upload the data into these non editable fields.

some consultants sugested that it may not be possible with BDC, LSMW. May be possible with BAPI.

Please help me the way to over come this issue in ABAP perspective.

Note: may be with functional configuration, we can enable the fields, but requirement is to upload the through ABAP only, without changing the functional configuration.

-


I have gone thru the BAPI_FIXEDASSET_OVRTAKE_CREATE

In tables: CUMULATEDVALUES

I am able to enter the values of first column.

where can I enter the values of third column(which is non editable) for cumulated values?

is there any other table exist in BAPI or in same table CUMULATEDVALUES???

is it possible to enter non editable fields of the transaction thrugh BAPI_FIXEDASSET_OVRTAKE_CREATE OR ANY OTHER BAPI???

please help me.

8 REPLIES 8

former_member555112
Active Contributor
0 Kudos
509

Hi,

Which non editable field are you talking about?

Can you elaborate?

Regards,

Ankur Parab

Former Member
0 Kudos
509

using this BAPI BAPI_FIXEDASSET_OVRTAKE_CRETE you can upload non editable fields also....

0 Kudos
509

CKReddy,

I have gone thru the BAPI_FIXEDASSET_OVRTAKE_CREATE

In tables: CUMULATEDVALUES of this FM

I am able to enter the values of first column.

when you go thru AS91..finally you get a screen as explained above. there exists 3 columns.

where can I enter the values of third column for cumulated values?

Please help me.

0 Kudos
509

you can use smae table that is CUMULATEDVALUES

for first record the value of lwa_postv-area = '01'.

append internal table for all possible value

for 3rd record the value of lwa_postv-area = '15'.

again append internal table for all possible value

for next record the value of lwa_postv-area = '30'.

again append internal table for all possible value

0 Kudos
509

CKR,

Thank you very much your valuable input.

Small question: right now i am testing the same BAPI F.M by giving the input.

as per your info, for the cumulative table, i need to privide the input as

AR =01 AND REST OF DATA

NEW RECORD: AR = 15 and data

NEW RECORD AR=30 and data..

Pls confirm.

0 Kudos
509

yes you can proceed

0 Kudos
509

CKR,

Thanks for helping me. issue is almost resolved.

my requirements: only 3 columns

AR = 01 (FIRST EDITABLE COLUMN)

AR = 15 (second editable column)

AR= 10 (non editable third column)

SAP automatical calculates column area 10 based on AR->01 and AR->15.

My requirement is to upload my own data to third column (AR->10), RATHER THAN SAP.

when i executed with above BAPI, third column values are still calculated by SAP.

How can we upload data to those column?

pls help me.

Former Member
0 Kudos
509

Un editable fields, can not be edited through programatically. func guys need to make it editable.