Hello, is there any way to block export to Excel in Aurena for some users?
Best regards,
Adam
Hello, is there any way to block export to Excel in Aurena for some users?
Best regards,
Adam
Thank you! Do you suggest disabling Export to Excel Extension? Where can I manage this extention?
Probably Mr Adam is asking for this:
Yes, exactly - I’d like to avoid personal data leakadge, so I’d like to block export to Excel in Aurena. Exporting will be available for some users in IEE.
Hi
Here, it is important to know an important aspect of IFS Applications security.
IFS Aurena security is based on projections.
If an user has access to a projection the user will be able to fetch data for the extent permitted by that projection (based on the row level security built into the projection).
Let me explain using the Purchase Orders window as an example.
The underlying projection of this page is PurchaseOrdersHandling.svc
. Which means the user will be able to access data via PurchaseOrdersHandling.svc
projection.
Projections are based on the odata protocol, by accessing the projection metadata like below, the user can find the entry points to the data (called entitysets).
https://url:port/main/ifsapplications/projection/v1/PurchaseOrdersHandling.svc/$metadata
Once the entityset is known, (e.g. PurchaseOrderSet). Below can be used to fetch data in json format.
https://url:port/main/ifsapplications/projection/v1/PurchaseOrdersHandling.svc/PurchaseOrderSet
It is possible to query, select columns using the odata protocol.
e.g. Below query filters data by Order No, selects a set of columns, references.
I will now answer your question based on above.
Since the data is accessible using open standards, once the data is exported using the above query, then data can be imported from any tool which supports json including Excel!!!.
So it irrelevant whether the user has access to Export to Excel functionality, data can be imported to Excel easily.
(For simplicity, we could omit the odata references in above query and below instead.)
e.g. https://url:port/main/ifsapplications/projection/v1/PurchaseOrdersHandling.svc/PurchaseOrderSet?$filter=((startswith(OrderNo%2C%271%27)))&$select=OrderNo,ApprovalRule,AuthorizeCode,BuyerCode,Objstate,PurApprovalBuyerCode,PurApprovalCoordinator,OrderCode,OriginalRevision,Revision,VendorNo,Contact,Contract,Email,Company,PreAccountingId,NoteId,TotalNetAmountBase,TotalNetAmount,TotalTaxAmount,TotalGrossAmount,TotalGrossInclCharge,Invoiced,ContactName,CurrencyCode,DateEntered,Objgrants,luname,keyref&$skip=0&$top=25
What the Excel plugin does is, making it easy for the user to do the above.
e.g.
I am not aware of a way to limit the export to excel capability. But still, good to know that limiting export to excel capability is not a solution to limit access to data.
Hi Janitha
I realize technical point of view but how many end users know how to use Json query or Excel plugin to fetch bulk of data? 2-3%?
Best Regards
Yes, exactly, avarage user will not use Json query, but he can export all the personal data with just two clicks. Is there really no way to block it?
Hi
Regards,
William Klotz
I doubt this could be achieved from Page Designer.
Adding Page Designer concept owners in RnD
Navinth is correct. It is not possible to disable export as a concept or remove the export command using the page designer. These are general commands that framework adds in runtime, and are not part of the page layout metadata.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.