Issue with length of delivery field displayed in LM06 on RF device

Hello everyone,
I have a challenging issue which I have posted on another forum as well, and was hoping that somebody on SDN may be familiar with this.  This issue is being reported by one of our warehouses.  SAP RF transaction LM06 is used extensively in this warehouse, and we use a 10 digit delivery number. The delivery field itself in SAP is 20 characters, and we have always displayed 10 on RF. The warehouse is telling me that about a week ago, the number of characters displayed on the RF device for the delivery field in LM06 changed from 10 to 9, and that a leading zero was being inserted when the barcoded delivery number was scanned. There have been no changes to the barcode on the picklist, and I am told there have been no changes to the printer that prints the pick list. A change was deployed a week ago that contained some unrelated configuration and a small code change in a user exit for transfer order creation. Neither of these is in any way related to LM06. Our basis team tells me that there have been no changes to the SAP console server, but I have no way to verify that myself as I am a WM functional consultant. Can anybody tell me if they have seen a problem like this before, or if the field display for a transaction like this is configurable in the SAP console server? The RF hardware being used is the Symbol PDT-8146. Unfortunately, I am 10,000 miles from the warehouse, which puts me at a bit of a disadvantage in trying to diagnose this.

Thank you both for the good feedback.  I have also gotten some useful feedback from my posting on ittoolbox, and have forwarded all of the responses to a colleague who is located at the site where the warehouse is located.  I will provide feedback once my colleague has had a chance to investigate further based upon the suggestions that I have received.

