Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 2.49 KB

troubleshooting.md

File metadata and controls

55 lines (36 loc) · 2.49 KB

Troubleshooting

This page intends to capture common problems that you might face while going through the exercises part of the CodeJam.

SAP Integration Suite, advanced event mesh

  • The event broker services are not listed/visible in Cluster Manager

    By default the Cluster Manager will only show the event broker services that you have created. If you are not seeing the event broker services that you expect, you might have the Only show my service checkbox checked.

    Cluster Manager - Only show my services, unchecked
    Cluster Manager - Only show my services, unchecked

    Solution:

    • Uncheck the Only show my service checkbox in the Cluster Manager

SAP Business Application Studio

  • Access Denied when trying to access the SAP Business Application Studio

    Business Application Studio - Access Denied
    Business Application Studio - Access Denied

    Your user account might not have the necessary permissions to access the SAP Business Application Studio. Make sure to assign the below role collections to your user account in the SAP BTP cockpit (Subaccount > Security > Users > [select the user] > Assign Role Collections):

    • Business_Application_Studio_Administrator
    • Business_Application_Studio_Developer

    Business Application Studio - Role collections
    Business Application Studio - Role collections

CAP Project

  • SqliteError: no such table: com_sap_codejam_edi_ConsumedMessage

    When running the CAP project you get an error message stating that it was not possible to insert a record into the com_sap_codejam_edi_ConsumedMessage table because the table does not exist.

    Ensure that you've run the cds deploy command to deploy the data model to the SQLite database. From within the project directory, run the following command:

    cds deploy
  • SqliteError: no such table: com_sap_codejam_edi_ConsumedMessage

    When running the CAP project you get an error message stating that it was not possible to insert a record into the com_sap_codejam_edi_ConsumedMessage table because the table does not exist.

    Explanation of how to solve the problem:

    • Item 1
    • Item 2