在项目中有一个CR要求对DESADV进行扩展, 增强, 于是详细记录了真个过程. 先说一下技术需求. 首先, 对Idoc 基本类型ORDERS05进行extension, 然后根据业务需要,添加两个segment, 一个header, 一个detail, detail挂在header下面.
具体取数据逻辑我并没有写出, 只是从技术层面详细的写出了整个extension实施的过程,包括segment建立, idoc type扩展, user-exit使用等.
具体请查看下面的文档:
对DESADV进行扩展 (176.6 KiB, 632 hits)
...
Testing ENABLE_TO_SEND message, and it should be send back an ENABLE_TO_SEND.
Interface Information
Namespace: urn:ianes:prp:ipsc
Type: Message Interface
Name: MI_RTS
ABAP Name: ZPRPC_CL_MI_RTS
With Function: ZPRPC_W
Logical flow:
Outbound function: ZPRPC_X
Outbound Method: ZPRPC_CO_MI_ES
Results:
...
The landscape for the interface through MQ + XI + ECC, listed below:
由于项目中需要使用MQ,用于消息队列管理,特别找一些MQ的资料,供自己参考
一.MQ基本操作
MQ中有几个很重要的组件:队列管理器(QueueManager)、队列(Queue)和通道(Channel)。其基本的操作方法如下:
创建队列管理器
crtmqm –q QMgrName
-q是指创建缺省的队列管理器
删除队列管理器
dltmqm QmgrName
启动队列管理器
strmqm QmgrName
如果是启动默认的队列管理器,可以不带其名字
停止队列管理器
endmqm QmgrName 受控停止
endmqm –i QmgrName 立即停止
endmqm –p QmgrName 强制停止
显示队列管理器
dspmq –m QmgrN...
完整的创建新的idoc message type. 应老根的需求整理,哈哈,老根要请我吃饭啊!
Create new message type.rar
Taking you through how ALE works, inbound, outbound and exception handling.
By Amit khari
ale.zip
This artile is created for the one who want to learn ALE basic configuration and settings.
1. Clear some glossary
Business process, Business data, Business object, Workflow
In one sentence I concluded:
Business process generate Business data, and Business object structure Business data, Workflow supports Business process. So their relationship is very clear and simple.
2. The aim of ALE
In my point of view, it is mainly used for the decentralized scenario which the company used, wi...
As an EDI consultant, basically, I should be familiar with EDIFACT, it is ISO 9735, I put this document to my blog, for conveniency.
ISO 9735 Electronic data interchange for administration, commerce and transport (EDIFACT) – Application level syntax rules (first edition 1988, amended 1990).
EDIFACT was prepared by UN/ECE Trade Division and adopted by ISO/TC 154. The UN/ECE has also prepared Message Design Guidelines which are included in the UN...
Kevin Wilson/SDN
11.13.2006
Rating: -4.67- (out of 5)
1. Introduction to ALE development
Developing a new custom ALE scenario comprises 5 steps:
Design and develop the custom IDoc with its segments and a new message type
Configure the ALE environment with the new IDoc and message type (customer model, partner profiles and linking IDoc to message type)
Develop the outbound process which does the following:
Populates the custom IDoc with control info and functional data
Se...