Вы находитесь на странице: 1из 13

10/14/13 SAP VOFM Routines SAP Training 2011 Batch

www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 1/13
Java Training | J2EE Training | Magna Training
Java Training
.NET Training
Android Training
Contact Us
SAP VOFM Routines SAP Training 2011
Batch
by magnatrain on March 14, 2011 in SAP ABAP Training, SAP SD Training, SAP Training
Many areas in SAP SD Training like SAP Copy Controls, SAP Pricing Requirements, SAP Data Transfer
Routines use ABAP routines configured and coded in VOFM transaction.
The following
routines are available in VOFM transaction.
Copy Control Routines
Data Transfer Routines
Requirements
SAP Pricing Requirements
SAP Account Determination Requirements
SAP Listing and Exclusion Requirements
etc
Forumas
SAP Pricing Formulas
SAP Pricing Rounding Rules
You can view the routines by selecting the right menu path, selecting the routine number and clicking on the
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 2/13
view code button. For example, if you want to view the Copy Control requirements for
orders, select the following menu path,
and selecting the right requirement number (
Please ensure that the routines are marked as Active in order to really work.
Select the routine and click on the view button. The system will display the code in SAP ABAP Editor.
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
*---------------------------------------------------------------------*
* FORM - Routine for copying checks
*---------------------------------------------------------------------*

*---------------------------------------------------------------------*
* FORM BEDINGUNG_PRUEFEN_001 *
*---------------------------------------------------------------------*
* The following work areas are available: *
* *
* HVBAK - Header which can be produced from the reference *
* VBAK - Header of the reference sales document *
* VBUK - Header status of the reference sales document *
* TVAK - Sales document type *
* HVBPA - Partner segment of the sold-to *
* VBPA - Partner segment of the sold-to in the reference doc *
* *
* The messages are stored in table 100 with Message-ID 'V2' *
* *
* *
*---------------------------------------------------------------------*

?
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 3/13
This is especially used to set up break-points that can be used for debugging.
Also, new routines that are created are assigned. If you want to create your own routine ( See SAP ABAP
Training related posts for the same ), then you would have to enter an Object Key as shown below.
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
Question 2 : Which of the following is TRUE ?
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FORM BEDINGUNG_PRUEFEN_001.

DATA: BP_DATUM_AUSGABE(10). " Datumsfeld fr editierte Ausgabe

* Is the reference document complete?
IF VBUK-UVALS CN ' C' OR
VBUK-UVALL CN ' C'.
MESSAGE E021.
ENDIF.

* Was the reference document fully referenced?
IF VBUK-RFGSK = CHARC AND
HVBAK-VBTYP NE CHARH AND
HVBAK-VBTYP NE CHARI AND
HVBAK-VBTYP NE CHARK AND
HVBAK-VBTYP NE CHARL.
MESSAGE E015.
ENDIF.

....
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 4/13
Share this: Like 0 Tweet 0
1. Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001
2. Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001
3. Output Control Requirement routine 001 is same as Pricing Requirement Routine 001
Question 3 : How do you activate VOFM routines ?
Question 4 : What are the pre-requisites to create custom VOFM routines ?
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
Tags: data transfer routines, pricing formulas, pricing requirements, sap copy control requirements, vofm
routines
18 Responses to SAP VOFM Routines SAP Training 2011 Batch
1.
Radha Krishna December 29, 2011 at 6:45 am #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
VOFM->Data Transfer->Deliveries
Question 2 : Which of the following is TRUE ? NONE
A.Order related Copying Requirement routine 001 = Header-Same Customer.
Delivery related Copying Requirement Routine 001 = Header.. therefore FALSE
B.Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001..FALSE there is no Routine Number for Line item level.
C.Output Control Requirement routine 001 = Delivery Goods Issue posted
Pricing Requirement Routine 001 = Different payer therefore FALSE
Question 3 : How do you activate VOFM routines ?
Click on Order entry line/Select Edit/Activate
Question 4 : What are the pre-requisites to create custom VOFM routines ?
To create custom VOFM routines, you will need the object key, Access key and Installation number
from the ABAP consultant
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
Custom Routine numbers from 600 to 999
Reply
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 5/13
2.
Larry Cabral November 2, 2011 at 1:57 am #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines.
VOFM->Data Transfer->Deliveries
Question 2 : Which of the following is TRUE ?
1. Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001 = False
2. Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001 = False I do not see an item level copy requirement 001. The header level
001 routine does not reference the VBAP detail records. Copy requirements routine 301 tests and
rejects items that are completed or have reject reason codes.
3. Output Control Requirement routine 001 is same as Pricing Requirement Routine 001. = False The
pricing 001 requirements routine test for payer vs. sold to party, the output control 001 requirements
routine test to see if goods issue has occurred.
Question 3 : How do you activate VOFM routines ?
Highlight the entry for the routine, click on edit, click on the activate option.
Question 4 : What are the pre-requisites to create custom VOFM routines ?
Clear requirements that define the business need, functional specifications that define the documents
and the fields that will be impacted, as well upstream and down stream impacts, knowledge of APAP,
and a developer key.
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ? 600-999
Reply
3.
Muthu October 29, 2011 at 6:52 am #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines. VOFM
>Copying requirements>deliveries
Question 2 : Which of the following is TRUE ?
A.Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001 .False .
B.Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001.False
C.Output Control Requirement routine 001 is same as Pricing Requirement Routine 001 : dont
know.plz explain.
Question 3 : How do you activate VOFM routines ?VOFM->Edit->activate
Question 4 : What are the pre-requisites to create custom VOFM routines ?ABAP and access key
provided by sap.
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 6/13
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?601-999
Reply
4.
Edward Emmory October 28, 2011 at 2:54 pm #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
Answer: VOFM->Copying requiremtns->Deliveries.
Question 2 : Which of the following is TRUE ?
Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001
Answer: False
Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001
Answer: True
Output Control Requirement routine 001 is same as Pricing Requirement Routine 001
Answer: False
Question 3 : How do you activate VOFM routines ?
Answer: Select, click on Edit -> Active
Question 4 : What are the pre-requisites to create custom VOFM routines ?
Answer: ABAP Programming Language
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
Answer: 600-999
Reply
5.
Jitesh October 7, 2011 at 2:39 pm #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
VOFM- COPYING REQUIREMENT-DELIVERIES
Question 2 : Which of the following is TRUE ?
1. Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001(FALSE)
2. Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001(TRUE)
3. Output Control Requirement routine 001 is same as Pricing Requirement Routine 001 (FALSE)
4.
Question 3 : How do you activate VOFM routines ?
VOFM- COPYING REQUIREMENT-ORDER-SELECT THE ROUTINE NUMBER- CHECK
MARK ON ACTIVE BOX
SELECT ROUTING GOTO EDIT ACTIVE
Question 4 : What are the pre-requisites to create custom VOFM routines ?
ACCESS KEY(FROM ABAP)
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 7/13
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
600-999 FOR CUSTOM VOFM ROUTINE
Reply
6.
Mrunal October 5, 2011 at 4:05 am #
Ans1: VOFM-Copying req-Deliveries
Ans2: Only statement 2 is TRUE
Ans3: VOFM->Copying Req->Orders->Cursor on routine Then Edit->Activate
Ans4: Enter new routine number and description in the table, press enter, if you have access rights to
create new routines, Enter Access key to begin new routine.
Ans5: standard routines 001-599 user routines 600-999
Reply
7.
Nas September 17, 2011 at 1:33 am #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines:
SPRO > IMG> Logistics execution> Shipping > Copying Control> Define Copying Requirement >
From the menu Select Copying Requirements > Select Deliveries from the drop down list .
There are two menu items, Copying Requirements and Data Transfer, from your question, I think
you asked for data transfer routine, correct me if I am wrong.
VOFM > data transfer >Deliveries.
Or VOFM > Copying requirements >Deliveries.
Question 2 : Which of the following is TRUE ?
1. Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001
FALSE
2. Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001
TRUE
3. Output Control Requirement routine 001 is same as Pricing Requirement Routine 001
FALSE
Question 3 : How do you activate VOFM routines ?
DONT KNOW. IF THE QUESTION IS HOW DO WE ACCESS VOFM ROUTINE, THEN,
ANSWER WOULD BE, BY DOUBLE CLICKING OR CLICKING VIEW CODE BUTTON
WHEN YOU HAVE SELECTED THE DESIRED CODE ROW AFTER EXECUTING VOFM
CODE.
Question 4 : What are the pre-requisites to create custom VOFM routines ?
YOU HAVE TO HAVE A ACCESS KEY TO CUSTOMIZE.
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
???
Reply
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 8/13
8.
Suresh August 25, 2011 at 1:37 am #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
Data Transfer->Deliveries
Question 2 : Which of the following is TRUE ?
Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001
FALSE
Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001
TRUE
Output Control Requirement routine 001 is same as Pricing Requirement Routine 001
FALSE
Question 3 : How do you activate VOFM routines ?
Answer: By using Edit->Activate and the Access key to gain access and activate it.
Question 4 : What are the pre-requisites to create custom VOFM routines ?
Answer: Some custom fields that needs to be copied thats not handled by SAP standard routines.
ABAP coding knowledge
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
900-999 (google search)
Reply
9.
Shyam August 25, 2011 at 1:05 am #
Hi Sir,
Here are my answers
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
VOFM->Copying requiremtns->Deliveries.
Question 2 : Which of the following is TRUE ? B
Question 3 : How do you activate VOFM routines ?
By checking the active in VOFM->Copying requiremtns->Orders.
Question 4 : What are the pre-requisites to create custom VOFM routines ?
1.Select a number btw range 600-999
2.Enter an access key and create VOFM routine using ABAP editor
3.Activate the VOFM routine by clicking the active check mark.
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 9/13
Custom routines Number Ranges: 600-999
Reply
10.
Muthu August 25, 2011 at 12:33 am #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
VOFM->Copying requiremtns->Deliveries.
Question 2 : Which of the following is TRUE ? B
Question 3 : How do you activate VOFM routines ?
By checking the active button in VOFM->Copying requiremtns->Orders.
Question 4 : What are the pre-requisites to create custom VOFM routines ?
Access key and ABAP Editor.
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
600-999.
Reply
11.
Zahid Abbas August 24, 2011 at 9:09 pm #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
ANS: Logistic Execution>>Shipping>>Copying Control>>Specify Copy Controls for Deliveries.
Question 2 : Which of the following is TRUE ?
A.Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001
B.Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001
C.Output Control Requirement routine 001 is same as Pricing Requirement Routine 001
B is true.
Question 3 : How do you activate VOFM routines ?
ANS: In the command window type VOFM>>Edit>>Activate All(A message will pop upDo you
want to activate all routines).
Question 4 : What are the pre-requisites to create custom VOFM routines ?
1- Sales Order Processing
2- Customer Master Data
3- Material Master Data
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 10/13
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
ANS: 001>599 and 600 > 999
Reply
12.
Indira August 24, 2011 at 8:14 pm #
1 . Give the menu path for Delivery level Copy Control Data Transfer Routines
Ans. SPRO> IMG > Logistics execution > Shipping > Copiyng Control > Define Copying
Requirement > Select Copying Requirements on the menu path > Select Deliveries from the drop
down list .
3. How do you activate VOFM routines ?
Ans: Click on the ACTIVE check box.
4 . What are the pre-requisites to create custom VOFM routines ?
Ans. This is done by ABAP people.
5 . What is the SAP suggested number range for creating custom VOFM routines ?
Ans. 001-599
Not sure about the 2nd question pls explain.
Reply
13.
Sahil July 17, 2011 at 2:24 pm #
Question 1 : Give the menu path for Delivery level Copy Control Data Transfer Routines
Answer: Option 1 = SPRO IMG Logistics Execution Shipping Copy Control Define
Copying Requirements Copy Requirements Deliveries
Option 2 = VOFM-Copy Requirements-Deliveries
Question 2 : Which of the following is TRUE ?
A.Order related Copying Requirement routine 001 is same as Delivery related Copying Requirement
Routine 001
Answer: False
B.Order Header Level Copying Requirement Routine 001 is same as Order line item level copying
requirement routine 001
Answer: True
C.Output Control Requirement routine 001 is same as Pricing Requirement Routine 001
Answer: False
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 11/13
Question 3 : How do you activate VOFM routines ?
Answer: Select the routine go to the EDIT tab on the menu path select Active from the drop down
options
Question 4 : What are the pre-requisites to create custom VOFM routines ?
Anser: ABAP Programming Language
Question 5 : What is the SAP suggested number range for creating custom VOFM routines ?
Answer: From 001-599 for SAP and 600-999 for Customers
Reply
14.
Raj July 1, 2011 at 7:19 pm #
Ans 1: Img/LogisticsExecution/Shipping/Deliveries/CopyControl/Define routines for Data
Transfer
Ans 2: B is true
Ans 3: Click in the Check box
Ans 4: Authorization from Basis and should know ABAP Programming.
Ans 5: No Idea.
Reply
15.
Banu May 23, 2011 at 12:30 am #
1) VOFM>Copying requirements>Deliveries
2) B
3) Check mark the active next to the routine
4) Not sure
5) 600-999
Reply
16.
yogeuk March 18, 2011 at 11:28 pm #
Hi sir
i am not sure about the answers of the questions 2 and 4 can you please explain
Reply
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 12/13
17.
yogeuk March 18, 2011 at 11:26 pm #
1) VOFM->copy requirements->deliveries
2)None
3) VOFM->edit->activate
4)if we want to over right the existing one or when we want use other than the sap standard once
5)1-599 for SAP and 600-999 for customers
Reply
Trackbacks/Pingbacks
1. Copy Controls in SAP & SAP VOFM Routines Feb 2011 SAP Training Batch | Magna Training
Blog | SAP Training | Informatica Training | Cognos Training | Sharepoint Training - March 14, 2011
[...] VOFM Routines in SAP [...]
Leave a Reply
Name (required)
Mail (will not be published) (Required)
Website
Submit Comment
Notify me of follow-up comments by email.
Notify me of new posts by email.
Enter search keywords...
Magna Training 2013 . All Rights Reserved.
10/14/13 SAP VOFM Routines SAP Training 2011 Batch
www.magnatraining.com/sap-vofm-routines-sap-training-2011-batch/ 13/13
SAP is a registered trademark of SAP AG in Germany and many other countries. Magna Training is NOT
affiliated/associated with SAP AG. Magna Training is NOT an official Training Partner of SAP AG.
Magna Training does NOT sell or distribute any SAP Copyrighted materials or software. Magna Training
does NOT provide SAP Access.

Вам также может понравиться