cancel
Showing results for 
Search instead for 
Did you mean: 

Quotation Valid To

Former Member
0 Kudos

Hello.

Can anyone tell me how I configure in such a way that when I create a quotation, the "valid to" field is auto default to 30.12.9999

Currently, I have to input the date everytime.

Best regards,

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

just type in manually

Former Member
0 Kudos

hi,

goto transaction se93 and create a new transaction, zva21. Choose the first opton (dialog transaction). put the program number from the original va21. (u can find it in status in the status tab in menu above). put the screen to be 4001. choose the authorisation object and select values. put the values and save it.

saurabh

jiteshmehta
Active Contributor
0 Kudos

Hi

It is possible through user exit or Field exit. Exact Coding ABAPer will be able to help, following is just an examples of User Exit for default Customer in Sales order and Field Exit

<b>USER EXIT</b>

- Go to transaction CMOD

- Create a project called ZVA01

- Choose the Enhancement assign radio button and press the Change button

In the first column enter V45A0002 Predefine sold-to party in sales document.

Note that an enhancement can only be used in 1 project. If the enhancement is already in use, and error message will be displayed

Press Save Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002. Double click on the exit.

Now the function module is displayed. Double click on include ZXVVAU04 in the function module

Insert the following code into the include: E_KUNNR = '2155'.

Activate the include program. Go back to CMOD and activate the project.

Goto transaction VA01 and craete a salesorder.

Note that Sold-to-party now automatically is "2155"

Fast Links:

A program to help find the user exits of a transaction quickly

Finding the user-exits of a SAP transaction code

<b>Field Exit</b>

How to Find implemented Field Exits

1. goto tcode CMOD

2. in the uppper left text box (where we type cmod i.e command line)

again type PRFB.

5. all list of field exits, (which have been created so far),

will come.

MODULE user_exit_0001 INPUT

CASE okcode.

WHEN 'BACK OR EXIT'.

CASE sy-dynnr.

WHEN '100'.

SET SCREEN 0.

LEAVE SCREEN.

WHEN '200'.

        • Note that you can write any code that satisfy your needs. ****

        • But in this case, this was wrote as a sample code for reference sake. ****

        • And you can test it. ****

SET SCREEN 100.

LEAVE SCREEN.

ENDCASE.

ENDCASE.