Yes, I would like to create a 2D array in my session rules to store some header level data that gets repeated in the line level. I have done this via separate global variables but it's a tedious task. I would very much appreciate it if you could help me understand how a multidimensional array could be created in the IBM Sterling Map Editor. I do know that a character array is created using:
STRING[20]TEMP_STRING[100];//works
Here, each string segment in 100 bytes long and there are 100 of these string segments. But I would like to do this for integers as well:
INTEGER[100][100] TEMP_INTEGER;// does not work
Here TEMP_INTEGER is a 2D array which has a 100 cells, with each cell containing it's own 100 cells.