SlideShare una empresa de Scribd logo
1 de 43
Descargar para leer sin conexión
1
© 2011 Oracle Corporation – Proprietary and Confidential
<Insert Picture Here>
e-Commerce Gateway 810 Outbound Setup & Usage
(Pre-Recorded Session – October 2011)
Michele Casey, Principal Technical Support Engineer
Safe Harbor Statement
The following is intended to outline our general
d t di ti It i i t d d f i f ti
product direction. It is intended for information
purposes only, and may not be incorporated into any
contract. It is not a commitment to deliver any
y
material, code, or functionality, and should not be
relied upon in making purchasing decision. The
d l l d i i f f
development, release, and timing of any features or
functionality described for Oracle’s products remains
at the sole discretion of Oracle
at the sole discretion of Oracle.
3
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
Troubleshooting & Frequently Asked Questions
• Troubleshooting & Frequently Asked Questions
4
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
p
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
• Troubleshooting & Frequently Asked Questions
5
© 2011 Oracle Corporation – Proprietary and Confidential
What is EDI?
• EDI stands for Electronic Data Interchange.
• EDI implies the electronic processing of routine business
documents in a standard format from one computer to another
documents in a standard format from one computer to another
computer, ultimately from the sender’s application to the
receiver’s application.
6
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
p
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
• Troubleshooting & Frequently Asked Questions
7
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
• Define File Directories
• Set Profile Options
• Test Profile Options
• Customize Transaction Interface File formats (if needed)
• Define Trading Partners
g
• Define Code Conversions for the trading partner (if needed)
8
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Define File Directories
Define File Directories
• Add an environment variable "utl_file_dir" in
$ORACLE HOME/dbs/init ora
$ORACLE_HOME/dbs/init.ora
• Example: utl_file_dir = /usr/tmp
Note: Path must be exactly same as the one defined in Profile Option
• Ensure the defined directory is accessible and not write protected.
• If directory is protected, use "CHMOD 777" in Unix to grant
access.
9
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Setup Profile Options
Navigation: e-Commerce Gateway -> Setup -> Profiles
p p
10
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Setup Profile Options
Navigation: System Administrator Responsibility -> Profile -> System
p p
11
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Test Profile Options
p
• Script to test an output file:
SQL>declare uFile type utl file file type;
SQL>declare uFile_type utl_file.file_type;
cOutputPath varchar2(20):='&file_path';
cFilename varchar2(20):='&file_name';
l_line_text varchar2(80):='Sample test data.';
begin
uFile_type := utl_file.fopen(cOutputPath, cFilename, 'W');
dbms_output.put_line('FILE OPENED FOR WRITING');
utl file put line(uFile type l line text);
utl_file.put_line(uFile_type, l_line_text);
dbms_output.put_line('DATA WRITTEN');
utl_file.fclose(uFile_type);
end;
/
/
• You will be prompted for your file path and a file name.
12
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Customize Transactions Interface File Formats (optional)
Customize Transactions Interface File Formats (optional)
• Navigation: Setup -> Interface File Definition
• Interface File Modification Restrictions
• Data elements must remain in the same transaction level.
D t l th i th t ti i t f fil t t d th d t
• Data length in the transaction interface file must not exceed the data
length in Oracle Application.
• Only elements already existing in interface tables can be activated.
• Keep one column in the Flexfield set in the transaction
• Keep one column in the Flexfield set in the transaction.
• Do not modify the address detail records.
13
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Customize Transactions Interface File Formats (optional)
14
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Define Trading Partners
g
Navigation: EDI -> Trading Partners
15
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Define Trading Partners
g
16
© 2011 Oracle Corporation – Proprietary and Confidential
810 Outbound Setup
Define Code Conversions
Define Code Conversions (optional)
Navigation: Setup -> Interface File Definition
Examples of Code Conversions:
• Oracle Applications Codes to EDI Standard Codes
Data defined in the Oracle Applications, for example, unit of
pp , p ,
measure, carrier, FOB point, are converted to the
corresponding codes required by your chosen EDI Standard.
Oracle Applications Codes to User Specific Codes
• Oracle Applications Codes to User-Specific Codes
Data defined in the Oracle Applications, for example, ship via,
may need a code defined for each trading partner. The trading
partner may require their original codes to be returned on each
partner may require their original codes to be returned on each
transaction.
17
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
p
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
• Troubleshooting & Frequently Asked Questions
18
© 2011 Oracle Corporation – Proprietary and Confidential
EDI Process Flow
• EDI uses VAN (value-added network) to
• receive transactions
• examine the 'from' and the 'to' information
examine the from and the to information
• route the transaction to the final recipient
• The VAN is responsible for routing, storing and delivering EDI
messages
messages.
• They also provide delivery reports.
• Some of Examples of Value Added Networks:
AT&T
• AT&T
• Advantis
• Harbinger
St li C
• Sterling Commerce
19
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
p
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
• Troubleshooting & Frequently Asked Questions
20
© 2011 Oracle Corporation – Proprietary and Confidential
Creation of File
Running the 810 Outbound
Running the 810 Outbound
E-Commerce Gateway > Processes > Extract
21
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
p
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
• Troubleshooting & Frequently Asked Questions
22
© 2011 Oracle Corporation – Proprietary and Confidential
E-Commerce Gateway Reports
• Trading Partners Report
• Code Conversion Values Report
• Transaction Layout Definition Report
• Interface File Data Report
23
© 2011 Oracle Corporation – Proprietary and Confidential
E-Commerce Gateway Reports
Trading Report
g p
Purpose: List Trading Partner Detail given the selection criteria
24
© 2011 Oracle Corporation – Proprietary and Confidential
E-Commerce Gateway Reports
Code Conversion Values Report
Code Conversion Values Report
Purpose: List Code Conversion Values that were entered by code category
or specific values
25
© 2011 Oracle Corporation – Proprietary and Confidential
E-Commerce Gateway
Transaction Layout Definition Report
y p
Purpose: List transaction record layout for all or specific transactions
26
© 2011 Oracle Corporation – Proprietary and Confidential
E-Commerce Gateway Reports
Transaction/Trading Partners Report
g p
Purpose: List the Trading Partners enabled for a transaction
27
© 2011 Oracle Corporation – Proprietary and Confidential
E-Commerce Gateway Reports
Interface File Data Report
p
Purpose: List the transaction data in the file against the record layout
28
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
p
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
• Troubleshooting & Frequently Asked Questions
29
© 2011 Oracle Corporation – Proprietary and Confidential
List of EDI Programs
File Name Description
ECEINO2.sql This is the source file to support the
q pp
outbound invoice transaction.
• The ASC X12 name is 810
• The EDIFACT name is INVOIC
ECEINOS.pls/ECEINOB.pls SQL script to create
ECE_AR_TRANSACTION package
(spec/body)
ECEINOXS.pls/ECEINOXB.pls Extensible Architecture package
eceino.odf Object description file that contains all
th i /t bl f th 810 O tb d
the views/tables for the 810 Outbound
30
© 2011 Oracle Corporation – Proprietary and Confidential
List of EDI Programs
File Name Report
ECRDTPT.rdf Trading Partners Report
ECRDCCV.rdf Code Conversion Values Report
ECRDTLD df T ti L t D fi iti
ECRDTLD.rdf Transaction Layout Definition
Report
ECRDIFD rdf Interface File Data Report
ECRDIFD.rdf Interface File Data Report
ECRDTPD.rdf Transaction/Trading Partners
31
© 2011 Oracle Corporation – Proprietary and Confidential
Program Agenda
• What Is EDI?
• 810 Outbound Setup
• EDI Process Flow
• Creation of File
• E-Commerce Gateway Reports
• List of EDI Programs
Troubleshooting & Frequently Asked Questions
• Troubleshooting & Frequently Asked Questions
32
© 2011 Oracle Corporation – Proprietary and Confidential
Troubleshooting & FAQs
• If an invoice has been printed in Receivables and is set up in EDI
with a trading partner you will need to update some fields on the
back end in order to run the extract
back end in order to run the extract.
• To update:
update ra_customer_trx_all
set printing_pending = 'Y',
printing_count = NULL,
printing_last_printed = NULL,
printing_original_date = NULL,
EDI_processed_flag = 'N',
EDI_processed_status = NULL
where customer_trx_id =
33
© 2011 Oracle Corporation – Proprietary and Confidential
Troubleshooting & FAQs
Warnings From The ECEINO Log File
• Progress level 2060-50: No row selected for DISCOUNT information
from table RA_TERMS_LINES_DISCOUNTS.
Warnings From The ECEINO Log File
• Message in the log files indicates that there are no discounts on the
invoice
• Progress level 2854-70: No ALLOWANCE CHARGES level rows
d f t ti INO
processed for transaction INO.
• The ece_ino_allowance_charges_v retrieves the data from the
ra_customer_trx_lines table where the line_type = 'freight'.
• It is possible that the invoices for the customer have no freight
• It is possible that the invoices for the customer have no freight
information
34
© 2011 Oracle Corporation – Proprietary and Confidential
Troubleshooting & FAQs
Warnings From The ECEINO Log File
• Progress level 2854-70: No HEADER level rows processed for
transaction INO.
Warnings From The ECEINO Log File
• How to Troubleshoot ECEINO Failing For: No HEADER level rows
processed for transaction INO (Doc ID 261354.1)
• Progress level 2854-70: No LINE level rows processed for
transaction INO.
• 810 Outbound (INO) only prints header information Log File Shows:
No LINE level rows processed for transaction INO (Doc ID
263841.1)
35
© 2011 Oracle Corporation – Proprietary and Confidential
Troubleshooting & FAQs
Seed Data Reconciliation
Seed Data Reconciliation
• In the context of the e-Commerce Gateway, the Seed Data
Reconciliation (SDR) affects the following:
Reconciliation (SDR) affects the following:
• Definition of transaction record layouts
• Assignment of code categories to a transaction record layout
• Definition of process rules associated with a transaction
• Definition of process rules associated with a transaction
• Definition of column rules associated with a transaction
Reference: Doc ID 211771 1 R11i EDI / e Commerce Gateway Seed
Reference: Doc ID 211771.1 - R11i EDI / e-Commerce Gateway Seed
Data Reconciliation
36
© 2011 Oracle Corporation – Proprietary and Confidential
Troubleshooting & FAQs
Where is the Data?
If data is incorrect or missing from the flat file:
1. Run the Interface File Data Report on the .dat file
2. Run the Invoice Diagnostics and OM Diagnostics if the invoice is from
Order Management
3. Determine if the missing/incorrect information is from the header or
line level This is based on the Record number:
line level. This is based on the Record number:
• Control Record – Record 0010
• Gateway header Flexfields – Record 0020-0070
• Application Data Record 1000 9999
• Application Data- Record 1000-9999
• Header up to 2060, Lines from 2100
4. Review the Electronic Technical Reference Manual (eTRM) for details
on the header and line view
on the header and line view
• ece_ino_header_v
• ece_ino_line_v
• ece ino allowance charges v
37
ece_ino_allowance_charges_v
© 2011 Oracle Corporation – Proprietary and Confidential
For More Information
• Electronic Technical Reference Manual (ETRM) - http://etrm.oracle.com/
• Doc ID 732198.1 Oracle Receivables (AR): EDI Setup Diagnostic Test
( ) p g
• Doc ID 431370.1 Oracle Receivables (AR): Transaction Diagnostics
• Doc ID 732148.1 Oracle Order Management Sales Order Setup Test
• Doc ID198252.1 - How To Setup EDI 810 Outbound and 812 Outbound
Doc ID198252.1 How To Setup EDI 810 Outbound and 812 Outbound
• Doc ID 211771.1 - R11i EDI Seed Data Reconciliation
• Doc ID 261354.1 - How to Troubleshoot ECEINO failing for: No HEADER
level rows processed for transaction INO
38
© 2011 Oracle Corporation – Proprietary and Confidential
For More Information
• My Oracle Support Receivables Community
https://communities.oracle.com/portal/server.pt/community/receivables/233
• Receivables Community Thread for follow up questions and discussions on
this webcast:
• https://communities.oracle.com/portal/server.pt/community/view_discussion_topic/216?threa
did=245193
• Check out the Advisor Webcast Schedule (Doc ID 740966.1) for a listing of
all upcoming live webcasts. Links to recorded live events can be found in
the Advisor Webcast Archive (Doc ID 740964.1).
• PDF of previously recorded Receivables events can be downloaded from
the Receivables All Community Documents area.
• Once in My Oracle Support, select the Community Tab
• Select the Receivables Community from the My Communities
box
• Expand the “Receivables All Community Documents” area.
39
© 2011 Oracle Corporation – Proprietary and Confidential
Share Your Feedback
• What topics would you like to see us cover in a live
Receivables Community Advisor Webcast or recorded
event?
event?
• Have a request or comment relating to an E-Business Suite
Community, E-Business Suite Community Webcast, or E-
Business Suite Community Webcast topic(s)?
Business Suite Community Webcast topic(s)?
• Would you like to see more of these pre-recorded sessions
for consumption on demand?
Email: annemarie.provisero@oracle.com
40
© 2011 Oracle Corporation – Proprietary and Confidential
Questions
R i bl C it Th d f f ll
Questions
• Receivables Community Thread for follow up
questions and discussions on e-Commerce Gateway
810 Outbound Setup & Usage recorded webcast
https://communities.oracle.com/portal/server.pt/com
p p p
munity/view_discussion_topic/216?threadid=245193
• My Oracle Support Receivables Community
My Oracle Support Receivables Community
https://communities.oracle.com/portal/server.pt/com
munity/receivables/233
41
© 2011 Oracle Corporation – Proprietary and Confidential
42
© 2011 Oracle Corporation – Proprietary and Confidential
43
© 2011 Oracle Corporation – Proprietary and Confidential

