2009 Jul 29 8:18 AM
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.
2009 Jul 29 8:24 AM
Hi,
Which non editable field are you talking about?
Can you elaborate?
Regards,
Ankur Parab
2009 Jul 29 9:06 AM
using this BAPI BAPI_FIXEDASSET_OVRTAKE_CRETE you can upload non editable fields also....
2009 Jul 29 9:59 AM
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.
2009 Jul 29 10:17 AM
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
2009 Jul 29 10:50 AM
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.
2009 Jul 29 11:39 AM
2009 Jul 29 1:19 PM
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.
2009 Sep 10 12:14 PM
Un editable fields, can not be edited through programatically. func guys need to make it editable.