cancel
Showing results for 
Search instead for 
Did you mean: 

MTT Enhancement Customerspecific Picklist

Former Member
0 Kudos

Hi,

we've some problems about SAP Mobile Time and Travel.

In the mobile time sheet we'd like to change a SAP-PCIKLIST into a customer specific picklist for field 'RFAUFNR'.

We built ci_records.xml, ci_tables, ci_types and deployed them (xml-files at the end of e-mail). But we didn't get the picklistdata because of a sync error.

We activated the userexit 'MYCATS01' (coding at the end of e-mail).

What is the point of failure? What can we do?

Thanks in foreward

Jörg

XML:

ci_types.xml

Customer-Exit R/3 MYCATS01

Tables: zzpers.

  • Erstellen der Suchhilfe für Catsoffline (Suchhilfe

Types: begin of standard_my_IP_picklist,

pernr type Pernr_d,

raufnr type aufnr,

ktext type auftext,

auart type auart,

end of standard_my_IP_picklist.

Data:i_zzpers type zzpers.

*----


*

if sap_fieldname = 'RAUFNR'.

Data: my_ip_picklist type table of standard_my_ip_picklist,

wa_my_ip_picklist type standard_my_ip_picklist.

  • zuordnung zu den feldsymbolen

FIELD-SYMBOLS: .

*-Füllen der Picklist-

  • read picklistdata from Databasetable ZZPERS

select * from ZZpers into i_zzpers where Pernr = sap_pernr

and RAUFNR ne Space.

move-corresponding i_zzpers to wa_my_ip_picklist.

append wa_my_ip_picklist to my_ip_picklist.

endselect.

= my_ip_picklist.

ENDIF.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

solved on my own.

Jörg