Más contenido relacionado

La actualidad más candente

Oracle 資料庫檔案介紹
Oracle 資料庫檔案介紹Oracle 資料庫檔案介紹
Oracle 資料庫檔案介紹Chien Chung Shen
 
TRANSITIONING from ACCOUNT GENERATOR SLA
TRANSITIONING from ACCOUNT GENERATOR SLA TRANSITIONING from ACCOUNT GENERATOR SLA
TRANSITIONING from ACCOUNT GENERATOR SLA Navin Chaitanya
 
Dynamic date parameters in bi report
Dynamic date parameters in bi reportDynamic date parameters in bi report
Dynamic date parameters in bi reportFeras Ahmad
 
Oracle R12.1.2 and R12.1.3 features
Oracle R12.1.2 and R12.1.3 featuresOracle R12.1.2 and R12.1.3 features
Oracle R12.1.2 and R12.1.3 featuresravisagaram
 
11 Understanding and Influencing the PL/SQL Compilar
11 Understanding and Influencing the PL/SQL Compilar11 Understanding and Influencing the PL/SQL Compilar
11 Understanding and Influencing the PL/SQL Compilarrehaniltifat
 
Oracle inventory R12 Setup Guide
Oracle inventory R12 Setup GuideOracle inventory R12 Setup Guide
Oracle inventory R12 Setup GuideAhmed Elshayeb
 
Oracle Receivables ivas
Oracle Receivables ivasOracle Receivables ivas
Oracle Receivables ivasAli Ibrahim
 
White Paper Oracle Subledger Accounting
White Paper Oracle Subledger AccountingWhite Paper Oracle Subledger Accounting
White Paper Oracle Subledger AccountingSandeep Vantmuriswami
 
Query all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion CloudQuery all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion CloudFeras Ahmad
 
Oracle管理藝術第1章 在Linux作業體統安裝Oracle 11g
Oracle管理藝術第1章 在Linux作業體統安裝Oracle 11gOracle管理藝術第1章 在Linux作業體統安裝Oracle 11g
Oracle管理藝術第1章 在Linux作業體統安裝Oracle 11gChien Chung Shen
 
Webadi -a_sample_implementation
Webadi  -a_sample_implementationWebadi  -a_sample_implementation
Webadi -a_sample_implementationAshish Harbhajanka
 
Top 40 sql queries for testers
Top 40 sql queries for testersTop 40 sql queries for testers
Top 40 sql queries for testerstlvd
 
OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...
OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...
OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...vasuballa
 
Oracle Purchasing ivas
Oracle Purchasing ivasOracle Purchasing ivas
Oracle Purchasing ivasAli Ibrahim
 
1. Aircraft Fabric Covering1.pptx
1. Aircraft Fabric Covering1.pptx1. Aircraft Fabric Covering1.pptx
1. Aircraft Fabric Covering1.pptxNinoJayFrancisco
 
Query Worker Contracts Details Oracle Fusion Cloud
Query Worker Contracts Details Oracle Fusion CloudQuery Worker Contracts Details Oracle Fusion Cloud
Query Worker Contracts Details Oracle Fusion CloudFeras Ahmad
 
Calendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementCalendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementFeras Ahmad
 

La actualidad más candente (20)

Oracle 資料庫檔案介紹
Oracle 資料庫檔案介紹Oracle 資料庫檔案介紹
Oracle 資料庫檔案介紹
 
TRANSITIONING from ACCOUNT GENERATOR SLA
TRANSITIONING from ACCOUNT GENERATOR SLA TRANSITIONING from ACCOUNT GENERATOR SLA
TRANSITIONING from ACCOUNT GENERATOR SLA
 
Understanding index
Understanding indexUnderstanding index
Understanding index
 
Multi org-r12
Multi org-r12Multi org-r12
Multi org-r12
 
Dynamic date parameters in bi report
Dynamic date parameters in bi reportDynamic date parameters in bi report
Dynamic date parameters in bi report
 
Oracle R12.1.2 and R12.1.3 features
Oracle R12.1.2 and R12.1.3 featuresOracle R12.1.2 and R12.1.3 features
Oracle R12.1.2 and R12.1.3 features
 
11 Understanding and Influencing the PL/SQL Compilar
11 Understanding and Influencing the PL/SQL Compilar11 Understanding and Influencing the PL/SQL Compilar
11 Understanding and Influencing the PL/SQL Compilar
 
Oracle inventory R12 Setup Guide
Oracle inventory R12 Setup GuideOracle inventory R12 Setup Guide
Oracle inventory R12 Setup Guide
 
Oracle Receivables ivas
Oracle Receivables ivasOracle Receivables ivas
Oracle Receivables ivas
 
White Paper Oracle Subledger Accounting
White Paper Oracle Subledger AccountingWhite Paper Oracle Subledger Accounting
White Paper Oracle Subledger Accounting
 
Query all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion CloudQuery all roles and duties and privileges Oracle Fusion Cloud
Query all roles and duties and privileges Oracle Fusion Cloud
 
Oracle管理藝術第1章 在Linux作業體統安裝Oracle 11g
Oracle管理藝術第1章 在Linux作業體統安裝Oracle 11gOracle管理藝術第1章 在Linux作業體統安裝Oracle 11g
Oracle管理藝術第1章 在Linux作業體統安裝Oracle 11g
 
Webadi -a_sample_implementation
Webadi  -a_sample_implementationWebadi  -a_sample_implementation
Webadi -a_sample_implementation
 
Top 40 sql queries for testers
Top 40 sql queries for testersTop 40 sql queries for testers
Top 40 sql queries for testers
 
OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...
OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...
OOW16 - Oracle E-Business Suite: What’s New in Release 12.2 Beyond Online Pat...
 
Oracle Purchasing ivas
Oracle Purchasing ivasOracle Purchasing ivas
Oracle Purchasing ivas
 
1. Aircraft Fabric Covering1.pptx
1. Aircraft Fabric Covering1.pptx1. Aircraft Fabric Covering1.pptx
1. Aircraft Fabric Covering1.pptx
 
Query Worker Contracts Details Oracle Fusion Cloud
Query Worker Contracts Details Oracle Fusion CloudQuery Worker Contracts Details Oracle Fusion Cloud
Query Worker Contracts Details Oracle Fusion Cloud
 
23 workflow approvals
23 workflow approvals23 workflow approvals
23 workflow approvals
 
Calendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence managementCalendar working days and holidays for Oracle EBS R12 Absence management
Calendar working days and holidays for Oracle EBS R12 Absence management
 

