Basket icon is not displaying for purchase order creation transaction iview

Hi SDNs,
I have created a set of purchase related transaction iviews like for example purchase order display.
there i couldn't find the basket icon to drop the other purchase order number, which we generally choose by using docuement overview on to change the number.
in WebGUI how do we drop the exisiting documnet into the screen.
I have activated all icon services in sicf, is there any specific services to be activated to have such kind of icons in webgui.
Please suggest me to resolve this.
Your inputs are appreciated.
Thanks,
Sireesha.B

Hi SDN's,
Can anyone suggest me for the above problem.
Your inputs will be highly appreciated.
Regards,
Sireesha.B

Similar Messages

  • Document is in transfer for purchase order.Creation not possible

    Dear All,
    We did partial confirmation in EBP and later when trying to do confiramtion for the remaining quantiy getting the message"document is in transfer for purchase order.Creation not possible"
    We are taking this problem in production as well as in quality systems also.
    What are possible reason and how to solve it.
    kindly share your views.
    Thank you.

    Hi yshu,
    use tcode bd87 in SRM to check for failed confirmation IDOC (type MBGMCR).
    The double click the status record to see the exact cause of the failure.
    Rectify the error. Then try to execute the IDOC from BD87 tcode.
    For a few errors you may not be able to execute the IDOC but to create a new confirmation in SRM. In such cases, follow the below procedure..
    There should be an entry for the confirmation in the transfer table BBP_DOCUMENT_TAB in SRM. Display the details.
    Then run FM "BBP_DELETE_FROM_DOCUMENT_TAB" to delete the entry from the doc tab table.
    Then post a new confirmation in SRM.
    There is also a FM in SRM using which you can change the status of thefailed IDOC from 51 to 68 or 31.
    Rgds,
    MJ

  • Document in transfer for purchase order - creation not possible

    Hi Experts,
    we get this error when we do confirmation"'document in transfer for purchase order - creation not possible'"
    any inputs are appreciated
    Rg
    sam

    Hi All,
    We have resolved the above problem.
    When user does confirmation ,if it sucessfully  created then there will be  no entry in BBP_Document_tab table.If it's in error in process and next time when user tries to do GR then he will encounter a pop up message "Document in transfer for PO, creation not possible".
    So we need to delete the entries from table BBP_DOCUMENT_TAB using FM BBP_DELETE_FROM_DOCUMENT_TAB.
    Then check again in BBP_DOCUMENT_TAB now there will be noentry there...so now user can do the confirmation from SRM,he will not encounter this error now.
    Thanks to all the ppl who has replied
    sameer

  • Archieve does not exist for purchase order

    Hello Gururs,
    When i tried to change the delivery date for the PO and when i trying to save the PO
    then it throws the error messages-'Archieve does not exist for purchase order'.
    PO was created in feb.
    Please help me how can i solve this issue.
    BR
    Ashish

    Can you give a more detailed information.
    What transaction you actually use, what you enter step by step until you get to the error: 'Archieve does not exist for purchase order'
    This message sounds like you want change a PO which is already archived.
    A change to an archived PO is not really logical,  as you can only archive closed business cases. and if the business case is closed, then why would you change the delivery date.
    A PO from February should not really be archived already in June. I never saw it in practice, as you could not do any anual reporting
    I would assume further that SAP found the entered PO number in the archive index but did not find the way to the archive itself. This can happen if the archive file was deleted or moved manually.
    I am not sure if the next messae has really anything to do with your purchase order, thats why I ask you to post the exact steps until the messages come up:
    Le fichier archieve 000524-002SD_COND n'existe pas is the message discription
    But even this message explains more or less the same, that the physical archive is no longer in the same place where it is expected to be found according to the info in records of table ADMI_FILES.

  • Getting errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation

    Hi sap Gurus,
      I am getting Errors when iam using  BAPI_PO_CREATE1 for Purchase Order creation that Material (144) does not exist but it is alreardy maintained in MM01.
    I dont get how it is coming.and what are the mandatory fields in bapi BAPI_PO_CREATE1 in item level .that is too material only.
    pls let me know .
    thanks in advance.

    Hi,
    Check the sample code..
    report  zpo_test             .
    *DATA DECLARATION
    constants : c_x value 'X'.
    *Structures to hold PO header data
    data : header like bapimepoheader ,
    headerx like bapimepoheaderx .
    *Structures to hold PO account data
    data : account like bapimepoaccount occurs 0 with header line ,
    accountx like bapimepoaccountx occurs 0 with header line .
    *Internal Tables to hold PO ITEM DATA
    data : item like bapimepoitem occurs 0 with header line,
    itemx like bapimepoitemx occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    return like bapiret2 occurs 0 with header line,
    *Internal table to hold messages from BAPI call
    pocontractlimits like bapiesucc occurs 0 with header line.
    data : w_header(40) value 'PO Header',
    purchaseorder like bapimepoheader-po_number,
    delivery_date like bapimeposchedule-delivery_date.
    data : ws_langu like sy-langu.
    *text-001 = 'PO Header' - define as text element
    selection-screen begin of block b1 with frame title text-001.
    parameters : company like header-comp_code default '122' ,
    doctyp like header-doc_type default 'NB' ,
    cdate like header-creat_date default sy-datum ,
    vendor like header-vendor default '2000000012' ,
    pur_org like header-purch_org default 'PU01' ,
    pur_grp like header-pur_group default '005' .
    *sociedad like HEADER-COMP_CODE default '122' ,
    *vendedor like HEADER-SALES_PERS default 'sale person'.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-002.
    parameters : item_num like item-po_item default '00010',
    material like item-material default '12000000' ,
    tipo_imp like item-acctasscat default 'K' ,
    *pos_doc like ITEM-ITEM_CAT default 'F' ,
    shorttxt like item-short_text default 'PRUEBA BAPI' ,
    grup_art like item-matl_group default '817230000' ,
    plant like item-plant default '3001' ,
    mpe like item-trackingno default '9999' ,
    *contrato like ITEM-AGREEMENT default '4904000003' ,
    *quantity like ITEM-QUANTITY default 1 .
    po_unit like item-po_unit default 'EA'.
    selection-screen end of block b2.
    Par?mnetros de imputaci?n
    selection-screen begin of block b3 with frame title text-004.
    parameters : centro like account-costcenter default '1220813150',
    cuenta like account-gl_account default '6631400' ,
    num_pos like account-po_item default '10' ,
    serial like account-serial_no default '01' ,
    ind_imp like account-tax_code default 'I2' .
    selection-screen end of block b3.
    start-of-selection.
    *DATA POPULATION
      ws_langu = sy-langu. "Language variable
    *POPULATE HEADER DATA FOR PO
    *HEADER-COMP_CODE = sociedad .
      header-doc_type = doctyp .
      header-vendor = vendor .
      header-creat_date = cdate .
      header-created_by = 'TD17191' .
      header-purch_org = pur_org .
      header-pur_group = pur_grp .
      header-comp_code = company .
      header-langu = ws_langu .
    *HEADER-SALES_PERS = vendedor .
    *HEADER-CURRENCY = 'DOP' .
    *HEADER-ITEM_INTVL = 10 .
    *HEADER-PMNTTRMS = 'N30' .
    *HEADER-EXCH_RATE = 1 .
    *POPULATE HEADER FLAG.
      headerx-comp_code = c_x.
      headerx-doc_type = c_x.
      headerx-vendor = c_x.
      headerx-creat_date = c_x.
      headerx-created_by = c_x.
      headerx-purch_org = c_x.
      headerx-pur_group = c_x.
      headerx-langu = c_x.
    *HEADERX-sales_pers = c_x.
    *HEADERX-CURRENCY = c_x.
    *HEADER-ITEM_INTVL = c_x.
    *HEADER-PMNTTRMS = c_x.
    *HEADER-EXCH_RATE = c_x.
    *HEADER-EXCH_RATE = c_x.
    *POPULATE ITEM DATA.
      item-po_item = item_num.
      item-quantity = '1'.
    *ITEM-MATERIAL = material .
      item-short_text = 'prueba bapi_po_create1'.
    *ITEM-TAX_CODE = ''.
      item-acctasscat = 'K' .
    *ITEM-ITEM_CAT = 'D' .
      item-matl_group = '817230000' .
      item-plant = '3001' .
      item-trackingno = '99999'.
      item-preq_name = 'test'.
    *ITEM-AGREEMENT = '' .
    *ITEM-AGMT_ITEM = ''.
      item-quantity = '1' .
      item-po_unit = 'EA'.
    *ITEM-ORDERPR_UN = 'EA'.
      item-conv_num1 = '1'.
      item-conv_den1 = '1'.
      item-net_price = '1000000' .
      item-price_unit = '1'.
      item-gr_pr_time = '0'.
      item-prnt_price = 'X'.
      item-unlimited_dlv = 'X'.
      item-gr_ind = 'X' .
      item-ir_ind = 'X' .
      item-gr_basediv = 'X'.
    *ITEM-PCKG_NO = '' .
      append item. clear item.
    *POPULATE ITEM FLAG TABLE
      itemx-po_item = item_num.
      itemx-po_itemx = c_x.
    *ITEMX-MATERIAL = C_X.
      itemx-short_text = c_x.
      itemx-quantity = c_x.
    *ITEMX-TAX_CODE = C_X.
      itemx-acctasscat = c_x.
    *ITEMX-ITEM_CAT = c_x.
      itemx-matl_group = c_x.
      itemx-plant = c_x.
      itemx-trackingno = c_x.
      itemx-preq_name = c_x.
    *ITEMX-AGREEMENT = C_X.
    *ITEMX-AGMT_ITEM = c_x.
      itemx-stge_loc = c_x.
      itemx-quantity = c_x.
      itemx-po_unit = c_x.
    *ITEMX-ORDERPR_UN = C_X.
      itemx-conv_num1 = c_x.
      itemx-conv_den1 = c_x.
      itemx-net_price = c_x.
      itemx-price_unit = c_x.
      itemx-gr_pr_time = c_x.
      itemx-prnt_price = c_x.
      itemx-unlimited_dlv = c_x.
      itemx-gr_ind = c_x .
      itemx-ir_ind = c_x .
      itemx-gr_basediv = c_x .
      append itemx. clear itemx.
    *POPULATE ACCOUNT DATA.
      account-po_item = item_num.
      account-serial_no = serial .
      account-creat_date = sy-datum .
      account-costcenter = centro .
      account-gl_account = cuenta .
      account-gr_rcpt = 'tester'.
      append account. clear account.
    *POPULATE ACCOUNT FLAG TABLE.
      accountx-po_item = item_num .
      accountx-po_itemx = c_x .
      accountx-serial_no = serial .
      accountx-serial_nox = c_x .
      accountx-creat_date = c_x .
      accountx-costcenter = c_x .
      accountx-gl_account = c_x .
      account-gr_rcpt = c_x.
      append accountx. clear accountx.
    *BAPI CALL
      call function 'DIALOG_SET_NO_DIALOG'.
      call function 'BAPI_PO_CREATE1'
        exporting
          poheader         = header
          poheaderx        = headerx
        importing
          exppurchaseorder = purchaseorder
        tables
          return           = return
          poitem           = item
          poitemx          = itemx
          poaccount        = account
          poaccountx       = accountx.
    *Confirm the document creation by calling database COMMIT
      call function 'BAPI_TRANSACTION_COMMIT'
      exporting
      wait = 'X'
    IMPORTING
    RETURN =
    end-of-selection.
    *Output the messages returned from BAPI call
      loop at return.
        write / return-message.
      endloop.
    Regards
    Sudheer

  • Profitability segment for purchase order creation - how to read it

    Hello,
    how to read it profitability segment for purchase order creation at item level ??
    There's a method on ME_PROCESS_PO_CUST ?
    Tks

    Hi,
    Use the below FM from the function group KEAK
    To read: COPA_CALL_PROF_SEGMENT or COPA_INPUT_PSEGMENT_RETURN
    To create: COPA_PROFITABILITY_SEGMENT
    Hope this helps
    Regards
    Shiva

  • Formatted Search icon is not displaying for the UDF

    I have fifteen UDF's in the Marketing document and I have applied formatted search on each of the fifteen.
    But for one paticular UDF formatted search icon is not displaying even though the formatted search is active on the field but it is working fine for other field of same kind in same scenario.
    Please help me.
    Regards,
    Awadhesh
    Edited by: Awadhesh Kumar Pandey on Feb 9, 2009 5:58 PM

    Hi
    Try this
    Go to View in the menu bar  > Indicator Display >User Defined Values .
    Hope this will resolve your issue
    Thank you
    Bishal

  • BAPI for Purchase Order Creation

    Hi All,
    Purchase Order creation through BAPI, Auto Po creation. Please advise program.
    The requirement is: when we delivery the goods from one plant to another plant,PO should create in second plant with goods what delivered from first plant.
    Pranitha
    Moderator message : Spec/requirements dumping is not allowed. Thread locked.
    Edited by: Vinod Kumar on Sep 30, 2011 3:37 PM

    Hi,
    As per  u r requirement
    you can use  : BAPI =>    BAPI_PO_CREATE  with suitable Document  Type ( Stock trasnfert : STO )
    IF  u want to auto po must be created after each delivry in this case you need to use BADI
    'MB_MIGO_BADI; In This BAPI  There is method : POST_DOCUMENT
    In this method u can write code for Auto PO Creation by using BAPI .
    Hope This will Resolve u r query.
    Thanks and Regads
    Santosh

  • BED n other Taxes not Displaying in Purchase Order Printout.

    Hi MM experts........
    I had done the CIN configuration settings, system is calculating the tax correctly, but the problem, If I take a printout of Purchase Order its not displaying any taxes like BED, Ecess and SEcess.
    Can any one tell wht configuration setting I missed in my system.
    Thanks n Regards
    Durga

    Hi.....
    Thanks for your reply.
    Once we hve done CIN config settings it has to display those values, but y its not displaying ? Let me know wht settings abaper has to do ?
    Thanks and Regards
    Durga

  • Delivery Completed Indicator Not Displaying in Purchase Order Screen

    Hi,
    Here clinet system has 2 document types for service orders. In one type of service order I can see the delivery completed indicator checkbox in purchase order screen & in other type of service order I am not able to see the delivery completed indicator chekbox.
    I have checked the screen layout for both purchase order types & assignement of layout to both order types. In both screen layout types I found that Delivery Completed Indicator Checkbox as Optional Entry. System should display delivery completed indicator in both type of Purchase Order create/change/display screen. Then why it is showing in one type of service order and not in other type of service order.
    Awaiting your reply.
    Regards
    Pradip

    Hi Pradip,
    You check the for your document type which field selectio is assigned in config
    spro-MM-Purchasing-purchase order- define document types
    And then go to
    spro-mm-purchase- purchae order-Define Screen Layout at Document Level
    select the field slection which is assigned to your document type and then go details and then double click the GR/IR and then select it as optional if it is selected as hidden.
    Cheers
    Chris

  • Output message not generated for Purchase order

    We maintain MN04 message condition record for  2 key combination for output type NEU:
    1. Purchasing Output determination : Document type  -> NB, medium 1 print out
    2. Purchasing Output determination : Document type/Pur Org/Vendor -> NB, 1000, vendor 20001, medium 5 External email
    When I create PO for other vendor (not 20001), the system is nicely generating the output of the PO for printout.
    Next we have maintain a condition record in MN04 for a particular vendor 20001, Doc type and Porg with setting 5, 4, EN so that we can send the PO via email to the vendor 20001, the system is not generating a message output of the purchase order when i check it before saving.
    Please help me with this situation. we need setup the email PO functionality.

    I created another message type ZNEU copy from NEU, include it in the message schema, created condition record with MN04/MN05 for both NEU for printout  and ZNEU for medium 5 email. done all steps mentioned in the links.
    When create a PO still only 1 message record NEU is defualted for printout only.
    The message record for email ZNEU is not defaulted in PO?? Anything elase need to be done.

  • Purchase Order History not appearing for Purchase Order with service items

    A purchase order with a service item has been created.  A SES has been created and Miro transactions as well. When tcode ME2L is executed, the Purchase Order History field is blank. Any configuration missing or is there an applicable OSS note to fix  this?

    Hi,
    It is a coding error.
    Could you please check if you have applied the note 1049031 with the latest version 13?
    Regards,
    Edit

  • Output type attchment not displaying for sales orders

    Hi,
    Output type attachment is not showing form some orders NACE is perfectly configured 10 out of 100 not showing in
    output type as attachement rest of ordrs showing attafchemtns.
    How to do where to find out.

    Hi..
    Check Transaction " V/43" whether sales order output type and procedure are defined or not for a particular order type.
    Regards,
    Lokeswari.

  • Project Commitment Cost not visible for Purchase Orders with Item Categry Q

    Hello All
    I have a problem. My project commitment cost is not visible for PO's with Item Category Q. I assume that as the stock can be issued against any WBS elements I might not be able to see the cost against a single WBS element. But the cost should get recorded against the project right? If so where can I see it?
    Request your help with this problem
    Regards
    Renjith

    Hello
    Could you please explain how to maintain that?
    Best Regards
    Renjith

  • VL10B does not display the purchase order

    Hi,
    I have created a stock transport order to transport materials from Plant A to Plant B
    I only enter the purchase order number and plant A in VL10B and no other fields. The delivery creation date defaults to  9/30/2008 to 10/01/2008 with CalcRuleDefltDlvCrDt set to 2 - Today and tomorrow. I have also tried it without specifying a plant.
    Please see the picture below:
    http://i36.tinypic.com/fu7yqa.jpg
    My stock transport order has a document date and delivery date of 9/30/2008. When I click on the execute button in VL10B, the list which comes up is empty.
    What's wrong? Can you please help me out with this issue?
    Sincerely,
    Ketan

    Check your PO?
    you PO should have shipping tab than only you can use VL10B transaction
    please send the screen shot of PO shipping tab
    Or you can try VL10B by just entering the shipping point and see.

Maybe you are looking for