Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Daniels project
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Daniel Quadras
Daniels project
Commits
25818b49
Commit
25818b49
authored
Jul 06, 2023
by
daniel.quadras@proteustech.in
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resultdetails.jsp
parent
18881ec0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
0 deletions
+67
-0
ResultDetails.jsp
ResultDetails.jsp
+67
-0
No files found.
ResultDetails.jsp
0 → 100644
View file @
25818b49
<%@page
import=
"groovy.ui.SystemOutputInterceptor"
%>
<%@page
import=
"ibase.utility.BaseLogger"
%>
<%@page
import=
"ibase.webitm.ejb.DBAccessEJB"
%>
<%@page
import=
"ibase.utility.UserInfoBean"
%>
<%@page
import=
"ibase.ejb.CommonDBAccessEJB"
%>
<%@ page
language=
"java"
contentType=
"text/html; charset=UTF-8"
pageEncoding=
"UTF-8"
%>
<%
String
tran_id
=
""
,
result_details
=
""
;
tran_id
=
request
.
getParameter
(
"tran_id.String"
);
String
userId
=
request
.
getParameter
(
"user_id.String"
);
CommonDBAccessEJB
commondb
=
new
CommonDBAccessEJB
();
UserInfoBean
userInfo
=
commondb
.
createUserInfo
(
userId
);
DBAccessEJB
dbAccessEJB
=
new
DBAccessEJB
();
BaseLogger
.
log
(
"3"
,
userInfo
,
null
,
"daniel userId"
+
tran_id
);
BaseLogger
.
log
(
"3"
,
userInfo
,
null
,
"daniel userId"
+
userId
);
BaseLogger
.
log
(
"3"
,
userInfo
,
null
,
"daniel userinfo"
+
userInfo
);
BaseLogger
.
log
(
"3"
,
userInfo
,
null
,
"daniel userInfo.getTransDB()"
+
userInfo
.
getTransDB
());
try
{
result_details
=
dbAccessEJB
.
getDBColumnValue
(
"follow_up_actions_logs"
,
"result_details"
,
" where tran_id= '"
+
tran_id
+
"' "
,
userInfo
.
getTransDB
());
BaseLogger
.
log
(
"3"
,
userInfo
,
null
,
"daniel result_details"
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
BaseLogger
.
log
(
"3"
,
userInfo
,
null
,
" daniel exception"
+
e
);
}
%>
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<title>
Result Details
</title>
</head>
<style
type=
"text/css"
>
.btn
{
text-align
:
center
;
visibility
:
<%=
result_details
%>
;
}
</style>
<body>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment