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

Settlement Rule -EXIT_SAPLCOI1_027-Receiver is missing Error(IW32 Tcode)

Former Member
0 Likes
1,869

Hi ,

While i am trying to create settlement rule for PSG,it is giving error says that "Receiver missing for distribution rule PMU".

pmdfu_tab-konty = 'KS'.
pmdfu_tab-fdind = caufvd_imp-kostl.
pmdfu_tab-perbz = 'PER'.
pmdfu_tab-prozs = 100.
APPEND pmdfu_tab.

pmdfu_tab-konty = 'EO'.
pmdfu_tab-fdind = ' '.
pmdfu_tab-perbz = 'PER'.
pmdfu_tab-prozs = '100'.
APPEND pmdfu_tab.

pmdfu_tab-konty = 'EO'.

pmdfu_tab-fdind = ' '.

pmdfu_tab-perbz = 'PER'.

pmdfu_tab-prozs = '100'.

APPEND pmdfu_tab.


pmdfu_tab-konty = 'EO'.

pmdfu_tab-fdind = ' '.

pmdfu_tab-perbz = 'PER'.

pmdfu_tab-prozs = '100'.

APPEND pmdfu_tab.

i have implemented above code in include ZXWOCU24 but rule is not generated.

Can you anyone help me 

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,240

Hi

Check whether what you pass in the receiver is valid ....For the second and third line items u should not pass the Cost Centre (i missed that in ur code)   but the profitability segment number ..PAOBJNR ( can you try hard coding  the correct number for the first time  to ensure the receiver is correct....

5 REPLIES 5
Read only

Former Member
0 Likes
1,240

You need to pass the cost centre field to all the line items .

E,g 

PMDFU_TAB-KONTY = 'EO'.

PMDFU_TAB-FDIND =  caufvd_imp-kostl.

PMDFU_TAB-PERBZ = 'PER'.

PMDFU_TAB-PROZS = '100'.

Read only

0 Likes
1,240

Still i am getting the same error

Read only

0 Likes
1,240

Hi Maheswari,

Have you included this customer exit in a project and activated it?If not create a project in CMOD, include the component and activate the project.Then check the rule.

With regards,

Read only

Former Member
0 Likes
1,241

Hi

Check whether what you pass in the receiver is valid ....For the second and third line items u should not pass the Cost Centre (i missed that in ur code)   but the profitability segment number ..PAOBJNR ( can you try hard coding  the correct number for the first time  to ensure the receiver is correct....

Read only

0 Likes
1,240

Hi Ramachandran,

As you have suggested, i am passing default prfit segment field.And i forgot to post that source assignment also needed for my requirement.

  pmdfu_tab-konty = 'KS'.
pmdfu_tab-fdind = caufvd_imp-kostl.
pmdfu_tab-perbz = 'PER'.
pmdfu_tab-prozs = '100'.
pmdfu_tab-urzuo = '40'.
append pmdfu_tab.

pmdfu_tab-konty = 'EO'.
pmdfu_tab-fdind = '4878'.
pmdfu_tab-perbz = 'PER'.
pmdfu_tab-prozs = '100'.
pmdfu_tab-urzuo = '10'.
append pmdfu_tab.

pmdfu_tab-konty = 'EO'.
pmdfu_tab-fdind = '4878'.
pmdfu_tab-perbz = 'PER'.
pmdfu_tab-prozs = '100'.
pmdfu_tab-urzuo = '20'.
append pmdfu_tab.

pmdfu_tab-konty = 'EO'.
pmdfu_tab-fdind = '4878'.
pmdfu_tab-perbz = 'PER'."lc_perbz_ges.
pmdfu_tab-prozs = '100'.
pmdfu_tab-urzuo = '30'.
append pmdfu_tab.

When i am trying to give source assignment,i am getting below error

"enter an existing source assignment for source structure Z9 in sap.

Can you help me on this as well.