cancel
Showing results for 
Search instead for 
Did you mean: 

Object Type for List of Recurring Transaction Template

ANKIT_CHAUHAN
Product and Topic Expert
Product and Topic Expert
0 Kudos

Dear All,

I am developing an add-on same as Service Contract Module. There is a tab named as 'Sales Data' in the given Service Contract module. In it there is a column as 'Template' which has an CFL. Same I want to do in my add-on. But I am not able to get the object type for List of Recurring Transaction Template. So please explain how can I get that.

Any kind of help would be appreciated.

Thanks & Regards

Ankit Chauhan

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi you can try this

For Each oColumn As SAPbouiCOM.GridColumn In dgCOLUMNS.Columns

                Dim oTextColumn As SAPbouiCOM.EditTextColumn = oColumn

                  Select Case oColumn.UniqueID

                    Case "Document No."

                        oTextColumn.LinkedObjectType = 34                  

                End Select

Next

Just changes it to matrix.

Former Member
0 Kudos

Hi Ankit,

I don't think there is any object type associated with the  Recurring Transaction Template.

You can have your own grid to show it like a CFL.

Regards

ANKIT_CHAUHAN
Product and Topic Expert
Product and Topic Expert
0 Kudos

Dear Pari Minhas,

Thank you for your reply & giving your precious time.

I want to work same as that in Service Contract Module with this CFL. How can I manage my grid. ? And what are the things that I should remember before doing this.