cancel
Showing results for 
Search instead for 
Did you mean: 

Offline activate contracts.

0 Kudos

I want to activate telco contracts offline. And for this purpose I'm currently using CRM_IST_XI_CONF_SIMULATE to activate documents. But I have a problem. To activate documents:

- I have to set In Distribution with XI on Item,

- run CRM_IST_XI_CONF_SIMULATE,

- create an XML and insert contract number and item number to it,

- and execute.

I want to make this a more simple process.. For example with a function with contract id as parameter. Do you have any idea how to do this?

Accepted Solutions (0)

Answers (1)

Answers (1)

madhusudana_reddy2
Contributor
0 Kudos

Hi Calyk,

Your question is not clear to me.

Any way if you want to create xml document and update this with some details in easy way, create one html page which contains all text boxes with details and finally if you click on CREATE button, it has to create XML File with the details which you have inserted in HTML page.

thanks,

madhu

0 Kudos

- I create an order from CRM user interface and save it. The provider order document has the <Open> status.

- When I submit it, provider contract document is created. Both Provider Order and Provider Contract documents have <In Activation>

- Then I open provider contract document from CRMD_ORDER.

- Set Items' status to "In Distribution at TSStart (XI)"

- Then run the "CRM_IST_XI_CONF_SIMULATE"

- I prepare an XML for activation procedure like this:


<?xml version="1.0" encoding="utf-8"?>
  <nr1:TelcoServiceConfirmation xmlns:nr1="http://sap.com/xi/CRM">
    <TelcoService>
      <InternalID>000500019</InternalID>
      <Item>
        <InternalID>0000000010</InternalID>
        <ExternalID></ExternalID>
        <ItemProcessType></ItemProcessType>
        <ActivationStatusCode>01</ActivationStatusCode>
      </Item>
    </TelcoService>
  </nr1:TelcoServiceConfirmation>

After I execute this, both contract and order shows as <Released>

I can set items' status to "In Distribution at TSStart (XI)" with code.. What I want is activate order/contract with code. Do you have any idea how can I do this?