Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 81,263
» Latest member: FlorenceLi
» Forum threads: 389
» Forum posts: 395

Full Statistics

Latest Threads
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,015
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,183
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,225
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,175
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,233
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,251
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,229
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,203
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,085

 
  Dynamic Number formatter using script
Posted by: shreekantgosavi - 12-23-2022, 11:33 AM - Forum: BDB Designer Q & A - No Replies

const kFormatter = (num) => {
  return Math.abs(num) > 999 ? Math.sign(num) * ((Math.abs(num) / 1000).toFixed(1)) + 'k' : Math.sign(num) * Math.abs(num)
}
var total_calls = changedItem.attributes.data[0].total_calls;
var call_length = total_calls.toString().length;
if(call_length>6){
        var total_calls = kFormatter(total_calls);
        sdk.setValue('label37',total_calls );
}
else
{
        sdk.setValue('label37',total_calls );
}
 

Print this item

  How to open a new dashboard on click of label ?
Posted by: Asma M - 12-23-2022, 11:32 AM - Forum: BDB Designer Q & A - No Replies

hyperlink 

sdk.setValue( 'label201','Total<span style="float:right;">$ '+tRebate.toLocaleString()+'</span>');

Print this item

  What is transforms and steps in data prep module?
Posted by: gnanashri - 12-23-2022, 11:31 AM - Forum: BDB ETL and Data Prep Q & A - No Replies

Transforms are the various operations that can be performed in for the data you want to clean/prepare and the steps describe you all the transforms that you have applied on the data.  

Print this item

  kafka in pipeline?
Posted by: mohd.gulam - 12-23-2022, 11:30 AM - Forum: BDB Data Pipeline Q & A - No Replies

Apache Kafka is a distributed streaming platform that is often used as the backbone for a data pipeline,it also called messenger, It is used to build real-time data pipelines and streaming apps.

A data pipeline is a set of processes that move data from one place to another. The data can be moved between systems, or within a system. Kafka can be used as a central hub for moving data between systems, or as a way to move data within a system

Print this item

  Set Default Configurations of Low/High/Medium in Pipeline
Posted by: rubeena.hajira - 12-23-2022, 11:28 AM - Forum: BDB Designer Q & A - No Replies

How to set the default configurations of Low/High/Medium Pipelines?
 
Ans: You can navigate to the Pipeline Settings and then go to the default configuration setting, where you can configure various settings for all 3types of pipelines.

Print this item

  Git Export/Migration in pipeline.
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:28 AM - Forum: BDB Data Pipeline Q & A - No Replies

The pushed pipeline can be migrated to the destination environment from the migration window configured  in the  Admin Module.

Print this item

  This script can be used for toggle style for component.
Posted by: Asma M - 12-23-2022, 11:28 AM - Forum: BDB Designer Q & A - No Replies

"var a = sdk.getDivIdFromComponetId( 'label107' );
sdk.applyStyle( ""#"" + a + "" span"", ""background-color"", ""rgba(0,0,0,0.05)"" );"

Print this item

  Version Control feature in pipelines
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:26 AM - Forum: BDB Data Pipeline Q & A - No Replies

The Version Control feature is provided for the user to maintain a version of the pipeline while the same pipeline undergoes further development and different enhancements.

Print this item

  Password Expiration
Posted by: manirathinavelu.m - 12-23-2022, 11:26 AM - Forum: BDB Platform Q & A - No Replies

My password is keep expiring and I am not getting the option to reset my password. Please help.
and provide option to change the expiration period

Print this item

  Failure messages while developing contents
Posted by: Athi - 12-23-2022, 11:26 AM - Forum: BDB Platform Q & A - No Replies

Failures in Creating Datasheet, Datastore, activating a pipeline, Git Migration, viewing Data catalogue, etc. How can a user do a basic validation?

Print this item