External HU Numbers for Packaging - Numerics have issues

Hi,
We pack our raw materials into packing materials as per customer requirement .
We have created the packaging material and had it assigned to use -- "Any external number can be entered (no HU functionality)"
The total needed is 20 digits,.
Issue:
if we enter the HU id as --> 0001234556 --> Sap takes it as 123456 by truncating zeros.
if we have atleast one alphabet in the ID entered then it works fine.SAP doesnt truncate the id.
Is there a possible solution to acheive this !!!
We want SAP to keeep all the numerics as entered, it should not truncate any digits eventhough its numeric !!!
Thanks,
Srikanth.

Can you tell me how you receive the handling units ?.If you are receiving material from PO then using an idoc then in idoc function module put the logic crete the inbound delivery with external HU number for receipt.
You can use HID dummy delivery type susyem should create the delivery with customer handling unit numbers for receipt.
I think you need to develop custom program which you need to insert HU number ,material qty ,plant and storage location then system will generate packing lable in background to receipt the material.

Similar Messages

  • Serial numbers for packaging - Delivery\Invoice

    Hello experts!
    I know there is no standart way in SBO for Serial numbers for packaging association
    ( associat s/n in every package of Delivery\Invoice)
    Is there another way to do it??
    Thank You!
    Meital

    Hi meitalmo,
    You can use packaging form avaialble on Delivery to pack the product as per serial no.
    and you also get the standard report of package content with serial no.
    revert in case need more clarrification.
    Regards,
    Datta Kharat

  • Serial numbers for packaging in Delivery

    Dear Mr Meitalmo,
    I have investigated about the Crystal Report and as it stands the Crystal report only pulls information that is already in the application, so it will not create the serial number.
    I am trying to understand what you normally do to find an alternative for you.
    So far I have come up with some ideas:
    - if you need the serial number on the packaging only (and the items are not either batches or serial numbers) then you can change the items to batch and when you create the package be careful to take the items from the same batch.
    - if you need serial numbers for the items, plus an extra one for the packaging, then do the following:
    Create the UDF field in the packaging window and every time you create a new package write manually the serial number. Then modify the printing of the packaging so that this value has been included.
    Alternative, you can create a UD table to store this information.
    Please, let me know if one of my suggestions help and let me know what the scenario is.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

    Dear Meitalmo,
    Now you should change the template of the packaging.
    To do this please go to Business One and open the Delivery and then the packaging window.
    Then go to the Print Layout Designer (PLD - you can click the pen on the toolbar) and choose the template.
    The template must be modified in order to add the information you need.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • MBP 2011, External Eizo monitor. Will I have issues?

    I have read there are alot of issues with the new Macbook Pro 2011 and external screen via Displayport. What kind of issues are there?
    Im going to buy an -EIZO FLEXSCAN EV2333WH 23"- monitor for photography/design work, and want it to work flawless via Displayport.
    Will it work, maybe someone out there can confirm it?

    BEWARE! I just bought new 2011 15" MBP with MiniDisplayPort and tried to connect it to my 30" Dell monitor (vintage 2007) which had worked fine with my 2007 15" MBP (but those were days when MBP had DVI connector).
    The monitor can be connected to the 2011 MBP with the MiniDisplayPort-to-DVI but then only produces 1280x800 resolution or lower; while my monitor was used to supporting 1920x1200 or even 2560x1600. The 1280x800 looks horrible on a big screen and would be a waste with an EIZIO.
    I have ordered, but not received, an Apple "DisplayPort-to-Dual-DVI" adapter for $99 (wow, that is a rip off!) but have not confirmed it will work. The Apple tech I spoke to said "we don't support nor know anything about supporting Dell monitors" (whereas the Apple sales guy I spoke to *before* buying assured me that the simpler adapter above would be fine with my Dell monitor. Urrrrggghhhhh........
    Not sure what I am going to do since I have to have a large external monitor for my work......

  • [SOLVED by xyne] Search for packages I have but are NOT installed?

    Hi all,
    I run a couple of computers on Arch (both 64-bit), was just wondering if I could copy the /var/cache/pacman/pkg from one computer to the other, and then run some command to install from the cache all packages that are not currently installed. Basically it would be something like "go through all the packages in /var/cache/pacman/pkg, if any are installed ignore them, if a newer version is installed ignore them, but if no version of this package is installed then install it.
    Last edited by ngoonee (2009-06-26 05:17:35)

    Try this:
    #!/usr/bin/perl
    use strict;
    use warnings;
    exit(1) if not @ARGV;
    my $cachedir = $ARGV[0];
    $cachedir = substr($cachedir,0,-1) if substr($cachedir,-1) eq '/';
    opendir(my $dh, $ARGV[0]) or die $!;
    my @cache_pkgs = map { s/-[^-]+-[^-]+(?:-i686|-x86_64|-any)?\.pkg\.tar\.gz$//; $_ }
    grep {/\.pkg\.tar\.gz$/}
    readdir($dh);
    closedir($dh);
    my @installed_pkgs = split(/\s*\n\s*/, `pacman -Qq`);
    my %cache_pkgs;
    $cache_pkgs{$_} = 1 foreach @cache_pkgs;
    my %installed_pkgs;
    $installed_pkgs{$_} = 1 foreach @installed_pkgs;
    foreach (keys(%cache_pkgs))
    delete($cache_pkgs{$_}) if exists($installed_pkgs{$_});
    # uncomment these lines if you just want a list of uninstalled packages
    # without filtering dependencies
    # @cache_pkgs = keys(%cache_pkgs);
    # print "$_\n" foreach @cache_pkgs;
    # exit();
    my $pkg_files;
    foreach my $pkg (keys(%cache_pkgs))
    opendir(my $dh, $cachedir) or die $!;
    my @pkg_files = grep {/^\Q$pkg\E/} readdir($dh);
    closedir($dh);
    foreach my $pkg_file (@pkg_files)
    if ( $pkg_file =~ m/^(.+)-([^-]+-[^-]+)(?:-i686|-x86_64|-any)?\.pkg\.tar\.gz$/ )
    $pkg_file = $cachedir . '/' . $pkg_file;
    if (not exists($pkg_files->{$1}))
    $pkg_files->{$1}->{'ver'} = $2;
    $pkg_files->{$1}->{'file'} = $pkg_file;
    else
    my $ver = $pkg_files->{$1}->{'ver'};
    if (&compare_versions($2,$ver))
    $pkg_files->{$1}->{'ver'} = $2;
    $pkg_files->{$1}->{'file'} = $pkg_file;
    foreach my $pkg (keys(%{$pkg_files}))
    my $pkg_file = $pkg_files->{$pkg}->{'file'};
    my $pkginfo = `tar -O -zxf $pkg_file .PKGINFO`;
    foreach my $line (split(/\s*\n\s*/, $pkginfo))
    if ($line =~ /^depend\s+=\s+([^>=\s]+)/)
    delete($cache_pkgs{$1}) if exists($installed_pkgs{$1});
    @cache_pkgs = keys(%cache_pkgs);
    print "$_\n" foreach @cache_pkgs;
    sub compare_versions
    my ($a,$b) = @_;
    return -1 if not defined($a) and defined($b);
    return 1 if defined($a) and not defined($b);
    return 0 if not defined($a) and not defined($b);
    my ($rel_a,$rel_b) = (0,0);
    if ($a =~ m/(.*)-(.+)$/) {($a,$rel_a)=($1,$2);}
    if ($b =~ m/(.*)-(.+)$/) {($b,$rel_b)=($1,$2);}
    my @a = split(/\./,$a);
    my @b = split(/\./,$b);
    my $len_a = scalar @a;
    my $len_b = scalar @b;
    my $n = ($len_a < $len_b) ? $len_a : $len_b;
    for (my $i=0; $i<$n; $i++)
    my ($int_a,$alph_a,$dash_a) = ($a[$i] =~ m/^(\d*)(.*?)(_.*)?$/);
    my ($int_b,$alph_b,$dash_b) = ($b[$i] =~ m/^(\d*)(.*?)(_.*)?$/);
    $int_a = 0 if $int_a eq '';
    $int_b = 0 if $int_b eq '';
    if ($int_a != $int_b)
    return $int_a <=> $int_b;
    if (length($alph_a) and not length($alph_b))
    return -1;
    if (not length($alph_a) and length($alph_b))
    return 1;
    if ($alph_a ne $alph_b)
    return $alph_a cmp $alph_b;
    return 1 if defined($dash_a) and not defined($dash_b);
    return -1 if not defined($dash_a) and defined($dash_b);
    if (defined($dash_a) and defined($dash_b))
    my $dash_cmp = $dash_a cmp $dash_b;
    return $dash_cmp if $dash_cmp != 0;
    return $len_a <=> $len_b if not $len_a == $len_b;
    return $rel_a <=> $rel_b;
    Save it as "list_pkgs", make it executable and then run it with
    ./list_pkgs /var/cache/pacman/pkg
    It should spit back a list which contains all packages in the cache which are currently uninstalled, minus any packages which are dependencies of others. To install those packages, combine it with pacman:
    pacman -S $(./list_pkgs /var/cache/pacman/pkg)
    This doesn't completely solve the issue of explicit versus implicit installation, but I expect that this would be more manageable than installing everything explicitly. I've commented on lines which can be uncommented to get a simple list which ignores dependency relationships.
    Btw, the script isn't really as long as it might look. The compare_versions function, which I copied over from another module, nearly doubles the size of the script.
    *edited for typos*
    Last edited by Xyne (2009-06-26 04:30:12)

  • Using Forms in Numbers for iPad

    Although Forms for the iPad may seem to be a great interface between the user and the spreadsheet, it has a few significant drawbacks under it's present design.
    When using predefined records and catagories to prompt a user for input, one runs into problems when the user inadvertantly presses the delete key (within the form). This would delete a predefined record and thus rendering it usesless for any further input, and subsequent deletions would eventually delete all the predefined records.
    As a workaround I re-arranged the input table to have one record only, using the categories (table columns) to input the relevant information via Pop-up Menus. Although this single record remains after pushing the delete button, the information within the record is somehow corupted, causing reference problems down the line. For instance, using the content of these records with the VLOOKUP function to find data within other tables, a #REF! error is caused because the relevant record was corrupted.
    How could I disable the delete key within Forms, or alternatively save the data from deletion within the records?
    Is there perhaps a way of error trapping within VLOOKUP ?
    As an alternative, I tried a normal table to input the user information, and where I used Pop-up Menus it's was fine, but when inputing numeric values it would be a pain for the user to have to double tap with every numeric input. I would prefer to use Forms if possible.
    Any help would be appreciated, thanks
    André

    I have submitted an enhancement request via Apple's iPad feedback and hoping that future versions of Numbers for iPad would have the ability to password protect table cells, and also have the abilty to disable the delete function within Forms.
    Would appreciate any further halp on a possble workaround in the mean time.
    Thanks

  • Searching forms in Numbers for iPad

    I want to use the iPad for wine inventory, but paging through 200+ forms kind of defeats the purpose. Am I missing something? Thanks for any thoughts on this?

    I have submitted an enhancement request via Apple's iPad feedback and hoping that future versions of Numbers for iPad would have the ability to password protect table cells, and also have the abilty to disable the delete function within Forms.
    Would appreciate any further halp on a possble workaround in the mean time.
    Thanks

  • Using Voiceover in Numbers for iPad

    I am a blind iPad Mini user looking for the correct gestures for using the Numbers App with VoiceOver. I am not understanding how to navigate the spreadsheets or make changes in them.  Does anyone know of a good resource for this? All the ones I have found online are not specific to the Numbers App.                                                  

    I have submitted an enhancement request via Apple's iPad feedback and hoping that future versions of Numbers for iPad would have the ability to password protect table cells, and also have the abilty to disable the delete function within Forms.
    Would appreciate any further halp on a possble workaround in the mean time.
    Thanks

  • Checked checkboxes in Numbers for iPad

    Hi,
    Before submitting feedback to Apple about the following glitch, I’m posting it here to find out whether any Numbers for iOS jockeys have experienced the glitch also.
    In Numbers 09 (2.0.3) under Snow Leopard.8, I imported a spreadsheet created in Excel for Windows (not sure which version), then added a column to one of the worksheets/tabs, and in every row within this column I inserted a checkable checkbox, then saved the file in Numbers 09 format.
    After importing the file into Numbers 1.4 for iOS (on a 1G iPad) via iTunes 10.3.1, I checked the checkbox in some rows. I did this by displaying the virtual keyboard and switching to the one that contains the checkbox, then tapping on the checkbox. This method worked; i.e., a check displayed in each checkbox where I performed these steps.
    After quitting Numbers for iOS, I connected the iPad to my Mac, imported the spreadsheet file to the Mac via iTunes, and opened the spreadsheet file in Numbers 09.
    All checkboxes were unchecked.
    Many thanks in advance!

    I submitted the above info to Numbers feedback.

  • Where  do I find basic instructions on Numbers for iPad?

    I bought numbers for ipad to have a portable spreadsheet program to use in the field.  I previously used HanDBase with my smart phone.  I'm having problems with figuring out how to use numbers.  For example, I entered two columns of numbers and wanted to calculate a correlation coefficient.  I could enter the numbers and highlight them, bu I was unable to make the program apply the formula to those numbers.
    Where can I find out how to use this program? It isn't intuitively obvious to me.  Are there any books written on the subject?

    Bottlerocket,
    When you open a spreadsheet on your iPad there is a Help File readily available under the Tool Menu (the wrench icon in the upper right) - it has a search option and can provide instructions to entering formulas on the iPad in Numbers.
    Additional help can be found in two downloadable PDF files: Numbers '09 User Guide  http://manuals.info.apple.com/en_US/Numbers09_UserGuide.pdf  and The Formula and Functions User Guide  http://manuals.info.apple.com/en_US/Formulas_and_Functions_User_Guide.pdf - both are for Numbers '09 for OSX but many of the principles are the same with iOS Numbers and OSX Numbers
    Remember, too, that if you "dump" your iPad Numbers app (i.e., delete it from your iPad) any files created by it are also deleted - be sure you transfer any files you wish to keep before "dumping" Numbers. Personnaly, I think you will miss some of the real pleasures of using Numbers if you do, but Happy Computing to you.

  • Serial numbers for materials

    hello,
    I have done a setup for serial numbers and when I do the GR I get a blank serial number list.
    I earlier used transaction IQ04 and maintained for one article the various serial numbers.
    When I do the GR I must be able to autmaticlaly see all the serial numbers related to the article. The system shows blank serial numbers although I have maintained them.
    Can you help to identify what I have missed that the serial number based on aarticle doesnt get coped over to the GR document?
    Another point is when I do the GI I also dont see the serial numbers for which I have done the GR for the article. What am I missing here?
    Thanks

    hi
    how the serial no profile has been configured ,ie if the exist required is marked in the serial no profile then while making the GR you have to select the serial no alredy created,but if you doesn't select the same you have to mark the serial no automatically while making the goods receipt
    kindly check
    regards
    thyagarajan

  • I have the Photoshop Photography Program and every time I try open Photoshop CC it asks me for a Serial Number. It keeps saying my trial period has ended. How can I get this working since Adobe doesn't issue Serial Numbers for CC.

    I have the Photoshop Photography Program and now every time I try open Photoshop CC it asks me for a Serial Number. It keeps saying my trial period has ended. How can I get this working since Adobe doesn't issue Serial Numbers for CC.

    Jodie84,
    I have just checked your account and found that you indeed have bought a Creative Cloud for Teams subscription but you have assigned the single seat to another user hence you ( If you are using your own Adobe ID ) are getting the trial error message.
    Two options : Either reassign the seat to your self or add an additional seat and invite your self in the same Team.
    Cheers,
    Kartikay Sharma

  • Packing into suppliers packaging materials with external HU numbers

    All,
    We have a scenario where we have customer packaging materials that contain a customer barcode. We consider this as an external HU number. During picking through RF, we would like to pack during picking into this customer packaging material. Tcode LM45 seems to offer some kind of logic but will not allow entering any HU number which is not yet known in the system.
    Any ideas on this?
    thanks,
    MZ

    Can you tell me how you receive the handling units ?.If you are receiving material from PO then using an idoc then in idoc function module put the logic crete the inbound delivery with external HU number for receipt.
    You can use HID dummy delivery type susyem should create the delivery with customer handling unit numbers for receipt.
    I think you need to develop custom program which you need to insert HU number ,material qty ,plant and storage location then system will generate packing lable in background to receipt the material.

  • Can i use the time capsule as just an external hard drive for music or does it have to be used soley as a backe up?? im thinking for music and photos

    Can I use the time capsule as just an external hard drive for music or does it have to be used soley as a back up?  I'm thinking for music and photos

    Nickles96 wrote:
    Hello friends.. I have a similar question, in that I would like to purchase the 2TB TC for use as a NAS device, in addition to taking advantage of the Air Port extreme.. Then I could dump my Linksys router.
    I was originally looking at a Synology NAS solution, but the TC seems like it can meet my needs.
    I have a Synology NAS as well as the Time Capsule.  If you look at the 3.2 beta program, the Synology actually attempts to replicate TC functionality in that you can use it with Time Machine on your Mac.
    I must say, Airport on the TC is definitely a nice feature!
    Nickles96 wrote:
    In addition to the obvious feature of the backup, can I indeed also use the TC as a NAS drive to access from remote locations (example from the office)?
    I'm surprised more people aren't using the TC as a dedicated NAS deviced.. I've searched high and low on forums around the web, and don't seem to see many people trying to use it as I've outlined.
    I can't see why this wouldn't fufill my needs, and take the place of a separate NAS solution (like the Synology, or iOmega, Seagate, etc....)
    Has anyone used this TC as such?
    Yes, you can do this and it's something I've been trying to do, but I'm currently having issues.  I have another thread stating I consistently get "connection failed" messages.  I'm basically storing my music/photo/video files on the TC and keeping my Mac hard drive fairly lean.  In terms of NAS functionality, the TC is very basic.  Synology/QNAP and others have a lot more features so don't rule them out.

  • Can anyone make a recommendation on the purchase of an external hard drive for my Macbook Pro? I am currently using OS 10.6.8 because I can't upgrade until I clean out my start up disc space. I have a ton of pictures to transfer. Thanks!

    Can anyone make a recommendation on the purchase of an external hard drive for my Macbook Pro? I am currently using OS 10.6.8 because I can't upgrade until I clean out my start up disc space. I have a ton of pictures to transfer.Thanks!

    best options for the price, and high quality HD:
    Quality 1TB drives are $50 per TB on 3.5" or  $65 per TB on 2.5"
    Perfect 1TB for $68
    http://www.amazon.com/Toshiba-Canvio-Portable-Hard-Drive/dp/B005J7YA3W/ref=sr_1_ 1?ie=UTF8&qid=1379452568&sr=8-1&keywords=1tb+toshiba
    Nice 500gig for $50. ultraslim perfect for use with a notebook
    http://www.amazon.com/Toshiba-Canvio-Portable-External-Drive/dp/B009F1CXI2/ref=s r_1_1?s=electronics&ie=UTF8&qid=1377642728&sr=1-1&keywords=toshiba+slim+500gb
    2.5" USB portable High quality BEST FOR THE COST, Toshiba "tiny giant" 2TB drive (have several of them, LOT of storage in a SMALL package)    $117
    http://www.amazon.com/Toshiba-Canvio-Connect-Portable-HDTC720XK3C1/dp/B00CGUMS48 /ref=sr_1_4?s=electronics&ie=UTF8&qid=1379182740&sr=1-4&keywords=2tb+toshiba
    *This one is the BEST portable  external HD available that money can buy:
    HGST Touro Mobile 1TB USB 3.0 External Hard Drive $88
    http://www.amazon.com/HGST-Mobile-Portable-External-0S03559/dp/B009GE6JI8/ref=sr _1_1?ie=UTF8&qid=1383238934&sr=8-1&keywords=HGST+Touro+Mobile+Pro+1TB+USB+3.0+7 2 00+RPM
    Most storage experts agree on the Hitachi 2.5"
    Hitachi is the winner in hard drive reliability survey:
    Hitachi manufacturers the safest and most reliable hard drives, according to the Storelab study. Of the hundreds of Hitachi hard drives received, not a single one had failed due to manufacturing or design errors. Adding the highest average lifespans and the best relationship between failures and market share, Hitachi can be regarded as the winner.

Maybe you are looking for