Cannot edit the application title

Hi,

I have a NETWORK apps to renumber nodes - script lines are copied below (attachment #1).

It ran successfully, but every time I want to edit the Title (right click execution box, Set Title), an Application Manager warning says:
"The Program name in the script (PILOT) does not match the program name in the Application (NETWORK), for the script file ...\...S",
then the written script is gone, empty, just few lines left (attachment #2).

I've tried created a new one, successfully ran, but the same error message above shown when trying to edit the title.

Thank you.



Attachments:

(1) Script before title edited:

;;<<Default Template>><<NETWORK>><<Default>>;;
; Do not change filenames or add or remove FILEI/FILEO statements using an editor. Use Cube/Application Manager.

; [N] Renumber node of external zones, old:51-113 -> new:93-155

COPY FILE=RENUMBER.TXT  ; [N] Create a lookup txt file for node renumbering, data fields: new# old#
93    51
94    52
95    53
96    54
97    55
98    56
99    57
100    58
...
150    108
151    109
152    110
153    111
154    112
155    113
ENDCOPY

RUN PGM=NETWORK PRNFILE="...\MODEL\APPS\RPNET00F.PRN" MSG='RENUMBER OLD EXTERNAL NODES'
FILEO NETO = "...\MODEL\APPS\RPNET00H.NET"
FILEI LINKI[1] = "...\Model\Network\ERPSA_2018.NET"

; [N] Specify lookup function, 0 if no exact match
LOOKUP NAME=RENUM, FILE=RENUMBER.TXT, INTERPOLATE=F, FAIL=0,0,0

PROCESS  PHASE=INPUT FILEI=NI.1
  IF (RENUM(N)<>0) N=RENUM(N)  ;[N] Renumber all nodes in external zones
ENDPROCESS

PROCESS  PHASE=INPUT FILEI=LI.1
  IF (RENUM(A)<>0) A=RENUM(A)  ;[N] Renumber nodes AB in links connected to external zones
  IF (RENUM(B)<>0) B=RENUM(B)
ENDPROCESS

ENDRUN


(2) Script after trying to edit the title:

;;<<Default Template>><<NETWORK>><<Default>>;;

; [N] Renumber node of external zones, old:51-113 -> new:93-155

Parents Reply Children
No Data