js2
Product and Topic Expert
Product and Topic Expert
Member since ‎01-21-2011

User Statistics

  • 497 Posts
  • 18 Solutions
  • 55 Kudos given
  • 103 Kudos received

User Activity

I have a CAP project which calls an external service to start a workflow. When I add the odata v2 proxy so that I can use a fiori elements app for some reason the external service call fails. The external service url is: https://api.workflow-sap....
I have annotations added to my CAP service like so: UI: { SelectionFields: [ status_code, category_code, priority_code ], LineItem: [ {Value: title, ![@UI.Importance]: #High},...
I am trying to call the SAP workflow service from a CAP service like so: const workflow = await cds.connect.to('workflowService') const response = await workflow.tx(req).post('/v1/workflow-instances', { "definitionId": "IncidentFlow", ...
I have a queue in enterprise messaging and wish to read it with CPI. When I create the iflow with the AMQP adapter it asks for the following information: hostportpathauthenticationcredential Where do I get these values from? I assume its the ente...
I'm wondering if its possible (and if any examples exist) for starting a CF workflow instance from a CAP application? I can see examples (and the open sap cap course - week 4) cover calling external services but these are always OData services with...