Skip to main content
18-Opal
September 22, 2021
Solved

How to Get the count of Number of Field in a Infotable

  • September 22, 2021
  • 2 replies
  • 2495 views

I have situation were based on the Field count I need to do the Logic so  "How to Get the count of Number of Fields in a Infotable"

Thanks
Shashi

Best answer by M4RC

Hello, 

the getFieldCount() method returns the number of fields in the DataShape of this InfoTable as int.

 

 

2 replies

14-Alexandrite
September 22, 2021

You can get the fields from an InfoTable using .dataShape.fields, like below.  It will print the field name and the table's first row field value in the scriptlog.

 

let infoTableFields = infotable.dataShape.fields; // where "infotable" is the variable containing your InfoTable.

for (let fieldName in infoTableFields) {

    logger.info(fieldName + ": " + infotable[fieldName]);

}

 

To just get the number of fields, infotable.dataShape.fields.length should work (assuming the InfoTable exists and has data).

18-Opal
October 1, 2021

hi @DanWolf ,

In this situation, the input infotable is not having the data shape, it is created manually and fields were added dynamically based on the criteria's, when this dynamically added, need the length of the Field Names such that to proceed further Logic.

Thanks,
Shashi

Community Manager
October 20, 2021

Hi @pshashipreetham.

 

We're a little confused.  You indicated in your initial post that you needed the count of the number of fields in the infotable.  In your last response, you indicated you needed the length of the field names.

 

To clarify the request, please provide details of the use case so we can get a better understanding of what is needed.  How are you dynamically passing the fields?

 

Regards.

 

--Sharon

18-Opal
October 20, 2021

Hi @slangley ,

Apologies for the confusion, the use case is, the service generate/AddFields Dynamically based on the requirement. Once Dynamically generated, based on the Fields Count need to do some other operation !!

hope you understand !!

Thanks,
Shashi Preetham 

M4RC14-AlexandriteAnswer
14-Alexandrite
November 1, 2021

Hello, 

the getFieldCount() method returns the number of fields in the DataShape of this InfoTable as int.