Full Order Description in IW32

Hi,
How can I get the full description or long text of an order in IW32?
thanks
james

Hi James,
You can get the full description in AUFK-KTEXT.
Where AUFK-AUFNR --> Your order number.
Hope it helps,
Victor.

Similar Messages

  • User exit at PM order reading (IW31/IW32)

    Hi!
    Does anyone know, which user exit is triggered, during the reading of a PM order in IW31/IW32?
    If I enter the PM order number in IW32 and press enter, it has to stop, before the order appears...
    Please do NOT list all of the exits, I know their names...
    Thank you
    Tamá

    use following prog to find user exits for the given tcode.
    *& Report  ZUSEREXIT                                                   *
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    Sameer

  • Purchase Order Description Text

    Hi All,
    I am trying to display a POD text but it is cutting off, can anyone help to write the purchase order description text. Currently it can only display only 130 characters.
    gv_repid = sy-repid.
    SELECT SINGLE ebeln INTO i_tab-ebeln FROM ekpo  WHERE matnr = i_tab-matnr.
      line_id     = 'BEST'.
      line_name   = i_tab-matnr.
      line_lang   = sy-langu.
      line_object = 'MATERIAL'.
    CALL FUNCTION 'READ_TEXT'
        EXPORTING
          id                      = line_id
          language                = line_lang
          name                    = line_name
          object                  = line_object
        TABLES
          lines                   = i_tabs
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      IF sy-subrc <> 0.
      ENDIF.
      LOOP AT i_tabs.
        CONDENSE i_tabs-tdline.
        CONCATENATE i_tab-text i_tabs-tdline INTO i_tab-text SEPARATED BY space.
        MODIFY i_tab TRANSPORTING text.
      ENDLOOP.
    Regards,
    Fred

    Hi
    This is my code:
    FORM reading_text.
    Begin of i_tab occurs 0,
       text(150) type c
    end of i_tab.
      gv_repid = sy-repid.
    SELECT ebeln INTO i_tab-ebeln FROM ekpo  WHERE matnr = i_tab-matnr.
        EXIT.
      ENDSELECT.
      line_id     = 'BEST'.
      line_name   = i_tab-matnr.
      line_lang   = sy-langu.
      line_object = 'MATERIAL'.
    ALL FUNCTION 'READ_TEXT'
        EXPORTING
          id                      = line_id
          language                = line_lang
          name                    = line_name
          object                  = line_object
        TABLES
          lines                   = i_tabs
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      IF sy-subrc <> 0.
      ENDIF.
      LOOP AT i_tabs.
        CONDENSE i_tabs-tdline.
        CONCATENATE i_tab-text i_tabs-tdline INTO i_tab-text(150) SEPARATED BY space.
        MODIFY i_tab TRANSPORTING text.
      ENDLOOP.
    CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
          header = i_tab-text
        TABLES
          lines  = i_tabs.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    It's giving me a dump:call_function_conflict_leng
    There are other fields in an internal table.
    Regards,
    Fred
    Edited by: Fred Mogaadile on Sep 26, 2008 6:17 AM
    Edited by: Fred Mogaadile on Sep 26, 2008 6:19 AM

  • RAR5.3 - SoD Report Not Showing Full Risk Description

    Hello,
    In a Sandbox environment, I'm playing around with/testing a new ruleset. The environment has our Production ruleset and I've added some risks to this ruleset via file upload in Configuration. The risks look great. Both the description and detailed description got imported correctly. The rules generated perfectly for these new risks I uploaded. Everything related to the risk, the way the risk is built, the rules, looks perfect. When I run Risk Analysis on test users that I know have the risk, they show on the report just as expected. However, the risk "description" is essentially missing. For example, in Management Summary View, here is what Risk B001* looks like:
    B001:   Basis Development & System Administration
    Medium Basis TEST_USER(TEST_USER) USSPCJH40_E3
    I've bolded the Risk Description.
    However, here is what one of my new risks shows up like (F031, a risk we haven't put in production yet for various reasons):
    F031:   F031
    Medium Finance TEST_USER(TEST_USER) USSPCJH40_E3
    The Risk Description only says "F031." It still is hyperlinked so it still works, but I want to see the full Risk Description, obviously. When I look at the Risk in Rule Architect, both descriptions are there.
    I then extracted the Rules via Rule Export and looked in the VIRSA_CC_RISKT table - the F031 description is there!
    B001 (which looks fine) and F031 (which has the description missing) has entries in ALL of the same tables (unless there's a table that I'm not getting with the export?)
    Can anyone help me out? Has anyone experienced a similiar issue? Why would all my newly imported risks not show a Risk Description when running Risk Analysis?
    Thanks in advance!
    Jes Behrens
    Edited by: Jes Behrens on Feb 26, 2009 8:26 AM

    Hi !
    This report shows the schedule line items , group schedule line items and rental contact (billing plan) lines when particular checkbox is checked. The checkboxs p_all(non-schedule line) , p_group(group schedule line items) are working in my above alv report and showing  result but unfortunately when p_rental is checked it dosent give me result , it says  no data selected. This when checked has to show result based on a different set of selections as I have done, but its not shwoing me the result .
    Kindly help please.
    Thanks

  • Add order description in COOIS

    Dear All,
    I used TC: COOIS to obtain report from production orders, using list "Automatic goods movements".
    In that report I haven't production order description, in fact description for the finished good, or semifinished good whichever production order was created.
    It is possible to add this description on standard report COOIS, whitout ABAP programmer?
    Thanks for your help!
    Regards,
    Marian

    Hi,
    You will need help from your abaper on this.
    The list - Automatic goods movements is based on structure - IOGOMO & this structure does not contain a field for description. There is an option to extend this structure - CI_IOGOMO. So work with your abaper on this & use the BADI - WORKORDER_INFOSYSTEM & you should be able to display the info you need.
    Regards,
    Vivek

  • PM Order description based on the Package Due

    Hello Experts,
    Can anyone explain me if PM Order description can be defaulted based on the Package Due such as Weekly, Monthly, Quarterly, Annual, etc..
    I know we can have multiple maintenance items with different task list for each package, so that the order description is copied from the maint.-item description.
    Is there any other better way to do this in standard SAP?
    Thanks in advance!!!!

    Hi,
    As you told, Order description is getting copied from Maintenance Item.
    In Maintenance item, task list will be assigned. As single Task list may be having different packages & Order will consolidate the operations with packages based on Hierarchy, its not possible to bring the package due as description.
    One work around would be, maintenance item can be defined based on package. Pre-requisite would be task list based on package.
    In the task list, operations should be splitted up based on package. One Task list for one package.
    Then create the maintenance item based on package & assign particular task list to that maintenance item.
    Regards,
    Maheswaran.

  • Isqlplus with full connection description does not work in netscape/firefox

    http://machine/isqlplus?userid="user/pass@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxx.xxx.xxx)(PORT=1521))(CONNECT_DATA=(SID=xxx)(SRVR=DEDICATED)))"
    This works in IE, but fails in netscape and firefox with: SP2-0874: URL argument is missing a keyword
    It looks like a URL encoding issue. Has anyone seen this and if so have you found a solution?

    Thanks for the try, but that didn't help. Actually, without the full connection description it works in both browsers, i.e.
    http://machine/isqlplus?userid=user/pass@servicename
    does work in both. isqlplus under firefox appears to not like the encoding as:
    http://machine/isqlplus?userid="user/pass@servicename"
    this does not work under firefox. But with a full connect string it appears I need the quotes as without nether works.

  • How add Work Order Description to EAM_ADD_EXIST_WO__AddWOQueryRG__426

    Hello,
    In SSM > Work Orders tab > Search for some WO and go to Detail of WO > Work Order Relationship tab > click Update Work Hierarchy button:
    Select WO and choose Add Existing Work Orders > click Go button > Advanced Search for WOsL - We would like to add another new search criteria - "Work Order Description". How could I do that via personalization or is it possible?
    Thanks, Regards,
    Jitka

    I am using SAP ECC 6.0.
    SAP Basis Component and Cross-Application Component: release 700, level 013
    Is there any other information you need?
    Could I still use this OSS note with this version?
    Also, the issue is not about the response time like mentioned in the OSS note.

  • Order (T.Code-IW32)

    Dear All
    In Maintenance order iw32 , there is operation header and sub operation description. I want to see in graphic netstructure of Header and sub operation.
    Thnx in Advance
    Sudip

    Hi Sudip,
    The graphic display for network structure is only supported in IW31, IW32 and IW33.                                                                               
    Please see note 301985, this corrects a situation where it was possible to access the structure from notifications. As stated    in the note: 'The correction deactivates the menu function.'         
    I hope it can be helpful,
    Regards
    Ruy Castro

  • Restrict access to modify Service Orders operations within IW32

    Hello experts,
    We have a challenge due to our certifications programs. We allow certains users to create services orders and make the selection of the task list via IW31. They also have access to IW32 so that they can release the order later on.
    I am looking for a way to block their capability to modify operations informations (wc, texts, prt,etc). So far I have explored few avenues but I am still not convinced.
    Option 1:
    -use a BADI (WORKORDER_UPDATE) and functions CO_BT* to track detail fields that were changed
    -this involves a good development
    Option 2:
    -use BADI IWO1_ORDER_BADI method AUTHORITY_CHECK_AUART_ACTIVIT
    -I couldn't find authorization object for my need...
    Option 3:
    -a check on changes docs being created or apparently there is a field VBKZ we could use to identify a object change...
    Would you have faced the same requirement?
    Thank you for your time.
    Francois Paquet

    Hi Pete, I am glad to receive an answer from you! Your other answers helped me on some other requirements.
    We have given a try to this badi and as per the documentation it works well to hide information. We will see if we can push other parameters than set invisible because we still want the information to remain visible.
    Thank you.
    Francois P.

  • How to send the order number(IW31,IW32,IW33) using SAPOffice in program?

    Hi! All.
    program send order number, use function "SO_NEW_DOCUMENT_ATT_SEND_API1".
    and revicer(SAP logon ID) want use iw32(order change mode)
    when double-click attachment order number.
    SOURCE CODE **
    data: docdata like sodocchgi1,
    objpack like sopcklsti1 occurs 10 with header line,
    objhead like solisti1 occurs 10 with header line,
    objtxt like solisti1 occurs 10 with header line,
    objbin like solisti1 occurs 10 with header line,
    objhex like solix occurs 10 with header line,
    reclist like somlreci1 occurs 1 with header line.
    data: tab_lines type i,
    doc_size type i,
    objtyp(10),
    objdes(100).
    data:
    l_object type swotobjid,
    l_objheader like soxobj.
    For the BOR attachment
    constants:
    c_object_describe like swotobjid-describe value '<OBJECT>'.
    *0.
    objtyp = 'BUS2007'.
    objdes = '000080001948'.
    *1. Document DATA
    objtxt = 'Send ORDER'.
    append objtxt.
    objtxt = 'SAPOffice send mail TEST....'.
    append objtxt.
    objtxt = 'Have a nice day.'.
    append objtxt.
    describe table objtxt lines tab_lines.
    read table objtxt index tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
    docdata-obj_name = 'BOR Object'.
    docdata-no_change = ''.
    docdata-proc_type = 'R'.
    docdata-obj_prio = '2'.
    Title mail
    concatenate 'Order' objdes
    into docdata-obj_descr separated by space.
    condense docdata-obj_descr.
    *2. Packing List
    Main INFO
    clear objpack-transf_bin.
    objpack-head_start = 0.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'RAW'.
    append objpack.
    Attachment INFO
    clear objpack.
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 1.
    objpack-body_start = 1.
    objpack-body_num = tab_lines. "0.
    objpack-doc_type = 'OBJ'.
    objpack-obj_name = objtyp.
    objpack-obj_descr = objdes.
    objpack-doc_size = tab_lines * 255.
    append objpack.
    *3. Object Header
    l_object-describe = c_object_describe.
    l_object-objtype = objtyp.
    l_object-objkey = objdes.
    call function 'OWN_LOGICAL_SYSTEM_GET'
    importing
    own_logical_system = l_object-logsys
    exceptions
    own_logical_system_not_defined = 1
    others = 2.
    if sy-subrc <> 0.
    message e398(00) with 'No Log Sys Found'.
    endif.
    move-corresponding l_object to l_objheader.
    append l_objheader to objhead.
    *4.
    reclist-receiver = sy-uname.
    reclist-rec_type = 'B'. "B
    append reclist.
    *5. SAPOffice
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X'
    tables
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    others = 8.
    if sy-subrc <> 0.
    message id 'SO' type 'S' number '023'
    with docdata-obj_name.
    endif.

    please read the documentation. that is part configuration, part basis and very well described at help.sap.com.

  • Assigning  of   smart from  to print  Service Order using Tcode IW32

    Hi  Gurus
    i have  developed a Z smart form  to print shop papers  using IW32 how how to assign the  Zprint program and Z smartforn  to print  shop papers using iw32
    thanks in advance.
    Edited by: jvp111 on Jun 11, 2010 4:20 PM

    In config, under Plant Maintenance & Customer Service -> Maintenance & Service Processing -> Maintenance & Service Orders -> Print Control -> Define Shop Papers you can assign you own Shop Paper number , Form Routine, Form name. The SAP standard  is a Sapscript but I have used a Smartform. Note that you will have to give a shorter name for your Smartform to fit in the Form section in config.

  • Purchase order description needs to be changed

    Hi
    We have a generic material database for particular type of materials. This material is then mapped to a huge database of unique materials. (We are a retailer and sell 30 milllion plus articles (materials). Hence this mechanism). Those that we maintain through generic numbers mapped to unique numbers..are all sold through third party vendors.
    Now, the return purchase order to these vendors needs to have the unique description maintained in a ztable instead of the generic material and description from the material master.
    Any BADI that can help us overwrite the material master description pls?
    Thanks
    Priya

    Hi
    Thank you for your link.
    However I am not to change the description in MM02. Material master has to retain the original description. I need to change the description only in the purchase order.
    This is because while in our records it would suffice to know the material by its generic name..for finance and for the vendor they need to know the ztable description.
    Hope that clarifies.
    T
    Thanks
    Priya

  • Maintenance Order Components Error IW32

    Hi all,
    Please guide me on below error log:
    while going into components from IW32 screen against maintenance order number (It is against functional location only) - it is giving an error ::
    Business transaction could not be carried out
    Reference object for business object not allowed
    (Highlighting Function Location <name>)
    Blue flag appears.
    Thanks
    DM
    Edited by: Deepak M on Nov 7, 2008 6:28 AM

    Hi deepak
    You have set the functional location Deletion Flag status...
    thats why you are not able to create a order...
    it does not depends on components tab...
    When u enter the functional location click a enter, it will display a error message. Message display will be like this..
    Reference object for business operation not allowed
    Message no. IM275
    Diagnosis
    You tried to perform a business operation for a reference object whose status does not allow this operation.
    System Response
    The system does not perform the operation.
    - Pithan

  • PM: Create notification from a work order using transaction IW32.

    Hi guys,
    I am trying to create a Notification for a Functional Location thru Work Order Using transaction Code IW32.
    The actual transaction works fine as below -
    1. Open a work order in change mode using T code IW32
    2. Choose tab "Objects" to see the list of functional locations.
    3. Select a line with a functional loc, for which you want to create Notification & click "Create" Button at the bottom of the list.
    4. Enter Notification type on the pop up screen & enter.
    5. Enter the activity code, text & start date on the notif create screen & click Back. You can see the temp Notif Number in the row selected from the object list.
    6. Click save on the order change screen & the Notification is saved & is associated with the order & func Loc..
    However I can not do this in a program.
    I tried using Batch Input method. It works, but the problem is if you have more than 1 page of the Objects (Func locations) in objects tab, you can not goto the next pages.
    I also tried using BAPI_ALM_NOTIF_CREATE. Which doesnot for this purpose. It tries to create Notification but can't associate with the order.
    I appreciate your help.
    Thank you,
    Raj

    Hi:
    Check with Tcode: IBIP - Plant maintenace batch input utility tool.
    Hope, it may help!
    Thanks,
    Murali.

Maybe you are looking for

  • Urgent : OBIA - Handling multiple Global, Local and Document Currencies

    All, I need input on how to configure multiple currency codes in DAC for OBIA 7.9.6.x My client's business goes around the the world and with multiple local currencies.They also need reporting currency to be multiple like in Euro, USD etc. I went thr

  • Ibook g4 and hard drive expansion

    I have an ibook g4 that came with about 40 gb of space on the hard drive. needless to say that space is about all used up. I'm wondering how I can expand my hard drive without getting an external hard drive-- or is that the only method? I'm also fair

  • FlashCC Keyboard shortcuts not working

    Hi, I've been using Flash ever since it was owned by Macromedia, and I can't seem to get my head around the keyboard shortcuts in CC. I used to be able to assign convert to symbol to page up and insert frame, keyframe and blank keyframe to F13, F14 a

  • How to find/remove broken symlinks in Snow Leopard?

    Long story, but I need to check my system for broken symlinks and aliases and, if there are any, remove them.  Is there a way to do that in the Terminal?  If so, what are the exact commands?  Obviously, I would like to know what they are, if any, bef

  • Installing Flashplayer to Linux, need help please

    Ok, so I'm a windows xp person, I am new to Linux/ubuntu system setup thing... anywho I have been trying to watch youtube and get on to sites that require flashplayer, etc. It isn't letting me watch vids, so I do not have flashplayer, and when I went