on 2009 Jan 07 12:00 PM
Dear Gurus,
We are planning to implement the product cost controlling infoprovider 0PC_CO01 which is currently available as standard business content. I have extracted r/3 information with the standard business content and it works perfectly. Unfortunately the datasource is not delta capable and this is a constraint for us. We also prefer a customized infoprovider/data sources/extractors based on the standard rather that using the standard directly.
Is it possible to implement a "Z" environment for profitability analysis(including infoproviders,data sources & extractors) based the info provider 0PC_CO01? If yes, what are the steps I should follow for this?
Thanks & Regards
Suneeth
Request clarification before answering.
Hi
This Cube talks about Production Analysis (NOT Profit).
If your Data Source doesnot support Delta it would be difficult to get the same on BI Side.
So Go for Generic Delta
Hope it helps and clear
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Thanks for the reply. I tried using this report but still not able to validate data.
Can you tell me which layout you are using to validate data? e.g for me layout coming by defualt is /SE02. () It is last column there in the report.
Which all chars on BI side you are using ? if you can give me some pointers to validate data, it would be helpful.
Thanks again for your time and help,
SA
Hi,
We are using 0CO_PC_01 and 0CO_PC_02 infosources to get the data into 0PC_C01, it si working fine ad you told that delta is not supporting is correct. But you can use it based on Period wise.
I also faced the same problem, but now it is Ok, because I'm using Data Extraction full mode only but everyday before data load, it will delete the overlaping req and then load, this we can set it in InfoPackage level.
Use the following code in InfoPackage for 0FISCPER and
In DataTarget tab -->Automatic Loading of Similar/Identical option is there here you can set ->
Delete existing Req
InfoSourcea are same
Some or More Comprehensive
DATA: l_idx LIKE sy-tabix,
zzdate LIKE sy-datum,
zzbuper LIKE t009b-poper,
zzbdatj LIKE t009b-bdatj,
zzperiod(7) TYPE c.
READ TABLE l_t_range WITH KEY
fieldname = 'FISCPER'.
l_idx = sy-tabix.
zzdate = sy-datum - 1.
CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
EXPORTING
i_date = zzdate
* I_MONMIT = 00
i_periv = 'V3'
IMPORTING
e_buper = zzbuper
e_gjahr = zzbdatj.
* EXCEPTIONS
* INPUT_FALSE = 1
* T009_NOTFOUND = 2
* T009B_NOTFOUND = 3
* OTHERS = 4
.
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
*....
CONCATENATE zzbdatj zzbuper INTO zzperiod.
l_t_range-low = zzperiod.
l_t_range-option = 'EQ'.
l_t_range-sign = 'I'.
MODIFY l_t_range INDEX l_idx.
p_subrc = 0.
Note: To get the correct values in BW, END USERS must to Settelment in ECC.
Thanks
Reddy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
77 | |
30 | |
10 | |
8 | |
8 | |
7 | |
7 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.