‎2006 Aug 05 2:29 AM
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
‎2006 Aug 07 5:27 AM
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
‎2006 Aug 15 9:01 PM
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
‎2006 Oct 04 10:03 AM
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
‎2007 Jul 17 12:58 PM
Hi Gustavo,
Are you still looking for a solution to your problem because i found a solution to solved it .
Best regards.
‎2010 Jun 02 10:30 AM
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
‎2010 Jun 02 12:30 PM
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
‎2010 Jul 01 3:16 PM
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!
‎2012 Jun 20 2:33 AM
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?