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,287

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
Labels in this area