Finding PO number with ITEM text as input

Hello
Is there any way/table/fm to list down all the PO that has a particular ITEM text without writing a program .
For eg , PO 123 , has an ITEM text 'aaaa bbbb cccc dddd' . Now i want to find out all the PO that has this particular text as its ITEM text .
Thanks
J

types: begin of ty_ekpo,
           ebeln type ebeln,
           end of ty_ekpo.
data: lt_ekpo type table of ty_ekpo.
Select ebeln into table lt_ekpo where TXZ01 = <<Input your text here>> from table EKPO.
you will recieve all the POs into this Internal table 'lt_ekpo'.

Similar Messages

  • Query to find vendor number with whom a particular item was last purchased.

    Hi All,
    I want to frame a SQL query to find vendor number with whom a particular item was last purchased.
    I got to know that we can find this by looking at the open Purchase Order or the Material Transactions for the transaction type of ‘PO Receipt’ whichever is the latest.
    Can anyone please help me in framing such query.
    Regards,
    Shruti

    Here is a hint
    Use the mtl_system_items_b table to get the inventory_item_id.
    Use it in the po_lines_all table to get po_header_id
    Use it in po_headers_all table to get vendor_id
    Use it in po_vendors to get segment1 (i.e. vendor#)
    Hope this helps,
    Sandeep Gandhi

  • To fill in the material number with item category u201CBu201D for Framework Order.

    The use of framework orders (also referred to as blanket purchase orders)  enables you to procure a variety of materials or services from a vendor up to a predefined maximum value (the value limit).
    Instead of a specific delivery date, you specify a validity period for the order.
    Goods receipts or the entry and acceptance of services performed are not necessary in the case of a framework PO and limit items.
    The invoices are posted directly with reference to the purchase order, provided that the specified value limit is not exceeded. When the value limit of the PO is reached, or the validity period is exceeded, the system issues a warning message. It is possible to book the invoices, but these are blocked for payment.
    During the phase of service performance, the cumulative u201Cactual" values (for the services actually performed) are continually updated in the underlying purchase. This enables you to monitor the progress of a procurement project on an ongoing basis. By comparing the "actual" value with the total value, you can always obtain an overview of the degree to which a budget for unplanned services or materials has been exhausted (i.e. see whether predefined limits have been reached or nearly reached).
    So with the Framework Order type (FO) and item category u201CBu201D you get the error that it is not allowed to fill in the material number with item category u201CBu201D.
    Please suggest me the possible solution to fill in the material number with item category u201CBu201D for Framework Order.
    Best Regards,
    Harisha

    The Framework order type is specialy defined for lesser value procurements (ex: stationeries, cleaning services ....) which are all not worthy to create Material Master at all.
    If you are very sure to fill the Material number, then proceed with some other document type.
    In what circumstances you want to put material number in FO order?
    Karthi.

  • List of material number with PO text from material master

    I want to get a list of materials number with PO text from material master. Can anybody help ?

    The purchase order texts maintained in the material master are stored
    as SAPScript text files in tables STXH (header) and STXL (lines). For
    material master records:
    Field TDOBJECT = 'MATERIAL'
    Field TDNAME = material number (MARA-MATNR).
    So you should be able to write a small report to extract the data.

  • HT201269 I need to disassociate my phone number with apple texting.  Where do I do this on-line?

    I need to disassociate my phone number with apple texting.  Where do I do this on-line?

    IMESSAGE NOT REMOVED FROM OLD DEVICE
    If you have registered your device in your profile then go to: https://supportprofile.apple.com/MySupportProfile.do and click on you your old device in the profile and "unregister" it there.  If you have not registered it there change your Apple ID password.
    Read http://www.imore.com/text-issues-switching-iphone-android-heres-fix
    iMesssage to old phone
    If you move to another phone and forget to turn off iMessage then read “if you no longer have the device in http://support.apple.com/kb/HT5661  If you still cannot resolve it call Apple http://support.apple.com/kb/HE57
    Read http://m.samsung.com/us/support/SupportOwnersFAQPopup.do?faq_id=FAQ00053450&fm_s eq=62995

  • Getting text ID and Text object  associated with item texts in PO...

    Hi,
    To print standard text on smartform for a given item in purchase order, I need to find the text ID and object associated with it.
    There are various texts like item text, Info record PO text, Material PO Text, Delievry Text, etc...
    Now when I go to ME22N, and select item detail for any item -> Texts , how do I get text ID, and object associated with it ?

    Hi ,
        Use table stxh,stxl
        FM read_text.
        you can view the text id by following
        this link
         me23->header-text-double click on text->menu goto->
         header        
    Regards
    Amole

  • Simple Abap PO report with Item text

    Hello Abap,
    Need some help as am more on functional side and our abaper is 2months holiday.
    Need to develop simple reports with the following information.
    EKKO-EBELEN,
    EKKO-WAERS,
    EKPO-EBELP
    EKPO-TXZ01
    EKPO-MENGE
    EKPO-NETPR
    EKPO-NETWR
    ITEM TEXT (TEXT ID-F01) - 100char to be printed.
    Tried to developed from scratch but no luck. Need it asap. Thanks in advance.

    Hi,
    I don't have test data but I think the following code will give you an idea, try to fill in the FM "READ_TEXT" below with your own parameter (check with table STXH).
    REPORT ZTEST.
    TYPES: BEGIN OF TY_RESULT,
       EBELN TYPE EKKO-EBELN,
       WAERS TYPE EKKO-WAERS,
       EBELP TYPE EKPO-EBELP,
       TXZ01 TYPE EKPO-TXZ01,
       MENGE TYPE EKPO-MENGE,
       NETPR TYPE EKPO-NETPR,
       NETWR TYPE EKPO-NETWR,
       ITEM_TEXT TYPE CHAR100,
       END OF TY_RESULT.
    DATA: GT_EKPO TYPE STANDARD TABLE OF EKPO,
           GS_EKPO TYPE EKPO,
           GT_EKKO TYPE STANDARD TABLE OF EKKO,
           GS_EKKO TYPE EKKO,
           GT_RESULT TYPE STANDARD TABLE OF TY_RESULT,
           GS_RESULT TYPE TY_RESULT,
           LV_TAB_IND TYPE SY-TABIX,
           GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           GS_FIELDCAT TYPE LINE OF SLIS_T_FIELDCAT_ALV,
           GV_NAME TYPE CHAR70,
           GS_TLINE TYPE TLINE,
           GT_TLINE TYPE STANDARD TABLE OF TLINE.
    SELECT-OPTIONS: SO_EBELN FOR GS_EKKO-EBELN,
                     SO_WAERS FOR GS_EKKO-WAERS.
    START-OF-SELECTION.
       PERFORM SELECTION.
       PERFORM BUILD_FIELDCAT.
       PERFORM DISPLAY.
    *&      Form  SELECTION
    *       text
    FORM SELECTION.
       SELECT EBELN WAERS FROM EKKO INTO CORRESPONDING FIELDS OF TABLE GT_EKKO
         WHERE EBELN IN SO_EBELN
         AND WAERS IN SO_WAERS.
       IF GT_EKKO[] IS NOT INITIAL.
         SELECT EBELN EBELP TXZ01 MENGE NETPR NETWR FROM EKPO INTO CORRESPONDING FIELDS OF TABLE GT_EKPO
           FOR ALL ENTRIES IN GT_EKKO
           WHERE EBELN EQ GT_EKKO-EBELN.
         SORT GT_EKPO BY EBELN.
       ENDIF.
       LOOP AT GT_EKKO INTO GS_EKKO.
         CLEAR GS_RESULT.
         CLEAR LV_TAB_IND.
         MOVE-CORRESPONDING GS_EKKO TO GS_RESULT.
         READ TABLE GT_EKPO TRANSPORTING NO FIELDS WITH KEY EBELN = GS_EKKO-EBELN BINARY SEARCH.
         IF SY-SUBRC EQ 0.
           LV_TAB_IND = SY-TABIX.
           LOOP AT GT_EKPO INTO GS_EKPO FROM LV_TAB_IND.
             IF GS_EKKO-EBELN NE GS_EKPO-EBELN.
               EXIT.
             ENDIF.
             MOVE-CORRESPONDING GS_EKPO TO GS_RESULT.
             CONCATENATE GS_RESULT-EBELN GS_RESULT-EBELP INTO GV_NAME.
             CONDENSE GV_NAME NO-GAPS.
             CALL FUNCTION 'READ_TEXT'
               EXPORTING
                 CLIENT         = SY-MANDT
                 ID             = 'F01'
                 LANGUAGE       = SY-LANGU
                 NAME           = GV_NAME
                 OBJECT         = 'TEXT'
               TABLES
                 LINES          = GT_TLINE
               EXCEPTIONS
                 NOT_FOUND      = 1.
             LOOP AT GT_TLINE INTO GS_TLINE.
               IF SY-TABIX EQ 1.
                 GS_RESULT-ITEM_TEXT = GS_TLINE-TDLINE.
               ELSE.
                 CONCATENATE GS_RESULT-ITEM_TEXT GS_TLINE-TDLINE INTO GS_RESULT-ITEM_TEXT.
               ENDIF.
             ENDLOOP.
             APPEND GS_RESULT TO GT_RESULT.
           ENDLOOP.
         ENDIF.
       ENDLOOP.
    ENDFORM.                    "SELECTION
    *&      Form  BUILD_FIELDCAT
    *       text
    FORM BUILD_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  1.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'EBELN'.
       GS_FIELDCAT-SELTEXT_L       =  'Purchasing Document Number'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  2.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'WAERS'.
       GS_FIELDCAT-SELTEXT_L       =  'Currency Key'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  3.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'EBELP'.
       GS_FIELDCAT-SELTEXT_L       =  'Item No'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  4.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'TXZ01'.
       GS_FIELDCAT-SELTEXT_L       =  'Short Text'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  5.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'MENGE'.
       GS_FIELDCAT-SELTEXT_L       =  'Purchase Order Quantity'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  6.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'NETPR'.
       GS_FIELDCAT-SELTEXT_L       =  'Net Price'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  7.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'NETWR'.
       GS_FIELDCAT-SELTEXT_L       =  'Net Order Value'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
       CLEAR GS_FIELDCAT.
       GS_FIELDCAT-COL_POS         =  8.
       GS_FIELDCAT-TABNAME         =  'GT_RESULT'.
       GS_FIELDCAT-FIELDNAME       =  'ITEM_TEXT'.
       GS_FIELDCAT-SELTEXT_L       =  'Item Text'.
       APPEND GS_FIELDCAT TO GT_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCAT
    *&      Form  DISPLAY
    *       text
    FORM DISPLAY.
       CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
           I_CALLBACK_PROGRAM      = SY-REPID
           IT_FIELDCAT             = GT_FIELDCAT[]
         TABLES
           T_OUTTAB                = GT_RESULT
         EXCEPTIONS
           PROGRAM_ERROR           = 1
           OTHERS                  = 2.
       IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    ENDFORM.                    "DISPLAY
    Thanks.
    Regards,
    Keng Haw

  • Report on PR with item text

    Hi
    I need a list report of PR in which item text(written in long text) of PR (which is genreted through PS) should come
    In which report can i get this?
    Regards
    Kalpesh

    Hi
    The long text (or item text written for material component in PS) will be printed as item text under TEXT tab in PR/PO item details. There is no such report to show the PRs/POs with text option (ME5J/ME5K etc).
    Thanks

  • TS2755 How can I find a number I perviously texted before?

    I was texting a number and accidently deleted it.  How can I find the number again (if possible)?

    Does you carrier offer any kind of web access to your billing account? If so, when your bill generates, you may be able to see a list of your texts, who you texted. If you know the approximate time and date of the conversation, you might be able to find the number.
    Best of luck.

  • Find serial number with Apple ID?

    My Macbook Pro got stolen today, I was wondering if there is a way to find the serial number with my Apple ID which I used to register my MBP.
    I need the serial number for the police report.
    PLEASE HELP :'(
    I have discarded the packaging.

    Follow this process to find your registered serial number:
    http://support.apple.com/kb/HT2526

  • In which tables can I find the sales order item texts?

    Experts,
    In SD, we have texts on sales order item level. These texts can be filled manually or automatically via access sequences. My question is very simple: in which table can I find these texts? I want to extract them for a big number of sales orders.
    Reward points if helpful answer.
    Thanks

    hi
    try in
    TVAPT     Sales document item categories: Texts               
    TVAKT     Sales Document Types: Texts
    TVAUT     Sales Documents: Order Reasons: Texts
    TVAST     Sales Document Blocking Reasons: Texts

  • Finding warehouse number with storage location

    Hi all,
    How can I find the warehouse number given the material, plant and the storage location? Thanks in advance.

    You need to join two tables :
    MARD - MATNR,LGORT,WERKS
    MLGN - Here you get Ware house number
    Check with LS24,LS26 Transaction and also check with MLGT Table
    Thanks
    Seshu

  • Help finding Mac screensaver with scrolling text (Windows Marquee-esque)

    I have been searching the internet somewhat intensely for a scrolling text screensaver for my Macbook. I found an Apple download called "message", but that is wayyy too fancy for me. I can barely even see the text with all of the crazy fonts and weird zooming. The emphasis is not on the text for that screensaver.
    Something like the Windows Marquee would be fine, though I am sure somewhere out there is a tricked-out version for Mac. I would just want to be able to read the text clearly, as I intend to use the screensaver to help me to memorize some text.
    Maybe I am overlooking an obvious screensaver already loaded on the Macbook, but I am surprised that Tiger does not come with such a screensaver. Any suggestions and links? Thank you

    I think you should be able to find something that works for you using Quartz Composer. As an example, here is a link to someone else that was working on horizontal scrolling text. I don't know if their project got completed (or if it's currently included in Quartz Composer) but the .qtz file on this page will load in QuickTime so you can see the results as of this posting.
    http://www.mulle-kybernetik.com/weblog/2005/05/towardshorizontal_scrollingi.html
    You get Quartz Composer by downloading the Xcode tools. I'm looking through the example libraries now to see if there's something you could use in the current examples.

  • How to find the number of data items in a file written with ArryToFile function?

    I have written an array of number in 2 column groups to a file using the LabWindows/CVI function ArrayToFile...Now if I want to read the file with FileToArray Function then how do I know the number of items in the file. during the write time I know how many array items to write. but suppose I want the file to read at some later time then How to find the number of items in the file,So that I can read the exact number and present it. Thanks to all
    If you are young work to Learn, not to earn.
    Solved!
    Go to Solution.

    What about:
    OpenFile ( your file );
    cnt = 0;
    while ((br = ReadLine ( ... )) != -2) {
    if (br == -1) {
    // I/O error: handle it!
    break;
    cnt++;
    CloseFile ( ... );
    There are some ways to improve performance of this code, but if you are not reading thousands of lines it's quite fast.
    After this part you can dimension the array to pass to FileToArray... unless you want to read it yourself since you already have it open!
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • LSMW - Direct Input - Sales order - item texts

    Hi Gurus,
    To transfert all orders from  old system to new SAP system, I make this with LSMW and program RVINVB10.
    The creation of header and item of orders is good but I have a problem with item texts.
    In LSMW, I have create one structure et I have affected this to the struct BTEXHKOM and BTEXLKOM.
    In BTEXHKOM, the field LAISO = 'FR' and TDID='ZM03' (Id of customer text).
    In BTEXLKOM, the field TXTPARAGRAPH='/' and TXLINE='BLABLABLABLA' (no more 72 char).
    In actions 'Read Data' and 'Convert Data', I see this two structs. But after execution of Direct Input program, I don't see text in my item of sales order.
    I think I miss something.
    Can you help me ???
    Thanks a lot
    Laurent Guilloteau

    Hi Laurent Guilloteau,
    I am facing a similar issue.
    We are trying to upload sales order data using LSMW Standard Batch/Direct input using program name RVINVB10 and program type D. We are not able to upload item text but we are not having any problem in uploading remaining data.
    the details we are passing to BTEXHKOM  structure are......
    BTEXHKOM-OLDNR = IHEADER-OLDORD_NO.
    BTEXHKOM-LAISO = 'EN'.
    BTEXHKOM-TDID = 'Z009'.
    and the for structure BTEXLKOM
    BTEXLKOM-OLDNR = IHEADER-OLDORD_NO.
    BTEXLKOM-TXPARGRAPH = '/'.
    CONCATENATE LITEM-DEPTID LITEM-DEPTNAME
      INTO BTEXLKOM-TXLINE SEPARATED BY ' '.
    we have three input source structures.
    IHEADER                Header structure
    LITEM                     Line item structure ( Material data )
    IPARTN                   Partners structure
    The structure relationships are
    BTEXHKOM <<<  IHEADER.
    BTEXLKOM  <<< IHEADER.
    Please let me know if I am doing some thing wrong or some thing else need to be done.
    Thanks,
    Chindam.

Maybe you are looking for

  • Won't print to size from Indesign

    Hi, When I print an A3 page it doesn't print A3, I have spent hours and hours reading and changing settings but it still doesn't work. I have a piece of artwork with a 12mm white border, I press print and the end result has 3mm border to the left and

  • I am running 10.7.5. Is maverick different?

    am running 10.7.5. Is mavericks different?

  • How do i fix pairing record is missing

    I have the latest iTunes and the latest iPod Touch OS.  I connected my iPod to the computer for the first time and got the message "iTunes could not connect to the iPod "Larry's iPod" because the pairing record is missing. How to I fix that problem.

  • File organizations issues

    I just upgraded from LP7 to LP9 and am having some trouble with my sample instruments. With LP7, I've had my sample files (EXS, Ultrabeat and Garageband) on a secondary internal hard drive with aliases in the default location under app support. So wh

  • Multi function printer/scanner

    I need to buy a printer with scanner functions and other features, I would like something not expensive, just for home use but a model which is fully working with Snow Leopard. A good brand for Mac Thanks for suggestions