Application Development and Automation 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: 
Read only

Serial number

Former Member
0 Likes
922

Hello gurus,

I have a problem. I have to implement 3 forms for upload serial number in logistic process:

1. Serial number by serial number (No problm because is standar)

2. Range of serial number (No standar)

3. By flat file (No standar)

Do Somebody implement something like that?

Thanks

Gustavo

8 REPLIES 8
Read only

Former Member
0 Likes
869

Hi !

Do you only wand to create the Serials as a "Master Data" (such as IQ01 does) or do you want to "book" something in MM with you upload ??

If you want some action in MM you could use the SXDA Workbench and there the object-type BUS2010.

There you can upload material-movements including serialnumbers.

Home that helped a bit.

Some points would be fine then...

Regards

Rainer

Read only

0 Likes
869

Hello Rainer,

I need to modify standar for:

1. When goods receipt (Like Tx. MIGO) i have to upload the serial number by 3 ways (one by one, intervals, flat file) This have to be a program.

2. When goods issue (Like Tx. VL02N) i have to upload the serial number by 3 ways (one by one, intervals, flat file) This have to be a program.

3. When goods transfer (Like move type 313, 315, etc) i have to upload the serial number by 3 ways (one by one, intervals, flat file) This have to be a program.

How I can do that?

Is there some user exit where I can do that?

Thanks in advance

Gustavo

Read only

0 Likes
869

Hi gustavo,

Did you find a solution for updating serial number in outbound delivery when goods issue are posting because i got the same problem .

I found a solution to update serial number in delivery but i can't at the same time post goods issue and i need to do the both thniks at the same time

Best regards.

Bertrand

Read only

0 Likes
869

Hi Gustavo,

Are you still looking for a solution to your problem because i found a solution to solved it .

Best regards.

Read only

0 Likes
869

Did u find a way to upload a file containing the serial numbers?

I have problem doing it with transaction IQ04 and we don't want to do it with BDC since the users are not allowed for those actions.

Thanks in advance

Read only

0 Likes
869

I am having the same problem with my [serial number labels|www.aclabels.co.uk] as you karesk. Can someone please look in to this asap, dont want to sound pushy! I have a rather large order to fill thats all.

Thanks Guys

Read only

0 Likes
869

Hey dude75,

I did it via user exit!

I added some custom code in one of the IQ04 user exit EXIT_SAPLIPW1_001 that has include ZXQSMU01

I added the following code:

data : begin of table_ser occurs 0,

sernr(18) type c,

end of table_ser.

CALL FUNCTION 'UPLOAD'

EXPORTING

filename = 'D:\Ifile.txt'

filetype = 'ASC'

TABLES

data_tab = table_ser

EXCEPTIONS

conversion_error = 1

file_open_error = 2

file_read_error = 3

invalid_type = 4

no_batch = 5

unknown_error = 6

invalid_table_width = 7

gui_refuse_filetransfer = 8

customer_error = 9

no_authority = 10

OTHERS = 11.

loop at table_ser.

TAB_SERNR-sernr = table_ser-sernr.

append tab_sernr.

endloop.

Sorry for the late reply I seldom check SDN :S

Happy ABAPing!

Read only

0 Likes
869

Hi Ilina,

Is this for one line item per PO or how would you handle if you have multiple line items?I'm having a problem here as am getting the GOITEM structure value using field symbol, and every single time it comes into this exit, its only pointing to the first line item and not the rest.

assign ('(SAPLMIGO)GOITEM-ANLN1') to <f_anln1>. -->only gives me the one cursor is pointing to

Were you able to tackle multiple line items?