Similar a oracle EDI 906354ydoByranib.pdf

200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More
200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More
200 OK v5.0: Unveiling Powerful ETL, Connector Framework and MoreCEPTES Software Inc
 
Fusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data IntegratorFusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data IntegratorMark Rabne
 
PDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT VersionPDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT VersionPeter Doolan
 
Building Cloud-Native Applications with Helidon
Building Cloud-Native Applications with HelidonBuilding Cloud-Native Applications with Helidon
Building Cloud-Native Applications with HelidonDmitry Kornilov
 
David McGraw resume 01092015
David McGraw resume 01092015David McGraw resume 01092015
David McGraw resume 01092015David McGraw
 
Service everywhere using oracle integration repository
Service everywhere using oracle integration repositoryService everywhere using oracle integration repository
Service everywhere using oracle integration repositoryPavan B
 
Oracle database 12c_and_DevOps
Oracle database 12c_and_DevOpsOracle database 12c_and_DevOps
Oracle database 12c_and_DevOpsMaria Colgan
 
ALE EDI.pdf
ALE EDI.pdfALE EDI.pdf
ALE EDI.pdfMAshok10
 
Oracle forms les01
Oracle forms  les01Oracle forms  les01
Oracle forms les01Abed Othman
 
How to design functional architecture.ppt
How to design functional architecture.pptHow to design functional architecture.ppt
How to design functional architecture.pptssuser50762b
 
OIM Connector for Webservices
OIM Connector for WebservicesOIM Connector for Webservices
OIM Connector for WebservicesAtul Goyal
 
Ale idoc training kit sap Anilkumar chowdary
Ale idoc training kit sap Anilkumar chowdaryAle idoc training kit sap Anilkumar chowdary
Ale idoc training kit sap Anilkumar chowdaryANILKUMARPULIPATI1
 
Data Governance - Atlas 7.12.2015
Data Governance - Atlas 7.12.2015Data Governance - Atlas 7.12.2015
Data Governance - Atlas 7.12.2015Hortonworks
 
OracleWorld 2002 Whitepaper Web Services in E-Business Suite
OracleWorld 2002 Whitepaper Web Services in E-Business SuiteOracleWorld 2002 Whitepaper Web Services in E-Business Suite
OracleWorld 2002 Whitepaper Web Services in E-Business SuiteRajesh Raheja
 

Similar a oracle EDI 906354ydoByranib.pdf (20)

200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More
200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More
200 OK v5.0: Unveiling Powerful ETL, Connector Framework and More
 
Pranayesh
PranayeshPranayesh
Pranayesh
 
Fusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data IntegratorFusion Middleware Oracle Data Integrator
Fusion Middleware Oracle Data Integrator
 
Praveen_K_CV
Praveen_K_CVPraveen_K_CV
Praveen_K_CV
 
PDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT VersionPDoolan Oracle Overview PPT Version
PDoolan Oracle Overview PPT Version
 
Resume
ResumeResume
Resume
 
Ale IDOC
Ale IDOCAle IDOC
Ale IDOC
 
Talend preso (1)
Talend preso (1)Talend preso (1)
Talend preso (1)
 
Building Cloud-Native Applications with Helidon
Building Cloud-Native Applications with HelidonBuilding Cloud-Native Applications with Helidon
Building Cloud-Native Applications with Helidon
 
David McGraw resume 01092015
David McGraw resume 01092015David McGraw resume 01092015
David McGraw resume 01092015
 
Service everywhere using oracle integration repository
Service everywhere using oracle integration repositoryService everywhere using oracle integration repository
Service everywhere using oracle integration repository
 
Oracle database 12c_and_DevOps
Oracle database 12c_and_DevOpsOracle database 12c_and_DevOps
Oracle database 12c_and_DevOps
 
ALE EDI.pdf
ALE EDI.pdfALE EDI.pdf
ALE EDI.pdf
 
Oracle forms les01
Oracle forms  les01Oracle forms  les01
Oracle forms les01
 
How to design functional architecture.ppt
How to design functional architecture.pptHow to design functional architecture.ppt
How to design functional architecture.ppt
 
OIM Connector for Webservices
OIM Connector for WebservicesOIM Connector for Webservices
OIM Connector for Webservices
 
Ale idoc training kit sap Anilkumar chowdary
Ale idoc training kit sap Anilkumar chowdaryAle idoc training kit sap Anilkumar chowdary
Ale idoc training kit sap Anilkumar chowdary
 
Data Governance - Atlas 7.12.2015
Data Governance - Atlas 7.12.2015Data Governance - Atlas 7.12.2015
Data Governance - Atlas 7.12.2015
 
Oracle Apex_24Apr2015_v2
Oracle Apex_24Apr2015_v2Oracle Apex_24Apr2015_v2
Oracle Apex_24Apr2015_v2
 
OracleWorld 2002 Whitepaper Web Services in E-Business Suite
OracleWorld 2002 Whitepaper Web Services in E-Business SuiteOracleWorld 2002 Whitepaper Web Services in E-Business Suite
OracleWorld 2002 Whitepaper Web Services in E-Business Suite
 

