hi all, is it possible to read the livecache data? I need to ready a specific planning book/dataview for specific key figures. thanks, neobat asked 12 Dec '11, 14:38 neobat pedrolima ♦♦ |
Typically we read the livecache data indirectly using the function modules specific for the diferent objects. To read the planning book you can use
You can also call directly the LC routines using database calls with native SQL (example below). But for most cases this is not needed.
Update: Some more information on the parameters of the An example probably helps. Consider a PA with characteristics COLOR, SHAPE, TEXTURE and with key figures FORECAST, SALES, OPEN. These 3 tables are inputs to the function:
COLOR I EQ RED <- filter the results to only have CVCs with red color
COLOR, SHAPE <- only show the combinations of color and shape; the key figures are aggregated to this level)
FORECAST, SALES <- only show the SALES and FORECAST KF in the results Output tables:
answered 13 Dec '11, 04:48 pedrolima ♦♦ Hi Pedrolima, Please also clarify this: What does the below parameters signify in the BAPI?
Also, please provide the declaration for the below objects: lt_selection lt_groupby lt_keyfigselection Thank you very much.
(07 Mar '12, 10:45)
kgcharan
Hi kgcharan, you can find the declarations for all those variables by going to transaction SE37 and looking at the function definition for BAPI_PBSRVAPS_GETDETAIL2. The key figure, key figure value and characteristic combination are output tables in the BAPI, see above an example for the data that you can expect to see there. The detailed meaning of these fields is something that you can find in the demand planning documentation.
(12 Mar '12, 05:19)
pedrolima ♦♦
|
Hi, Your reply was much helpful. But, can you please also explain all the lt_* internal tables used in teh BAPI. It would be much helpful and is greatly appreciated. Thanks. answered 30 Jan '12, 10:58 kgcharan Hi kgcharan, I did a small update to explain the BAPI tables. Hope it helps.
(30 Jan '12, 17:51)
pedrolima ♦♦
|