Printing Attachment name

hello all,
I'm looking for a way to print the file name of an attachment that arrives in the Mail app. We can print the attachment and the email but the name of the attachment is not printed.
We receive many, many attachments from clients which are printed and then passed on to the production department where they're identified by the attachment name on the email (We've been using Gyza(sp?) Mail up till now).
Can anyone offer a suggestion on how to do this?
Thanks
/k
powerbook   Mac OS X (10.4.7)  

Hello, and welcome to the Discussions.
Do you mean routinely, or for one special message?
Ernie

Similar Messages

  • Mail does not print attachment name & prints small

    When printing an email, if it has an attachment, it does not print the attachment name.  It prints the icon of the attachment (excel, word, psd, etc.) but it doesn't print the name of the file under it.  This started happening since upgrading to Mavericks.
    Also, emails are printing much smaller.  Is there a way to enlarge the font when printing?

    The same here and quite a lot of other Mail bugs - and all since the new MacPro and Mavericks, no such problems with Mavericks on the MacBookPro 2011 though
    Sometimes the file names are printed, sometimes not and there is no way to find out why - it happens on and off with own mails to be sent and mails received.
    Workaround for own mails is put each file underneath the other with some distance from the last word. Workaround in case of customer mails received go to reply, edit signature on top, reduce to one page and hope .... sometimes it works.
    Also: on and off, Preview will show and printer will print only header on the first page, then body text on the second - only workaround to date (and believe me, I've tried everything) is use Reply, eliminate your own signature and reduce the printed area to less than a page
    Also: long mails with back-and-forth messages may print a line half on one page and lower half on second one .... no workaround here.
    Seems Mail is going to A4 US instead of A4 small (Europe), though this is not what the printer and the system or Word etc. are set to.
    And a sneaking suspicion, that it works ok with people sending me mails from a Mac, but not from a Windows box ... can't bother all my customers though and ask
    So please Apple - lots of people have the same problems - will you finally do something about it ... and yes I used the Feedback function
    Suzanne

  • Printing document name and date with document

    hi all.
    former pc user here.
    is there a way to automatically print the name of a document and the time it was printed on documents that I print on the mac?
    how does this work?
    can i set it globally by printer driver?
    can i set it globally by software?
    or can i only set it by manually doing this on each document?
    thanks

    Here is a script which add automatically a date_time stamp to PDF created thru Print in a PDF file.
    --{code}
    --[SCRIPT ranger PDFs dans un dossier]
    Attach this folder action script to the folder in which "Print as PDF" store its files.
    It will move them in a storage folder with a date_time stamped name.
    Yvan KOENIG (VALLAURIS, France)
    2011/10/04
    -- two instructions used for tests
    set this_folder to ((path to desktop as text) & "PDFs recipient:") as alias
    set added_items to {((path to desktop as text) & "PDFs recipient:OS X Lion / à propos de Récupération Lion.pdf") as alias}
    on adding folder items to this_folder after receiving added_items
              set nom_du_dossier to "stamped PDFs"
    Build the path to storage folder *)
              if nom_du_dossier ends with ":" then
                        set dossier_de_stockage to "" & this_folder & nom_du_dossier
              else
                        set dossier_de_stockage to "" & this_folder & nom_du_dossier & ":"
              end if
    If the storage folder doesn't exist, create it *)
              tell application "System Events"
                        if not (exists folder dossier_de_stockage) then make new folder at end of folder ("" & this_folder) with properties {name:nom_du_dossier}
              end tell
    Main loop *)
              repeat with un_fichier in added_items
                        tell application "System Events" to tell disk item ("" & un_fichier)
                                  try
                                            set isPDF to type identifier is "com.adobe.pdf"
    If the file is a PDF, grab some infos *)
                                            if isPDF then set {the_ext, origName} to {name extension, name}
                                  on error
                                            set isPDF to false
                                  end try
                        end tell -- System Events
                        if isPDF then
    If the file is a PDF, move it to the storage folder with a date_time stamped name *)
                                  if the_ext is "" then
                                            set new_name to origName & (do shell script "date +_%Y%m%d_%H%M%S.PDF")
                                  else
                                            set new_name to (text 1 thru -5 of origName) & (do shell script "date +_%Y%m%d_%H%M%S.PDF")
                                  end if -- the_ext…
      do shell script "mv " & quoted form of POSIX path of un_fichier & space & quoted form of POSIX path of ("" & dossier_de_stockage & new_name)
                        end if -- isPDF
              end repeat
    end adding folder items to
    --[/SCRIPT]
    --{code}
    Attach it to the folder in which you send the PDFs created by Print in a PDF.
    Yvan KOENIG (VALLAURIS, France) mardi 4 octobre 2011 11:49:42
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Change the attachment name while sending PO as mail..

    Hi,
    I’m able to send PO Form through mail using NACE, configuration for output type.
    But my Attachment name is always showing as ‘Print Data‘.
    My requirement is to change the attachment name as below.
    Program: SAPFM06P
    Script: Z_SD_PORDER
    Please help on this issue.
    Thanks in advance.
    Regards,
    Kumar

    I didn't find any field with PACKING_LIST in program 'SAPFM06P'.
    If we create the copy of 'SAPFM06P' kindly let me know where I need to change the same..
    in form entry_neu using ent_retco ent_screen.
    the below is the code.
    *   INCLUDE FM06PE02                                                   *
    form entry_neu using ent_retco ent_screen.
       data: l_druvo like t166k-druvo,
             l_nast  like nast,
             l_from_memory,
             l_doc   type meein_purchase_doc_print.
       clear ent_retco.
       if nast-aende eq space.
         l_druvo = '1'.
       else.
         l_druvo = '2'.
       endif.
       call function 'ME_READ_PO_FOR_PRINTING'
            exporting
                 ix_nast        = nast
                 ix_screen      = ent_screen
            importing
                 ex_retco       = ent_retco
                 ex_nast        = l_nast
                 doc            = l_doc
            changing
                 cx_druvo       = l_druvo
                 cx_from_memory = l_from_memory.
       check ent_retco eq 0.
       call function 'ME_PRINT_PO'
            exporting
                 ix_nast        = l_nast
                 ix_druvo       = l_druvo
                 doc            = l_doc
                 ix_screen      = ent_screen
                 ix_from_memory = l_from_memory
                 ix_toa_dara    = toa_dara
                 ix_arc_params  = arc_params
                 ix_fonam       = tnapr-fonam          "HW 214570
            importing
                 ex_retco       = ent_retco.
    endform.
    Kindly give the clear view.

  • SQL query to pull all systems with USB printer attached

    I am looking to create a SQL query for a collection that will populate the systems at my site that have a USB printer attached.  I saw I could query the USB device, Manufactuer and then include several OR statements for the various printer types we
    have on site.  I also found under USB device, Service that I could select a usbprint value.  I found a few other technet posts that had to do with SCCM 2007 and printers.
    I have the following Query statement:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_USB_DEVICE on SMS_G_System_USB_DEVICE.ResourceId
    = SMS_R_System.ResourceId where SMS_G_System_USB_DEVICE.Service = "usbprint"
    The collection pulled in several systems that appear to also have local USB attached printers but I am just seeking further understanding that by searching on the usbprint service I should pick up any system that has any USB device attached that reports
    it has the ability to print.  Am I understanding this correctly?

    Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
    Yes basically your understand is correct.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Change PO Email Attachment Name

    Hi Guys,
    I've implemented SAP Note 191470 to change the subject line and the attachment name to contain the PO number. I was successful in changing the subject line but not the attachment name. Currently, the attachment name is defaulted by SAP to 'Print data'.
    In the note, it states:
         Note that the values from the mail title are used to create the description for the attachment.
    I've maintained the mail title in the condition record for the output type on the 'Communication method' tab page in the 'Cover Page Text' field but to no avail. I'm probably missing a step.
    I did my due diligence by searching the internet but I haven't found any solution.
    Any help would definitely be appreciated. <removed by moderator>
    Thanks in advance,
    Derick
    Message was edited by: Jürgen L

    Have a look into this  KBA it is listed under FI, but you can try if the same solution would work for you too: 1702035 - How to change the attachment name in the mail for correspondence

  • Can't see MFP printer attached to AE (in Bridge mode)

    Can't see MFP printer attached via ethernet cable to 2nd AE (in Bridge mode extending wireless network) on local wifi network.
    Printer is set to static IP adress (192.168.0.50).
    Upstream Router is: 192.168.0.1 (this is connected to first AE).
    When the printer was previously attached (by ethernet cable) to 1st AE, everything was working fine and I could login to printer Admin page via Safari by typing IP Address. I have since moved the printer to the back of the house and leaving all previous settings, the printer is not visiable on the wifi network.
    Normal process to setup is:
    System Prefs > Print & Fax > Add > IP > 192.168.0.50 (currently just hangs not seeing the printer).
    Normally the printer name appears and the correct driver is shown at the bottom as Use: Ricoh 2020D Driver

    Have you verified that the Ethernet port is functioning correctly by temporarily connecting a laptop, turning off the wireless, and connecting using an Ethernet cable to see if the laptop can get a good Internet connection that way?
    The all-in-one device should also be reset back to factory default settings, then reconfigured again with a new static IP address. In other words, start all over again on the printer including a complete power cycle of the main and extending AirPort devices..

  • Can't print to printer attached to Windows 7 machine

    When I send a document from my MacBook to the printer attached to my Windows 7 desktop, it shows up on the print queue as a document but lags and shows as "spooling". I have yet to get this to work. I successfully networked the computers together for file sharing and whatnot, but printing refuses to work. Like I said, the documents make it to the print queue, but won't actually print.
    Router is Linksys WRT54G2 firmware version 1.0.04
    printer is Cannon MP240
    Mac OS is Snow Leopard version 10.6.4
    Any help would be greatly appreciated. Even if a suggestion doesn't work, thanks for taking the time to reply!

    To print to a Canon inkjet when it is being shared by a Windows computer, you need to use a CUPS-based driver such as Gutenprint or PrintFab. Note that the Canon drivers cannot be used - even the versions that have CUPS in their name.
    Gutenprint is the preferred driver as it is free however the MP240 is too new and is currently not listed as a supported model. So you could look at using a different Canon model, such as the MP220 or some users have found the MP150 to work for their non-supported model.
    If you cannot get any of the alternate Canon models to work correctly then you could try [PrintFab|http://www.printfab.net>. There is a 30 day trial available so you can check that it works before paying the €49. Also your MP240 is listed as a supported model.

  • Wanting to share a printer attached to a PC -- help?

    I am sure this has been addressed a gazillion times, but all my forum and KB searches seem to address how to get a PC to share a printer attached to a Mac; I want to do the opposite -- have my Mac wirelessly share a printer attached to a (Windows XP) PC.
    I can't seem to get the printer to show up in the list of available printers on the Mac...

    I just got a MacBook an I am trying to so the same thing. I've gotten pretty close to getting this to work.
    First, you need to set up printer and file sharing on your PC. There are different steps for doing this depending on the operating system on your PC, and whether you are using Simple File Sharing or not. Also, be careful if you have extra firewall software on your PC. Norton Internet Security can cause havoc. Disable it while you try getting the printer sharing set up. You can enable it again later.
    Once you enabled Printer and File Sharing, you need to specifically share the printer on your PC. This is similar to creating a share on a directory.
    Once that is done, go to your Mac, go to the Printer Setup Utility an add a printer. If you don't see your PC printer in the printer browser window, click on More Printers.
    In the next dialog box, select Windows Printing on the top drop-down box, then select Network Neighborhood in the drop-down box below it.
    You should see a list that contains an entry for the network neighborhood name you set on your PC (typically this is defaulted to MSHOME)
    Double click MSHOME (in my example) and you should see the name of your PC. Double click your PC name. You may be prompted for a username and password, if you set one on your PC.
    This should get you almost there. The last step is to select the printer and find the appropriate driver in the resulting list. Unfortunately, the printer list on the Mac is WAY SHORTER THAN WHAT YOU WILL FIND ON A PC. If you have any older printer (like me), you may not find the proper driver in the list. Try the generic driver and see if it works.

  • Printing trough a printer attached to Windows

    Hy,
    I'd like to print trough a HP printer attached to a Windows Home SP2. When I go to system preferences he can see the network and the printer where it is attached to, but if I click on the network it asks me to "connect as" Guest or User, I've tried guest an User with the Username from the Pc (no password) and then tried with a password (changed it on the PC). To connect to SMB shares, I don't need a password or Username, what must I enter in the box "Username" and "Password" do I need to set up anything to the network?
    My network (SMB) name is: casaclavel
    My Macbook name : TheM4inframe
    Thanks in Advance,
    TheM4inframe
    PS sorry for my bad English

    I have the same problem. I have a windows desktop computer running XP which has an HP PSC 1315 connected to it via USB and I am trying to use my MacBook to the printer via the home network. After trying several things, my MacBook won't let me install it. Any ideas?

  • Problem printing to printer attached to a pc over home network

    I have a home network with two computers, a Dell running Win XP and a new iMac running Leopard. I have Fusion installed on the Mac running a virtual PC on WinXP as well, so I effectively have 3 computers. I had an old HP printer attached to the Dell that both the Mac and its virtual PC could see and print to fine over my network. I had to replace the printer and now have a Canon MX700 attached (by USB) to the Dell, and am having trouble with remote printing. I was able to "add" the new printer to both the Mac and its virtual pc, but only the virtual pc is able to print successfully. When I try printing from the Mac applications, using the driver for the MX700 printer found during the add printer setup, I get an error message. I then tried a new setup with a generic (Gutenprint) driver, and the printer was spitting out blank pages. Then I downloaded another driver from Canon's website for OS X 10.5, and it still didn't work. (I am not sure if I was supposed to uninstall the previous drivers first, and if so,I don't know how to do that since I am still new to the Mac environment. I just am assuming that the new drivers take over for the former one.) I assume that the problem is a driver problem and not a network problem since the virtual pc on the Mac works fine and my old HP worked fine with the same network setup. Any help?

    gosox13 wrote:
    Thank you again for sticking with me on this. Frankly, I was very surprised when the Canon did not work even when I carried it downstairs and attached it directly to the Mac by USB. I used the installation disk, which said it installed successfully (after several tries where it kept getting hung up after installing the drivers, and showing 0% completed, requiring me to use force quit to get the setup to stop each time). But as I explained in my prior post, the Mac never found the printer even after the supposed "successful" install.
    This is typical when there are too many different versions of the driver residing on the Mac. I will explain my procedure to remove all the Canon stuff at the bottom of this post.
    I then downloaded the Mac OS driver from the support page for my printer on Canon's website and ran that driver, but still no recognition. But I am willing to keep trying. I had looked at the PrintFab driver too (which I learned about from one of your other posts), but they are expensive and I probably could buy another printer for the cost of that driver. So I don't think that is an option.
    Agree with you re the PrintFab. That is why I think the direct network connection would be best.
    You suggest that I try another Gutenprint driver from the Canon list, which I guess I can randomly do, but I noticed that a number of the models listed show the driver as 5.2.3 (the same numbers as the generic one I tried)--does this meand they are all the same? Can I just keep downloading and installing more drivers without removing any?
    It is not another version I need you to try. Using the same version, I suggest you try some of the other models that are included with the Gutenprint driver. Ideally, it would be good to know which model of the included Gutenprint drivers uses the same ink tank setup as your MX700. For example, if the MX700 uses BCI8 Blk and a BCI5 Blk and the three 8 series colour (Cyan, Magenta and Yellow), then selecting a model that uses the same setup might work for you. If you check a Canon web site, it would tell you what tanks are used by a certain model that is available within the Canon list.
    I am willing to consider the network install of the printer, and that would be a good way to go, but I find Canon's instruction for network installations that came with the printer (which does not appear to consider mixing Macs and Pcs since there are separate instructions for both) a bit confusing. The basic installation of the printer on the network seems easy enough to follow. It is the further instruction for doing something to the "card" for each computer that will be using the printer on the network that I find confusing. I don't know what they are talking about. I certainly don't want to mess up my network connections. Do you know of any better instructions for setting this all up?
    The setup is easier than the manual suggests. With the printer connected via USB, you open the Utilities application and select the Network tab. However this does require that you can get the printer to work when connected via USB, so we have to achieve that first.
    Again, thank you very much for all your help. (Incidentally, I also discovered I can't use the fax feature of the printer because we have a two-line phone line and when I plug the phone cord into the printer and then out to the phone it eliminates the second line, no ringtone. There is no setting for this on the printer that I can find. But I can live without the fax, just another source of annoyance with this printer).
    That would suggest that there is a link from the first phone to the second. Unplugging the phone cable to connect to the fax has broken that loop. You could easily get the phones rewired to suit the fax, but again it costs money so it might not be worth it.
    Here is my procedure for repairing faulty installations of the Canon PIXMA drivers.
    1. Open System Preferences > Print & Fax. Highlight the Canon printer in the Printer list and click the minus ( - ) button. [You may not have to do this step]
    2. Hold Control key and click in the empty Printers list. Click on Reset Printing System.
    3. Close Print & Fax
    4. Go to Library > Printers > Canon and delete the contents of the BJPrinter folder.
    5. Go to Library > Receipts and delete the Canon driver package file, if one exists. The file name will show Canon MX700 xxx.pkg
    6. Go to Library > Preferences and delete the Canon folder.
    7. Go to HD > Users > Shared > Canon and delete the BJPrinter folder.
    8. Empty the Trash
    9. Unplug the Canon USB cable and restart the Mac
    10. Install the latest version of the Canon driver. Looking at the Canon AU web site it is v6.9.3
    11. Once the driver installation is complete, go to Applications > Utilities and open Disk Utility. Run the Repair Disk Permissions option.
    12. Reconnect the Canon USB cable. Then open Print & Fax and see if the Canon printer is listed. If it is, try a test print.
    13. If the printer is not listed, click the plus ( + ) button.
    14. Select the Default view and select the Canon printer connected via the USB port. The Print Using menu should automatically change to Canon IJ Printer.
    15. Click Add to add the printer.
    PaHu

  • Email attachment name in sender mail adapter to the receiver file adapter

    HI ,
    Ths is regarding email to file scenario. I am trying to create file (in rceiver file adapter) with the same name as the email attachment that i read from mail sender adapter. I want ro use adapter module for this. I could find from blogs that there is module - GetAttachmentName - available that i can use for this in sender mail adapter.
    Can you please let me know what whetehr i neeed to mention any module key and parameters for this.
    I assume , i need to do following steps :Please confirm.
    1. i can use this module - after payload swap module and before standard mail adapter module in sender mail adapter
    2. select ASMA option in advanced tab in sender mail adapter
    3. In receiver file adapter select ASMA option in advanced tab in sender mail adapter
    4. Also select file name option in ASMA in sender mail adapter
    Thanks,
    Vamsi

    Hi Vamsi,
    your scenario is also described here: Re: sender mail adapter - attachment name
    If you use the Module getAttachmentName, which is described here,
    http://wiki.sdn.sap.com/wiki/display/XI/AdapterModulePI7.0GetAttachmentName
    your scenario should work as you described it.
    You just need to make sure that the Attachment Name that you read in the first place, is mapped to the Filename Attribute of the
    Fileadapter (http://sap.com/xi/XI/System/File/FileName).
    regards,
    Daniel

  • Receivables - ARDLP Report Not Printing Country Name

    AR Report ARDLP for concurrent program Dunning Letter Generate is not printing Country Name on send to and remit to part of the letter. Though the package 'arp_addr_label_pkg.format_address' is giving the output with the country name(when I ran the package in SQL Developer) but when I run the report it is not giving the country name. What could be the reason?
    Thanks,
    Sravanthi

    Thankyou very much Nagamohan. It is printing the country now on the dunning letters. I think it was because of settings in system options though the default country was set, print home country was unchecked. When I reran the process it printed the country.
    The Statement print program also had the same issue. Now after the changing the system options, it is printing the country in the send to address but not in the remit to address if the countries are same for both send to and remit to. If they are different it is printing in both the places. Eg. If it is United Kingdom in both send to and remit to, its printing only in send to. If its united states in send to and united kingdom in remit to then its printing in the remit to area. Any idea on this?
    Thanks,
    Sravanthi

  • Print program name for the dunning form F150_FR_DUNN_01 in sapscript

    Hi,
          I am not getting the exact print program name for the dunning form F150_FR_DUNN_01 in sapscript. After an extensive search I have come across few names of print program like SAPF150D2 and SAPLF150. But still I am not understanding which one to use for the form and also how to use it. I am unable to understand which include I should use to write my code.
    Kindly help me.
    Thanking you.
    Pujarini Patra

    Hi,
    Yes, you should be able to assign F150_FR_DUNN_01 in Dunning Forms customizing:
    and yes, I too would absolutely try to go for either a Smartform or even a PDF Form (if i'd have all the necessary setup for them, like Adobe Document Services, in the system already). I have Basis 702 SP  0011and FINBASIS 600 SP 0021, so all the following technicalities refer to those releases:
    The corresponding SAP sample Forms are:
    - F150_DUNN_SF for Smartform; and
    - F150_DUNN_SF for pdf Form (don't let the name confuse you )
    I'm not entirely sure if it's a good idea to try to convert/migrate Sapscript to Smartform and the Smartform to PDF Form - have never done that  myself and don't know how good/usable the migration result is. I just take the interface of Smartform from SAP and do the rest from scratch or by copying over the common parts of our existing custom forms.
    There are the SAP Standard wrapper FMs for SF and PDF forms already in the System:
    - FI_PRINT_DUNNING_NOTICE_SMARTF calling PRINT_DUNNING_NOTICE_SF and
    - FI_PRINT_DUNNING_NOTICE_PDF calling PRINT_DUNNING_NOTICE_PDF.
    So, theoretically, all you had to do to replace SapScripts (or even to enable all three form types) is to assign a custom BTE Event handler FM to event 1720 (for correct Application), which could detect, what type of form is assigned in Customizing and call the corresponding wrapper FM.
    As a sample for coding PDF form wrapper call one could take FI_PSO_EVENT_00001720_PDF (if you have IS-PS) in the system. I'd take out the IS-PS specific "business logic" like posting dunning charges (if it does not apply to my solution) and add the logic to decide, which wrapper to call.
    The confusing part about the customizing (Table T047E) to me is that there seems to be no form type defined anywhere in there... just the FORNR field for form name, which should apparently take the names of all three form types... I'd  try to extend that table with custom Form type field and try to regenerate Table Maintenance dialog for  view Cluster VC_T047_F... That would save the whole effort to try to detect the type for  form assigned...
    Another tip, in case you didn't know it already: you should be able to see all the Customizing paths, where T047E is involved, when you enter table name in SM30 and press "Customizing" and then "Continue w/o Specifying Project":
    The selected entry is the one you are looking for to assing your custom forms, I believe.
    cheers
    Janis

  • Print group name on a page of Report

    I have sorted my data on my report, printing a group on each page of my report.
    On each page, i would like to print the name of the current group (easy) but also the name of the previous page group. How can i do that ?
    Using GroupName()...?

    duplicate - please do not post multiple times

Maybe you are looking for

  • R3- RFC- XI-Plain HTTP

    Hi, I have a scenario where R/3 sends IDoc's to our external system using XI plain HTTP adapter. My configuration works fine but, the only issue is , I need to parse through the payload XML, in order to determine the IDOC type at my external system h

  • Disabling Networked Printer Web Interfaces

    Hello, I did a search with my novice search skills and didn't find exactly what related to my issue. I have multiple virtual print servers on Win08 R2 with networked printers from different manufacturers.  Is there a way other than going to each prin

  • Timeline for imported .dv file?

    Hi all, I'm trying to do something very simple, however I cannot find a way to do this. I have a 1.5 hour long video that has been imported into iMovie (began its life as a .m4v which I converted to .dv). I am just trying to have a timeline so that I

  • Time Machine settings for multiple drives?

    I have two hard drives installed in my mac, one is for system related stuff and one is a working drive for FCPX.  Is there a way to set my time capsule to create a backup of my boot drive and an external drive to use time machine to back up the 2nd i

  • IDSM2 Licensing issue

    Dear all We  have 3 cisco 6513 Switch which have IDSM2 madules on it.  We purchased  the License for one device serial number.  By mistake our engineer  install on a deffrent module and it's expire long back.  Now we renewed  the smartnet.  our clien