- 博客(27)
- 收藏
- 关注
转载 Transport standard text to a transportable request
Program: RSTXTRAN[@more@] ...
2009-12-22 10:59:24 114
转载 Table control wizard mutiply lines selection
PROCESS AFTER INPUT.*&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'PROD_LIST' LOOP AT GT_DATA. CHAIN. F...
2009-12-22 10:58:44 99
转载 PDF form tips
1. import logo which you could find via SE78:import the logo into MIME Repository (Program RSXFT_MIGRATE_BDS_GRAPH...
2009-12-22 10:56:10 105
转载 Passing parameters
What are the dieffrent ways to pass data from the main ABAP program (actual parameters) to a subroutine or FORM st...
2009-12-22 10:55:31 151
转载 Page numbering issue in Smartforms
Dear, To whom it concerns .... Problem : Sometimes page numbers are outputted incorrectly on the layout of the pr...
2009-12-22 10:53:39 75
转载 Get the characteristics of a certain class for a certain material
CLAF_CLASSIFICATION_OF_OBJECTS[@more@] ...
2009-12-22 10:52:17 91
转载 获得登录用户EMAIL
* --- get email address of the person who create the orderDATA: ls_address_printer TYPE crms_email_partner_address...
2009-12-22 10:51:31 85
转载 通过日期返回周信息
CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE' . 返回信息:1. 当前是本年第几周2. 获得当前日期周 周一 周日的日期[@more@] ...
2009-12-22 10:50:30 255
转载 检查LOGO是否存在
If you need to include a (lot of) graphic(s) on a layout, you need to check first if the object exists or this wil...
2009-12-22 10:47:28 296
转载 FM 获得外部单位
data lv_output type string.call function 'CONVERSION_EXIT_RUNIT_OUTPUT' exporting input = caufvd_tab-...
2009-03-16 14:15:46 110
转载 ABAP的事件
ABAP的事件 EVENTS IN ABAPThere will be different types of events in ABAP.Events in Dialog ProgramPBO - Process Before...
2009-02-23 14:15:03 98
转载 User Exits For Billing
User Exits For BillingUSEREXIT_NUMBER_RANGE (Module pool SAPLV60A, program RV60AFZZ) The internal number range use...
2009-02-23 14:09:05 152
转载 格式化的数值转为非格式化数值 --- 转自老白的博客
如: 123,456.78 -> 123456.78 REPORT z_barry_test NO STANDARD PAGE HEADING . TABLES usr01.DATA: pp TYPE p DECIMA...
2009-02-23 12:59:55 157
转载 在自定义Screen上利用标准选择屏幕的两个方法 --- 转自老白的博客
有时候为了方便,会把标准选择屏幕(1000)那一套东西拿到自己定义的屏幕上使用。有两个方法可以实现。1、Subscreen,直接嵌入到自定义的Screen上,需要在Screen上画一个子屏幕的区域2、弹出一个窗口,不用对自定义屏...
2009-02-23 12:57:29 127
转载 SD相关表 --- 转自老白的博客
一、客户主数据基本数据放在KNA1里;公司代码放在KNB1里;销售视图放在KNVV里;合作伙伴放在KNVP里;二、信用主数据KNKK里有信贷限额、应收总额、特别往来;S066里是未清订单值;S067里是未清交货值;KNKK里面的...
2009-02-23 12:21:15 101
转载 弹出SE61所写文本的的文本框 --- 转自老白的博客Barry.bai
REPORT ztest.INCLUDE .BREAK-POINT.DATA: user_buttons LIKE smp_dyntxt OCCURS 0 WITH HEADER LINE,parameter LIKE spar...
2009-02-23 11:39:13 98
转载 ABAP中正则表达式的简单使用 --- 转自老白的博客 Barry.bai
在一个论坛上面看到有人在问正则表达式的问题,特举例简单说明一下。另外,REPLACE也支持REGEX关键字。最后:只能是ECC6或者更高版本才可以(ABAP supports POSIX regular expressions ...
2009-02-23 11:21:30 225
转载 对ALV的自动刷新
* ------- 对ALV LIST的刷新:MODULE user_command_1100 INPUT.DATA save_ok LIKE sy-ucomm.save_ok = ok_code.CLEAR ok_code.C...
2009-02-20 17:57:57 140
转载 下载内表到本地.CSV文件中
form down_load tables gt_down." TYPE gt_data.data: filename type string value '',path type string value '',fullpat...
2009-02-20 16:47:59 123
转载 获得登录用户的Email地址
* --- get email address of the person who create the orderDATA: ls_address_printer TYPE crms_email_partner_address...
2009-02-20 16:37:19 204
转载 调用SO10填充选择屏
* 本段代码调用SO10, 使用户可以在选择屏中选择文本, 并同时填充TEXT ID.TABLES: pstxt.** call trx so10 (rstxtcat is the program of so10)PARAMET...
2009-02-20 16:33:32 83
转载 上传本地.CSV文件到内表中
TYPE-POOLS: truxs.DATA: filename TYPE string VALUE '',path TYPE string VALUE '',fullpath TYPE string VALUE ''.DATA...
2009-02-20 16:31:06 130
转载 List box at selection screen
type-pools: vrm.data: it_list type vrm_values,list_value type vrm_value.* --- selection screenparameters: p_period...
2009-02-20 16:10:43 64
转载 函数: CONVERT_TO_LOCAL_CURRENCY
CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING* CLIENT = SY-MANDT date ...
2009-02-20 15:53:52 475
转载 单位转换函数: MATERIAL_UNIT_CONVERSION
DATA: BEGIN OF gt_billing OCCURS 0, fkdat TYPE fkdat, " vbrk kunag TYPE kunag, " vbrk / kna1 ...
2009-02-20 15:46:26 804
转载 函数: 获得每月的最后一天
CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH' EXPORTING day_in = p_first_date IMPORTING ...
2009-02-20 15:43:00 229
转载 在ALV中添加Footer
* --CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' 之前PERFORM f_build_eventcat. FORM list_text.DATA: w_end TYPE slis_listhe...
2009-02-20 15:27:15 88
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人