Último

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfryanfarris8
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...software pro Development
 

Último (20)

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 

oracle EDI 906354ydoByranib.pdf

  • 1. 1 © 2011 Oracle Corporation – Proprietary and Confidential
  • 2. <Insert Picture Here> e-Commerce Gateway 810 Outbound Setup & Usage (Pre-Recorded Session – October 2011) Michele Casey, Principal Technical Support Engineer
  • 3. Safe Harbor Statement The following is intended to outline our general d t di ti It i i t d d f i f ti product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any y material, code, or functionality, and should not be relied upon in making purchasing decision. The d l l d i i f f development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle at the sole discretion of Oracle. 3 © 2011 Oracle Corporation – Proprietary and Confidential
  • 4. Program Agenda • What Is EDI? • 810 Outbound Setup • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs Troubleshooting & Frequently Asked Questions • Troubleshooting & Frequently Asked Questions 4 © 2011 Oracle Corporation – Proprietary and Confidential
  • 5. Program Agenda • What Is EDI? • 810 Outbound Setup p • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs • Troubleshooting & Frequently Asked Questions 5 © 2011 Oracle Corporation – Proprietary and Confidential
  • 6. What is EDI? • EDI stands for Electronic Data Interchange. • EDI implies the electronic processing of routine business documents in a standard format from one computer to another documents in a standard format from one computer to another computer, ultimately from the sender’s application to the receiver’s application. 6 © 2011 Oracle Corporation – Proprietary and Confidential
  • 7. Program Agenda • What Is EDI? • 810 Outbound Setup p • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs • Troubleshooting & Frequently Asked Questions 7 © 2011 Oracle Corporation – Proprietary and Confidential
  • 8. 810 Outbound Setup • Define File Directories • Set Profile Options • Test Profile Options • Customize Transaction Interface File formats (if needed) • Define Trading Partners g • Define Code Conversions for the trading partner (if needed) 8 © 2011 Oracle Corporation – Proprietary and Confidential
  • 9. 810 Outbound Setup Define File Directories Define File Directories • Add an environment variable "utl_file_dir" in $ORACLE HOME/dbs/init ora $ORACLE_HOME/dbs/init.ora • Example: utl_file_dir = /usr/tmp Note: Path must be exactly same as the one defined in Profile Option • Ensure the defined directory is accessible and not write protected. • If directory is protected, use "CHMOD 777" in Unix to grant access. 9 © 2011 Oracle Corporation – Proprietary and Confidential
  • 10. 810 Outbound Setup Setup Profile Options Navigation: e-Commerce Gateway -> Setup -> Profiles p p 10 © 2011 Oracle Corporation – Proprietary and Confidential
  • 11. 810 Outbound Setup Setup Profile Options Navigation: System Administrator Responsibility -> Profile -> System p p 11 © 2011 Oracle Corporation – Proprietary and Confidential
  • 12. 810 Outbound Setup Test Profile Options p • Script to test an output file: SQL>declare uFile type utl file file type; SQL>declare uFile_type utl_file.file_type; cOutputPath varchar2(20):='&file_path'; cFilename varchar2(20):='&file_name'; l_line_text varchar2(80):='Sample test data.'; begin uFile_type := utl_file.fopen(cOutputPath, cFilename, 'W'); dbms_output.put_line('FILE OPENED FOR WRITING'); utl file put line(uFile type l line text); utl_file.put_line(uFile_type, l_line_text); dbms_output.put_line('DATA WRITTEN'); utl_file.fclose(uFile_type); end; / / • You will be prompted for your file path and a file name. 12 © 2011 Oracle Corporation – Proprietary and Confidential
  • 13. 810 Outbound Setup Customize Transactions Interface File Formats (optional) Customize Transactions Interface File Formats (optional) • Navigation: Setup -> Interface File Definition • Interface File Modification Restrictions • Data elements must remain in the same transaction level. D t l th i th t ti i t f fil t t d th d t • Data length in the transaction interface file must not exceed the data length in Oracle Application. • Only elements already existing in interface tables can be activated. • Keep one column in the Flexfield set in the transaction • Keep one column in the Flexfield set in the transaction. • Do not modify the address detail records. 13 © 2011 Oracle Corporation – Proprietary and Confidential
  • 14. 810 Outbound Setup Customize Transactions Interface File Formats (optional) 14 © 2011 Oracle Corporation – Proprietary and Confidential
  • 15. 810 Outbound Setup Define Trading Partners g Navigation: EDI -> Trading Partners 15 © 2011 Oracle Corporation – Proprietary and Confidential
  • 16. 810 Outbound Setup Define Trading Partners g 16 © 2011 Oracle Corporation – Proprietary and Confidential
  • 17. 810 Outbound Setup Define Code Conversions Define Code Conversions (optional) Navigation: Setup -> Interface File Definition Examples of Code Conversions: • Oracle Applications Codes to EDI Standard Codes Data defined in the Oracle Applications, for example, unit of pp , p , measure, carrier, FOB point, are converted to the corresponding codes required by your chosen EDI Standard. Oracle Applications Codes to User Specific Codes • Oracle Applications Codes to User-Specific Codes Data defined in the Oracle Applications, for example, ship via, may need a code defined for each trading partner. The trading partner may require their original codes to be returned on each partner may require their original codes to be returned on each transaction. 17 © 2011 Oracle Corporation – Proprietary and Confidential
  • 18. Program Agenda • What Is EDI? • 810 Outbound Setup p • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs • Troubleshooting & Frequently Asked Questions 18 © 2011 Oracle Corporation – Proprietary and Confidential
  • 19. EDI Process Flow • EDI uses VAN (value-added network) to • receive transactions • examine the 'from' and the 'to' information examine the from and the to information • route the transaction to the final recipient • The VAN is responsible for routing, storing and delivering EDI messages messages. • They also provide delivery reports. • Some of Examples of Value Added Networks: AT&T • AT&T • Advantis • Harbinger St li C • Sterling Commerce 19 © 2011 Oracle Corporation – Proprietary and Confidential
  • 20. Program Agenda • What Is EDI? • 810 Outbound Setup p • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs • Troubleshooting & Frequently Asked Questions 20 © 2011 Oracle Corporation – Proprietary and Confidential
  • 21. Creation of File Running the 810 Outbound Running the 810 Outbound E-Commerce Gateway > Processes > Extract 21 © 2011 Oracle Corporation – Proprietary and Confidential
  • 22. Program Agenda • What Is EDI? • 810 Outbound Setup p • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs • Troubleshooting & Frequently Asked Questions 22 © 2011 Oracle Corporation – Proprietary and Confidential
  • 23. E-Commerce Gateway Reports • Trading Partners Report • Code Conversion Values Report • Transaction Layout Definition Report • Interface File Data Report 23 © 2011 Oracle Corporation – Proprietary and Confidential
  • 24. E-Commerce Gateway Reports Trading Report g p Purpose: List Trading Partner Detail given the selection criteria 24 © 2011 Oracle Corporation – Proprietary and Confidential
  • 25. E-Commerce Gateway Reports Code Conversion Values Report Code Conversion Values Report Purpose: List Code Conversion Values that were entered by code category or specific values 25 © 2011 Oracle Corporation – Proprietary and Confidential
  • 26. E-Commerce Gateway Transaction Layout Definition Report y p Purpose: List transaction record layout for all or specific transactions 26 © 2011 Oracle Corporation – Proprietary and Confidential
  • 27. E-Commerce Gateway Reports Transaction/Trading Partners Report g p Purpose: List the Trading Partners enabled for a transaction 27 © 2011 Oracle Corporation – Proprietary and Confidential
  • 28. E-Commerce Gateway Reports Interface File Data Report p Purpose: List the transaction data in the file against the record layout 28 © 2011 Oracle Corporation – Proprietary and Confidential
  • 29. Program Agenda • What Is EDI? • 810 Outbound Setup p • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs • Troubleshooting & Frequently Asked Questions 29 © 2011 Oracle Corporation – Proprietary and Confidential
  • 30. List of EDI Programs File Name Description ECEINO2.sql This is the source file to support the q pp outbound invoice transaction. • The ASC X12 name is 810 • The EDIFACT name is INVOIC ECEINOS.pls/ECEINOB.pls SQL script to create ECE_AR_TRANSACTION package (spec/body) ECEINOXS.pls/ECEINOXB.pls Extensible Architecture package eceino.odf Object description file that contains all th i /t bl f th 810 O tb d the views/tables for the 810 Outbound 30 © 2011 Oracle Corporation – Proprietary and Confidential
  • 31. List of EDI Programs File Name Report ECRDTPT.rdf Trading Partners Report ECRDCCV.rdf Code Conversion Values Report ECRDTLD df T ti L t D fi iti ECRDTLD.rdf Transaction Layout Definition Report ECRDIFD rdf Interface File Data Report ECRDIFD.rdf Interface File Data Report ECRDTPD.rdf Transaction/Trading Partners 31 © 2011 Oracle Corporation – Proprietary and Confidential
  • 32. Program Agenda • What Is EDI? • 810 Outbound Setup • EDI Process Flow • Creation of File • E-Commerce Gateway Reports • List of EDI Programs Troubleshooting & Frequently Asked Questions • Troubleshooting & Frequently Asked Questions 32 © 2011 Oracle Corporation – Proprietary and Confidential
  • 33. Troubleshooting & FAQs • If an invoice has been printed in Receivables and is set up in EDI with a trading partner you will need to update some fields on the back end in order to run the extract back end in order to run the extract. • To update: update ra_customer_trx_all set printing_pending = 'Y', printing_count = NULL, printing_last_printed = NULL, printing_original_date = NULL, EDI_processed_flag = 'N', EDI_processed_status = NULL where customer_trx_id = 33 © 2011 Oracle Corporation – Proprietary and Confidential
  • 34. Troubleshooting & FAQs Warnings From The ECEINO Log File • Progress level 2060-50: No row selected for DISCOUNT information from table RA_TERMS_LINES_DISCOUNTS. Warnings From The ECEINO Log File • Message in the log files indicates that there are no discounts on the invoice • Progress level 2854-70: No ALLOWANCE CHARGES level rows d f t ti INO processed for transaction INO. • The ece_ino_allowance_charges_v retrieves the data from the ra_customer_trx_lines table where the line_type = 'freight'. • It is possible that the invoices for the customer have no freight • It is possible that the invoices for the customer have no freight information 34 © 2011 Oracle Corporation – Proprietary and Confidential
  • 35. Troubleshooting & FAQs Warnings From The ECEINO Log File • Progress level 2854-70: No HEADER level rows processed for transaction INO. Warnings From The ECEINO Log File • How to Troubleshoot ECEINO Failing For: No HEADER level rows processed for transaction INO (Doc ID 261354.1) • Progress level 2854-70: No LINE level rows processed for transaction INO. • 810 Outbound (INO) only prints header information Log File Shows: No LINE level rows processed for transaction INO (Doc ID 263841.1) 35 © 2011 Oracle Corporation – Proprietary and Confidential
  • 36. Troubleshooting & FAQs Seed Data Reconciliation Seed Data Reconciliation • In the context of the e-Commerce Gateway, the Seed Data Reconciliation (SDR) affects the following: Reconciliation (SDR) affects the following: • Definition of transaction record layouts • Assignment of code categories to a transaction record layout • Definition of process rules associated with a transaction • Definition of process rules associated with a transaction • Definition of column rules associated with a transaction Reference: Doc ID 211771 1 R11i EDI / e Commerce Gateway Seed Reference: Doc ID 211771.1 - R11i EDI / e-Commerce Gateway Seed Data Reconciliation 36 © 2011 Oracle Corporation – Proprietary and Confidential
  • 37. Troubleshooting & FAQs Where is the Data? If data is incorrect or missing from the flat file: 1. Run the Interface File Data Report on the .dat file 2. Run the Invoice Diagnostics and OM Diagnostics if the invoice is from Order Management 3. Determine if the missing/incorrect information is from the header or line level This is based on the Record number: line level. This is based on the Record number: • Control Record – Record 0010 • Gateway header Flexfields – Record 0020-0070 • Application Data Record 1000 9999 • Application Data- Record 1000-9999 • Header up to 2060, Lines from 2100 4. Review the Electronic Technical Reference Manual (eTRM) for details on the header and line view on the header and line view • ece_ino_header_v • ece_ino_line_v • ece ino allowance charges v 37 ece_ino_allowance_charges_v © 2011 Oracle Corporation – Proprietary and Confidential
  • 38. For More Information • Electronic Technical Reference Manual (ETRM) - http://etrm.oracle.com/ • Doc ID 732198.1 Oracle Receivables (AR): EDI Setup Diagnostic Test ( ) p g • Doc ID 431370.1 Oracle Receivables (AR): Transaction Diagnostics • Doc ID 732148.1 Oracle Order Management Sales Order Setup Test • Doc ID198252.1 - How To Setup EDI 810 Outbound and 812 Outbound Doc ID198252.1 How To Setup EDI 810 Outbound and 812 Outbound • Doc ID 211771.1 - R11i EDI Seed Data Reconciliation • Doc ID 261354.1 - How to Troubleshoot ECEINO failing for: No HEADER level rows processed for transaction INO 38 © 2011 Oracle Corporation – Proprietary and Confidential
  • 39. For More Information • My Oracle Support Receivables Community https://communities.oracle.com/portal/server.pt/community/receivables/233 • Receivables Community Thread for follow up questions and discussions on this webcast: • https://communities.oracle.com/portal/server.pt/community/view_discussion_topic/216?threa did=245193 • Check out the Advisor Webcast Schedule (Doc ID 740966.1) for a listing of all upcoming live webcasts. Links to recorded live events can be found in the Advisor Webcast Archive (Doc ID 740964.1). • PDF of previously recorded Receivables events can be downloaded from the Receivables All Community Documents area. • Once in My Oracle Support, select the Community Tab • Select the Receivables Community from the My Communities box • Expand the “Receivables All Community Documents” area. 39 © 2011 Oracle Corporation – Proprietary and Confidential
  • 40. Share Your Feedback • What topics would you like to see us cover in a live Receivables Community Advisor Webcast or recorded event? event? • Have a request or comment relating to an E-Business Suite Community, E-Business Suite Community Webcast, or E- Business Suite Community Webcast topic(s)? Business Suite Community Webcast topic(s)? • Would you like to see more of these pre-recorded sessions for consumption on demand? Email: annemarie.provisero@oracle.com 40 © 2011 Oracle Corporation – Proprietary and Confidential
  • 41. Questions R i bl C it Th d f f ll Questions • Receivables Community Thread for follow up questions and discussions on e-Commerce Gateway 810 Outbound Setup & Usage recorded webcast https://communities.oracle.com/portal/server.pt/com p p p munity/view_discussion_topic/216?threadid=245193 • My Oracle Support Receivables Community My Oracle Support Receivables Community https://communities.oracle.com/portal/server.pt/com munity/receivables/233 41 © 2011 Oracle Corporation – Proprietary and Confidential
  • 42. 42 © 2011 Oracle Corporation – Proprietary and Confidential
  • 43. 43 © 2011 Oracle Corporation – Proprietary and Confidential