FRE_LOAD_VKP_DELTA is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Transfer of Sales Price Changes The standard ALE change pointer technique for sales price change recording is rather difficult to realize as the following example illustrates: Example: Stores can either use a distribution channel price or define an own sales price for an article...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter FRE_LOAD_VKP_DELTA into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FRE05 - Transfer Changed Sls Prices to F&R
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_WERKS = Site
Selection Text: P_VZ_END = distribution channel
Selection Text: P_VZ_DIR = direct read DC sales price
Selection Text: P_TASKS = Max. Number of Parallel Proces
Selection Text: P_SYDEST = Destination system
Selection Text: P_SVRGR = Logon/Server Group
Selection Text: P_PARAL = Parallel Processing
Selection Text: P_MATNR = Material
Selection Text: P_FULL = full sales prices redeterm.
Selection Text: P_FILTER = filter over customized sites?
Selection Text: P_DIRECT = access F&R direct
Selection Text: P_DATETO = end sales price interval
Selection Text: P_DATEFR = start sales price interval
Selection Text: P_BLOCK = Records per Package
Title: Transfer of sales prices changes
Text Symbol: T02 = (For more details use transaction FRE_UI)
Text Symbol: T01 = ******* Processing completed! *******
Text Symbol: 011 = Location-Product interface error message
Text Symbol: 009 = Master Data Interface
Text Symbol: 008 = No system resources available
Text Symbol: 007 = to F&R only direct sending possible at the moment.
Text Symbol: 006 = DC sales price determination method
Text Symbol: 005 = Transfer settings
Text Symbol: 004 = Performance options
Text Symbol: 003 = Definition of sales price determination interval
Text Symbol: 002 = High level filtering over customized sites
Text Symbol: 001 = Data select options
INCLUDE FRE_LOAD_VKP_DELTA_F01.
No SAP DATABASE tables are accessed within this REPORT code!
FRE_MESSAGE_DB CALL FUNCTION 'FRE_MESSAGE_DB' EXPORTING mode = 'I' TABLES messages = gt_msg EXCEPTIONS database_error = 0 wrong_mode = 0 OTHERS = 0.
FRE_MESSAGE_DB CALL FUNCTION 'FRE_MESSAGE_DB' EXPORTING mode = 'I' TABLES messages = gt_msg EXCEPTIONS database_error = 1 wrong_mode = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.