Picking List / Material issue slip

Kindly let me know the process of printing a Picking list / Issue Slip for a material issue from a DBM Service order.

Dear Babudhar,
There are no standard actions delivered to print any picking lists along with DBM 6.0.
An event call be built in (to print the list) which could be linked to Confirm event as a subsequent event. So, as soon as the order if confirmed, the new event can print the list for you.
Hope this info helps.
Best regards,
Harsha

Similar Messages

  • Adding Storage Bin Number to Material Issue Slip - RIPRGI00

    Hello,
    I have a request to add the storage bin number  to the Material Issue Slip with output type zpmm. However, I need help on where in the code I need to add this field. I know a program change needs to happen in RIPRGI00, and the SAPscript  layout Z_PM_COMMON needs to be changed too. I believe the storage bin number field is RESBD-LGORT. Please correct me if I'm wrong so far. Your guidance is appreciated.
    Thank You!

    If you're talking about MM Storage Bin it is maintained in MARD-LGPBE.
    It's maintained at material master level in "Plant/stor data" view 1. (you need to enter the storage location in org. level in MM03 to be able to even see the field.

  • Print Material Issue Slip in IW32

    Hi,
    How can I print Material Issue Slip in IW32? is there any process or steps i will do first before i can print Material Issue Slip?
    thanks.
    james

    Hi    TNQs for ur responce.
      i want to get the item text in the  main window beside to material description column .
    i think u got my point actually we'll have item texts for each item , i want to get the text of each item  in that row only
    i used include text and i gave following attributes
    Text Object :      EKPO
    Text ID         :  A03
    Language     :     EN
    just tell me ,should i need to give any code for this.
    thanks and regards,

  • Picking list grouping issue.

    When we print a picking list for deliveries we get the list grouped by material. So for example, if the delivery item 10 and 40 both have the same material then item 10 and 40 will be printed one after the other. So far all is okay, except that when the materials are the same the material details are not printed for the second line item. I think this is controlled by the SAP print program that probably is not calling the 'MAT_LINE' process.
    Now there is a sneaky way around this, by maybe adding the MAT_LINE details into the POS_LINE process so that when the process for POS_LINE is called, which it is in all events,  then the material and pos details are printed. However, I should not have to do this.
    I was wondering if there was anyway to control the grouping. I still want the materials to be grouped, as that makes sense for the pickers, but I want to see the material details on the list and not have them supressed because it's the same as the material above.
    Jason

    Moved element Item_line content into the POS_line element and remarked out the item_line element. All now works.

  • Pick list print issue?

    Hello Friends,
    I have a printing issue with my client,
    For specific customers  they ship very large kits(BOM's) and require ship labels to print for each component listed on the picklist , in addition to the regular ship label for the header material YX.
    These components are item category YF (purposely omitted for delivery note).
    They do not want this to print of every customer, Please advice how we can add a logic to  print shipping labels for components only for specific customers.
    thanks;
    Mike

    hi,
    Currently i am working on similar object
    We have developed Zprogram for the project. We are using  bar code printer which is used to print the lables.
    1. Developed a zprogram with selection screen child & parent material radio buttons. so whenver u click child material it will create label only for components apart from header material.
    2.Program generates a text file with component details and  downloads it to the Application server
    3. Once the text fiole get downloaded & bar code printer is ON , it will automatically prints the labels. If the barcode printer is OFF, then u will be able to see the text files
    Please find the Zprogram used, pls take help of ur ABAPER to cchnage the plants & details corresponding to ur setup
    REPORT  ZKITTAG  message-id z_apd.
    tables : mseg,
             makt,
             mkpf,
             zmmstoragebin,
             t001w,
             mast,
             stpo.
    **SELECTION SCREEN
    selection-screen  : begin of block blk1 with frame title text-001.
    parameters        : p_werks type ekpo-werks obligatory.
    parameters        : s_mblnr type mseg-mblnr obligatory.
    select-options   :  s_matnr for mseg-matnr obligatory no intervals
    no-extension.
    parameters:p_child  radiobutton group rad,
               p_parent radiobutton group rad.
    *parameters        : no      type i.
    selection-screen  : end of block blk1.
    data :begin of it_mseg_header occurs 0,
          MBLNR LIKE MSEG-MBLNR,
          MJAHR LIKE MSEG-MJAHR,"Kiran 28.06.2008
          EBELN LIKE MSEG-EBELN,
          MATNR LIKE MSEG-MATNR,
          MENGE like mseg-menge,
          BWTAR LIKE MSEG-BWTAR,
          meins like mseg-meins,
          MAKTX LIKE MAKT-MAKTX,
          menge1(19),
          STORAGE LIKE ZMMSTORAGEBIN-STORAGE,  "Sridhar on 22082005
          WERKS LIKE MSEG-WERKS,               "Sridhar on 22082005
    end of it_mseg_header.
    data: menge1 like mseg-menge.
    DATA : BEGIN OF IT_MSEG_CHILD OCCURS 0,
            MBLNR LIKE MSEG-MBLNR,
            MJAHR LIKE MSEG-MJAHR,
            EBELN LIKE MSEG-EBELN,
            WERKS LIKE MSEG-WERKS,
            MATNR1 LIKE MSEG-MATNR, " HEADER PARTNO
            MATNR LIKE MSEG-MATNR,
            MAKTX LIKE MAKT-MAKTX,
            BWTAR LIKE MSEG-BWTAR,
            MEINS LIKE MSEG-MEINS,
            STORAGE LIKE ZMMSTORAGEBIN-STORAGE,
            HQTY LIKE MSEG-MENGE, " HEADER QTY
            MENGE LIKE MSEG-MENGE, " CHILD QTY
            SUMQTY LIKE MSEG-MENGE, "SUM OF CHILD QTY FOR SAME PARTS
            QTPKIT LIKE MSEG-MENGE, " QTY PER KIT
            PQTY LIKE MSEG-MENGE, " PRINT QTY
            PQTY1 LIKE MSEG-MENGE, " PRINT QTY 1
            QUO TYPE I,
            REM LIKE MSEG-MENGE ,           
            MENGE2(19),
            MENGE3(16),
            MENGE4(19),
            MENGE5(16),
          END OF IT_MSEG_CHILD.
    DATA: TEMPQUO LIKE MSEG-MENGE,TEMPREM LIKE MSEG-MENGE,
            TEMPHQTY LIKE MSEG-MENGE,TEMPSUMQTY LIKE MSEG-MENGE,
            CMPVAL LIKE MSEG-MENGE.
    data: v_bktxt type mkpf-bktxt.
    data: sum like mseg-menge.
    data : prod(13).
    data : n1(2) type n.
    data : n2(2) type n.              
    data : n3(2) type n.              
    data : n4(2) type n.              
    data : c1(2) type n value 1.      
    data : dsn(150).
    data : dsn1(100).
    data : number(3).
    data : file(50) value 'E:\userdata\Barcode_kittags\kit00' .
    Data : file1(50) value 'E:\userdata\Barcode_kittags\kit00' .
    Data for server details
    data : host1 like syst-host.
    data : sysid like syst-sysid.
    RANGES : r_werks FOR mseg-werks.
    *AT SELECTION SCREEN.*
    at selection-screen.
    r_werks-sign = 'I'.
    r_werks-option = 'EQ'.
    r_werks-low = 'WK01'.
    APPEND r_werks.
    r_werks-low = 'CQ01'.
    APPEND r_werks.
    if p_werks not in r_werks.
    message 'Plant should be either plant1 or plant2' TYPE 'E'.
    endif.
      select single werks into t001w-werks  from t001w
             where werks eq p_werks.
      if sy-subrc <> 0.
        message e000(z_apd) with 'Invalid Plant...Please Check'.
      endif.
      select single mblnr into mseg-mblnr from mseg
             where mblnr eq s_mblnr.
      if sy-subrc <> 0.
        message e000(z_apd) with 'Invalid Material Doc...Please Check'.
      endif.
    start-of-selection.
      perform get_data.
      if p_child eq 'X'.
        if it_mseg_child is initial.
       No Details Available
          message i017(z_apd) with text-002.
          exit.
        else.
          host1 = syst-host.
          sysid = syst-sysid.
          n1 = 1.
    **Sorting according parent material and child parts
          sort it_mseg_child by matnr1 matnr.
    loop at it_mseg_child.            
          if p_werks = 'WK01'.
            concatenate file n1 '.PJ' into dsn.
          ENDIF.
          if p_werks = 'CQ01'.
            concatenate file1 n1 '.PJ' into dsn.
          ENDIF.
          perform write_data.
          clear dsn.
          n1 = n1 + 1.
    endloop.                          
          message i017(z_apd) with TExt-003."'File Has Been Created'.
          clear: it_mseg_child, it_mseg_child.
          refresh : it_mseg_child, it_mseg_child.
        endif.
      else.
        if it_mseg_header is initial.
       No Details Available
          message i017(z_apd) with text-002.
          exit.
        else.
          host1 = syst-host.
          sysid = syst-sysid.
          n1 = 1.
    **Sorting according parent material and child parts
          sort it_mseg_header by matnr.
    loop at it_mseg_header .         
          if p_werks = 'WK01'.
            concatenate file n1 '.PJ' into dsn.
          ENDIF.
          if p_werks = 'CQ01'.
            concatenate file1 n1 '.PJ' into dsn.
          ENDIF.
          n2 = it_mseg_header-menge.
          perform write_data1.
          clear dsn.
          n1 = n1 + 1.
    endloop.                       
          message i017(z_apd) with TExt-003."'File Has Been Created'.
          clear: it_mseg_header, it_mseg_header.
          refresh : it_mseg_header, it_mseg_header.
        endif.
      endif.
    end-of-selection.
    *&      Form  get_data
          text
    FORM get_data .
      AUTHORITY-CHECK OBJECT 'ZPLANT'
      ID 'WERKS' FIELD P_WERKS.
      IF SY-SUBRC NE 0.
        message E006(zmess) with text-009  p_werks.
      endif.
      select a~mblnr
             a~mjahr   
             a~ebeln
             a~matnr
             a~menge
             a~bwtar
             a~meins
             a~werks
       from mseg as a
       inner join mkpf as b
       on  amblnr = bmblnr and
           amjahr = bmjahr
      into corresponding fields of table it_mseg_header
      where
      a~WERKS = p_werks
      and b~mblnr = s_mblnr
      and a~matnr  in s_matnr
      and a~BWART = '101'.
      loop at it_mseg_header.
        select single maktx from makt  into
               (it_mseg_header-maktx)
               where matnr = it_mseg_header-matnr.
        select single storage into (it_mseg_header-storage)
        from ZMMSTORAGEBIN
        where WERKS = it_mseg_header-WERKS
        and MATNR = it_mseg_header-MATNR and
        BWTAR = it_mseg_header-BWTAR.
        move '1.000' to it_mseg_header-menge1.
        CONCATENATE it_mseg_header-MENGE1 it_mseg_header-meins INTO
        it_mseg_header-menge1 .
        modify it_mseg_header transporting maktx menge1.
    SELECT DISTINCT AMBLNR aMJAHR aWERKS aMEINS aEBELN aMATNR a~BWTAR
    a~MENGE
    INTO CORRESPONDING FIELDS OF TABLE IT_MSEG_CHILD
    FROM MSEG AS A INNER JOIN MKPF AS B
    ON AMBLNR = BMBLNR AND
       AMJAHR = BMJAHR
    WHERE A~MBLNR = IT_MSEG_HEADER-MBLNR
    AND  A~MJAHR = IT_MSEG_HEADER-MJAHR
    AND A~BWART = '543'
    AND A~WERKS = IT_MSEG_HEADER-WERKS
    AND A~EBELN = IT_MSEG_HEADER-EBELN.
    *AND A~BWART = '541'.
      endloop.
      loop at it_mseg_child.
        SELECT SINGLE SUM( MENGE )
        INTO (TEMPSUMQTY)
        FROM MSEG
        WHERE MBLNR = IT_MSEG_CHILD-MBLNR
        AND MJAHR = IT_MSEG_CHILD-MJAHR 
        AND WERKS = IT_MSEG_CHILD-WERKS 
        AND EBELN = IT_MSEG_CHILD-EBELN
        AND MATNR = IT_MSEG_CHILD-MATNR
        AND BWART = '543'.
        select single maktx
        into it_mseg_child-maktx
        from makt
        where matnr = it_mseg_child-matnr.
        select single matnr MENGE
        into (it_mseg_child-matnr1,TEMPHQTY)
        from mseg
        where mblnr = it_mseg_child-mblnr
        and mjahr   = it_mseg_child-mjahr
        and werks   = it_mseg_child-werks
        and ebeln   = it_mseg_child-ebeln
        and bwart = '101'.
        select single storage
        into (it_mseg_child-storage)
        from ZMMSTORAGEBIN
        where WERKS = it_mseg_child-WERKS
        and MATNR = it_mseg_child-MATNR and
        BWTAR = it_mseg_child-BWTAR.
        IT_MSEG_CHILD-QTPKIT = TEMPSUMQTY / TEMPHQTY.
        IT_MSEG_CHILD-SUMQTY = TEMPSUMQTY.
        IT_MSEG_CHILD-HQTY = TEMPHQTY.
        modify it_mseg_child.
      endloop.
      DELETE ADJACENT DUPLICATES FROM it_mseg_child.
      LOOP AT IT_MSEG_CHILD.
        IT_MSEG_CHILD-QUO = IT_MSEG_CHILD-MENGE DIV IT_MSEG_CHILD-QTPKIT.
        IT_MSEG_CHILD-REM = IT_MSEG_CHILD-MENGE MOD IT_MSEG_CHILD-QTPKIT.
        it_mseg_child-MENGE3 = it_mseg_child-QTPKIT.
        condense it_mseg_child-MENGE3.
        CONCATENATE it_mseg_child-MENGE3 it_mseg_child-MEins INTO
        it_mseg_child-MENGE2 .
        condense it_mseg_child-MENGE2 .
        it_mseg_child-MENGE4 = IT_MSEG_CHILD-REM.
        condense it_mseg_child-MENGE4.
        CONCATENATE it_mseg_child-MENGE4 it_mseg_child-MEins INTO
        it_mseg_child-MENGE5 .
        condense it_mseg_child-MENGE5 .
        MODIFY IT_MSEG_CHILD.
      ENDLOOP.
    ENDFORM.                    " get_data
    *&      Form  write_data
          text
    FORM write_data .
      open dataset dsn for output in text mode encoding default.
      if sy-subrc <> 0.
        exit.
      endif.
    transfer 'KTN.LBL' to dsn.                      
      SORT IT_MSEG_CHILD BY EBELN STORAGE.
      LOOP AT IT_MSEG_CHILD.
       IF IT_MSEG_CHILD-QUO > 0."uncommented           
    IF IT_MSEG_CHILD-REM = 0."commented              
    n3 = IT_MSEG_CHILD-QUO.                         
    do n3 times.                                    
      transfer 'KTN.LBL' to dsn.                     
       MOVE 1 TO NUMBER.                               
    MOVE IT_MSEG_CHILD-QUO TO NUMBER."commented     
      MOVE IT_MSEG_CHILD-QTPKIT TO NUMBER."commented 
            condense number.
            transfer number to dsn.
            transfer : it_mseg_child-EBELN to dsn,
                       it_mseg_child-matnr1 to dsn,
                       it_mseg_child-matnr to dsn,
                       it_mseg_child-maktx to dsn,
                       it_mseg_child-MENGE2 to dsn,
                       it_mseg_child-bwtar to dsn.
            transfer it_mseg_child-storage to dsn.
            transfer space to dsn.
            c1 = c1 + 1.
            if c1 = 8.
              clear c1.
              close dataset dsn.
              clear dsn.
              n1 = n1 + 1.
              if p_werks = 'WK01'.
                concatenate file n1 '.PJ' into dsn.
              ENDIF.
              if p_werks = 'CQ01'.
                concatenate file1 n1 '.PJ' into dsn.
              ENDIF.
              open dataset dsn for output in text mode encoding default.
              if sy-subrc <> 0.
                exit.
              endif.
            endif.
          enddo.                                
        ENDIF.
        IF IT_MSEG_CHILD-REM > 0.
      n4 = IT_MSEG_CHILD-REM.                        
         do 1 times.                                   
          transfer 'KTN.LBL' to dsn.                   
          MOVE 1 TO NUMBER."uncommented                
      MOVE IT_MSEG_CHILD-REM TO NUMBER."commented
            condense number.
            transfer number to dsn.
            transfer : it_mseg_child-EBELN to dsn,
                       it_mseg_child-matnr1 to dsn,
                       it_mseg_child-matnr to dsn,
                       it_mseg_child-maktx to dsn,
                       it_mseg_child-MENGE5 to dsn,
                       it_mseg_child-bwtar to dsn.
            transfer it_mseg_child-storage to dsn.
            transfer space to dsn.
            c1 = c1 + 1.
            if c1 = 8.
              clear c1.
              close dataset dsn.
              clear dsn.
              n1 = n1 + 1.
              if p_werks = 'WK01'.
                concatenate file n1 '.PJ' into dsn.
              ENDIF.
              if p_werks = 'CQ01'.
                concatenate file1 n1 '.PJ' into dsn.
              ENDIF.
              open dataset dsn for output in text mode encoding default.
              if sy-subrc <> 0.
                exit.
              endif.
            endif.
          enddo.                                 
        ENDIF.
      ENDLOOP.
      close dataset dsn.
    ENDFORM.                    " write_data
    *&      Form  write_data1
          text
    FORM write_data1 .
      open dataset dsn for output in text mode encoding default.
      if sy-subrc <> 0.
        exit.
      endif.
      SORT IT_MSEG_HEADER BY EBELN .
    LOOP AT IT_MSEG_HEADER.          
      do n2 times.                         
        transfer 'KTN.LBL' to dsn.       
        MOVE 1 TO NUMBER.
        condense number.
        transfer number to dsn.
        transfer : it_mseg_header-EBELN to dsn,
                   it_mseg_header-matnr to dsn,
                   it_mseg_header-matnr to dsn,
                   it_mseg_header-maktx to dsn,
                   it_mseg_header-MENGE1 to dsn,
                   it_mseg_header-bwtar to dsn,
                   it_mseg_header-storage to dsn. 
        transfer space to dsn.
        c1 = c1 + 1.                        
        if c1 = 8.                          
          clear c1.                         
          close dataset dsn.
          clear dsn.
          n1 = n1 + 1.
          if p_werks = 'WK01'.
            concatenate file n1 '.PJ' into dsn.
          ENDIF.
          if p_werks = 'CQ01'.
            concatenate file1 n1 '.PJ' into dsn.
          ENDIF.
          open dataset dsn for output in text mode encoding default.
          if sy-subrc <> 0.
            exit.
          endif.
        endif.
    *ENDLOOP.                     
      enddo.                        
      close dataset dsn.
    ENDFORM.                    " write_data1
    hope this shelps u
    regards,
    Arun prasad

  • Material Return Slip for maintenance order

    Hi All,
    During goods issue for a maintenance order, we can take print out of material list (for planned items) and produce the same to stores personnel for issuance of material.
    Is there any similar slip available in system so that a print out can be taken for items to be returned to stores for a maintenance order?
    Thanks in advance and with Best Regards.
    HAPPY NEW YEAR IN ADVANCE !!!
    JK

    The material issue slip will be printed at different locations after releasing the mtc
    set the printer at OID1 .check thro OOCU work flow we can go , but i have not yet worked this scanario.
    According to this work flow after reservation by ur order release  it will print the materials issue at stores end.
    Some industries having the authorisation signature from dept superiors at the time u may go take print out at location to get the sign manually.
    std print form with sap some modifications or abap report will be created for this
    Sry iam not able to give full soln
    We may expect from others
    thenna

  • Material staging indicator not populating in prod order WM pick list item

    Hello,
    I have an issue with material staging in an prod order
    1) PP-WM interface is activated
    2) Control cycle for material is created
    3) Production storage location is created for material
    4) storage type is 100 for production
    5) There is one discontinued material and also the follow up material
    6) stock of discontinued material is zero and requirement are passed to follow up material
    When we confirm the order the stagging indicator for both follow up material as well as discontinued material automatically populates zero (Non relevence to pick list items) where as it should be one (1 - for pick list items).
    One more issue user has manually inserted discontinued material as well as follow up material in production order change mode.
    In the BOM of a main material both discontinued as well as follow up material is there with some quantity as a component.
    For the same work center, control cycle , production storage location the indicator is populating.
    These two material (discontinued as well as follow up) are appearing twice in the WM pick list screen where first two line items are OK and populating indicator "1". But in line item last and second last indicator is not there.
    My question is why the stagging indicator is not automatically populating in the production order WM pick list screen in front of components.

    Unfortunately, WM material staging via production orders is not possible
    from the pull list.  Please see the long text of message RMPU 311
    (WM material staging for production order reservation not possible):
    "You cannot carry out a WM material provision for pick parts from
    production order reservations in the pull list". The reasons for this
    are cleary explained in the SAP on-line documentation via the
    following path :
      Logistics -> Logistics Execution -> Warehouse Management Guide ->
      Goods Issue -> Goods Issue for Production Supply ->
      Material Staging for Repetitive Manufacturing
    See the following under the Selection heading :
    The choice of the selection type influences which types of WM material
    staging are supported in the pull list. However, the pick parts can be
    staged via RS headers/planned orders but not with the current BOM
    explosion. The release order parts, on the other hand, can also be
    staged if the current BOM is used for calculating the dependent
    requirements.
    WM material staging via production orders is not possible from the pull
    list.
    I think you may try in CO02 or COR2 for production order or process order.

  • MB26 pick list issue

    Hi,
    Against production order reservation number we are doing goods issue in MB26. We do GI for few components and the remaining later. I posted say 10 out of 25 components, when i try to post the remaining components (15) against the same reservation number, i am getting the error message " no goods movement can be selected".
    Cross checked the production order. for the issued materials final issue is checked.
    Still for the remaining components, the quantity are open. could anyone suggest how to approach for this issue?

    The material with backflush tick does not comes in Picklist report. This material will get issue when you do the confirmation. Click on Goods movement screen in confirmation scree you will see all this 10 materials there. If you want to issue this material through Pick list you have to remove the Backflush Indicator. Remove it from Production Order & then check MB26

  • Sort picking list by storage bin or material in customizing

    Hello Gurus,
         How can I sort picking list by storage bin or material in customizing?
    thanks very much!

    It's done at IMG - Logistics Execution -  Warehouse Management - Strategies - Define Sort Sequence for Stock Removal (Picking)

  • Cannot see pick list on releasing production order for WH managed material.

    Hi guys
    I created workcenters, routing, bom, control cycle record and prod. verison for the material before creating the Prod. order. Now, I am neither able to see the Pick List nor Material Staging (Simulation) after releasing my Prod. Order. The exact error is "No WM relevant components exist". All my materials are warehouse managed.
    Any help gurus??
    Regards,

    Hi
    you are mentiuoning that control cycle .
    Have assigned the coponents to the storage location which is assigned to ware house.
    pl. chk this.
    Regards
    YMREDDY

  • Material pick list

    Hello Gurus;
    I want to see the material pick list for a particular order in my system. I can see it for other maintenance orders, except a few orders. I have checked that the orders in question are released & material posting against the order is not performed, also delta print is not ticked in the order. I would like to know, what is causing the erratic behaviour, pls. suggest.
    Points assured.
    Thanks & Regards
    Hemant

    Hello Thyagarajan;
    To see the material pick list (many other preconfigured print list): go to selected order in change mode;  order-> print->order-> then select pick list
    There are following requisites to see the material pick list:
    a) Order should have compents attached
    b) order should be realeased
    c) It should not be printed before
    d) printer should be configured, otherwise use LP01 as standard
    Hope this helps.
    Hemant

  • Good issue against pick list

    Hi,
    I have requirement to track the goods issued to production with reference to the order/pick list.  The goods are moved from warehouse to production location using 313 mvt and received at production storage location using 315, Once the consumption recordings are completed and any stock remaining at the production storage location, we need to identify against which order this stock belongs to. WM is implemented for the main store but production store is not part of the WM.
    Regards
    Cheru

    Hi Jatin,
    The requirement is to move the stock from main warehouse to the production store.  We want to issue the goods against the pick list from main warehouse to production store. The ware house will do the goods issue against the pick list and the production will receive the goods at their storage location. So we could track what goods issued against which pick list. Once the goods are at the production location, consumption will recording will be done against the production order. We do not want to do the goods issue against pick list from the warehouse using mvt 261.
    Regards
    Cheru

  • Material Issue/Reservation Slip

    Dear friends
    help me to how to print material issues and reservation slip
    plant, material code, description, cost center, storage location etc
    Moderator message: please help yourself first, search for available information, ask within your organisation, only post if you are stuck at a specific point.
    Edited by: Thomas Zloch on May 9, 2011 9:56 AM

    Hi
    You can directly do a goods issue to projects , as well as by creating areservation you can perform.
    Create a reservation for the Projcet using movement type 221 & special stock indicator Q.
    Using the reservation in MB1A, create the goods issue.
    Thanks & Regards
    Kishore

  • After EHP6 Upgarde Picking list print out is resulting format & overlapping issues

    Hi All,
    We have recently upgraded our system from ECC 6.0 to EHP6 .Now when user trying to print a Picking list document then Print out is overlapping with content .
    But when we check the spool the Print Priview looks good but when trying to print the content is overlapping & observed the font size is chaned i.e. the content is displayed in Bold format .
    But for those spools which were created before upgarde & when we give a print then Print out is fine. So some thing happend after upgrade that causing us the Print out problem .
    we are using device type HPLJ4  & try to print Picking list output and it is causing problem.
    Kindly provide your suggestions.
    Thanks and regards,
    Dilip

    Hello Peng Wen,
    Thanks for your reply and yes the issue got resolved . Actually we are using a custom device type ZHPLJ4 which is a copy of HPLJ4 . But as part of Upgrade ZHPLJ4  HELVE with scalablity is no longer supported. So we have removed the entry from SE73 as it even doesnt exist in HPLJ4 . Now it is working as expected.
    Thanks a lot for your replay.
    Thanks and regards,
    Dilip

  • Printing problem for picking list

    Hi friends,
    Whenever we print the picking list of material with batch number. the printing job will bring a extra page with basic form information . it's kind of wasting the paper since the extra page doen not contain any specific picking informations. This issue only happen to picking list with batch number applied material . The extra page won't be printed out once the material is not subjected to batch management.The form style should be script form.
    Please kindly advise if you have any suggestions.
    Thanks,
    LG

    Hi,
    Assuming printing job is batch job. Normally batch job executes a program (you assign program to the batch job when you configure it) while you create batch jobwhile it is running. If you want the system to check the particular information (take the information if the so and so prerequisits matches if not ignore kind of) during the program execution you can do it with the hlep of a deverloper.
    If you want to avoid unnecessary basic ifnormation it can very well be done with the layout changes in SAP script form and the program if necessary.  Make sure you dont need those information as some times it is like a legal information like we see in the company signatures which seems like basic information.

