"IN POSTAL CODE A NUMBER MUST REPLACE 2".

Hi,
While creating shopping cart WE are getting a error "IN POSTAL CODE A NUMBER MUST REPLACE 2".
This error we are getting in basic information in first screen during shopping cart creation.
Note-Recently we have upgraded the system from 4.6c to ECC6.0.we are getting the error after upgrade.
please suggest a solution earliest .it is of high priority
Thanks
Madhav

Hi
As suggested earlier, Please ensure that user's Postal code starts with the correct format as per the country. Refer OY07 Transaction for more details.
Select for country Canada (CA), go in the details.
There is a tab there for Checks.
Either you can make the changes to country specific-checks changed in SRM /  ECC systems.
1) Options to make Postal code mandatory or optional entry
2) Postal code mandatory or optional entry
3) Length of Postal code
   check Rule (based on country settings)
Try Making changes there and then you can avoid this error message. 
Do let me know.
Regards
- Atul

Similar Messages

  • Postal code a space must replace 5'

    Hi ,
    Iam creating vendor in foreign country and entered 7 digit postal code 1675129..then
    Iam getting error 'In postal code a space must replace 5'
    Thnks
    jabeen

    Hi,
    Check the settings for the country you are maintaining the following path -
    SPRO>>SAP NetWeaver>>General Settings>>Set Countries>>Set Country-Specific Checks.
    In this check for the country what settings have been maintained for postal code. Also do a F1 to see the help on the checking rule field.
    Hope this helps.
    Thanks and Regards,
    Anit

  • Vendor master error - Postal code ??

    Hi experts
    I have tried to creat import vendor , not able to create .
    Its throwing error like . "In Postal code a space must replace 5
    Message no. AM207"
    Can anybody tel me how to rectify this , this vendor is for netherlands.??
    Some body Tel me what mught be the problem??
    Thanks
    SAP_MM

    the checking rule is defined by SAP, following the country specific rules for their address and postal code layout.
    It is mainly used to check the entries made at vendor master, customer master, delivery address, plant adress etc. maintenance.
    But interfaces to external systems like VERTEX (just an example, not valid for NL, but other countries like USA have as well specific checking rules) rely on accurate entered postal codes.
    If you get business letters from a customer or vendor from NL, then they have usually printed the postal code in the right fashion, you just need to type it like it shown to avoid an error coming from the checking rule.

  • Postal code must have length 05: Solution

    I am trying to create a business partner in solution manager and i am getting the message "Postal code must have length 05". Can anyone please help

    Hi,
    Postal code & PO Box are linked and postal code is dependent on PO Box and this is dependent on country etc selected in the upper box
    is it really necessary to maintain or are you going to print it somewhere....
    see the help for PO BOX
    Only enter the PO Box number in this field. The text "PO Box" is provided in the recipient language by the system when you print the address.
    When you print an address, the "Street address" and the "PO Box address" are distinguished. The print program determines which of them has priority if both are maintained in an address record.
    Regards
    Prakhar

  • HT1529 Postal Code or Serial Number?

    hi
    i dont know
    how i set my apple account
    here is a problem
    Postal Code or Serial Number?
    how i solve it
    plz tell me

    This would not seem to be an iTunes Store issue. If you have sent in an Apple product for service and are looking for status on the service, call Apple Support and inquire.
    Otherwise, please describe more fully what you are trying to accomplish or what problem you are having that you wish assistance with.
    Regards.

  • Entering Canadian postal code - changes it to a number

    When I enter the first part of my postal code M4J into a form - safari changes it to 4-1. I can't find any preference settings that would cause it to do so, but this has happened twice on two different web forms. Any ideas as to how I can get it to recognize the Alphanumeric postal code.

    one rumor I have heard is that if you take the postal code off your card in address book, it will allow you to correctly fill in your code manually. I don't have a canadian postal code, so I can't verify this myself.

  • Automatic assignment of Partner Function (Dealer) based on Postal Code?

    Hi Experts,
    We are realizing a project in the Bathroom-Product Industry. Responsible for the service to the end-clients are authorized dealer. When creating a service ticket the responsible dealer has to be assigned automatically to the ticket on the basis of the postal code where the IBase (the product) is installed.
    The process is:
    1. The client is calling the Interaction Centre and first the IC Agent has to identify the account and the Installed Base (The     installed base contains the postal code where the product of the client is installed) of this account.
    2. An Interaction Record is created to record this inbound call.
    3. Afterwards a Service Ticket is created as a follow-up Document of the Interaction Record. In the moment of the creation of the Service Ticket the correct dealer has to be assigned automatically to the Service Ticket (as a Partner Function not as a Service Organization) on the basis of the postal code of the installed base.
    I have the following question! Which are the steps to assign automatically a Business Partner Function to a Service Ticket? We also need to create a Z-Table with the postal codes for which every dealer is responsible.
    Example:
    Dealer 1 is responsible for the postal codes: 08040 - 08045 and 08056 - 08059. If a client is calling and his product (Installed Base) is installed in Postal Code 08042 or 08054 the dealer 1 has to be assigned to the service ticket.
    I hope I could make myself clear ;-)? Anybody can give me a hint how to do that? What are the basic steps?

    Slightly similiar, originally being an R/3 customer before implementing CRM our dealer equated to sales office.
    In the CRM Org model (PPOMA_CRM) in the attributes of the sales office we entered the Regions & Postal codes for that dealer (pain in the arse to do) and in CRM the sales office in the org creates a BP.
    We used a org rule for the IR record based on country, region, postal code to determine the appropriate sales org, DC, div, and sales office based onthe zip code.  We created a custom partner function to represent the partner number of the  BP from the org model.  Then we configured a custom relationship "ZORG" "Is partner of sales office" and went into the BP master and assigned the actual dealer number as a partner to BP from the org model that = sales office.  From that we configured a custom access sequence to pull the actual dealer number from the org model office relationships.
    We looked at territory management, but our dealer is an "org BP" and territory management appeared to want to drive to a person BP number.

  • Possible to do variable number of REPLACE in SQL?

    Hello. Using Oracle 10G, R2
    Wondering if it is possible to do a variable number of REPLACE() entirely in SQL in a view.
    input_table.text_column = This (b)is(/b) some (i)text(/i) with (u)formatting(/u) codes
    Note: Using ( and ) to represent < and >
    rows in format_codes_table:
    (b)
    (/b)
    (i)
    (/i)
    (u)
    (/u)
    (p)
    (/p)
    etc. (The number of format_codes is not fixed)
    Desired output: This is some text with formatting codes
    This could be done with a user-defined function and then use that function in a SQL:
    create or replace function remove_format_codes(input_p IN varchar2)
    return varchar2
       v_output   varchar2(2000);
    is
    begin
       v_output := input_p;
       for r1 in (select format_code from format_codes_table)
       loop
          v_output := replace(v_output, r1.format_code);
       end loop;
       return v_output;
    end;
    create or replace view unformatted_output_vw
    as
    select remove_format_codes(input_table.text_column) as unformatted_output
    from input_table
    /I tried this SQL:
    select replace(input_table.text_column, format_codes_table.format_code) as unformatted_output
    from input_table
        ,format_codes_table
    /But it only replaces one format code at a time, and it is not recursive so the output is like this:
    This is(/b) some (i)text(/i) with (u)formatting(/u) codes
    This (b)is some (i)text(/i) with (u)formatting(/u) codes
    This (b)is(/b) some text(/i) with (u)formatting(/u) codes
    This (b)is(/b) some (i)text with (u)formatting(/u) codes
    etc.
    I've google'd Oracle recursive sql, looked at CONNECT BY, LEAD, LAG, MODEL, and I've also looked at a
    Tom Kyte example for varying in lists (http://tkyte.blogspot.com/2006/06/varying-in-lists.html),
    but I can't seem to find a way to replicate the loop in my user-defined function in SQL.
    Anyone think this is possible in SQL? If yes, any hints?
    Thanks

    Hi,
    Regular expressions (introduced in Oracle 10) are great for this:
    SELECT     REGEXP_REPLACE ( text_column
                     , '&lt;'          || -- left angle-bracket
                       '/?'          || -- optional slash
                    '[bipu]'     || -- any one of these characters
                    '>'             -- right angle-bracket
                     )      AS no_tag_text
    FROM    input_table
    ;You had some good ideas: recursive subqueries (new in Oracle 11.2), CONNECT BY and MODEL could also do this job, but not nearly as easily.
    In case you're interested, the following thread uses MODEL to do nested REPLACEs:
    SQL Query
    Edited by: Frank Kulash on May 13, 2010 4:08 PM
    Edited by: Frank Kulash on May 17, 2010 1:02 PM
    Fixed link

  • Clearing the the street,Postal code and city in partner tab at sales order

    Hi Experts,
    I have a requirement like in sales order header or Item, In partners tab, when they are selecting the particular partner function like CR and the customer number is 500, and if they press enter then automaticaly it fetches the name,street,postal code and city at the right side for that entry. My requirement is like for particular customer 700, they want to hide the customer address in that Partner tab while sales order creation VA01. If they select the partner function CR and customer 700, after pressing enter, it shouldn't fetch the automatic address of that customer. They just want the customer name and remaining fields like street,postal code,city should be blank.
    Can you please let me know how to reach this requirement ate sales order creation or change level in partner function tab.
    I test these exits EXIT_SAPLV09A_001 to EXIT_SAPLV09A_004 but no use. Let me know possible ways to achieve this?
    Any idea on these?
    Thanks in advance ,
    Edited by: dolly B on Jan 18, 2010 11:36 AM

    Hi,
    This is happening because you have not maintained your data in sales order.
    Billing document takes the reference of order and delivery document for taking the data.
    Now if you donu2019t maintain your partner function in order nor in delivery then it wont be determine in billing document.
    If you want ZZ to shown in billing document then you have to make that function visible in sales order.
    While creating sales order it will take it from customer master data but when you are creating billing it wont search in customer master data it will search in sales order only.
    You can do one thing make that function non modifiable in partner determination procedure.
    So it cant be change in sales order.
    But I want to know why you want that should not be visible in sales order.
    Hope so I will be correct with my explanation.
    Regards
    Raj.

  • Freight Cost based on postal code from alternative partner (occasional)

    Hi SAP experts!
    In standard SAP, the freight cost is calculated based on the postal code from WE partner (goods receiver).
    But my client have a situation where he uses an one-time customer as a goods receiver. In this cases the freight cost is being calculated wrong, because the SAP uses the tariff zone from goods receiver (WE partner).
    Does anybody know if there is a standard partner function to be used in order to consider the zipcode from the one-time customer instead ?
    Does anybody knows if there is a standard solution for this issue in SAP?
    Exemple:
    sold to party - client X - postal code NNN
    ship to party - client X - postal code NNN
    goods receiver - client Y - postal code AAA
    Then the freight must be calculated based on the postal code AAA.
    Thanks!
    Edited by: Fesuster on Dec 10, 2009 6:10 PM
    Edited by: Fesuster on Dec 10, 2009 6:13 PM

    k

  • How do I validate a postal code format?

    I am trying to use actionscript check a string to see if it
    is in a valid Canadian postal code <b>format</b> (ie.
    M5R1X2).
    The format is 6 characters and is always
    Letter,Number,Letter,Number,Letter,Number.
    Can anyone help me check each character in a string to see it
    they are numbers or letters?
    Any help would be appreciated.
    Thanks,
    Tim

    checkPCode = function () {
    var st:String = arguments[0];
    if (arguments[0].length == 6) {
    for (var i = 0; i<arguments[0].length; i++) {
    t = st.charAt(i);
    switchCheck = (i%2 != 0) ? "Even" : "Odd";
    if ("Odd" == switchCheck) {
    detect = isNaN(t);
    } else {
    detect = (isNaN(t) == false);
    if (!detect) {
    break;
    return detect;
    } else {
    return false;
    trace(checkPCode("A3M5T3T"));//correct format and incorrect
    length
    trace(checkPCode("A3M5T3"));//correct format and correct
    length
    trace(checkPCode("A335T3"));//incorrect format and correct
    length

  • Postal Code not appearing correctly thru ADDRESS statement

    Hi,
    I am using ADDRESS - ENDADDRESS to write company code address.
    Now, Postal Code of one of the co code is maintained as
    5605 LS. However, in the form it is appearing without space i.e
    5605LS.
    I just noticed that in function module ADDRESS_INTO_PRINTFORM, once postal code is entered into the string , there is a CONDENSE statement with NO-GAPS that suppresses the spaces.
    Kindly advise how i can print postal code with space correctly in form using ADDRESS - ENDADDRESS .
    Thanks
    Nidhi

    Hi Sohit,
    We all know that the address will be generated from the FM 'ADDRESS_INTO_PRINTFORM' into a work area. That work area will be of type adrs_print. So that work area contains 10 lines of the address.
    Now just observe the line into which the Postal code is populating. Then take that line value i.e for example l_wa_address-line4 into a variable and separate the number(5605) and string (LS).
    concatenate v_postalcode0(4) '   '  v_postalcode4(2) INTO v_string.
    Then write the below code:
    READ TABLE out_tab ASSIGNING <fs_outtab> INDEX l_c_5.
          IF sy-subrc = 0.
            <fs_outtab>-value = v_string.
          ENDIF.
    I hope this trick works. Try it out & let me know in case of any issues.
    Don't forget to reward if this is useful.
    Pavan.

  • HT1918 what is the postal-code for lebanon ? I cand find it :(

    what is the postal-code for lebanon ? I cand find it

    From a quick search, some of the results that I've found seem to imply that Lebanese addresses can have postal codes, which consist of 8 numbers - the first 4 for the region, the second 4 for the building. Are you being forced to enter a post code ?
    What sort of visa card are you trying to add, debit or credit ? If it's a debit card then I don't think that they are still accepted as a valid payment method - they are not listed on this page and there have been a number of posts recently about them being declined
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management

  • I Can't make the Geocoder handle Canadian Postal Code properly

    Hi !
    Does any one out there was able to approprietly setup Oracle Geocoder to properly return canadian postal code for a specific address in a dense urban area ?
    In Canada, a single street segment can have two different post codes when located in dense urban areas such as Montreal. One on the left and one the right... so one for odds number and one for even numbers.
    I don't see how to acheive this in the actual Oracle Geocoder table structure.
    I see two solutions to my problem. In order to appropriatly return a canadian post code for a specific address, Oracle would need to
    (1) have the GC_ROAD_SEGMENT_CA table have a L_POSTAL_CODE AND A R_POSTAL_CODE field. Thus returning the good postal code knowing if the house_number is odd or even.
    OR
    (2) have the GC_ADDRESS_POINT table have a POSTAL_CODE field allowing to directly return the postal code associated with an address.
    Any help would be greatly appreciated !!
    JB

    Hello,
    subscriber := sys.aq$_agent('sender', '[email protected]', NULL);
    should be
    subscriber := sys.aq$_agent('reciver', '[email protected]', NULL);
    With your enqueue code the message is being made available for any default subscribers. As it stands the message will be propagated to the target queue and made available for the consumer sender.
    So if you change your dequeue code to
    dequeue_options.consumer_name := 'SENDER';
    it will consume the message that has been propagated.
    Thanks
    Peter

  • Postal code in customer master

    hi
    i am having a postal code value.
    need to place this value in postal code field of customer master while running bdc.
    This field is having formating options specific to the country. I may have any number of countries.
    How to format the value  basing on the country and then consider for the BDC.
    any function module or some other procedure
    thanks
    Ajay

    normally not but in asset reporting there seems to be a relation between structure and report-name (not tcode)
    go to tcode se11 and search for structures with search term FIAA_SALVTAB* and you'll find some structures.
    The last part of the name (RABEST, RABEWG ) is the link to the report (RABEST01, RABEWG01)
    hope that helps
    Andreas

Maybe you are looking for

  • Sending email  notifications/alerts via Enterprsie Manager 11g

    I have Oracle 11g on Linux...and i have set up SMTP of my Enterprise Manager Database control. I click on Test and an email was sent successfully. What i dont know is how to add more emails as the receipient of the alerts. I have setup metrics like n

  • Nokia E72 Internet Problems.

    I'm not all too clued up on phones, but I'm having a problem with the internet on my Nokia e72. When I click internet, I want it to ask me how to connect (WLAN, GPRS etc.), but despite the fact I have set it to do so, it always connects via my home w

  • Discount Condition type in sales order screen

    Hi Experts, I have a requirement like ,While the creation of Sales order ,we need to add discount for each line item on the main sales order screen ,for that i need an extra field near  to order quantity field,and it must be updated at the pricing pr

  • Spinning ball for minutes on just mails from one sender

    It is dangerous to touch the newsletters from a cinema: it blocks every action for several minutes. Could please one see for the header (below) or is the mailbody more useful, and in which format? __ regards, Karl The header: Von: "Lichtspiele Lenzin

  • Percentage in Flash Pie Charts

    Hi I have a pie chart showing calls by company, its currently showing a value on the pie segment (amount of calls). Can I have this showing as a percentage? Here is my code select null link, COMPANY label, COUNT(ID) value from CHART_BY_CUSTOMER WHERE