Show NUMC Type Field with Zeros in SE16

Hi.
Is there any way to show a field of numc type (length 9) with zeros when is shown in SE16???

Hi
I am not clear with your question?
Just check the table entries in VBAP
fields VBELN  which is of CHAR 10 and
POSNR which of NUMC 6
For both the fields the leading zeros are displayed in SE16
just check it.
so what's your question?
Reward points if useful
Regards
Anji

Similar Messages

  • Hiding fields with zeros or blanks in ALV using factory classes

    Hi all,
    I am using Factory Method for displaying ALV.
    And I want to hide all the fields with Zeros or Blanks.
    Any help wud be rewarded.
    Thanks
    Preeti

    Hi,
       Below is the code used to hide a particular field ,here it is MANDT.This code is put after the factory method.
       data: lr_columns type ref to cl_salv_columns.
        lr_columns = gr_table->get_columns( ).
        lr_columns->set_optimize( abap_true ).
       data: lr_column type ref to cl_salv_column.
      try.
          lr_column = lr_columns->get_column( 'MANDT' ).
          lr_column->set_technical( if_salv_c_bool_sap=>true ).
        catch cx_salv_not_found.                          
      endtry.
    Thanks.

  • Adobe Acrobat Version 9.0 & X are not showing "Clear Signature Field" with Custom e-sign plug-in

    Hi...
    We have created Custom PDF signature plug-in using Adobe X SDK.
    Earlier we had the same Custom PDF signature plug-in with Adobe 7.0 SDK and it used to show "Clear Signature Field" in context menu of digital signature placed on PDF.
    After upgrading the Custom signature plug-in to Adobe X SDK (complied again with SDK X, earlier it used to be 5.0 SDK) to support Acrobat 9, X and XI for digital signature, the "Clear Signature Field" option is appearing in context menu of digital signature box. Even the "Clear Signature Field" option is not shown for the user who has signed the document.
    "Clear Signature" option is available for Adobe Default Security signature.
    We have not changed anything in our plug-in code apart from recompiling it with Adobe X SDK.
    This is a critical issue for us.
    Here is the screen-shot from signed PDF having Adobe Default signature as well as our Custom plug-in signature.
    Here it clearly shows that "Clear Signature" option is not present in signature placed by Custom plug-in.
    Please let us know if anyone else has faced this type of issue earlier and has a resolution.
    Thanks In Advance...
    Waseem

    I am still not getting the Clear signature option for the user who has signed the PDF using Custom PDF Signature plug-in but the same is available for Acrobat Default security signature.
    Custom plug-in is compliled with Adobe X SDK and we have not made any code change to hide the Clear Signature option.
    I found a related posts where Clear Signature option is not shown:
    http://forums.adobe.com/message/5092195

  • Padding character fields with zeros

    Hello,
    I need to add zeros to the end of character fields TYPE C. I know i can use the conversion routines but that only works for numeric fields.
    Thanks

    Thanks for all the replies.
    STRLEN will give me the lenght of the field but i need the offset of the last chararcter.
    Your post gave me an idea though. I'm doing the following and it's working.
    value = 'Thank You          '.
    tmp    = '00000000000000'.
    FIND REGEX `\w[ [:space:] ][ [:space:] ]` IN value MATCH OFFSET moff.
    IF SY-SUBRC = 0.
       OVERLAY value+moff WITH tmp.
    ENDIF.
    The find looks for the last alphanumeric char and 2 spaces after it meaning the last alphanumeric char in the string.
    Thanks to all, i will reward as fairly as possible.

  • Move space to Date & Numc type fields

    Hi Experts,
    I have data declaration like this.
    data :
    char1(10)  type c,
    dat1 type dats,
    num1 type numc.
    Now i want to move spaces to all of them based on certain conditions. So i use
    move : space to char1,
    space to dat1,
    space to num1.
    for char1 it displays empty but for dat1 it shows - - or / /
    and for num1 it shows 000 (depending on length of field).
    Now how do i fully clear the char1 and num1  field as well?
    thanks
    Dany

    Dan,
    For ALV , why we need to go for roundway solution. Please check the following parameters in the field catalog
    ie
    NO_SIGN = 'X'
    NO_ZERO = 'X'
    system will take care the rest.
    In your first post you have not mentioned anything about displaying the values in ALV

  • Suppressing summarized fields with zero value

    I have a report with many many fields.  I do not want to display the field if the value is zero.  Instead of me going to each field, right-clicking, going to common tab, clicking on suppress and inserting the conditional formula {summarized.fieldname}=0 for each field, is there a quicker way to do this?  Perhaps globally?
    Thanks in advance,
    Zack H.

    Select all your summary fields, right mouse click, select format objects, click on the number tab, click the customize button, then on the number tab check 'Suppress if Zero'

  • Pad a field with a substring

    I need to pad these fields with zero after the substring.  How do I do that?
    Current items is:
    drvLocCode
    =
    case
    when
    Substring(EecLocation,
    1, 2)
    =
    '28'
    and
    len(EecLocation)
    = 5
    then
    Substring(EecLocation,
    3, 3)
    when
    Substring(EecLocation,
    1, 2)
    =
    '28'
    and
    len(EecLocation)
    = 6
    then
    Substring(EecLocation,
    3, 4)
    when
    Substring(EecLocation,
    1, 1)
    =
    'P'
    and
    len(EecLocation)
    = 6
    then
    Substring(EecLocation,
    2, 5)
    end

    Here's a simple example:
    SELECT LEFT('myString'+REPLICATE('0',10),10)
    We're literally adding 10 0s to the end of the string, and then taking the 10 left most characters.
    So, for your example:
    drvLocCode = LEFT(case when Substring(EecLocation, 1, 2) = '28' and len(EecLocation) = 5 then Substring(EecLocation, 3, 3)
    when Substring(EecLocation, 1, 2) = '28' and len(EecLocation) = 6 then Substring(EecLocation, 3, 4)
    when Substring(EecLocation, 1, 1) = 'P' and len(EecLocation) = 6 then Substring(EecLocation, 2, 5) end+REPLICATE('0',10),10)

  • NUMC type with ZEROS

    Hi, everybody
    I've got a question.
    It is very simple. I have a database table with a numc4 type field.
    I want the field to store data with zeros, so if a go to SM30 and  type:  1   for that field,
    the stored value should be 0001, not 1.
    Is there any way???
    Thanks

    Hi,
    If it is custom table..
    Then go to SE51
    Give the program name -> SAPL + "Function group used to generate the screen".
    Give the screen number..
    Press change..
    Go to the layout..
    In the input field attributes for that NUMC field...Set the flag "LEADING ZEROES".
    Activate the screen..
    Then go to SM30..
    Give 1 in the numc field and then press enter..You will see 0001
    Thanks,
    Naren

  • How to display zero in the screen's input field using numc type

    Hi,
    I want to display the zero value in the input field , when I  using the NUMC input field on the screen .
    The zero will be changed to blank ,when I click the Enter key.
    What I should do for it?
    Any help is appreciated.
    Regards,
    Trevor

    Hi ,
    Thanks for your quickly answer!
    I use the numc input field in the dialog's screen.
    I am not sure how to do the realize the function like 'UNPACK'?
    In fact, I can't changed my input field's data type.
    When the status of my input field is display, I can display the zero on the screen. But when the input field is input status , there is blank!
    Regards
    Trevor

  • Show groups with zero in crosstab

    Post Author: JustinP
    CA Forum: Crystal Reports
    I am trying to get my crosstab to show groups with zeros in it, instead of suppressing it like it is doing. Any ideas?
    Thanks in advance!

    Post Author: DesertRecluse
    CA Forum: Crystal Reports
    I don't think Crystal suppresses 0 totals by default. Did you check the field format?

  • Support package SAPKB46C57 - package info shows blank fields and zero size

    Hello everybody,
    We have problem with SAP 4.6C and we found that note 1100728 can help us. We found that all corrections are in Support package SAPKB46C57, but we are not able to download it. We tried to check package info and we received blank fields and zero size of support package SAPKB46C57.
    Does anybody have same experiences with it?
    SAP support is very slow in solving this issue.
    Does anybody know how we can implement corrections from note 1100728?
    Thank you very much for answer.
    Best Regards
    Ing. Lukas Jarmar

    When i compiled the package, it compiled with following error.
    Warning: Package Body created with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY STATSPACK:
    LINE/COL ERROR
    2045/3 PLS-00201: identifier 'SYS.DBMS_SHARED_POOL' must be declared
    2045/3 PL/SQL: Statement ignored
    SQL>

  • Items with  zero stock quantity show negative stock value in Stock reports

    When running Stock reports for controlling the stock value towards the GL accounts, some items appear with zero stock quantity, but the report still shows a stock value  (negative value in my case)
    How can this happen, and how can I correct this situation ?
    System parameters are :   negative stock is not allowed, Items with zero cost price not allowed. On item level average cost price method is used.
    P.K.Johnsen

    Hi Johnsen,
    I believe you have checked the" Manage Inventory by warehouse". I have noticed this issue in SAP B1 2005B but this is rectified in 2007B. The system behaves in this way as the system maintains item cost for the item for all warehouses and even if the stock is not present in the warehouse, the system would still show you a value for the same. Hope this helps. please search the forum. You'll find related threads.
    Thanks,
    Joseph

  • JS error while using input fields with type=file on XP SP2

    Hi all,
    we found a new problem in applications which use input fields with type=file running in a browser on Microsoft Windows XP with SP2.
    A typical test layout might look like:
    <html>
      <head>
        <title>File-Upload</title>
      </head>
      <body>
        <form action="/cgi-bin/upload.pl" method=post
              enctype="multipart/form-data">
          <input type=file size=50 maxlength=100000 name="file"
                 accept="text/*"><br>
          <button onclick="document.forms[0].submit();">Send</button>
        </form>
      </body>
    </html>
    When you add a link without the fully qualified path (for example pic01.jpg instead of c:\pictures\pic01.jpg) and click on the 'Send' button, nothing happens and you get a Javascript error 'Access denied'.
    The solution can be found in the MS Knowledge Base article 892442:
    http://support.microsoft.com/default.aspx?scid=kb;en-us;892442
    We still investigate this issue and will inform you about the further proceeding.
    Regards,
    Rainer

    Hi Yepin Jin,
    I am facing the same issue did you solved it?
    Regards,
    Orlando Covault

  • Adding fields with data type "TIMS" to the BP transaction

    hi all,
      This  is Anil regarding the addition of fields to the BP transaction.
    here my problem is for BP transaction I could not find any BADI or screen exit  to add the fields. Even EEWB tool does not allow us to cretate the fields with data type "TIMS". so could you please suggest any other way to add these fields to BP?
    when I enter the values to the time fields in BP transaction, they must reflect in
    BUT000 table also?
    Regards,
    Anil .

    In the physical layer, Column Properties change the data type to int.
    If still problem exists, In the Business Model, write a case statement like
    case when column1=1 then 1 end
    and apply count aggregation on the new calculated column,add the column to presentation table, use that new calculated column for report.
    - Madan

  • Show characteristic with zero figures in report

    Dear All,
    I have report as below:
    Material        Qty
    A                  0
    B                  10
    C                  5
    D                  0
    E                  2
    I want to filter Material with zero quantity.
    I've already try with condition Qty = 0, but the report will suppress zero value and
    return not applicable data found.
    How to make this happen?
    Appreciate for any kind of help. Thanks.
    Regards,
    Steph

    Yes Alice, I already try, but does not work
    By the way, the figure - Qty, already show "0" (not blank, because it's from calculation).
    Yesterday, I try to add a new CKF in query, add with "1" if the Qty return zero value.
    And then I set the condition to this new CKF to activate, if the result the same as "1".
    But it does not work either and return no appliable data found,
    because the report automatically suppres the zero when I show Qty to the report,
    although there is new CKF that return "1".
    Regards,
    Steph.
    Edited by: Steph on Nov 5, 2009 4:08 PM

Maybe you are looking for

  • Problem while Posting a Document Using BAPI_ACC_DOCUMENT_POST

    Hi All, When i try to post my General Ledger Document using BAPI_ACC_DOCUMENT_POST, i face a situation due to the exchange rate. The field EXCH_RATE in CURRENCYAMOUNT table accepts only 5 decimals. But according to my scenario it should accept more t

  • Saving query result to a file

    Hi, I have a sql*developer version 1.5 but i am getting a problem while saving query result to a file. When i click on "script output "-> "file icon" nothing is showing. Can anyboby guide me whether its a bug or some other settings are required. I ha

  • SWF requested multiple times from server

    Hi, We have implemented an SWF in our homepage, using normal object tags. The SWF source is called from our database. Loading works fine, and the SWF plays OK on the page. However, using firebug or httpwatch, we can see that the same SWF is requested

  • Firefix no longer asks to remember user names or passwords.

    Firefox no longer asks me if I want it to remember user names and passwords. Except for those it had previously done so. I have the box checked in settings for it to do so, but it does not. This occurred after the update, an update I was reluctant to

  • Unable to read web mail with talktalk but can with internet explorer

    I updated to fire fox 4 and since I am unable to read my web mail from my talk talk account. When I try to get into my inbox it tells me I have undefined new mail. I can access my email with internet explorer but not firefox.