ESI number field length

Hi,
In IT588, subtype 0001, the field lenght for ESI is shorter.
As per the karnataka ESI dept, there are new ESI numbers which are 17 digit long.
Is ther any notes or alternate solution to increase the field lenght for the ESI number field.
thanks,
Ayyappan

Hi Dilek/praveen,
Thx for the solution.
The issue is actually with the temp certificate No. field. How to increase the field lenght for that.
thx
ayyaps
Hi Ayyapas,
As Praveen has said, u have to go for a custom development. Take the help of an Abap-er and get it done. Shud not be an issue with Abap-er to increase the length of the field.
Regards,
ARNAV...

Similar Messages

  • Item number field length limitation?

    A non-SAP client is presenting a business proposal to a SAP customer and what they want to know is what is the limitation on Item numbers for products for a manufacturing company running SAP ERP? No, we cannot ask the customer, yet!
    I know the SAP is highly customizable but is there a field length limitation or anything else you can tell me?
    Many thanks!
    -Bob

    Hi,
    Pls refer:
    [http://help.sap.com/saphelp_46c/helpdata/en/77/1a39516e36d1118b3f0060b03ca329/content.htm]
    Regards,
    Amit
    Edited by: Amit More on Jun 7, 2008 7:44 AM

  • Additional Field in Vendor Master for PF Number and ESI Number

    Hi Experts,
    I have to maintain ESI Number and PF Number in Vendor Master, but no such field is available in vendor master or J1ID. Kindly suggest me the fields which I can use. We have to capture the ESI and PF Number of the vendor in case He is a subcontractor to us.
    Regards
    GR

    Hi
    You can looks for customer fields (ABAP developed fields). You have standard development available in SAP. See the below config path. It will help you and your abaper
    spro>logistics General->bussiness partner->vendors->control--->adoption of customer's own master data fields.
    With the help of help text available there you and your abaper can develop it with flow logic easily with minimum effort.
    Hope it helps you
    Regards
    Antony

  • How to prevent users from entering '+' or '0' in front of country code in the phone number field?

    Requirement:
    How can I prevent guest users from entering '+' sign or '0' in front of country-code in the visitor phone number field during self registration?
    Few SMS service providers are not looking for '+' sign or '0' or '00' in front of the international phone numbers to trigger the sms. Providing these values in front of country code during self-registration may fail to deliver the sms to recipient.
    Solution:
    Using a simple regular expression, you can validate the entered phone number during the guest registration. 
    The below regular expression will help you to validate the phone number and allows to register only  when the phone number is not staring with '+' or '0'. 
    ^[1-9][0-9](\d{7}|\d{8}|\d{9}|\d{10}|\d{11}|\d{12})$
    It also performs the below validations.
    only numbers are allowed.
    first digit of the entered phone number should be 1 to 9, so '+' or '0' is not allowed. 
    numbers from 0 to 9 are allowed from the second digit.
    also validates phone number length, the length of the phone number should be 9 to 14.
    Configuration:
    To add the above regex in the visitor_phone number filed, please navigate to ClearPass Guest >> Configuration >> (Pages)Guest Self-Registration >> select the self-registration page and go to Edit >> Register Page >> Form >>  select the filed visitor_phone and set the Validator to " ISRegexMatch" and enter the above regex in the Validator Argument filed as shown below.
    Note:  Edit the Validation Error as per your requirement.
    Verification
    Adding the given regex will validate the phone number and prevent the guest user from registering the phone number starts with '+' or '0'.
    Please find below the sample outputs for your reference.
    Result when phone number starts with '+' or '0'.
    Successful registration.

    Is this a Mac Preview issue?

  • Can I set a number field in Acrobat that will allow me to start with Zero?

    For example 012594 when I type this in as a number the zero disappears, is there anyway I can script it to allow the use of a Zero? I know I can do this by making it a text field but to limit people making mistakes of accidentally typing a letter in I was trying to make it number only for example a Mobile number or Account number where there are to be no letters.

    The following will allow you to only input numbers and spaces. Set up a Custom Keystroke script which calls this function. And make your field a text field, not a number field.
    function validateNumericEntry() {
    var re = /[\d\s]/;
    if (event.change.length >0) {
    if (event.willCommit == false) {
    if (re.test(event.change)) {
    } else {
    event.rc = false
    If you want a warning if the field is incomplete, you will need to specify a pattern with regular expressions in a custom validation script.

  • BATCH Number Field

    HI ALL,
      As anyone come across with requirement from Client to extend the length of Batch Number field(MCHA-CHARG). say from 10 to 20 chars. Is there any oss note or something?
    Thanks & Regards
    Sri

    Solved - LOIPRO01 IDoc does not pick up the Batch Number from AFPO table, instead from table RESB.    We need batch from AFPO and just created a lookup using the Process Order Number as import param

  • Incresing the Reference field length

    Hi expert
    In my client the Reference field is made mandatory field to capture the vendor invoice number and this is used to track the duplicate invoice processing.But the limitation here is the field length is only 16 and many of the times it is not sufficient to entrer  all the detail and the purpose of maintaing is lost because of inadequate data. We are using this field in T code FB60 or MIRO.
    My query is whether we can increse the length of the field or is  there  any other solution. Any solution to this is welcome and will be rewarded with points.
    Regards.
    sk

    Hi
    Thanks for your guidance.I checked with the ABAP being a standrad field  it can be changed.Only solution is enhancement.
    Thanks & regards.
    sk

  • How to restrict io field length...?

    hi,
    how can we restrict the io screen field length on the screen with out changing field type....
    Regards,
    Anil.

    Hi ,
    Do you want to restrict the display or the input length.
    In case you want to restrict the display with the select-options or parameters  then simply use the extension
    ... VISIBLE LENGTH vlen
    Effect
    This addition allows you to shorten the visible length of the corresponding screen field on the selection screen to vlen.
    and in case you want to restrict it based on the number of characters then check out the following code.
    PARAMETERS   p_test TYPE c LENGTH 10.
    DATA  test TYPE i.
    AT SELECTION-SCREEN ON p_test.
      test = STRLEN( p_test ).
      IF test > 4 .
        MESSAGE 'Length greater than 4' TYPE 'E'.
      ENDIF.
    reward if usefull.
    regards
    taher

  • Field length validation

    hi all,
            i'm working on module pool, i got field called Mobile number, whose length is 10 chars.
    if the user enters less then 10 chars it should give error, how to accomplish this one.
    regards
    suprith

    Hi,
    You can use one of the following function to determine the length of the characters.
    strlen
    numofchar-Same as for the function strlen, except that in this case when a non-Unicode double-byte code is used, a character that occupies 2 bytes is only counted once.
    You can also use Get Cursor..Length Len where Len is of type i.
    Regards,
    Pavithra

  • Field length truncation ?

    Hi Guys,
    I have the xml data coming from SAP and it has the accounting document no field with 12 char long, but when i send this information to a 3rd party system and in the reponse i have the accounting doc number just with 10 char long. The database schema on the 3rd party system is designed for just 10 char.
    The requirement is need to send this accounting document number back to SAP with the same 12 char as it has supplied.
    any help would be appreciated
    Thanks,
    srini

    HI,
    While sending the filed from SAP to Third party system you need to reduce the field length to 10.
    So Source filed --> Substring (Starting index, length (10)) -
    >Target field.
    Here you could truncate the intial 2 chars or last 2 chars of the filed.
    You could have one suggestion to split the field in two different fileds while sending to target field.
    Similarly for Target field ---> Source field
    You need add suffix or prefix of 2 Chars may be 00 or any special chars.
    IF you are spliting the filed in two seperate fields on Third party side then in reverse direction for sending it to SAP you could concatenate these two fields.
    Thanks
    Swarup

  • How to restrict field length upon Export - OFR

    Hi,
    I am working with the standard AP solution. We are experiencing an issue with the Invoice Number and PO Number exporting lengths that are longer than we have allowed in IPM. Therefore, we are having multiple documents fail with input agent in IPM because the number of characters are over the limit in the .txt file for those fields.
    Thanks,
    Natalie

    Have your tried to adjust the application fields' lengths?
    (see http://docs.oracle.com/cd/E23943_01/admin.1111/e12782/c04_applications.htm#CIHCJFEF )
    Note that if you exceed the type's limits (like mentioned 'Possible string length is specified in the Length element with a maximum of 200 characters supported.') you might have to go with a workaround, but for fields like Invoice Number it can be a challenge (this field is probably heavily used in searching).

  • How to increase field length?

    How to increase field length?
    path -> in T Code MM01 -> Additional Data ->Unit of mesure (tech name UMREZ)
    default length is 5 digits i want increase 7 digits................

    HI,
    I don't thing it is at all possible. Because your field is a standard one and the 3 available exits in MM01
    MGA00001            Material Master (Industry): Checks and Enhancements
    MGA00002            Material Master (Industry): Number Assignment
    MGA00003            Material Master (Industry and Retail): Number Display
    can not help it.
    Regards,
    Anirban

  • Declaring a Number field with specific number of digits and without

    Hai Everybody.
    I have a small doubt. At the time of creating a Table with column as Number data type, if i do not specify the length of digits, what it will take by default. What are the advantages and disadvantages of declaring the number field without specifying the length.
    For example:
    Create Table temp1 (col1 number);
    Create Table temp1 (col1 number(6));
    What is the difference between both the above statements. With the First Statement, what is the maximum number the table will accept.
    Which one is better in terms of resource optimisation like alloting the memory space or processing speed or any other resources.
    Pl clerify me.
    Thanks
    JD

    Hi,
    JayaDev(JD) wrote:
    Hai Everybody.
    I have a small doubt. At the time of creating a Table with column as Number data type, if i do not specify the length of digits, what it will take by default. What are the advantages and disadvantages of declaring the number field without specifying the length.NUMBER means any number (that Oracle can handle).
    NUMBER (6) means an integer, with no more than 6 digits. If you INSERT 12.345, it will automatically get rounded to 12. If you try to INSERT 1234567, it will raise an error.
    The default value is NULL in both cases, unless you specify otherwise.
    >
    For example:
    Create Table temp1 (col1 number);
    Create Table temp1 (col1 number(6));
    What is the difference between both the above statements. With the First Statement, what is the maximum number the table will accept.In Oracle 11, the largest number is 9.99999999999999999999999999999999999999E+125, I believe.
    Which one is better in terms of resource optimisation like alloting the memory space or processing speed or any other resources.NUMBER (6) is more efficient.
    As in so many things, you get what you pay for. If you want the ability to handle larger or more precise NUMBERs, you pay for it in more storage space and less speed.
    Read the pages that Karthick and Maktutakdu shown you.

  • Address Book/iSync - email addresses moving to phone number fields

    I'm not sure what is causing this, but I'm noticing that email addresses in my cards are moving to phone number fields. I originally thought this had something to do with cards that had no phone number in them, only an email address, but now I"m realizing that's not the case.
    I fixes all cards last night and just a minute ago, when I was in Address Book I noticed some or all of the email addresses had moved again. I reverted to my backup from last night and it fixed things, but I'm wondering what's going to cause those addresses to move again.
    I do use iSync to sync my AB contacts to my Motorola phone (I think I have it set up where it's one way, computer to phone) and I have Entourage that's using my AB contacts to populate its address book.
    Any thoughts about what in my environment is causing this?
    -John

    Thank you for the suggestion. I did this, but noticed that some cards were still messed up. So I reverted back to a clean copy of my address book from last night. Then I went to iSync and synchronized with my Motorola phone. That's when iSync says that it's going to modify over 5% of my contacts in AB (122) at which point I said okay. Problem appears to be that the cards it modifies is random.
    Now to make matters worse, it appears that if I repeat this process over and over (revert, iSync, look through cards), there is no pattern to which cards are changing. I don't even know how to troubleshoot this. I'd love make iSync go one way - computer to phone - so that the phone can never write information to the computer. Is that possible?
    I'm sure this needs to go to a different section...
    -John

  • Field length change in Web Dynpro Components iView

    Hi,
    We are using SAP MDM Web Dynpro Components - Configuration Manager (NW7.3) to develop the UI. One of the issue while disply field is, Though field maintained in MDM has only 2 charaters UI that displays a full-screen-width field.
    I would like to display actual field length maintained in reposiroy for each field. Is it possible??
    Cheers,
    Rc

    This is closed.
    By mistake Raised Twice....I guess I need break

Maybe you are looking for

  • Arch64 RAM issues [Solved]

    So I thought everything was fine until an application told me I had 4gb of RAM which is a far cry from the installed 16gb. I did plenty of digging around and narrowed it down to a couple possibilities, but first my investigation: I started with free:

  • Saving file to network location

    Hello all of you, I encounter an issue with InDesign CS5 when it comes to opening and saving files to a network location. I added my company's ftp server to Windows 7 and it appears correctly in the My computer overview (there's an additional line be

  • One or more post-processing actions failed. Consult the OPP service log for details.

    hi expert plz help me i can't understand here what can i do to resove this error. here is the logfile details of output post processor ebs- 11i (11.5.10.2) os - rhel 4 [9/2/13 4:54:48 PM] [main] Starting GSF service with concurrent process id = 29841

  • Time Capsule USB no longer recognized

    So, about 3 months ago I bought a USB drive/flash drive/whatever big enough to use as my Time Capsule backup disk. I ran TC and everything backed up perfectly, even did two maintenance backups at 2 week intervals. I inserted my drive the other night

  • Problem in scenario : file to idoc through bpm

    hi,     iam working on a scenario ,which splits invoice packets and sends it various receivers.          i encounter an error when sending the split message to the receiver.the error is,     [i<b>]"cannot convert the sending service into an ale logic