摘要:
OK Code ValuesR/3 note no. 26171Direct call of transactions, session handling:BatchABAP/4BufferR/3 note no. 45507R/3 note no. 26171The design of the R/3 System is such that all programs can be called via menu options. In addition tergonomic advantages (nneed tlearn transaction codes), this procedure 阅读全文
随笔档案-2012年03月
sap function 常用的一些系统函数
2012-03-23 21:12 by 小sa, 1505 阅读, 收藏, 编辑
摘要:
SAP FunctionsABAP_DOCU_DOWNLOADDownload ABAP documentation in HTML format.APPL_LOG_DELETEWith this function module you delete logs in the database according to specified selection conditionsAPPL_LOG_DISPLAYWith this function module you can analyze logs in the database.APPL_LOG_DISPLAY_INTERNWith thi 阅读全文
sap links /sap 学习资源链接
2012-03-23 21:11 by 小sa, 299 阅读, 收藏, 编辑
摘要:
SAP and ABAP Links国内的大牛们:http://blog.csdn.net/compassbutton/Jack Wuhttp://blog.csdn.net/lijunhai/lijunhai的专栏http://blog.chinaunix.net/u/28793SAP砍刀http://www.cnblogs.com/qiangsheng强晟http://blog.tom.com/lxd_52_zl快乐生活http://abaper.blogbus.com/日积月累http://blog.chinaunix.net/u1/40527/index.html老白http://bl 阅读全文
SAP Tables 表
2012-03-23 21:09 by 小sa, 2424 阅读, 收藏, 编辑
摘要:
http://abap4.tripod.com/index.html参考System TablesADCPPerson/Address assignment (central address administration)ADIRACCESSTable to store keys for TADIR objectsADR2Telephone numbers (central address admin.)ADRPPersons (central address administration)APQDDATA DEFINITION QueueAPQIQueue info definitionD0 阅读全文
ABAP 事务码 Transaction Code
2012-03-23 21:08 by 小sa, 895 阅读, 收藏, 编辑
摘要:
Transaction CodesPlant Maintenance (PM)Production PlanningGeneral NotesBASIS/ABAPHuman ResourcesSales and Distribution (SD)SAP OfficeFI Financial ManagementMaterial Management (MM)MM configuration transactionsConfig RelatedPlant Maintenance (PM)Stephan Nilsson was kind enough to share some PM transa 阅读全文
sap tips/ sap 小技巧
2012-03-17 14:53 by 小sa, 604 阅读, 收藏, 编辑
摘要:
Other Useful TipsAdding Custom Fields to POs, Outline Agreements, and RFOsAuthorization Failures on Fixed Asset ReportsFind Programs That Use a Layout SetUnderstanding Date Selections Using the HR Logical DatabasePrinting Blank LinesCentral Address ManagementUseful User ParamtersMaintaining Trailing 阅读全文
读/写byte[] 类型 MS SQL数据库
2012-03-07 13:20 by 小sa, 665 阅读, 收藏, 编辑
摘要:
//写入流 public void Write(byte[] val) { using (SqlConnection con = new SqlConnection(connectionString)) { con.Open(); using (SqlCommand cmd = new SqlCommand("INSERT INTO Temp_Compress( BinData ) VALUES (@binaryValue)", con)) ... 阅读全文
Gzipstream 解压问题
2012-03-02 13:14 by 小sa, 434 阅读, 收藏, 编辑
摘要:
Gzipstream解压问题static void Main(string[] args) { string path = @"C:\fg.txt"; //压缩前 string pathdes=@"C:\fg1.txt"; //压缩后 string depath = @"C:\fg2.txt"; //还原为 GzipFile(path, pathdes); DeGzipFile(pathdes,depath ); Console... 阅读全文