cancel
Showing results for 
Search instead for 
Did you mean: 

Copy BILLING PLANS from Quotation to Sales Order.

Former Member
0 Kudos

Hi Guys,

I am trying to copy the billing plans from quotation to sales order(SO), when CREATED BY REFERENCE from quotation.

Quotation HEADER LEVEL Billing plans -> SO Header Level Billing plans

Quotation ITEM LEVEL Billing plans -> SO ITEM LEVEL Billing plans

I have already tried to use copy control routine 402 by adding a statments to copy internal table CPFLT to XFPLT. It did not work.

I will appreciate if somebody can tell how to accomplish this task. It is for ECC 6.00

Thanks,

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hello boss

THE FPLA fieldthat checksbilling planrequire ment have met then its copy s billing plan condition put 251

Former Member
0 Kudos

Hi Don,

Thanks for your reply. Can you please tell me in detail.

Thanks,

Former Member
0 Kudos

hello boss

THE FPLA fieldthat checksbilling planrequire ment have met then its copy s billing plan condition put 251

fpla fieldin the item level of sales document to sales document copy control t. code. vtaa.

in that you will find fpla tab you give condition type 251 .

it will check billing req then it will copys

Former Member
0 Kudos

Hi Manoj,

I know its very late to provide the solution. Thought of sharing since I had a similar requirement as yours and got the solution.

Here is the Solution::::

1) Let 402 routine stay in the config and do not add any custom code in it.

2) In TCode: VTAA , in FPLA tab, copy the routine 251 (Conditions) and copy the below mentioned code..thats it...

FORM DATEN_KOPIEREN_251.

*{ INSERT ECDK900223 1

LOOP AT CFPLT.

MOVE-CORRESPONDING cfplt TO FPLT.

CLEAR FPLT-FPLNR.

FPLT-FPLNR = FPLA-FPLNR.

MOVE-CORRESPONDING FPLT TO XFPLT.

XFPLT-UPDKZ = 'I'.

APPEND XFPLT.

CLEAR XFPLT.

ENDLOOP.

UPD_FPLT = 'I'.

*} INSERT

ENDFORM.

Now you should be able to copy the Billing plan from Quotation into Sales Order.

Reward if helpful

Thanks,

Maqsood.

Former Member
0 Kudos

Hi i am facing same issue

In my case everything works fine till mile stone assinged

Milestone Order-billplantyp-Milestone Billing

after this configuration header level only working for item it is not happening and for info

in item headerplan is always checked

pls help