cancel
Showing results for 
Search instead for 
Did you mean: 

how to add serial number in the SAP BO crystal report version 2016

0 Kudos

Hello All

Can anyone help me with how to insert serial number in my crystal report. add-serial-number.png. before connid i wanted to add one more coumn as serial number. Can anyone help please ?

Thanks

Paturi

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member182342
Active Contributor
0 Kudos

Hi Paturi,

Please create a formula in place behind the other objects in detail.

In this formula workshop for the Field 'SrNo' declare variable numbervar 'srno' and increment it (srno:= srno+1;) in a while loop 'WhilePrintingRecords' .

  1. WhilePrintingRecords;
  2. numbervar srno;
  3. srno := srno + 1;
So for each record in details section it will increase the number by 1. Drag and drop the Formula in details section

Thanks,

Anish

DellSC
Active Contributor
0 Kudos

You need to edit the data source and add the table that has the serial number in it to the data that's being pulled for the report.

-Dell

0 Kudos

Hello Christy

Thank you for your reply. I cant edit the data source and make changes to it. I have to do this from the report level only.

I tried with @SerialNumber Predefined Function it worked.

Thank you Christy