Similar Messages

  • Custom infotype - issues with conversion class - making fields display only

    Hi,
    I created the custom infotype 9008 using t-code PM01, created conversion class ZCL_HRPA_UI_CONVERT_9008_XX and assigned it to screen structure ZHCMT_BSP_PA_XX_R9008 in the view V_T588UICONVCLAS. Coded the methods IF_HRPA_UI_CONVERT_STANDARDOUTPUT_CONVERSION and IF_HRPA_UI_CONVERT_STANDARDINPUT_CONVERSION. I'm trying to make some fields display only within the method OUTPUT_CONVERSION dynamically. Coded the check class ZCL_HRPA_INFOTYPE_9008 with business logic.
    Everything seems to be working fine when I test using the test tool through t-code PUIT_UI.
    When I try to create/modify 9008 record through PA30, the code in the methods OUTPUT_CONVERSION  and INPUT_CONVERSION is never getting executed. The control is not coming there at all. The fields are allowing input. Any idea why this is happening.
    We are on ECC 6.0 and at service pack level SAPKE60035. Couldn't find any relevant SAP notes as well.  Appreciate your help in this regard.
    Thanks,
    Kumar.

    Hi Venkata,
    Check this document.
    This explains about custom infotype creation.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60a7586d-edd9-2910-68a8-8204303835a1?overridelayout=true
    regards,
    Brinda L

  • Issue with length of text field - READ_TEXT & SAVE_TEXT

    Hi,
        I need to allow user to enter max 400 char in one field and that needs to be updated in the VA02 for the corresponding sales order.
        I can able to save the text max 132 chars since TLINE-TDLINE will allow max 132 chars in both READ_TEXT & SAVE_TEXT.
        So here i am looking for the solutions for the below...
    1) How to design one input field to take 400 chars at one shot .... do i need to use table control ?
    2) Once i get the 400 char may be i will split in to 3-4 lines and i can append 130130130... like that through those FM... if not possible can you tell me the alternative.
    regards
    jaya

    You need to use class CL_TEXT_EDIT....
    Kindly stolen from Rich Heilman -:)
    report zrich_0001 .
    data:
          dockingleft  type ref to cl_gui_docking_container,
          text_editor    type ref to cl_gui_textedit,
          repid type syrepid.
    data: itext type table of tline-tdline,
          xtext type tline-tdline.
    parameters: p_check.
    at selection-screen output.
      repid = sy-repid.
      create object dockingleft
                  exporting repid     = repid
                            dynnr     = sy-dynnr
                            side      = dockingleft->dock_at_left
                            extension = 1070.
      create object text_editor
                  exporting
                       parent     = dockingleft.
      xtext = 'http:\www.sap.com'.
      append xtext to itext.
      call method text_editor->set_text_as_r3table
         exporting
               table              = itext
         exceptions
               others             = 1.
    start-of-selection.
      call method text_editor->get_text_as_r3table
         importing
               table              = itext
         exceptions
               others             = 1.
      loop at itext into xtext.
        write:/ xtext.
      endloop.
    You can use <b>RKD_WORD_WRAP</b> to wrap the text into an internal table -;)
    Greetings,
    Blag.

  • Issue with length of file paths - Windows & C++ plugin

    Hello,
    I've got an issue that just popped up on my OCR plugin I've been working on that I suspect is related to the length of the filepath.
    I'm getting the following error that is being caught and logged when trying to open a file (filename changed for security purposes):
    Error Opening File: D:\aVeryLongFilePath.pdf
    Exception info: This file cannot be found.
    The entire string, including the D:\ part, is 266 characters long. I cut down the length of part of the path one by one and it was able to open and OCR the document when the length was 259 characters.
    I know there's a MAX_PATH variable in Windows and/or there's some kind of limitation for file length. Note that I can open the file in Acrobat using File->Open and run OCR on it individually using the built-in Recognize Text function, but if I try to Recognize Text for Multiple files and choose "Add Folders", the file in question doesn't show up in the list of files to be batch OCR'd (even though it is there). Interestingly, choosing "Add Files" from the Recognize Text->In Multiple Files does work. So Acrobat itself has at least some issues opening the file using some of it's features.
    Here's how I'm opening the document:
         string pn;               // assume this is initialized, I'm just putting this here to demonstrate what type it is
         pathName = pn;
         ASAtom pathType = ASAtomFromString("Cstring");
         asPathName = ASFileSysCreatePathName(ASGetDefaultFileSys(), pathType, pn.c_str(), NULL);    
         pdDoc = PDDocOpen(asPathName, ASGetDefaultFileSys(), NULL, true);
    Is there a way around this problem?
    Thanks.

    Yes, you are hitting the MAX_PATH on certain versions of Windows.   The only workaround would be to see that the file is "a very long path" and then break up the pathname construction into multiple pieces (perhaps the containing directory and then the file itself).  The other option is don't use Cstring to construct, use the Unicode variant.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 7 Nov 2011 15:43:33 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Issue with length of file paths - Windows &amp; C++ plugin
    Issue with length of file paths - Windows & C++ plugin
    created by zephed56<http://forums.adobe.com/people/zephed56> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4012710#4012710

  • Issue with the new COPA field added into the BBSEG Structure

    Hello All,
    I have an issue with the new COPA field added into the BBSEG Structure.
    I think its added becuase of test Operationa Conern Created by somebody.
    Can you please let me know how to remove that structure from BBSEG Structure.
    Thanks
    vsr

    Hi Monohar & Ankur,
      Thanks for your answers..
      main issue is suddenly new field called RKE_COPA_KOSTL has  been added to the BBESG Structure..
      Because of this RFBIBL00 Upload is not working. I heard that  this new fields will come by generating Operating Concerns by Transaction KEA0.I found an operating concern which was created as a test in developemt system..
      But I am not sure how to delete that operating concern.Even i am not sure if we delete the Operating Concern ..is it going to delete that field in BBESG Structure or not??
    Please advise me..
    Thanks
    sathi

  • Issue with filling out form fields in Safari?

    Hello,
    Has anyone noticed any issues with filling out form fields (specifically text boxes) in Safari 6.0.2 on Mac OS 10.8.2?  When I attempt to test forms I've created, there is a delay when typing values into text boxes.  Other types of input controls (check boxes, drop down lists, etc.) appear to work fine.  As far as I can tell, this only occurs with Safari 6.0.2 in Mac OS 10.8.2.  Prior versions of Safari do not have this issue, nor does Firefox in the same OS environment.  When I refresh the form, the delay is not as noticeable.  I'm searching the WebKit bug reports as well, but nothing seems to point to this issue.  Any hints would be greatly appreciated.

    From the menu bar, select
    Edit ▹ Substitutions
    and uncheck Text Replacement.

  • TS3212 i.m having issues with reinstalling my Itunes.it says that my apple mobile device faild to start and will not go any further

    i'm having issues with reinstalling my itunes.it says that my apple mobile device faild to start and will not go any further

    Hey there CrazyTC,
    It sounds like you are unable to re install iTunes because the Apple Mobile Device service failed to start. Try restarting it with the following article:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/ts1567
    Windows Vista or Windows 7
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Click the Windows Start button .
    In the Start Search field type Services.
    In the Programs section of the search results, Click "Services".
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.
    Then if the issue is resolved, set the service to start Automatically with the same article.
    If it is still not working, use these steps from the same article to completely uninstall iTunes and its associated applications and install a fresh copy.
    Remove and reinstall iTunes and AMDS
    If the issue continues after restarting AMDS, then you'll need to remove and reinstall AMDS and iTunes.
    Completely uninstall AMDS, iTunes, and all Apple software. Click the appropriate links below for steps:
    Windows XP
    Windows Vista, Windows 7, or Windows 8
    Restart the computer.
    Download and install (or reinstall) the latest version of iTunes from www.apple.com/itunes. Installing iTunes will also install AMDS.
    Restart the computer.
    Start iTunes and connect the device. It should be recognized properly in Windows.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • My iPhone 5S has not connected to 4G LTE service in the last few days? Is there an outage/issue with 4G in my area (Pittsburgh) or is this a device specific issue?

    My iPhone 5S has not connected to 4G LTE service in the last few days? Is there an outage/issue with 4G in my area (Pittsburgh) or is this a device specific issue?

        JHblues Let's get your data working again. There are not any reported issues in the area. Try this step:  http://vz.to/1kUSSk2
    Sheritah_vzw
    Follow us on Twitter
    @VZWSupport

  • Issue with length of form text fields in Firefox in OSX

    I've just spotted an issue with this in a page on a site, with two forms next to each other. (the limited space has highlighted it.)
    Basically FF on the Mac is making the text fields longer than any other browser :
    http://www.goodsafariguide.com/trade/loginfail2.php
    If anyone knows a fix for this, that would be great.
    If not, I'll just reduce their length so that at least they're not squashed in any browser (even though they'll be a bit short in every browser other than FF Mac).
    http://www.goodsafariguide.com/trade/loginfail2.php
    Thanks.

    Thanks guys - its just not something I've really noticed before, as most forms I do have enough width compared to this page where I have two side by side.
    Will pop that bit of CSS in.

  • Issue with Packing in Delivery document

    Hi All,
    I have an issue. Created a delivery with reference to the order, i am in the process of packing, not able to enter the packing material inHandling Units screen in the delivery document. if i am in VL02N screen but Handling unit screen shows as Display. Not able to enter the Packing material. Kindly suggest.
    Regards,
    SK

    Hi,
    First Create handling unit for packing....
    By transaction HU02,  you can create HU.
    in HUPAST transaction ,packing is carry out.
    U can put packing material manually in the HUPAST.
    U ve to create HU Number range and material group packing material and packing material type....
    This packing material type should be same in ur Material master... just go in SAP standard or by copying it.....
    Try it.... if u could not..... just post the ERROR u r getting....

  • Issue with STO over delivery

    I am sure this topic has been taken up so many times before. I have browsed through almost all of them. I still do not have a way of restricting STO over delivery! Require your expertise!!.
    My requirement is that STO over deliver should not occur when using VL10* transactions alone.
    We tried to export a flag (say delv_flag)from program 'RVV50R10C'  to shared buffer and import the same into BADI LE_SHP_DELIVERY_PROC (DELIVERY_FINAL_CHECK) to capture error message when STO over delivery is created. The entire logic is built based on this flag alone.We are deleting the flag in V50R_MAIN of the program 'RVV50R10C'.
    There are some issues with this method:
    1. In some cases the delete flag statement gets executed before importing from memory and hence an STO over delivery gets created. (I don't know how or why!).
    2. When VL10* transaction is executed, the delivery flag is set. At this point in time, if the user tries to delete delivery without exiting the transaction, the BADI will get triggered and error message will be displayed. This is not correct functionality since error message should be displayed only for VL10* transactions.
    Suggestion:
    If I change the location of exporting the flag to include 'LV50R_VIEWF43' (form delivery_create), do you suppose it would work? Would Idocs trigger this?
    If anybody has worked on similar requirement please share your inputs. Urgent!!!!
    PS:
    I have read about delivery tolerances too "The overdelivery tolerance functionality is available only for the deliveries created with reference to sales orders and not for deliveries created with reference for PO's or STO's".

    Dear Sapna Morey
    I think OMCQ T.Code-- Select message M7--024 Change from Waring to error
    Please try once with this it may work To control over delivery tolarency in STO
    Dear  Lakshmipathi G sir
    i have one doubt please clear me sir please
    To control Over delivery tolarance in sap standard  is not available , then what is the use of the above one.
    Because i have searched a lot , i didnt find the logic about this
    Thanks a lot sir please help me sir
    Thanks

  • Issue with multiple Oracle Long Fields

    Hello,
         We have some reports that try to display two Oracle Long data type fields. When we do so we receive the error "ORA-1002 - fetch out of sequence" when we connect the report through "Oracle Server" connection type.
         If I execute SQL Statement of the report in "Oracle SQL Developer" there is no error.
         I have the following components installed on my Windows 7 PC:
          - Crystal Report 2008 (12.3.0.601)
          - Oracle Client 11.1.7.0
        If you want to replicate the issue you can create the following tables:
    create table TEST1_T
      fld1 VARCHAR2(4),
      text   LONG
    create table TEST2_T
      fld1 VARCHAR2(4),
      fld2 VARCHAR2(4),
      text   LONG
    In the TEST1_T table insert data and populate the text field. In the TEST2_T, populate the fld1 to be able to link the 2 tables together you can let the text field blank.
    In the report insert TEST1_T.fld1, TEST2_T.text and TEST1_T.text if you hit preview you should get the error Ora-1002.
    If you need more information let me know.
    Thank you.
    Charles
    P.S: If we connect thru "CR Oracle ODBC Driver 5.3" and the first long field in the SQL statement is null boths fields are blanked in the report but if both fields are populated the report execute correctly.

    Hi,
       This is a known issue with CR that uses Oracle Long Fields.
       See below for direct copy of information from KBase 1205489, hope it helps.
    Symptom
    In Crystal Reports, problems may arise when using more than one Oracle LONG data type field.
    Some of the symptoms you might see:
    Mixed data between two LONG data columns when displayed within the same report.
    Incorrect data displayed in the column which is based on a LONG field.
    Resolution
    Change LONG fields to CLOB fields in the Oracle table.
    Oracle recommends migrating any LONG data to the CLOB type starting in Oracle 9i.
    To make this change, use the TO_LOB method.
    Ken

  • Issue with indicator values in report display

    Hi All,
    I am getting an issue with valutype #.
    we have  account  restricted hirerarchy ,fiscal year period and Valuetype in rows .
    I need to show the actuals indicator of value type 10 data in one row for each fiscal year period.But some of the key figures we are getting # data .valuetype indiator is repeating 2 times for each period.but we need to post this # values to 10.Any one have any idea how to handle this.
    for example : my report is displaying like this
    Account code :   Fiscal Year period   Value type      Keyfig 1    keyfig2   Keyfig 3
    CA1100 :                  001.2006          
    10                                  100       22
                     200
                                     002.2006          
    10                                   200       44
                     300  
    But I need the report  like below
    Account code :   Fiscal Year period   Value type      Keyfig 1    keyfig2   Keyfig 3
    CA1100 :                  001.2006           10                  200          100       22
                                                                                    002.2006           10                  300          200       44

    Sirisha,
       in the Query, You can filter your query to actual value i.e. 10. display KF1 and KF2 as it is coming from source. create restricted KF with restriction on account, fiscal year period and value type (= #).
    you will get exact value. or while loading to cube or ods.. you can move that value to KF3 using start routine.
    Nagesh Ganisetti.

  • IExpenses-12.1.3 Facing Issue with 2 custom text fields on the standard OAF

    Dear All,
    We are facing problem where custom text fields on standard OAF page does not retain their values when we traverse back-forth on the OAF page.
    Here is the exact issue details
    1) We added 2 text fields(Attribute5 and Attribute6) through personalization on Mileage Line Details Screen(standard OAF page) of iExpenses 12.1.3.
    2) And business requirement is whenever user enters values into these fields, difference of these values is populated in third field which is standard field on that page.
    Issue
    When user enters values into above 2 fields, difference is calculated correctly however once he clicks on return page and comes back again on the detail page
    then all the standard fields retain their values but 2 custom fields have blank value.
    Is there any issue with personalization? or any other issue? Please suggest.
    Thanks,
    Mahesh

    Thanks Pratap for checking
    There is button named as "Calculate Amount" on the line details page so it is happening in below 2 scenario
    1) When User enters values in 2 fields and clicks on Calculate Amount Button then values get disappeared from custom fields
    2) When user clicks on return button, go to main page and clicks on detail button ( to come back on same line) then all the standard fields have valuece and custom one's disappeared.
    Thanks,
    Mahesh

  • Issue with parameter/filter - trying to display null rows

    This is how my data looks in the database
    Order_ID -----   Vendor
    ID123             NULL
    ID234             ABC
    ID456             NULL
    ID001             CDE
    I want to create an SSRS report with a filter for vendors
     *All Vendors should be checked off by default
     *Users should be able to select multiple vendors
    So I started by creating the VendorDataSet, the query looks like
    SELECT VendorName
    FROM Vendor
    WHERE Active = 1
    *This query will return all active vendors stored in my vendor table
      Then, I created my parameter @prmVendor and it looks like:
     -Data Type: Text
    -Allow blank value("")
    -Allow multiples values
    Available Values:
    -Dataset: Vendor
    -Value field: vendor_name
    -Label field: vendor_name
    The main query of the report looks like
    Select Order_ID, Vendor
    FROM Order
    LEFT JOIN Vendors
    ON Order.VendorID = Vendor.ID
    WHERE Vendor IN (@prmVendor)
    So at this point it does what is supposed to do except - that when I run the query with all the vendors selected,
    the query will only return the ones with vendors populated.
    Order_ID -----   Vendor
    ID234             ABC
    ID001             CDE
    I've tried adding the following to my VendorDataSet:
    SELECT VendorName
    FROM Vendor
    WHERE Active = 1
    UNION ALL
    SELECT '' -- I've also tried SELECT NULL
     But when I run the report and look at the list of vendor displayed - it won't show the empty row in the vendor drop down filter
    thus, my main query will ignore the orders with no vendors.
     Any ideas on how to fix this issue?
    -Alan

    So I changed my VendorDataSet to look like this:
    ;WITH cteVendors AS (
    SELECT VendorName
    FROM Vendor
    WHERE Active = 1
    UNION ALL
    SELECT ''
    SELECT (CASE WHEN Vendor IS NULL THEN '' ELSE Vendor END) AS VendorName
    FROM cteVendors
    This allowed me to show an empty box in my drop down filter see link for
    image
    Is there a way to make some changes to my main query so this works? so if the user was to select the blank box the query will return something like :
    Order_ID -----   Vendor
      ID123             NULL
       ID456             NULL
    -Alan

Maybe you are looking for

  • MacBook Pro 1 GB RAM upgrade...which type?

    Hi, I am interested in the MacBook Pro, but need some advice on RAM upgrades. What is the difference between the 2 types of RAM offered on the Apple site? 1 GB 667 DDR2 2x512 SO-DIMMS 1 GB 667 DDR2 1 SO-DIMMS I would only be able to afford one of the

  • Adobe Help Manager

    Has anyone found a way to bypass the need to use Adobe Help Manager to download the PDF help files? I've wasted far too much time trying to get this to work.

  • How can i transfer music from usb too itune list

    Hi i register all my music on a usb ,i want too transfer the mp3 music from my usb too my bibliothèque music in itune how too proceed! i am a new user of macbook pro thank you

  • Which compact camera with GPS is compatible with places in iPhoto

    which compact camera with GPS is compatible with places in iphoto? I would like a new camera ..

  • SAPINST for EP 6.0 SP9 hangs

    I am trying to install SP9 on our Portal. After starting SAPINST, everything seems to be fine (stopping J2EE server). The installation hangs on "Deploy offline". In the log file the last message is: "==============================================Info