Maybe you are looking for

  • Mouse Pointer Bug?

    Is anyone else having problems with where your pointer shows up on the screen and where photoshop cs4 is actually drawing on the canvas.  When I press my mousel/pen's button/stylus, photoshop actually draws a little down and to the right...probably a

  • Some doubt regarding oracle 9i lite

    Hai, I am doing R @ D on 9i lite. My scenario is as follows, 1. first i installed oracle 8i 8.1.7 database. 2. using oracle 9i lite 5.0.2 setup, In another machine instllaing mobile server and mobile development kit. 3. how to synchronize the 9i lite

  • Is there a way to Fine Tune Webcenter Imaging 11g

    Hi All In our latest implementation, we have two Applications in IPM, 20 searches and around 70,000 documents stored for these applications. When a user with access to one or two searches logs in IPM, it takes around 2-3 minutes to first display the

  • Ever since I downloaded iOS 7 my music and video sound has been really bad quality what should i do

    Ever since I downloaded iOS 7 my music and video sound has been really bad quality what should i do??

  • [License Terms] Porting Java API to PHP5

    Hey folks, I hope someone can help me out here, because I could not find a better place to ask that question (if you know a better place, please tell me and do not start a flamewar). I am porting parts of the core JAVA Api (1.4.2) to PHP5 which makes