cancel
Showing results for 
Search instead for 
Did you mean: 

assignment of (Internal) order in the contract

Former Member
0 Kudos

Hi Friends,

I would like to know if there is a possibility of assigning Internal orders in Real Estate Contracts.

The issue is: In our company, (internal) orders are what we actually depend on, more than the profit centers when drawing reports.

And so when defining/creating a contract there is a requirement of assigning Orders.

Please suggest.

Regards

Soujanya.

Accepted Solutions (0)

Answers (1)

Answers (1)

franz_posch
Active Contributor
0 Kudos

Hi Soujanya,

you can assign orders to contracts in the object tab if you have configured it in img activity "Permitted Object Types per Contract Type".

Is this what you are looking for?

Regards,

Franz

Former Member
0 Kudos

Hi Franz,

Thnx for replying.

I have assigned "Order" to the object type (Z001 - Commercial Lease out), however it doesn't seem to workout for me.

On the other hand, I've even tried to assign the profit centers to orders against the revenue element "LEase Rent" in OKB9 to see if I'm able to capture the revenue posting in the order and even that is not helping me.

Is there any other way that you could think of to accomplish the postings to orders apart from Profit centers.

Regards

Soujanya.

Former Member
0 Kudos

Hi,

I 'm wondering if you find out the way to assign an internal order to a contract ?

If it's the case, does it works with cost order and / or statistical order ?

I'm working on a SAP R/3 version 4.6C and I didn't find out the customizing step to add the internal order type to the objects list.

we're going to move on a ECC6 version, but no upgrade to RE-FX planned (...)

Could you precise me the procedure to add it ?

thanks in advance for your reply.

NBEAUDET

Edited by: N.BEAUDET on Jan 18, 2010 10:27 AM

Former Member
0 Kudos

I found out a way to resolve the issue.

On SAP R/3 4.6C version it's necessary to modify a function module by deactivating a program line.

The function module is REC6_CREATE_OBART2_LIST and the line to be modified is placed on line 77

loop at loc_meta.

loc_len = strlen( loc_meta-clsname ).

loc_len = loc_len - 1.

loc_type1(1) = loc_meta-clsnameloc_len(1).

loc_len = loc_len - 1.

loc_type0(1) = loc_meta-clsnameloc_len(1).

  • Vorerst die Obejktliste einschränken

if loc_type ne 'AN'

and loc_type ne 'IE'

and loc_type ne 'IF'

  • and loc_type ne 'KS' "Enable cost centre

and loc_type ne 'MA'

and loc_type ne 'OR' <----

-


Deactivate this line.

and loc_type ne 'VK'.

append loc_type to t_obart_list.

append loc_meta-clsname to loc_class_list.

endif.

endloop.

After that, on the customizing, it 'll be permitted to match a X contrat type with a internal order type.

NB