Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for OCTA-24050 #1

Open
wants to merge 1 commit into
base: release-12.6.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions adeuib/vrfyimp.i
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,16 @@ IF AbortImport NE yes THEN DO:
IF err_msgs <> "":U THEN
DO:
RUN adecomm/_setcurs.p ("").

if oeideisrunning and OEIDE_CanShowMessage() then
run ShowOKMessage in hOEIDEService(subst("&1 analyzed &2by the &3 &4.~nPlease check these problems in your file or environment:~n&5",
IF import_mode EQ "IMPORT":U THEN "The contents of this file cannot be" ELSE "This file cannot be",
IF web_file THEN "remotely " else "",
"{&UIB_NAME}",
IF web_file THEN ' on ' + _brokerURL ELSE '':U,
err_msgs)
,"Error":u,? ).
else
MESSAGE (IF import_mode EQ "IMPORT":U
THEN "The contents of this file cannot be"
ELSE "This file cannot be")
Expand Down