Upload hebrew language texts in customer master

Hi,
how can we upload hebrew language texts (HEBREW langauge symbols) in customer master
please let me know
Thanks in Advance

you mean address fields?
IMG > SAP Netweaver > Application Server > Basis Services > Adress Management > International Settings > Activate international Adressversion
After it is activated, and you are logged on with Hebrew language and start maintaining any adress , then there is an extra button above the adress. If you click this one you can enter alternative adresses in local language
And this all can be loaded with LSMW using IDOC import method with message type ADRMAS.

Similar Messages

  • Text from customer master to delivery header

    Hi Experts,
    Here we have a requirement, Text what we maintain in the customer master (like Shipping point address) text need to be trigger at Delivery header,
    1) Is it possible in standard text determinaction or we need to go for any user exits?
    2) If we want to use user exits what are the user exits we have to copy the data from customer master to delivery header.
    NOTE: Client doesnt want to use the text from sales order or scheduling agrements.
    Please help me to fill the requirement .
    best regards,
    chiranjeevi

    Hi Chiranjeevi,
    It is possible to achieve this with standard text determination procedure itself.
    Goto transaction VOTXN and in the "Delivery --> Header" create a new access sequence with the Customer Master Text IDs (like the ID which contains the Shipping Point address) from which the text is to be selected. Once done, create or make use of an existing text determination procedure available under Delivery Header and then assign the access sequence to the Delivery Header Text ID into which the Customer Master text is to be copied. Maintain additional settings as necessary. This will ensure that the text from customer master is directly copied over to the delivery header.
    There are many documents already available (search in Google) to explain the text determination process if you need help with the same.
    Regards,
    Som

  • Texts in customer master

    hi gurus,
    can you please tell me where i can see the texts available in the customer master? i already assigned a text procedure to all account groups but i cant see them in customer master..
    thanks,
    paul

    Hi All,
    I have one requirement on customer text.
    I want copy address from customer into texts of Customer 'Address Note' on saving the customer.
    Kindly tell any solution on this.
    Thanks.

  • Language key in customer master

    hi
    customer with both different language  in customer master addess, e.g. german and english. For the printing, they want to use German addess, but keep english addess as well in company code ABC. But in comopany code DFG, mostly, the printing is english. So what should I do? also whats the function of international version in customer master. Pls advice. thanks

    Hello,
    it's not clear to understand from your question wether your customer have two different addresses or do you need a different form of printing (depenting of country for delivery i.e.).
    If you need two different addresses, the Business Address Service can be a solution for you. The button "international version" customer master allows to hold more than one address for one customer. Have a look in customizing documentation at SPRO > Activate international address versions. You can define your own kind in customer namespace (between 0 to 9).
    Than, if you have more than one address, you can choose in the printing programm the address which you want to print.
    More informations about using the Business Address Service you will found at http://help.sap.com/saphelp_nw70/helpdata/EN/c8/13b237b9a9a968e10000009b38f8cf/frameset.htm.
    Regards Thomas

  • Texts from customer master not transfered to SO header

    Hi xperts
    I've a critical issue where the customer text as in customer master is not transfered to the sale order header text (text item created). the scenario happens when creating an SO and works fine in my test and quality server. I'm unable to check the settings in prod as for limited authrorization. any thoughts/inputs in troubleshooting this issue?
    thkx
    P.S

    Hello,
    As in the earlier reply, make sure all the settings are correct in the production system. As you have limted authorisation, you may check the transport requests, which got generated in the Development system, has been migrated to production system or not. Cehck for the errors in Transport. You may get the help of BASIS expers for he same.
    Alternatively, you can check the text log in the text tab in th eorder header. Bottom right side of the texts tab you may see the disply log icon, the syste will give the details.
    Prase

  • Regarding Text in Customer Master

    Dear All,
    How does text maintained in the customer master gets copied in the sales document.What are the configuration settings one shoul maintain for the same.
    Regards
    Atul

    In VOTXN you have to do the following
    - Text object customer, press bullet Sales & Distribution
    - Press button text types.
    - You see that you can create a text ID for object KNVV, create one.
    - Go back and press button change, you are now in the text det. procedure for customer
    - If there is no procedure, create one.
    - You have to assign your procedure to a group (eg. sold to party, ship to etc.)
    - Now you have to go into the text id's in the textprocedure and add your newly created object
    - When you brach to your customer, you will see your object.
    - In VOTXN again, you have to create also a text determination for your sales document.
    - You have to create a new text id for what you want to see in your sales document, so follow the steps like for the customer master, but now you make a text object of type VBBK
    - Next, you have to branch to the bullet sales and distribution header - change.
    - If there is no text determination available, you have to create a text procedure and add the text id with VBBK in this procedure.
    - Now to determine that you have to copy the text from the customer master to the sales document header, you need to create an access sequence. Make one and branch to accesssequence for text id's.
    - Add in this acces sequence your newly created text ID (type KNVV)
    - Go back to the text ID's in Textprocedure and add the accessequence for your ID.
    - You can influence your behaviour (mandatory or that a popup is shown during sales order entering)
    - Last thing assign your created procedure to the sales document type you want this to work for.
    Hope this helps.

  • English language text with Hebrew language text ?

    Hi,
    We are using Hebrew language SAP script. In that if we are using any english text mixed with hebrew then english words are disorder.
    Please let me know if there is any solution for this.
    Thanks
    Venkatesh P

    Hi,
    The english words are disorder because the text is printed from right to left in HE language.
    The system reads from left to right but it prints from right to left.
    And also you can find the hebrew text printed is in reverse. If possible, get images and use in script.
    Regards,
    Raju.

  • Extracting text from Customer master information records

    Hi,
    I want to extract the details of texts from the customer material information record (Tranx: VD52). All the input data like Sales org,Distribution channel, Customer number and material number are stored in structure MV10A. How to use this data to extract the relevant text descriptoins in the customer-material info records.
    Thanks for your response.

    No problem, we can concatenate all four in one field.
    First you need to declare a variable G_NAME(70) type C.
    Then use syntax
    CONCATENATE SALES ORG DISTRI CHANNEL CUSTOMER MATNR INTO G_NAME.
    Pass this G_NAME to the function module.
    Also you need to use Conversion routines to get correct Customer and Material No.
    call function 'CONVERSION_EXIT_MATN1_INPUT'
         exporting
              input        = MATNR
        IMPORTING
             OUTPUT       = MATNR
        EXCEPTIONS
             LENGTH_ERROR = 1
             OTHERS       = 2.
    call function 'CONVERSION_EXIT_ALPHA_INPUT'
         exporting
              input   = KUNNR
        IMPORTING
             OUTPUT  = KUNNR.
    Use above 2 routines before you do concatenation.

  • Copying of Text from Customer master to Sales Order

    Hi Gurus,
    I want that a text should be copied into a sales order from the c/s master but want to prevent any other text to be entered for that text type in Sales order. How can I do it?
    Thanks

    Hi aribis,
    you can use user exit USEREXIT_MOVE_FIELD_TO_TVCOM_H and USEREXIT_MOVE_FIELD_TO_TVCOM_I, which are in program MV45AFZB.
    Regards
    Jean
    Please reward points if it is ok for you.

  • Creating Text for Customer Master

    There are custom Text id and description (eg.  ZAFF 'Affiliate Note') to be created for each type of customer(Sold-to, Ship-to,Bill-to,Payer).
    I am working on a inbound interface using custom function module, which is customized from IDOC_INPUT_DEBITOR. When the new customer will be created in SAP, how to create these text for each type of customer?
    Any suggession will be helpful.
    Revert back if you have any doubts.

    You can do this in the user exit for that customer based on the partner type by fetching the entry from Partner table like VBPA .
    check the entry from here for the customer and based on the partner condition like SH BP PY SO u can populate the text .
    you have to do this in teh user exit of that Inbound IDOC.
    regards,
    vijay

  • Customer Master Text Information !!!!

    Hi Folks,
    I have a quick question on the maintenance of the Text at Customer master records. The question in paint here is that;
    1. Can we use bring the free text maintained at Customer master level in the different reports like SQVI, ABAP reports?
    2. Is there any standard report by which you can pull the text maintained at customer master level (General, Accounting and Sales area text)?
    Please do let me know and if yes can you please provide me the transaction code and data base tables for this.
    Thanks and best regards,
    Sandy

    Sandy,
    I will give you example using function module READ_TEXT. You can test this by running this in SE37, hit the test icon. Parameters to be filled in as follows ...
    -> Client, e.g. 010
    -> ID, the text ID in your text procedure, e.g. 0001 or Z001, etc.
    -> Language, e.g. EN
    -> Name, e.g. the text name, can find this in table STXH-TDNAME, in my example it was the customer number, e.g. 0000105036
    -> Object, e.g. closely tied to the 'Name', in this example as I was dealing with customer text at general data level, e.g. KNA1 (table)
    The result here is that I am asking the function module to read text object 0001 associated with customer 105036 at the general data level of the customer for language key EN.
    So, need to understand what level you have your text stored at. General data (KNA1)? Company Code (KNB1)? or Sales Area (KNVV). This will define your 'Object'. You can pick up the text ID from your text procedure, and you will no the text name via the customer number. You can double check most of this in table STXH first before you test example in the function module.
    Once you have working example, you could then relay spec to your ABAP team to build program with selection screen that runs this function module. I do not think you can achieve any of this via SQVI or SQ01. There are calls to includes inside of the function module, and I believe these includes are performing the reading and converting the 'Data' in table STXL.
    Review with your ABAPer, and let me know if you need more. Just revert back.
    Thanks,
    Jay

  • Invoice SAP SCRIPT is not printing Customer master text.

    I was given a SD-invoice#  XXXXXXXXX, which has problem with in it's SAP SCRIPT --> is the text is taken from  "customer master data head office text" is not printed on the SCRIPT out put.
    1). What I don't understand by going to /nvf03 --> by giving invoice number , then how can I view the script output ?
    The text is supposed to print in footer ...however the coding inthe FOOTER window is
    /:   INCLUDE 'Z_FOOTER_SO_4700_INV' OBJECT TEXT ID ADRS LANGUAGE 'IT'
    So, do I need to add coing for text of customer master data ?
    Any idea about text and field name ?
    THANKS IN ADVANCE.

    Hello,
    To see the output go to /VF03, enter the billing document number but don't press enter. Go to Billing Document in the menu bar, Issue Output to, select a line and do a print preview (if there's nothing there, the doc hasn't been printed before).
    To print the text, ask somebody to navigate to where it is in SAP. Double click on it, choose Got -> Header. This will give you all the information you need for the INCLUDE.
    The INCLUDE statement you have is for a standard text (trans: SO), not the "customer master data head office text".
    Michael
    Edited by: Michael Evershed on Sep 26, 2008 10:41 PM
    Edited by: Michael Evershed on Sep 26, 2008 10:41 PM

  • How to Copy Sales Text Data from Customer Master to Sales Order.

    Hi SAP Guru's
    I have Completed Configuration for Central Text for Customer Master for two texts 1)Additional Attachments 2) Wooden Packing
    I got these two fields in Customer Master.
    I need these data to be copied from  Customer Master to sales order. But i am unable get these two in to sales order.
    Steps which  I have done for Text Determination.
    1) Text Id in for Text Object KNA1
    2)Placed Text Id  in Text Procedure  and assigned   this procedure to Customer Account Group.
    Could you please advice me
    Thanks in Advance.

    Text Control
    In this IMG activity, you define the rules for text determination. You must carry out the following steps:
    Select a text object and define the rules for text determination for this object. Text objects are, for example, the sales texts in the customer master record or the sales document header.
    Define the permitted text types for every text object. If the text types contained in the standard SAP R/3 System are not sufficient, create new ones.
    Define the access sequences. This way, you define how the SAP System should determine the texts for a text type.
    Group the text types together in text determination procedures. The SAP System then proposes the text types from the procedure when you maintain a customer master record or a sales & distribution document. The search for the respective text is carried out using the access sequence which you have stored for each text type in the procedure.
    Allocate the text determination procedures so that a procedure applies to the following criteria in each case:
    account group customer
    sales & distribution document type
    item category

  • Text Determination from Customer Master Central Text

    Hi Experts,
    I have small query, i entered the text in Customer Master Data in xd02 in the General Data.It does not figure in the sales order in the Header
    I entered the text in general data tab -Extras - Text .
    Can you please answer this query.
    Regards
    Deepak

    Hi,
    That alone is not sufficient.
    You should not only configure the text ID for central texts but also for sales document header.
    1. First you have to do the text id creation, text id assignment to procedure and procedure assignment to account group for customer master central texts. I think the text ID object is KNVV
    2. Second you have to go to Sales header in VOTXN and assign the same text ID to sales document header procedure
    You have to ensure that in both steps, the  text ID should be assigned to the same access sequence.
    Once these are done, you create the texts for a customer. Use this customer in a sales order, now you can see the texts getting copied in the sales document header.
    Lemme know if you have any problem in this.

  • LSMW for Customer master text upload

    Hi
    I would want to upload the customer master text using LSMW. I see a message type /DSD/HH_CUSTMASTEXT (Customer master additions) being available.
    has anybody used this for text upload??
    I am not sure how it works, i dont see the provision to enter the text unlike the "SAVE_TEXT function module.
    If any one of you have used it, kindly let me know.
    Thanks
    Manju

    Hi Srinivas,
    yes we could do the text upload using direct input method. I need to invoke it from web methods, it would be difficult with direct input method and hence i was looking for using IDOC's.
    Regards
    Manju

Maybe you are looking for

  • RADIUS crashing after 10.5.8 server update

    After updating to 10.5.8 I have been having a problem with radiusd. I have my Airport Basestations authenticating for WAP2/Enterprise. The last two days I have had to restart radiusd because it stopped responding and no one could get on the wireless.

  • User pictures are not shown when users are added to person field in custom list

    Hi, Recently we have migrated our intranet from SP2010 to SP2013. We upgraded User profile service application, My sites and Intranet site to new environment. We haven't upgraded sites to use SP 2013 templates due to some business decisions. Everythi

  • 5.1 Out

    I did some searches, and found the question asked before, but no answers. The posts are quite old though, so I thought I'd ask again and see if anyone has anything new. I've got an Audigy 2 with a digital output to the Creative DDTS-00 decoder, then

  • Placing images causes freeze up.

    I am currently running CS3. Suddenly when I try to place an image the program freezes and I need to force quite. I have tried uninstalling fonts, deleting prefrences, software updates. Nothing is working. Suggestions?

  • Problem in my iphone4

    I bought an iphone just 3 weeks back.... but its not switching on... i tried pressing te power key +home key.. still it dint work out... pls any 1 help me... can i get a replacement