Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
webitm-fin-advSupp-20
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
Ketan Patil
webitm-fin-advSupp-20
Commits
29082c93
Commit
29082c93
authored
Jun 24, 2022
by
Ketan Patil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete DDF_GET_CITY_NAME.sql
parent
cc34d4a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
DDF_GET_CITY_NAME.sql
DDF_GET_CITY_NAME.sql
+0
-25
No files found.
DDF_GET_CITY_NAME.sql
deleted
100644 → 0
View file @
cc34d4a4
create
or
replace
FUNCTION
DDF_GET_CITY_NAME
(
as_sundry_type
CHAR
,
as_code
CHAR
)
RETURN
VARCHAR2
IS
ls_city
VARCHAR2
(
40
);
AS_BHR
EXCEPTION
;
BEGIN
BEGIN
if
as_sundry_type
=
'S'
then
SELECT
city
INTO
ls_city
FROM
supplier
WHERE
supp_code
=
as_code
;
ELSE
if
as_sundry_type
=
'R'
then
SELECT
city
INTO
ls_city
FROM
strg_customer
WHERE
sc_code
=
as_code
;
end
if
;
end
if
;
RETURN
ls_city
;
RAISE
AS_BHR
;
EXCEPTION
WHEN
AS_BHR
THEN
RETURN
NULL
;
END
;
end
;
\ 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