Hi experts,
I have a problem:
I am trying to test the Analytical Reporting API and the ViewTemplates.
I have created the following ViewTemplate:
{
"viewTemplateName": "testTemplate8",
"type": "custom",
"status": "published",
"documentTyp...
Hello experts,
I am new to MDG and Key-Mapping-replication.
I am struggling to understand the use of the interfaces. In my understanding, if I want to post key-mappings to another system I am configuring "KeyMappingBulkReplicateRequest_Out" in th...
Hi experts,
I want to reuse a step I used before already.
Therefore I declarated the linkage between the steps:
sc.step(GLOBAL.steps.pChangeSupplier, GLOBAL.steps.pChangeOrganization);
sc.step(GLOBAL.steps.pChangeOrganization, GLOBAL.steps.pC...
Hi experts,
I am trying to build a bot in a SAP-system with iRPA. This bot shall create a PR.
When I try to capture the page of ME51N with SAPGUI technology it works.
But when I want to match criteria to it, the name of the page won't turn gree...
Hello experts,
I am new to SAP and I would like to know wether it is possible to change the tenant configuration in the desktop-agent software.
I can only register a tenant-URL when desktop-agent is newly installed. Is there a file where I can ed...
Thank you for your input sean.mcgann3 & ajmaradiaga . This solved the problem. It seems that it is it mandatory to escape the special characters as Antonio suggested.I also found out that you can request more than one ProjectID if the FilterExpress...
Hi Anuradha,go to the object-tree of the captured page and search for a GridViewControl.On this object you can invoke some methods to control the table (Checkout: https://contextor.eu/dokuwiki2/doku.php?id=lib:sap:sapscripting).For example:// To simu...
Hi DipankarG,you have to find something like GuiCtrlGridView in the captured page and associate it as a new item.Then you go to https://contextor.eu/dokuwiki2/doku.php?id=lib:sap:sapscripting and check the methods.In my case the code to fill the cell...
Hi Shakti,in my case I used the logic below to reuse all the data I got from the excel sheet.Please note: This might be not the most performant/best logic to do this but in my case it was fast & easy and it did work.To check which methods you can inv...
Hi Shakti,I had the same task. I wrote a little method to scan the excel file row by row.Note: I start at second row because in my template there was a title row.//reads every row and returns rows in 2d array with data
function getExcelData() {
var ...