error while posting Invoice

sreekuax

Member
we are having trouble in posting the invoice.. While trying to post the invoice its getting hang ans shows this error : "** Save file named core for analysis by Progress Software Corporation (439)" (attached screen shot7.13.4 Error on 23.09.10.JPG)

what might be the problem please help...
 
In the directory where the database file ( the one with the db extension ) is located you will find a file with the extension lg - that's the database log file.

RealHeavyDude.
 
In the directory where the database file ( the one with the db extension ) is located you will find a file with the extension lg - that's the database log file.

RealHeavyDude.

Brother : Is it like apprdeb2-sh.db with extension .db and apprdeb2-sh.lg with extension .lg ? please confirm
 
Bro : the names I have given is exact. But the log file has nothing relevant in it ad its last modified date is 20/02/2008 :-(

Also - now we are able to post all other invoices except this one (IN150026) which gave error yesterday.. So any other areas to find why this particular invoice is not getting posted but others are going through
 
Bro : the names I have given is exact. But the log file has nothing relevant in it ad its last modified date is 20/02/2008 :-(

From what you're telling I would suppose that you're looking in the wrong directory. The database file gets updated constantly as soon as the server is started and users log in and out. It seems that the database you're looking at had no activity since 20/02/2008 ...

RealHeavyDude.
 
main_menu.JPGI am looking into directory where the apprdeb2-sh.db resides.. and its in dir : /apps/qad/eB2/db and the .lg (apprdeb2-sh.lg)file is also inside the same directory . I came to know that the .db file is from the main menu of eB2 (EB2 AQAD : apprdeb2-sh -attached screen shot)
 
To be honest, I don't know anything about MFG/PRO. But I do know something 'bout Progress/OpenEdge in general.


  • Do you have any other documentation apart from the application itself where the database resides?
  • Do you have the possibility to start the procedure editor? - if so you could display the PDBNAME which will show the full path.
HTH, RealHeavyDude.
 
That is the physical database name which includes the path if you're connected to the database via shared memory.

DEFINE VARIABLE i AS INTEGER NO-UNDO.
DO i = 1 TO NUM-DBS:
MESSAGE 'Logical name: ' LDBNAME ( i ) SKIP
'Physical name: ' PDBNAME ( i ) SKIP
VIEW-AS ALERT-BOX INFO.
END.

BTW, the code is not syntax checked, using notepad as editor ...


HTH, RealHeavyDude.
 
Back
Top