Retrieve TEXTS from Vendor

Hello All,
We generally maintain some vendor information TEXTS . (XK1/2/3  --> Extras --> Texts ).
How do we programatically retrieve the text maintained here.I want to know the table . F1 info. shows the structure name as usual.If thru standard texts what should be the Text Id ? I tried to check in all vendor related tables LF* but left clueless.
Please help.
Regards,
Ramdass.

Try this piece of Code
DATA : it_lines_sh TYPE STANDARD TABLE OF tline.
data : m_key type thead-tdname.
M_KEY = '0000305240'.  "Vendor"
CALL FUNCTION 'READ_TEXT'
  EXPORTING
    client                  = sy-mandt
    id                      = '0001'
    language                = sy-langu
    name                    = m_key
    object                  = 'LFA1'
  TABLES
    lines                   = it_lines_sh
  EXCEPTIONS
    id                      = 1
    language                = 2
    name                    = 3
    not_found               = 4
    object                  = 5
    reference_check         = 6
    wrong_access_to_archive = 7
    OTHERS                  = 8.
This will extract the Accounting note text from Vendor Text.
Regards
Vinod

Similar Messages

  • Retrieving text from Vendor Master data

    Hi All,
    Please go through the navigation and query next to that...
    Vendor Master Change/ Display(XK02/XK03) --> Provide any Vendor number already created --->
    select the General Data ---> select Payment Transactions --> press enter to view the data -->
    Goto Menu Extras --> select texts  --> a window will pop up giving 2 rows for entering text as mentioned below.
    Accounting note
    Purchasing memo         
    We can enter the text beside the provision 1st line  else we can double click any one of them so that we will enter into a window to enter the long text or anything necessary.
    Now that in this concern my requirement is that i want to retrieve the text entered under the 1st line  or in the window which comes after double clicking Accounting note or Purchasing memo option basing on Vendor number or any other parameter or if any table where this data gets stored.
    Is there any program required to retrieve this text or any Function Module which retrieves this text or any coding avaliable please do send me as it is a very urgent requirement ....
    regards
    PSNG

    Could you please let me know, How to check through that FM as the parameters are confusing me when i went through them?
    regards
    PSNG

  • Retrieve text from sprite at specific marker

    Is there a way to retrieve text from a spriteMember at a
    specific marker when you are not located at that marker?
    I have an presentation that uses small graphics at the bottom
    to jump to it's corresponding marker based on the markerList. I
    would like to retrieve the text in sprite(6) from the corresponding
    marker location and display it in a text sprite on the stage at the
    current location. Without jumping to that location.
    I'm trying to avoid making a list or naming the members with
    the corresponding marker.
    Thanks.
    Wally

    >>Is there a way to retrieve text from a spriteMember
    at a specific marker
    >>when you are not located at that marker?
    Short answer... no.
    Can you get the text of the member?
    If that won't work you can use the updateLock property of
    score recording.
    You can do something like this: set updateLock to true, go
    the frame you
    want, get the text of the member of the sprite, then return
    to the frame you
    were at and turn updateLock back to false.
    on test
    _movie.updateLock = true
    go "spriteFrame"
    put sprite(6).member.text
    go "normalFrame:
    _movie.updateLock = false
    end
    If you place that as a handler in a movie script, you can
    enter test from
    the message window and see what happens - you will see the
    text of the
    sprite displayed, but the play head won't move...
    HTH
    Dave -
    Adobe Community Expert
    www.blurredistinction.com
    http://www.adobe.com/communities/experts/

  • HT201210 how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    You can't. Restoring from a backup is all or none.
    You can use a utility such as this one to extract the messages from the backup on your computer but you can't re-transfer the messages to the Messages app on your iPhone.
    http://msb.macsupport-pr.com/

  • Dunning Proposal - Accounting Text from vendor Master

    Hi,
    In F150, if you click on the change button, it will take you to Dunning proposal and on the selection screen, you have a check point Check Account long text and Check Document Long Text..
    1. What is the difference between the two?
    2. When you execute this Dunning Proposal, again you get a button for Change Texts, from where the texts can be maintained for each Vendor.. The requirement is to have the text displayed in the output report of Dunning Proposal against each vendor.. How is that possible? I changed Variant to bring in the field Text but it shows blank.
    Regards,
    SAPFICO
    Edited by: SAPFICO on Apr 4, 2011 12:18 PM

    Hi All,
    Any Pointers???
    Regards,
    SAPFICO
    Edited by: SAPFICO on Apr 8, 2011 7:22 AM

  • PO texts from vendor master

    Hi,
    when I create a PO using a vendor, after filling field Purchasing Org., Purch. Group and Company code, system copies a text but I don't know from where.
    In PO down the header texts I can read "Text adopted from Vendor Master (Purch.org.-spec.test text )", I cannot find it in vendor master....
    Could You help me ?
    Regards

    Hi,
    In MK03 please open your vendor go to purchasing data and  click on extras on the menu bar, and select text, here you will find purchase order texts, hope this is what you were looking for.
    Also check the PIR.
    Regards
    Shailesh
    Edited by: Shailesh Rajan on Jun 28, 2011 3:07 PM

  • Copy text from vendor to inbound delivery

    Hi folks,
    I have the requirement to copy a purchasing org. specific text from the vendor master into an inbound delivery.
    Is it possible through standard customizing?
    Thanks for any help!
    BR
    Kurt

    Dear experts,
    After internal discussions, we revised the original plan a little bit.
    The goal is to copy the content of field EKKO-UNSEZ from the PO to the inbound delivery, to the header text 0102 "Transport information".
    Is that possible, and how?  Anybody realized a similar copy?
    Any help is appreciated!
    Thanks a lot, regards
    Kurt

  • Need help...retrieving text from html

    i have successfully convert my text into html... however, i have problem restoring the html back to text...
    below is my html:
    <html>
    <head>
    <style> <!-- p.default { italic:; size:3; bold:normal; family:Times New Roman; foreground:#000000; } --> </style>
    </head>
    <body> <p class=default>
    <span style="color: #000000; font-size: 72pt; font-family: Times New Roman"> <u><i><b>HELLO WORLD</b></i></u>
    </span>
    </p>
    </body>
    </html>
    this is the method i used to restore the text:
    String htmlInString=CustomPanel.getHTML();
    JTextPane p=new JTextPane(new HTMLDocument());
    p.setContentType("text/html");
    jPanel4.add(p);
    p.setText(htmlInString);
    the problem is, when i restore the text, i can only get the text,its bold,underline and italic... my font and font size are unable to be restored...
    for example, based on the html i provided above, it should come up with "HELLO WORLD", bold, underline and italic with the font size 72... but when i restored, my font size and font are not as it is stated in the html... why is this so????

    Try this ..
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextPane;
    import javax.swing.text.BadLocationException;
    import javax.swing.text.html.HTMLEditorKit;
    public class HtmlText extends JFrame {
         JTextPane m_area;
         public HtmlText(){
         m_area = new JTextPane();
         HTMLEditorKit kit = new HTMLEditorKit();
         m_area.setEditorKit(kit);
         JButton m_btn = new JButton("Show Text");      
         m_btn.addActionListener(new ActionListener(){
         public void actionPerformed(ActionEvent e){
              System.out.println("Html :-");
              System.out.println(m_area.getText());                                    
              System.out.println("Text :-");
              try{
              System.out.println(m_area.getDocument().getText(0,m_area.getDocument().getLength()));
              }catch (BadLocationException ee){
                   System.out.println("Exception " + ee.toString());
              JScrollPane m_scrollPane = new JScrollPane();
              m_scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
         m_scrollPane.getViewport().add( m_area );
              getContentPane().add( m_scrollPane, BorderLayout.CENTER );
              getContentPane().add( m_btn, BorderLayout.SOUTH );                    
         public static void main(String[] args) {
              HtmlText ht = new HtmlText();
              ht.setBounds(30,30,400,400);
              ht.setTitle("Html Text");
              ht.show();          

  • Header Text copy to PO from vendor master

    Dear all,
    I am trying to pull data storeed in vendor master to PO for header text so that we don't need to repeat to each PO for the vendor.
    I tried to link this in "Texts for Purchase Orders" in SPRO ,But not able to link it
    B'coz it's not allowing me to add the object of vendor master
    so pl guide me how i link vendor master text to PO
    Regards,
    Vimlesh

    Hi,
    In customizing ->material management -> purchasing -> purchase order -> texts for purchase orders -> define copying rules for header texts, choose "header text" and click on text linkages. Here you can enter for source object "vendor master", and for source text choose vendor master header text.
    And in the FIX INDICATOR for text you have to maintain blank. then it will copy text
    This will copy text from vendor master to PO header text.
    Please check this and revert back if you need further details
    thanks,
    santosh

  • Copying text from carrier into PO

    I have set up the following process. I linked the standard partner role CR carrier to the vendor master and the purchase order to make carrier determination possible.
    Meaning in my vendor master I added a carrier, meaning when I create a PO for that vendor the carrier will be assigned. Now I have a text on carrier level "shipping instructions" which I would like to see on my PO. But when I create my PO and I check the header text "shipping instruction", the text from the vendor is copied and not the one from the carrier.
    When I check customizing I can define all kind of copying rules but I'm not able to refer or set up a copy ole based on partner roles.
    Is there a way doing this without enhancement?
    Thanks
    Walter Goris

    Thanks for your prompt answer, but the problem is that the carrier text is stored at carrier level which is only assigned with a partner role to the vendor. Creating another text on vendor level isn't a solution as I can have more than 1 carrier for a vendor. During PO creation the correct carrier will be selected from the partner role. at that moment the text from the carrier should be taken over.
    Example: vendor A has carrier X and carrier Y. Carrier X has a text X and carrier Y has a text Y.
    When I create a PO for vendor A when I save the system will bring me a pop-up to choose between carrier X & T. When I select X, the text X should appear on my PO but in my current set up I get the text from vendor A.
    You see a solution for that
    Thanks

  • Purchase Order Text in Vendor Master

    Hello.  Does anyone have information on how to use the Purchase Order Text field in the vendor master?  Everything I have read so far is in reference to SRM.  We are currently running ECC6.0.  I entered information into the PO Text field of the Purchasing screen on the vendor master, but cannot figure out how to get it to input to the PO header text.  Any information would be greatly appreciated.

    In customizing ->material management -> purchasing -> purchase order -> texts for purchase orders -> define copying rules for header texts, choose "header text" and click on text linkages. Here you can enter for source object "vendor master", and for source text choose vendor master header text.
    This will copy text from vendor master to PO header text.

  • How do I concatenate text from a date?

    In excel I have the following formula:
    =CONCATENATE("Ref: RVG ",TEXT(J4,"ddmmyy"))
    I found in the Numbers Help that T() should retrieve text from a cell, but whether I try T(J4) or T(J4,"ddmmyy") etc it either gives an error or is blank (J4 contains a date).
    Any ideas whether or how this can be done in Numbers?

    Here's a visual showing the problem. T(Date) returns nothing.
    How about this?
    Regards,

  • Header Text PO from Vendor master automatically

    Dear Friends
    This is regarding automatically adoption of header text in PO from vendor master. I am following these steps
    - Maintained customizing as MM>purchasing > PO>texts for PO >define copying rules for header texts .
    in this , select the text type ( this is the PO header text ) and click on text linkage and maintain source obj as vendor master and maintain the fixing as blank ( ie text automatically adopt in the target obj)
    -Then I wrote text (needed in FR lanugage) to respective vendor in purchasing view
    Now When I create a PO, system does not propose any thing under header text
    Did I miss anything.
    Please respond
    Regards
    SG

    Hi,
    1. First I assume the configuration settings are correct
    MM- Purchasing -- PO --Texts for PO --Define Copying rules for header text
    Here the target text type (in this case the PO text type ) i.e. sequence no. is assigned to the correct source object and text (in this case the vendor text type)
    2.If you logon to the system using the language option. i.e. logon id, password and language you get the SAP screens in that language. Now if you try to maintain vendor text in FR and create a PO, the FR Text would get copied to the PO. Now if you go back to the EN logon you ll still find the vendor text in FR. So it is definitely linked to the logon language.
    There should be another way for this too.
    This is an observation and may help you resolve your issue.

  • Text Characteristic from Vendor Class. System

    HI Gurus!
    I needed in a report a characteristic that came from Vendor Classification System in R/3. To get it, i enhanced the Datasource 0VENDOR_ATTR with the new characteristic attribute and used the function module 'BAPI_CLASS_GET_CLASSIFICATIONS' to get the characteristic value.
    My problem now is that i need also to get the texts from this characteristic. How can i extract this texts to my custom infoobject. I was wondering that the only eay was to built a generic texts datasource with a function module... Does anybody know any alternative?
    Thanks in advance.
    Nuno

    Hi
    If Text keeps on change then you have to create a datasource which is normal.
    If text doesn't change then do textfile upload.
    To get the text , goto domain of the that field in R/3 and select value range .Save the values in  CSV format and text file upload.
    Hope ti helps.
    Regards,
    Chama.

  • Failed to retrieve data from the database.DB Vendor Code 156

    Hi,
    We recently migrated our scheduled Crystal Reports from BO XI R2 platform to BO XI 3.1, and are having issues with select reports that pull from the same SQL database.  The tables and fields exist in the database - and I ran the SQL in a different tool and the syntax is correct.  When I try to run an on-demand or schedule one of these reports in 3.1 Infoview I receive the following error:
    Failed to retrieve data from the database. Details: [Database Vendor Code: 156 ]
    Running:
    CR 2008 SP2
    BO XI 3.1 SP2 (FP 2.7)
    Please advise!  Thanks!

    Hi LuAnn,
    Not really clear what he said but I believe this is correct. The BOE servers are typically running under the local System Account. So when it passed the report job from the BOE Server it is the Local System account that the database is getting. We only do single hop for security. Which means if you are logged into InfoView under your local domain account and try to run a report BOE will not, unless specified in the custom database connection options in the CMC, pass your credentials to the DB but will pass the local system account credentials which is likely why these reports are failing.
    As A TEST only Ask your Administrator to set up a user account in MS SQL Server that has rights to run all reports. Or when you create the report check on the option to use Trusted Authentication. Then when the reports are published to BOE your log on credentials should get passed to the DB server through BOE.
    You'll have to more testing to find a Use account that you can run BOE Servers under and still maintain DB security and report level security that works for you. I also suggest you post your security questions to the BOE Administrator forum to get help configuring all of this and what others are doing.
    Thank you
    Don

Maybe you are looking for