Oracle ERP HUB - By Naz
Oracle ERP HUB - By Naz
  • 31
  • 25 846
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.
มุมมอง: 18

วีดีโอ

Building Procedures،| Microsoft SQL Server Online Training session 3 (Part-4)
มุมมอง 364 หลายเดือนก่อน
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
มุมมอง 374 หลายเดือนก่อน
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
มุมมอง 144 หลายเดือนก่อน
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
มุมมอง 334 หลายเดือนก่อน
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
มุมมอง 434 หลายเดือนก่อน
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)
มุมมอง 1054 หลายเดือนก่อน
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
มุมมอง 464 หลายเดือนก่อน
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
มุมมอง 695 หลายเดือนก่อน
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.
มุมมอง 185 หลายเดือนก่อน
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
มุมมอง 385 หลายเดือนก่อน
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
มุมมอง 45 หลายเดือนก่อน
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
มุมมอง 455 หลายเดือนก่อน
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
มุมมอง 165 หลายเดือนก่อน
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
มุมมอง 276 หลายเดือนก่อน
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
มุมมอง 266 หลายเดือนก่อน
If() Condition in Excel Sheet With Conditional Formatting
Hide Formula and lock the cell in Excel sheet
มุมมอง 336 หลายเดือนก่อน
Hide Formula and lock the cell in Excel sheet
VBA easy Coding-Pulling Data From various sources
มุมมอง 416 หลายเดือนก่อน
VBA easy Coding-Pulling Data From various sources
VLOOK with complicated 3 different Excel sheets
มุมมอง 499 หลายเดือนก่อน
VLOOK with complicated 3 different Excel sheets
Recurring Invoice - Oracle ERP Financials
มุมมอง 3864 ปีที่แล้ว
Recurring Invoice - Oracle ERP Financials
Process with Holding Tax - Oracle ERP Financials
มุมมอง 4344 ปีที่แล้ว
Process with Holding Tax - Oracle ERP Financials
Create Interest Invoice - Oracle ERP Financials R12
มุมมอง 6624 ปีที่แล้ว
Create Interest Invoice - Oracle ERP Financials R12
Prepayment Process -Oracle ERP Payable R12
มุมมอง 7K4 ปีที่แล้ว
Prepayment Process -Oracle ERP Payable R12
Create Mixed Invoice and payments - Oracle ERP Financials R12
มุมมอง 1.9K4 ปีที่แล้ว
Create Mixed Invoice and payments - Oracle ERP Financials R12
Create Credit Memo and make a payment against CR
มุมมอง 2.2K4 ปีที่แล้ว
Create Credit Memo and make a payment against CR
Debit Memo Invoice & payment process - Payable
มุมมอง 7K4 ปีที่แล้ว
Debit Memo Invoice & payment process - Payable
Define Default Payment Method
มุมมอง 4414 ปีที่แล้ว
Define Default Payment Method
App-sqlap-10020: Rate Type
มุมมอง 4814 ปีที่แล้ว
App-sqlap-10020: Rate Type
Self Approve - Purchasing Requisition - Oracle Finance R12
มุมมอง 3.2K4 ปีที่แล้ว
Self Approve - Purchasing Requisition - Oracle Finance R12
OOAP0019 not enough periods defined - Oracle Finance R12
มุมมอง 1.3K4 ปีที่แล้ว
OOAP0019 not enough periods defined - Oracle Finance R12

ความคิดเห็น

  • @3170ccp
    @3170ccp 2 หลายเดือนก่อน

    good class, can you share doc?

    • @oracleerphub-bynaz6393
      @oracleerphub-bynaz6393 2 หลายเดือนก่อน

      Hi and thank you watching. What documents you are required?

    • @3170ccp
      @3170ccp 2 หลายเดือนก่อน

      you are showing in the video, seems pdf.

    • @oracleerphub-bynaz6393
      @oracleerphub-bynaz6393 หลายเดือนก่อน

      No this is not PDF but areal class

  • @nasiqbal06
    @nasiqbal06 4 หลายเดือนก่อน

    Like

  • @nasiqbal06
    @nasiqbal06 4 หลายเดือนก่อน

    Gotcha

  • @nasiqbal06
    @nasiqbal06 4 หลายเดือนก่อน

    It help

  • @nasiqbal06
    @nasiqbal06 4 หลายเดือนก่อน

    Like it

  • @DamienKelly1983
    @DamienKelly1983 5 หลายเดือนก่อน

    thank you! this resolved my issue.

  • @tanushreeaswal7211
    @tanushreeaswal7211 5 หลายเดือนก่อน

    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.

    • @oracleerphub-bynaz6393
      @oracleerphub-bynaz6393 5 หลายเดือนก่อน

      Hi, It depends on what data you wanna change? Please elaborate in detail.

  • @nasiqbal06
    @nasiqbal06 5 หลายเดือนก่อน

    Nice job

  • @nasiqbal06
    @nasiqbal06 6 หลายเดือนก่อน

    Good job

  • @gadderevathi
    @gadderevathi 2 ปีที่แล้ว

    Please show the accounting entries also .. without that it is incomplete

  • @madhankumar212
    @madhankumar212 2 ปีที่แล้ว

    Dear Sir My self Is Fresher For This Field, Can Touch Me How To become familiar For this field

  • @SamirDas-qq7ft
    @SamirDas-qq7ft 2 ปีที่แล้ว

    where is the voice?

  • @sangasuresh1976
    @sangasuresh1976 3 ปีที่แล้ว

    Super

  • @Nag998
    @Nag998 3 ปีที่แล้ว

    no audio, whats the use of this?

  • @hdsmart18
    @hdsmart18 3 ปีที่แล้ว

    good i like u

  • @bellgolden8679
    @bellgolden8679 3 ปีที่แล้ว

    no sound?

  • @vermakaran221
    @vermakaran221 3 ปีที่แล้ว

    Do you have the same scenario when you are making the invoice with PO and then applying the debit memo?

  • @memecentral2758
    @memecentral2758 4 ปีที่แล้ว

    Hello, where to extract prepayment status report. What user access, thank you

  • @faizcuisine8195
    @faizcuisine8195 4 ปีที่แล้ว

    Subbed from Faiz Cuisine also.

  • @MdKamal-yn1um
    @MdKamal-yn1um 4 ปีที่แล้ว

    Hi, There is no sound in any video.

    • @oracleerphub-bynaz6393
      @oracleerphub-bynaz6393 4 ปีที่แล้ว

      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