- 31
- 26 872
Oracle ERP HUB - By Naz
United States
Приєднався 30 січ 2020
Providing solutions to your day-to-day technology issues.
- Oracle ERP solutions, financial and HRMS
- Microsoft SQL Server
- MS office support, MS Excel workbook, MS - Word, PowerPoint, etc.
- project management
- program management
- software support
- cloud
- Documents
- Testing
- Oracle ERP solutions, financial and HRMS
- Microsoft SQL Server
- MS office support, MS Excel workbook, MS - Word, PowerPoint, etc.
- project management
- program management
- software support
- cloud
- Documents
- Testing
User Defind Function| Microsoft SQL Server Online Training Session -3 | (Part-5)
CREATE FUNCTION TotalCalculate
(@UnitPrice decimal(10,2),@Quantity int)
RETURNS decimal(10,2)
AS
BEGIN
RETURN @UnitPrice * @Quantity
END
SELECT p.ProductName,o.UnitPrice, o.Quantity,
dbo.TotalCalculate(o.UnitPrice, o.Quantity) AS Total
FROM Product p, OrderItem o
where p.Id=o.ProductId
-------2---
Alter FUNCTION applyDiscount(@product VARCHAR(55), @discount int)
RETURNS VARCHAR(255)
AS
BEGIN
DECLARE @result VARCHAR(255);
DECLARE @productID int;
SET @productID = (SELECT id
FROM product
WHERE productName =@product) ;
IF @productID IS NOT NULL
BEGIN
DECLARE @dicountPrice float=
(SELECT top 1 (o.UnitPrice* o.Quantity)- @discount
FROM Orderitem o, dbo.[Order] d, OrderItem t
WHERE o.ProductId=@productID
and d.Id=o.OrderId
and t.id =o.Id
and t.OrderId=o.OrderId and t.ProductId=o.ProductId );
SET @result = 'THE PRODUCT: ' +
cast (@productID as varchar (50)) +
' IS REDUCED TO: ' +
CAST (@dicountPrice AS VARCHAR(50))+ ' Dollars';
END
ELSE
SET @result = 'THE PRODUCT HAS NOT BEEN FOUND ';
RETURN @result
END
SELECT dbo.applyDiscount('Chang', 100)
-----SQL Server inline table-valued functions
alter FUNCTION GetCustomersWithOrdersDetails ()
RETURNS @CustomersWithOrders TABLE
(CustomerID int, ContactName nvarchar(50),
Orderid int,orderdate date,city varchar(50),TotalAmount decimal(12,2))
AS
BEGIN
INSERT INTO @CustomersWithOrders
SELECT c.id, c.FirstName+' '+c.LastName,
o.id ,o.OrderDate,city,TotalAmount
FROM Customer c
JOIN dbo.[Order] o ON c.id = o.customerid
RETURN
END
SELECT * FROM [dbo].[GetCustomersWithOrdersDetails] () order by customerid
---------------------------------
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer.
Subscribe this channel to get new videos alert.
(@UnitPrice decimal(10,2),@Quantity int)
RETURNS decimal(10,2)
AS
BEGIN
RETURN @UnitPrice * @Quantity
END
SELECT p.ProductName,o.UnitPrice, o.Quantity,
dbo.TotalCalculate(o.UnitPrice, o.Quantity) AS Total
FROM Product p, OrderItem o
where p.Id=o.ProductId
-------2---
Alter FUNCTION applyDiscount(@product VARCHAR(55), @discount int)
RETURNS VARCHAR(255)
AS
BEGIN
DECLARE @result VARCHAR(255);
DECLARE @productID int;
SET @productID = (SELECT id
FROM product
WHERE productName =@product) ;
IF @productID IS NOT NULL
BEGIN
DECLARE @dicountPrice float=
(SELECT top 1 (o.UnitPrice* o.Quantity)- @discount
FROM Orderitem o, dbo.[Order] d, OrderItem t
WHERE o.ProductId=@productID
and d.Id=o.OrderId
and t.id =o.Id
and t.OrderId=o.OrderId and t.ProductId=o.ProductId );
SET @result = 'THE PRODUCT: ' +
cast (@productID as varchar (50)) +
' IS REDUCED TO: ' +
CAST (@dicountPrice AS VARCHAR(50))+ ' Dollars';
END
ELSE
SET @result = 'THE PRODUCT HAS NOT BEEN FOUND ';
RETURN @result
END
SELECT dbo.applyDiscount('Chang', 100)
-----SQL Server inline table-valued functions
alter FUNCTION GetCustomersWithOrdersDetails ()
RETURNS @CustomersWithOrders TABLE
(CustomerID int, ContactName nvarchar(50),
Orderid int,orderdate date,city varchar(50),TotalAmount decimal(12,2))
AS
BEGIN
INSERT INTO @CustomersWithOrders
SELECT c.id, c.FirstName+' '+c.LastName,
o.id ,o.OrderDate,city,TotalAmount
FROM Customer c
JOIN dbo.[Order] o ON c.id = o.customerid
RETURN
END
SELECT * FROM [dbo].[GetCustomersWithOrdersDetails] () order by customerid
---------------------------------
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer.
Subscribe this channel to get new videos alert.
Переглядів: 22
Відео
Building Procedures،| Microsoft SQL Server Online Training session 3 (Part-4)
Переглядів 395 місяців тому
view procedure structure select schema_name(obj.schema_id) as schema_name, obj.name as procedure_name, case type when 'P' then 'SQL Stored Procedure' when 'X' then 'Extended stored procedure' end as type, substring(par.parameters, 0, len(par.parameters)) as parameters, mod.definition from sys.objects obj join sys.sql_modules mod on mod.object_id = obj.object_id cross apply (select p.name ' ' TY...
Bulk insert / Delete| Microsoft SQLServer Online Training Session-3|Data modification-Command-Part-3
Переглядів 425 місяців тому
Data Modification with SQL Command Inserting new rows into tables Updating targeted data Deleting specific rows sp_configure 'show advanced options', 1; RECONFIGURE; GO sp_configure 'Ad Hoc Distributed Queries', 1; RECONFIGURE; GO create link server DECLARE @RC INT; DECLARE @server NVARCHAR(128); DECLARE @srvproduct NVARCHAR(128); DECLARE @provider NVARCHAR(128); DECLARE @datasrc NVARCHAR(4000)...
Self Join ...using image of a table in SQL Server
Переглядів 156 місяців тому
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
String_AGG () Function in SQL Server
Переглядів 376 місяців тому
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
Agg Function & Joins| MS SQLServer Training Session -3| Structuring Server Programming-Module-Part-2
Переглядів 436 місяців тому
Query Designer to construct select statements Retrieving data from multiple tables using joins and the WHERE clause criteria Exploit data for aggregate functions We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
SQL Commands|MSQLServer Online Training Session -3 | Structuring Server Programming-Module 3(Part-1)
Переглядів 1056 місяців тому
Session-3 Part(1) Retrieving Data Via T-SQL SQL Commands Categories Query Designer to construct select statements Retrieving data from multiple tables using joins and the WHERE clause criteria Exploit data for aggregate functions Data Modification with SQL Command Inserting new rows into tables Updating targeted data Deleting specific rows Developing Programming Constructs Creating stored proce...
Microsoft SQL Server Online Training Session -2 | Structuring the Database - Module 2
Переглядів 496 місяців тому
Structuring a relational database Select optimal file size and growth parameters Concept of Database Schemas Defining Tables Define appropriate data types Indexing tables Adding, modifying, or deleting columns Protect data with constraints Apply uniqueness via primary key constraints Authenticating conditions with check constraints Protecting relationships using Foreign Keys We are Consultant a...
Microsoft SQL Server Training Session-1| Overview Of Microsoft SQL Server - Module 1
Переглядів 706 місяців тому
Training Outline: 1. Overview Of Microsoft SQL Server-MSSQL 2. History Of MSSQL 3. Fundamental of RDBMS Database Engine 4. RDBMS Keys 5. Relational Module Types
Sales & Purchase Tracking Sheet.
Переглядів 186 місяців тому
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
Export MS SQL data to/from Excel using VBA | Session 2
Переглядів 386 місяців тому
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
Free Microsoft T-SQL Training | Beginner to Intermediate to Advance
Переглядів 46 місяців тому
We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
Export MS SQL data to/from Excel using VBA (free coding attached) | Session 1
Переглядів 556 місяців тому
A complete video on VBA Coding for extraction/updating data SQL Server to Excel sheet.. We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert. Code: General Section Public fMyConn As ADODB.Connection 'Public MyRec As ADODB.Command Public strSQ...
Move rows & columns one location to other in Excel sheet
Переглядів 167 місяців тому
How to move one row to another location without loosing data or How to copy row to other location or How to copy row to other location We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
Create Project Status Report in Excel Using Charts, formula: Datedif(), countif(), progress bar
Переглядів 297 місяців тому
This vidio demonstrated step by procedure to create status report in excel. it demostrated charts, bars and dash board. Using formulas like datedif(), use of countif(). We are Consultant and created channel to help the professionals those are facing critical issues. Our efforts to provide best and quick solutions to the viewer. Subscribe this channel to get new videos alert.
If() Condition in Excel Sheet With Conditional Formatting
Переглядів 277 місяців тому
If() Condition in Excel Sheet With Conditional Formatting
Hide Formula and lock the cell in Excel sheet
Переглядів 347 місяців тому
Hide Formula and lock the cell in Excel sheet
VBA easy Coding-Pulling Data From various sources
Переглядів 418 місяців тому
VBA easy Coding-Pulling Data From various sources
VLOOK with complicated 3 different Excel sheets
Переглядів 4910 місяців тому
VLOOK with complicated 3 different Excel sheets
Recurring Invoice - Oracle ERP Financials
Переглядів 4094 роки тому
Recurring Invoice - Oracle ERP Financials
Process with Holding Tax - Oracle ERP Financials
Переглядів 4664 роки тому
Process with Holding Tax - Oracle ERP Financials
Create Interest Invoice - Oracle ERP Financials R12
Переглядів 6934 роки тому
Create Interest Invoice - Oracle ERP Financials R12
Prepayment Process -Oracle ERP Payable R12
Переглядів 7 тис.4 роки тому
Prepayment Process -Oracle ERP Payable R12
Create Mixed Invoice and payments - Oracle ERP Financials R12
Переглядів 1,9 тис.4 роки тому
Create Mixed Invoice and payments - Oracle ERP Financials R12
Create Credit Memo and make a payment against CR
Переглядів 2,3 тис.4 роки тому
Create Credit Memo and make a payment against CR
Debit Memo Invoice & payment process - Payable
Переглядів 7 тис.4 роки тому
Debit Memo Invoice & payment process - Payable
Self Approve - Purchasing Requisition - Oracle Finance R12
Переглядів 3,4 тис.4 роки тому
Self Approve - Purchasing Requisition - Oracle Finance R12
OOAP0019 not enough periods defined - Oracle Finance R12
Переглядів 1,4 тис.4 роки тому
OOAP0019 not enough periods defined - Oracle Finance R12
good class, can you share doc?
Hi and thank you watching. What documents you are required?
you are showing in the video, seems pdf.
No this is not PDF but areal class
Like
Gotcha
It help
Like it
thank you! this resolved my issue.
You are welcome. I am glad too
Hello, I have a question if we posted an invoice in Oracle but need to do accounting changes in posted invoice, is it possible and how?? It's very helpful if you answer this.
Hi, It depends on what data you wanna change? Please elaborate in detail.
Nice job
Thank you
Good job
Please show the accounting entries also .. without that it is incomplete
Dear Sir My self Is Fresher For This Field, Can Touch Me How To become familiar For this field
Hi, please advise what you want to learn?
where is the voice?
Super
Thanks
no audio, whats the use of this?
good i like u
Thanks
no sound?
Do you have the same scenario when you are making the invoice with PO and then applying the debit memo?
Yes
Hello, where to extract prepayment status report. What user access, thank you
Subbed from Faiz Cuisine also.
Hi, There is no sound in any video.
Hey These video are on request to show on PowerPoint plus demonstration Next would be with voice Thank for watching . Please subscribe to get Alert Thanks