Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
rohitchouhan
Participant
2,244

dynamoTable custom widget is designed to help you create dynamic, customizable tables within SAP Analytics Cloud (SAC), enhancing your data presentation and analysis capabilities.

Key Features

  • Custom Table Creation: Easily create and manage tables to suit your specific data needs.
  • Flexible Data Handling: Input data as an array of objects for seamless integration.
  • Simple Integration: Quickly add the widget to your SAC applications with straightforward installation steps.

Installation Guide

YouTube Video Tutorial

To integrate the dynamoTable widget into your SAP application, follow these simple steps:

  1. Download the Widget:

    Click the link above to download the dynamoTable.json file.

    Or find on GitHub: https://github.com/SAP-Custom-Widget/dynamoTable 
  2. Add to SAC Portal:

    • Navigate to your SAC Portal.
    • Select "Analytic Application" from the left sidebar.
    • Go to the "Custom Widget" tab.
    • Click the "+" icon on the right side and upload the dynamoTable.json file you downloaded.
  3. Start Using the Widget:

    • Once uploaded, the widget is ready to use in your applications.

Methods Overview

The widget offers a simple method to manage your table data:

MethodReturn TypeDescription
setTableData(arrayOfObject)Selection/Object arraySets the table data using an array of objects.

Example Usage

Here’s an example of how to use the setTableData method to populate your table:

 

var data  = [
  {
    productId: "1",
    productName: "Wireless Mouse",
    category: "Electronics",
    price: "25.99",
    quantitySold: "120",
    dateOfSale: "2024-05-01"
  },
  {
    productId: "2",
    productName: "Bluetooth Headphones",
    category: "Electronics",
    price: "79.99",
    quantitySold: "75",
    dateOfSale: "2024-05-02"
  }
];

dynamoTable_1.setTableData(data);

 

Output

rohitchouhan_2-1716044525328.png

Conclusion

The SAC-P Custom Widget: dynamoTable is a powerful tool for creating and customizing tables in SAP Analytics Cloud. By following the simple installation steps, you can enhance your data presentations and streamline your analytics processes. Explore the features of dynamoTable and take your data handling to the next level.

1 Comment
Sorrow_Zither
Explorer
0 Kudos

Hi Rohit,

Thank you for your informative blog post on the Dynamo Table widget. I tried implementing it based on your instructions. Interestingly, it worked flawlessly in a story but encountered some issues within the analytic application. If you have any insights on why this might be the case, I'd greatly appreciate your advice.

Best regards,

Emna

Sorrow_Zither_0-1718062155343.pngSorrow_Zither_1-1718062176875.png

 

Labels in this area