博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
两种查找bapi的方法
阅读量:7168 次
发布时间:2019-06-29

本文共 1362 字,大约阅读时间需要 4 分钟。

本文转自:

How to Find Bapi for Particular Transaction in SAP

How to find function module or Bapi for particular transaction in sap?

If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use. 

Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this. 

1. Find out the package of the transaction.  

Start Va01 go to system --> status.  
Double click on transaction  
Package is VA  
Open this package in SE80  
Open business engineering-->Business object types  
Find the BO which sounds the most appropriate  
I would suggest BUS2032 Sales Order  
Double click.  
Open methods.  
Find the released method with from data or something similar in the name  
, Createfromdat2  
Position the cursor in it and click the program button  
Scroll down to find the bapi used in this method 

With this way you can also find out programs and FM's 

2. Start va01 go to system-->status  

Double click transaction VA01  
Double click on package  
Read the application component. (this is SD-SLS Sales)  
Then open the transaction BAPI  
Sales and distribution-->Sales-->sales order  
createfromdat2 

转载于:https://www.cnblogs.com/panjun-Donet/archive/2012/07/23/2605034.html

你可能感兴趣的文章
将数组里的元素转换为以逗号分隔的字符串
查看>>
Bootstrap3基础教程 02 网格布局
查看>>
linux的发展过程以及未来方向
查看>>
浅谈快速开发框架的分层(WinForm)
查看>>
阿里大鱼短信接口整合Tp3.2.3开发整理
查看>>
Rails sanitize
查看>>
time format in ruby
查看>>
异步请求(删除json数据)
查看>>
[LintCode] 最长单词
查看>>
python开发函数进阶:命名空间,作用域,函数的本质,闭包,作用域方法(globales)...
查看>>
Springboot简单整合Rabbit
查看>>
Go语言基础介绍
查看>>
vim 命令
查看>>
jni native macOS
查看>>
shell命令xargs解析
查看>>
转载:onCreate()方法中的参数Bundle savedInstanceState 的意义用法
查看>>
android 补间动画帧动画
查看>>
JQUERY实现非叠加式的搜索框提示
查看>>
更新Maven的本地库
查看>>
HTML插入SWF
查看>>