- 博客(32)
- 收藏
- 关注
原创 Mac安装Python环境
经过几次折腾,大概算是搞清楚了mac装pyhon的情况。前提是用的公司电脑,没有root的权限,导致不能安装各种包。Mac自带python环境mac自带了python的环境,有python2和python3。直接在终端打python的话,运行的环境是python2。如果想进入python3的环境,需要输入python3已经检查过mac自带了python环境,剩下就是安装各种包。当然了,安装包的时候,也需要运行pip3 install numpy才会安装在pyt.
2021-01-07 11:51:31
689
1
原创 Mac zsh: command not found: mvn
菜鸟刚用mac,Java环境已经配好,奈何maven环境一直不行。我已经按照大家说的,把路径添加到.bash_profile文件中。export M2_HOME=/Users/yourname/Documents/maven/apache-maven-3.3.9export PATH=$PATH:$M2_HOME/bin检查好几遍,确实没有问题。于是搜索:zsh: command not found: mvn原来是因为环境变量配在了用户级别,需要启用配置文件。有人建议说去修改一个
2020-08-07 12:43:20
1395
原创 Structure of a Function Group
For example: Function Group ABCDSAPLABCD Program name -> LABCDTOP Global data -> LABCDUXX
2013-03-20 14:22:59
861
1
原创 How to use the BAPI_BUPA_ADDRESS_CHANGE
BAPI_BUPA_ADDRESS_CHANGEThis BAPI is used to update the address information of business partner(更新业务合作伙伴地址). The update action usually includes three actions: insert, delete, and update.(新增,删除
2013-03-20 14:05:33
3587
原创 About the special G/L account
A customers pays $1000 as down payment. The system will create a FI document as advanced received.预收款The corresponding FI document has two items, one for the customer, one for the G/L account.So h
2013-03-20 13:37:06
748
原创 the function modules called in the transaction
POPUP_TO_CONFIRM_STEPPOPUP_TO_CONFIRM_LOSS_OF_DATA
2012-12-13 10:03:10
725
原创 The Message Type in ABAP
A, X, E, W, I and SA Termination The processing terminates and the user must restart the transactionX Exit Like message type A, but without short dump MESSAGE_TYPE_X.
2012-12-13 09:26:34
841
原创 Parameter ID
The SET parameter and GET parameter attributes (SPA and GPA in the table) allow you to enable the SET and GET parameter functions separately.You can define parameter IDs in table TPARA.
2012-12-13 09:17:56
774
转载 WebUI Navigation guide
WebUI Navigation guide由 Ashish W 于 2012-5-1 下午5:04 创建,由 Ashish W 于 2012-5-1 下午9:47 执行最后修改版本 2 inShare
2012-11-28 18:32:48
1272
转载 How to switch off the automatic assignment of employee relationship
http://wiki.sdn.sap.com/wiki/display/CRM/How+to+switch+off+the+automatic+assignment+of+employee+relationshipWhen you create an account, the system will assign yourself as the employee responsible.
2012-11-26 21:26:55
885
转载 How to Delete a Business Partner in SAP CRM
Use T-code: BUPA_DELOnly Record with Delete Flag - If user checks the First Checkbox then it will delete only those BP's whose Archiving flag is set. Only System status "Deleted" - If U
2012-11-26 21:18:04
1272
原创 Table for BAdI Implementation
All the BAdI implementations are stored in table BADI_IMPL.
2012-11-26 21:14:12
586
原创 the tables of the user in SAP
USR01 User master record (runtime data)USR02 Logon Data (Kernel-Side Use)USR05 User Master Parameter IDThese three tables are useful.You can find other tables in the package SUSR_K
2012-11-20 14:28:16
593
原创 Material Determination in Sales Order
An access sequence(访问序列) is a sequence of steps that the system follows in sequential order to obtain a condition record. The condition record has a value that is assigned to it. (VK31 to create prici
2012-11-20 14:02:17
718
原创 关于message
类型为I 和E 类型的message不能用在initialization event中。如果要用对话框形式,可以调用function module POPUP_TO_CONFIRMINITIALIZATION. CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = '这个
2012-08-01 12:57:48
676
转载 SAP CRM How to Create your own BOL Object for webclient
from:http://harelgilor.blogspot.com/2010/06/sap-crm-how-to-create-your-own-bol.htmlUsing the BOL and its uniform application programming interface (API) to access businessdata offers considera
2012-04-17 19:16:23
2214
原创 SD condition 01
basic conceptcondition table: The definition of the key of the condition recordAccess sequence: A search strategy to locate the proper c
2011-08-04 15:51:33
655
原创 Program Exit (CMOD enhancement)
SAP application programmers define the function module call using the ABAP statement CALL CUSTOMER-FUNCTION nnn, where nnn is a three-digit number. SAP application programmers also create the corr
2011-06-20 15:25:00
693
原创 打印HR照片Function
CALL FUNCTION 'HR_IMAGE_EXISTS'<br />EXPORTING<br />p_pernr = gwa_data-pernr<br />p_begda = '19000101'<br />p_endda = '99991231'<br />IMPORTING<br />p_connect_info = l_connect_info<br />EXCEPTIONS<br />error_connectiontable = 1<br />OTHERS = 2.<br />CALL F
2011-03-14 14:46:00
1163
转载 转:PP主数据导出SQVI设置
<br />本文简单介绍了如何利用SQVI从系统中取出PP部分主数据,包括物料主数据,BOM,工艺路线,重点介绍了涉及到的表及表之间的关联关系。<br /><br /> <br />PP部分主数据导出SQVI设置<br /> <br />一、PP部分主数据一般包括:<br />一般情况下,PP主数据包括如下三项:<br />1.物料主数据PP部分视图;<br />2.BOM数据;<br />3.Routing数据。<br />对有些情况下,可能还包括生产版本。<br /><br />二、物料主数据PP部分导
2010-08-06 20:11:00
1110
转载 转:设置ALV单元格颜色
<br /> <br />*&---------------------------------------------------------------------*<br />*& Report ZDEMO_ALVGRID *<br />*& *<br />*&------
2010-08-05 11:33:00
1142
原创 ABAP DIALOG程序步骤
<br />对于所有的DIALOG程序,<br />第一步,创建程序,<br />第二步,声明全局变量,<br />第三步,创建屏幕<br />程序中写:<br />INCLUDE z_top.<br /><br />INCLUDE z_frm.<br /><br />INCLUDE z_pbo.<br /><br />INCLUDE z_pai.<br />
2010-07-02 11:19:00
2729
原创 SAP中的几个增强
这几个只是我这个项目用到的几个增强,分享一下:形式发票需要传给别的系统,增强:CMOD SDVFX009 描述:开票凭证处理KIDONO(付款参照号),EXIT_SAPLV60A_001,include ZXVVFU09。研发内部订单对应研发产品唯一性检查,增强:CMOD COOPA_01 描述:内部订单的客户检查模块,EXIT_SAPLRKIO_001 ,include ZXAUFU01。应付账款科目替换,增强:CMOD LMR1M001 描述:在后勤发票校验中用户退出不允许使用标准事务码进行
2010-07-01 13:20:00
2867
原创 inner join 与 left join
今天写一个SD的程序,出了点小问题原来的SQL语句如下 SELECT k~vbeln k~auart p~posnr k~audat p~matnr k~kunnr p~kwmeng p~netpr p~kpein p~netwr k~waerk k~stwae d~bstkd INTO TABLE gt_vbak FROM vbak AS k JOIN v
2010-05-18 14:27:00
605
转载 转帖 动态内表 动态ALV显示
动态内表及动态ALV显示最近写了一个forecast,要求按用户输入的日期分周或月显示,我把它贴出来,给有需要的人参考一下*&---------------------------------------------------------------------**& Report ZRSD041*&*&-------------------------------------------
2010-05-18 14:24:00
841
转载 动态内表 动态ALV显示
动态内表及动态ALV显示最近写了一个forecast,要求按用户输入的日期分周或月显示,我把它贴出来,给有需要的人参考一下*&---------------------------------------------------------------------**& Report ZRSD041*&*&-------------------------------------------
2010-05-10 16:00:00
1185
原创 ABAP AT SELECTION-SCREEN写F4帮助
在选择屏幕上自定义F4帮助,调用FM : F4IF_INT_TABLE_VALUE_REQUESTAT SELECTION-SCREEN ON VALUE-REQUEST FOR p_zhtbh . "参考出口合同号 PERFORM frm_get_zhtbh.FORM frm_get_zhtbh . REFRESH: t_htbh,t_returntab,t_htbh.
2010-04-28 12:37:00
1314
原创 ABAP SELECTION-SCREEN按钮
在选择屏幕 上创建按钮要在选择屏 幕上创建按 钮,可以与 PUSHBUTTON 参数一起使 用 SELECTION-SCREEN 语句。语法 如下:语法SELECTION SCREEN PUSHBUTTON [/] USER-COMMAND [MODIF ID ].参数 [/]、 和 MODIF ID 选项与在注释. 中对
2010-04-27 17:04:00
1850
原创 关于BOM的FM
根据物料与工厂展BOM时用FM: CS_BOM_EXPL_MAT_V2示例:(此例子只展一层) CALL FUNCTION CS_BOM_EXPL_MAT_V2 EXPORTING capid = PP01 datuv = datuv auskz
2010-04-27 16:56:00
789
原创 ABAP选择屏幕参数
SELECT-OPTIONS:s_datum FOR sy-datum NO-EXTENSION OBLIGATORY DEFAULT sy-datum TO sy-datum.这样写,low和high的值将相同,都是当前日期如果想要用该关键字,并使外观限制为单值选择,则用关键字NO INTERVALS示例:REPORT SAPMZTST.
2010-04-27 09:45:00
2662
原创 SAP CO内部订单配置
1 定义订单类型 路径:IMG > 控制 > 内部订单 > 订单主数据 > 定义订单类型 值: 对应SAP中aufk中的auart字段 Z001 外购固定资产内部订单 Z002 在建工程内部订单 Z003 固定资产改良内部订单 Z004 研发项目内部订单 Z005
2010-04-19 14:51:00
8687
原创 SAP CO成本配置
SAP CO成本配置TCODE仍然是SPRO定义成本中心类别 路径:IMG>控制>成本中心会计>主数据>成本中心>定义成本中心类别 值:F 辅助生产,G 管理,X 销售 ,Y 研发,Z 直接生产 其中:数量、ActRev、PlnRev、Cmmt打钩,最后的功能有值延伸:定义了成本中心的类型之后,本人认为就可以维护成本了。
2010-04-19 14:19:00
4271
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人