cancel
Showing results for 
Search instead for 
Did you mean: 

[LSMW][IDOC Method] Help with CLFMAS Classification issue please

Former Member
0 Kudos

Hello Everybody,

I'm using CLFMAS for classification, I need to have 3 caracteristics ( I'm talking about segment : E1AUSPM ), I mean for example :

E1AUSPM-MSGFN = '009'

E1AUSPM-ATNAM = 'Characteristic 1' (it's a hardcoded value)

E1AUSPM-ATWRT = MyStrucutre - Field1

E1AUSPM-MSGFN = '009'

E1AUSPM-ATNAM = 'Characteristic 2' (it's a hardcoded value)

E1AUSPM-ATWRT = MyStrucutre - Field2

E1AUSPM-MSGFN = '009'

E1AUSPM-ATNAM = 'Characteristic 3' (it's a hardcoded value)

E1AUSPM-ATWRT = MyStrucutre - Field3

Can anyone please help me to resolve this issue. I'm thinking of using Transfer Record but I don't know how to do this exactly.

Thanks for any possible help you would give

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I find the solution, hope it will help somebody else.

1 - In the ' Field mapping and conversion rules 'step, press CTRL+F7. In the popup shown, check ' Processing Times '.

2 - You're gonna see 'begin_of_record' and 'end_of_record' instructions in each segment.

3 - Choose the segment you want to duplicate

4 - Assign Characteristic1 and MyStructure-Field1 to the corresponding fields.

5 - In the end_of_record instruction, add the following lines :

 E1AUSPM-ATNAM = 'CHARACTERISTIC 2'. 

 E1AUSPM-ATWRT = MyStructure-Field2. 

 transfer_record. 

 E1AUSPM-ATNAM = 'CHARACTERISTIC 3'. 

 E1AUSPM-ATWRT = MyStructure-Field3. 

 transfer_record. 

NB : E1AUSPM is the name of the segment I want to duplicate.

MyStructure is the name of the source structure I use.

Field1 and Field2 are the source fields I want to map with the field ATWRT of E1AUSPM segment.

If you don't get something, I'm here to help.

Former Member
0 Kudos

Thans for sharing. It really helps my case.