Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

rv_condition_copy

former_member659396
Participant
0 Likes
983

Dear Experts

i am working on pricing conditions..

can any one tell me in detail what is the purpose of Function module RV_CONDITION_COPY

and how to use it exactly..

Regards

Rohan

Dear Experts

i am working on pricing conditions..

can any one tell me in detail what is the purpose of Function module RV_CONDITION_COPY

and how to use it exactly..

Regards

Rohan

5 REPLIES 5
Read only

Former Member
0 Likes
903

This function module is used for Condition Maintenance

CALL FUNCTION 'RV_CONDITION_COPY'

EXPORTING

application = v_appl

condition_table = con_t074

condition_type = con_pref

date_from = sy-datlo

date_to = con_ultimo

enqueue = 'X'

i_komk = komk

i_komp = komp

key_fields = komg

maintain_mode = 'A'

no_authority_check = 'X'

keep_old_records = ' '

OVERLAP_CONFIRMED = 'X'

IMPORTING

e_komk = komk

e_komp = komp

new_record = i_new_record

TABLES

copy_records = w_komv

EXCEPTIONS

enqueue_on_record = 01

invalid_application = 02

invalid_condition_number = 03

invalid_condition_type = 04

no_authority_ekorg = 05

no_authority_kschl = 06

no_authority_vkorg = 07

no_selection = 08

table_not_valid = 09.

Read only

0 Likes
903

Hey thanks for the reply gayathri,

Can u tell me which values i have to enter in that function moule bye using program SAPMV13d,or any other sample intries

Read only

0 Likes
903

Can u provide me how to use this FM in program with all data statements..

please help me i am in big trouble

Read only

0 Likes
903

Sample code is as below:

<< Unformatable code removed >>

You can reduce the amount of code and try again.

Edited by: Rob Burbank on May 1, 2009 5:32 PM

Read only

former_member659396
Participant
0 Likes
903

thanks