Application Development 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: 

Cost center

Former Member
0 Kudos
71

Hi All,

I am working on an interface where I am getting an input file which has cost center ..when I run my program it gives me this message <b>"Cost center 1000/21111110 does not exist.

Period 08 is not allowed. "</b>

But when I talked to me functional folk he told me that the cost cneter is already defined in there and he is getting the following messages:

"<b>Cost center already exists from 10/11/1900 to 12/31/9999" and post periods are open from 01 to 10,</b> so can you please look into this and please tell me what is the possible cause of this error.

Thanks

Rajeev

1 ACCEPTED SOLUTION

Former Member
0 Kudos
53

Hi Rajeev,

It will be linked with Controlling area and company code, check if there is any problem.

Regards,

Satish

2 REPLIES 2

Former Member
0 Kudos
54

Hi Rajeev,

It will be linked with Controlling area and company code, check if there is any problem.

Regards,

Satish

Former Member
0 Kudos
53

Before using the cost center, try running it through FM <b>CONVERSION_EXIT_ALPHA_INPUT</b>.

DATA: kostl TYPE csks-kostl VALUE '21111110'.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    input  = kostl
  IMPORTING
    output = kostl.

I gave the wrong FM originally and corrected it here.

Rob

Message was edited by:

Rob Burbank