- 浏览: 173844 次
- 性别:
- 来自: 成都
文章列表
Prerequisites
You have opened a Process Integration scenario. The Process Integration Scenario contains at least two actions.
There are three different situations where you require a connection between two actions. Each situation requires you to implement a particular connection type:
● To conne ...
source:http://scn.sap.com/thread/1727843
Go to administration -
Select appropriate option out of these - > repository/ Directory
now select LOCK OVERVIEW.
now you will get all the locked objects by any user.
Now focus on locked object which you want to realese
now press Button Release Lock . ...
1. Start transaction SM31
2. In the Table/View field, enter T000.
3. Choose Maintain.
4. In the Change View “Clients”: Overview screen, select the relevant client and choose .
5. In the Restrictions when Starting eCATT field, select an entry that allows eCATT.For more information about the possible ...
source:http://abap-explorer.blogspot.com/2008/08/create-select-options-in-module-pool.html
Create a SELECT-OPTIONS in module pool screen using two methods as shown.
Method 1
a) Create a subscreen area in your screen layout where you want to create the select options.
b) In the top include of your ...
source: http://forums.sdn.sap.com/thread.jspa?threadID=1856305
Q:Is there any way to convert OTF data into Spool Request.
A:Print the OTF data using FM PRINT_OTF. You will get the Spool Id from export parameters.
FORM compute_2date_diff.
DATA: lv_date1 LIKE sy-datum,
lv_date2 LIKE sy-datum,
lv_month TYPE pea_scrmm,
lv_days TYPE pea_scrdd.
*lv_date1 must be greater than lv_date2
lv_date1 = '20120201'.
lv_date2 = '20120101'.
CALL FUNCTION 'HR_HK_DIFF_BT_2_DATES'
EXP ...
To get the selection back just Right Mouse-click in any Cell of the list and select Spreadsheet, select the format you want and continue. This will uncheck "Always Use selected Format", or you can also execute the command '&RESET_EXCEL' in command field.
source:http://www.architectsap.com/blog/sap/sap-eccabap-enhancement-technique-bdt/
Business data toolset is a new functionality provided by SAP to modify screen i.e. standard screens.BDT is helpful as many times the customization of screens are required in SAP ABAP development.
Modification Availa ...
source:http://www.saptechnical.com/Tips/ABAP/Domain/FixedValues.htm
The F4 for screen field can be fetched either through value table, explicit F4 help or through fixed values associated with the domain.
Sometimes there might be a requirement to fetch the fixed values associated with a domain. Dat ...
source:http://sapport.blogspot.com/2010/03/if-1-equals-2-whats-purpose.html
While debugging standard SAP ABAP code you might find for first look very strange code like following:
If 1 EQ 2.
MESSAGE W001(z100).
* plus do something else
EndIf.
Confusing? Of course! Based on the math this statement ...
SAP Roles comparison
- 博客分类:
- SAP Role
source:http://an-sap-consultant.blogspot.com/2012/01/sap-roles-comparison_31.html
Comparison of roles can be done between:
two roles in a system
two roles in different systems
a role and its template
a newly-delivered role and its previous customer version
Procedure: ...
Line 601 in program SAPMSBDC_CC
loop at itab_apqi.
case itab_apqi-qstate.
when ' '.
call function 'ICON_CREATE'
exporting
name = icon_create
info = 'neu'(036)
importing
result = itab_apqi-status
exceptions
...
REPORT ztest.
DATA: gv_file_length TYPE i,
gv_filehexcontent TYPE xstring,
gv_zipfilehex TYPE xstring,
gt_filebincontent TYPE solix_tab,
gt_zipfilebin TYPE solix_tab,
gv_zipfilename TYPE string,
gv_folder TYPE string,
go_zippe ...
from: http://help-sap.blogspot.com/2011/01/miro.html,
http://space.itpub.net/9859323/viewspace-684596
If you want to mimic the quantity shown in MIRO (transaction) while posting incoming invoice, you need to use the following function module
CALL FUNCTION 'MRM_ASSIGNMENT'
EXPORTING
i_displ ...
from:http://www.sapfans.com/forums/viewtopic.php?f=13&t=329229
One method is table logging.
Within 'Technical Settings' for a table, there is an option for 'Log data changes'
If this is selected AND table logging is active within the system, you can evaluate the changes via transaction SCU3.
SAP ...