Technical Articles
SAP PaPM Cloud: Uploading Input Data Efficiently
With more than a year since SAP Profitability and Performance Management Cloud (SAP PaPM Cloud) was released to the market, customers are now starting to configure, model and import more extensive and demanding content. These environments are utilizing input data that ranges from hundreds up to the millions worth of data. And as a Modeler, you might want to know the most efficient way in uploading a dataset so that you could focus your energy on actual modeling activities.
To make it simple, I’ll be using ranges to differentiate small and large input files. Under these two sections are step-by-step procedure on how to make these data available in your Modeling environment in SAP PaPM Cloud – in which I think would be the most efficient way. So, let’s begin!
Update as of 12/12/2022
Data upload functionality has been improved in SAP PaPM Cloud! The headers and text in this blog post has been updated accordingly. The old images still can serve as a procedure reference.
I. Small [Input File < 20, 000 data records]
As a Modeler you would like to upload less than 20,000 data records into your Modeling environment. The procedure below will show you how to make use of the Upload feature of a Model Table.
- In the Modeling environment, create a model table, maintain its properties and declare the necessary fields. Then choose Save.
Or you can use an existing model table and proceed to the next step.
*Depending on your current screen resolution, images used in this blog post might appear blurry, simply click on the image to see the actual resolution*
NOTE: If you have an XLS* file and it only consists of around 1,000 records or less, a simple Copy [CTRL+C] from source file and Paste [CTRL+V] to the data table can be performed as an alternative to the succeeding steps. The Data Editor will only appear if Transport Data setting is checked.
- Under General Property section of the Model Table, uncheck Transport Data option.
Data Editor will be disabled and Upload icon appears. Then, Save your changes.
- Click on the Upload icon and select the file to be uploaded from your local machine.
- In the Data Editor, a Data Upload prompt appears. If the upload file’s first row is as a Header (for fields) check the Skip header row setting. Otherwise, uncheck it. Then, choose Add.
- Notification: Upload completed will appear and number Data rows are shown in the Properties Panel Data Editor section.
- Under header Tools section choose Show icon to view the Model table records.
II. Large [Input File > 20, 000 data records]
As a Modeler you would like to upload more than 20,000 data records and utilize it in your modeling environment without introducing new fields. Since SAP PaPM Cloud is not meant to be an Extract, Transform and Load (ETL) tool, the most efficient way of uploading large sum of data records are through the tenant’s underlying SAP HANA Cloud database. The following procedure will show you how to upload an input file using SAP HANA Database Explorer.
- From any of the SAP PaPM Cloud screens, in the upper left corner, expand the Menu > Administration > Settings
- Under Database Settings section, click on the HANA Dashboard URL link.
- In the SAP Business Technology Platform login prompt, you may opt to use the Default Identity Provider or sign-in using an Alternative Identity Provider credentials.
- In the Database Overview screen Credentials dialog box, login using user SAP_PAPM_ADMIN and the password as provided under Database Settings from Step #2.
Then choose SQL Console.
- In SAP HANA Database Explorer, click on the Database entry dropdown > Catalog > Tables
View the available Schemas then search for SAP_PAPM and Select it.This will expose all Tables under SAP_PAPM schema which is the default schema of SAP PaPM Cloud. Meaning, all generated tables from the application are stored here.
USEFUL TIP: In your web browser tool bar, you might want to bookmark the current URL as this will point automatically to Database of your SAP PaPM Cloud Tenant. Having a direct link, will save few steps when accessing the DB the next time around.
- 1.The goal of this step to copy the CREATE statement of an auto-generated Y-TABLE from the application and use it to create another HANA table that will be used for uploading.
NOTE: This step is optional, if you already have a created Model Table HANA with the desired fields you may proceed to next step.6.2. Using the Model Table from the previous example of Small data records, use the search bar to find its Y-Table using the following naming convention:
<Y105><ENVID><VERSION><FUNCTION_ID> - 1. Right-click the Model Table HANA created and that will be used for uploading data records, then, choose Import Data
- Still in the SAP HANA Database Explorer, execute the following statement:
GRANT ALL PRIVILEGES ON SCHEMA "SAP_PAPM_ADMIN" TO SAP_PAPM;
- Revert to the SAP PaPM Cloud application, choose the Menu > Administration > Connections
- In the Connection Management screen, create a new connection using the Add icon (+). Maintain the connection properties and choose Confirm
- Back the Modeling environment, create a Model Table HANA by dragging it from the Palette to the Modeling diagram.
Then, maintain the Model Table HANA Function ID and description as desired. Maintain the Connection Name.
Then choose the pencil icon to enter field mapping screen.
- In the Field Mapping Environment Fields section, map the fields to the existing environment fields in the environment. Then, disable the full screen.
- In the Modeling screen, choose Save. Activate. Then, Show.
NOTE: If the input file contains NULL records after uploading it as a HANA table and causing you troubles in your Model, I’ve published a blog post that might be helpful in such cases: https://blogs.sap.com/2022/06/07/how-to-deal-with-imported-input-datas-null-values-and-consume-it-in-sap-papm-cloud/
I really appreciate that you’ve reached this part of my blog post; tried my best to ensure that the procedures were concise and can be easily followed with the help of images as references.
To summarize:
- Datasets under 1, 000 records >> Copy + Paste
- Datasets under 20, 000 records >> SAP PaPM Cloud Model Table Upload functionality
- Datasets above 20, 000 records >> SAP HANA Database Cloud Import data functionality
With the guidance of the methods shown above, I trust that you were able to import the required input data regardless of its the size in your modeling environment and could now proceed with further modeling activities in SAP Profitability and Performance Management Cloud.
If you found this blog post helpful, a like and quick share to your colleagues would be awesome! Feel free to comment your questions or if you have suggestions for a next topic of a blog post that would benefit the community.
Cheers!
Hi @josenoel.abulencia
I followed the steps provided for the case "SAP HANA Database Cloud Import data functionality", but we have problems applying the allocation rules because the file contains records with blank fields that are interpreted as NULL when they are loaded into HANA Database. As I now, PAPM doesn't allow Null filed.
File:
Hana Data:
Please your help to resolve this issue?
Ariel
Hi Ariel,
SAP PaPM belongs to the group of SAP Finance applications and null values are not allowed in the application data, just like in S/4HANA. The reason is that null values are not auditable and evaluable.
Therefore, if you have NULL values in your HANA table upon import, a HANA process or HANA view must be interposed in which records with NULL values are corrected, for instance:
a) by setting an initial value
IFNULL(COST_AMOUNT,0) AS COST_AMOUNT
b) by a derivation
CASE WHEN IFNULL(PROFIT_CENTER) AND COMPANY_CODE = '0001' THEN 'PC1000'
WHEN IFNULL(PROFIT_CENTER) AND COMPANY_CODE = '0002' THEN 'PC2000' END AS PROFIT_CENTER
Once this HANA view is created, you can then follow step 9 onwards under Large section of this blog post to consume it in SAP PaPM Cloud.
We're aware of this concern and planning to release another blog post in the next few weeks focusing on this. So our community will be fully guided. Thanks!
Hi Jose,
Thanks for your example, I'm trying to do this but i have and error
CREATE VIEW "LANGEC"."VF0001" AS
SELECT
"BUDAT",
"CPUDT",
IFNULL( "AUFNR" as NVARCHAR(12)) AS AUFNR,
IFNULL( "KOSTL" AS NVARCHAR(10)) AS KOSTL,
IFNULL( "WW011"AS NVARCHAR(4)) AS WW011
FROM "LANGEC"."Y105E060001F0001";
Error: sql syntax error: incorrect syntax near "as": line 5 col 19 (at pos 91)
Could you help me??
Hi Ariel,
I am not a SQL expert but you can try this:
If the Y-TABLE is in the default SAP_PAPM schema, then:
Kind regards,
Noel
Hi Noel, it worked!!!
Thanks for all
Ariel
Hi Ariel,
That's great to hear!
And for our community members that also encounter this dilemma, I've recently published a blog post focusing on NULL values:
https://blogs.sap.com/2022/06/07/how-to-deal-with-imported-input-datas-null-values-and-consume-it-in-sap-papm-cloud/
Kind regards,
Noel