Creation of PO item without Flag IR_IND

Hi Experts,
I need a soloution for the following problem. We have the necessary creating puchase order items with value 0. In this case, the purchase order get the status "Held". The reason is the flag IR_IND. I had try to delete the flag in BADI "BBP_DOC_CHANGE_BADI" but at this time the flag is not set.
Thank you in advance.
Best regards
Dirk

Hi Dirk,
You can actually use the BADI BBP_CREATE_PO_BACK to change the flag value before filling the PO Craetion BAPI interface parameters
Sangeeta

Similar Messages

  • Error While creating a regular item without any demo data.

    Hi All,
    In RMS13.1.1, during creation of an item without any demo data, and entering all the required inputs on the item master & itemsupp form. When we click on “Retail by Zone” the following error message got displayed “Exchange rates does not exist” on the Item Retail Price by Zone window form.
    Thanks,
    Sushanth.D
    Edited by: user10680684 on Jul 13, 2010 2:51 AM

    What you can do is open the Form's fmb code in Forms Developer IDE, or switch on session level or database level SQL_TRACE to see the SQL statements that the Form is firing to the database. (Find the tracefile in the udump folder). Replaying the SQL statements from the SQL trace file in e.g. SQL*Developer may lead to a cursor or block that e.g. does not return any rows. You may need to replace bind variables' placeholders (:a1 etc.) found in the trace file with the relevant business values for your items, zones, etc.
    Good luck and let us know how you progress,
    Erik Ykema

  • Item partner flag set in Orders06 Idoc

    Hi,
    I am trying to set the item partners flag in a sales order creation Idoc Order06. Unfortuantely I am not able to find a placeholder or a segment field to map this flag in the Orders06 Idoc. So I am not able to overwrite the ship to addresses coming inthrough the interfaces. Please advise.
    Teresa

    Thanks Ravi for response. i had super busy week could't get back.i think i could't not provide enough details about the issue.
    we have maintained 6 different languages in material master in purchse order text tab-additional data Tab.
    when i set the deletion flag in MDM .MATMASS idoc generates successfully and i can see field carrying deletion flag indicator and it does set deletion flag on ECC side but after that if i check the additional data tab where we have maintained the material description for 6 different languages i see only three left other three are wiped off.it also shows in change log that changes has been made in those value but not sure about the root cause.i want to set deletion flag but no change in description.
    Thanks again for your interest.

  • Entry Aids for Items Without a Material Master - usage

    Hi
    Can anyone tell me what's usage of "Entry Aids for Items Without a Material Master"  (spro-mm-purchasing-mat master-entry aids..)
    and what it controls???

    Hi,
    In this step, you can assign a purchasing value key and a valuation class to a material group.
    The assignment of a purchasing value key provides you with default values for reminder levels etc. in purchase order items without a material master record and without an info record.
    The assignment of a valuation class to a material group enables the system to determine different accounts for the individual material groups.
    This is usally useful for creation of PO and account posting for materials without an MMR.
    When you create a PO you mention only the material group, based on which the purchase info like the Deadline monitorying, over/under delivery tolerances, Vendor evaluation etc gets incorporated into the PO. The account posting will get captured against the Valuation class maintained to the Material Group for which the GL account mapping will be done against the V.Class in the OBYC.
    Regards
    Merwyn

  • SRM - PO Item - set flag indicators

    Hi ,
    We have a requirement in SRM for PO item to set the flag indicators for GR/IR/GRIV depending on the PO type.
    For example if po type is ZA then we need to set GR, if PO type is ZB we need to set GR and IR etc...
    Please share ideas if any.
    Attaching screen shot for PO Item where flag indicators are displayed.
    By,
    Kalpana

    Hi,
    There is an include with name SAPLBBP_PDIGP.
    In this find for the implicit enhancement and implement the code as given below.
    You can refer to the below code for your reference.
    ENHANCEMENT 1  ZPO_GRIRFLAG.    "active version
         DATA: lt_doc TYPE TABLE OF zts_related_docs.
         DATA: ls_doc TYPE zts_related_docs.
         DATA: ls_order TYPE crmd_orderadm_h.
         DATA: ls_po_header TYPE bbp_pds_po_header_d.
         DATA: lt_item TYPE BBPT_PO_ITEM_BADI.
         DATA: ls_item TYPE BBP_PO_ITEM_BADI.
         CLEAR: ls_order.
         REFRESH: lt_item.
         DATA: lv_x(1) TYPE c.
    DATA: lv_ind(1) TYPE c.
    DATA: lt_crmdh TYPE TABLE OF crmd_orderadm_h.
    DATA: ls_crmdh TYPE crmd_orderadm_h.
    DATA: lt_crmdi TYPE TABLE OF crmd_orderadm_i.
    DATA: ls_crmdi TYPE crmd_orderadm_i.
       IF IV_OBJECT_TYPE = 'BUS2201'.
        IF IS_IGP_ICOM-HEADER IS NOT INITIAL AND IS_IGP_ICOM-number_int IS NOT INITIAL.
          CLEAR: lv_ind, ls_crmdi, ls_crmdh.
          REFRESH: lt_crmdh, lt_crmdi.
          SELECT * FROM crmd_orderadm_h INTO TABLE lt_crmdh WHERE object_id = IS_IGP_ICOM-BE_OBJECT_ID.
          IF lt_crmdh IS NOT INITIAL.
            SELECT * FROM crmd_orderadm_i INTO TABLE lt_crmdi FOR ALL ENTRIES IN lt_crmdh
                                                   WHERE header = lt_crmdh-guid AND NUMBER_INT = IS_IGP_ICOM-number_int.
          ENDIF.
          IF lt_crmdi IS INITIAL.
           SELECT SINGLE * FROM zts_related_docs INTO ls_doc WHERE zzdoc_type = IS_IGP_ICOM-ITEM_PROCESS_TYP.
           IF sy-subrc EQ 0.
             CALL METHOD zcl_po_partner=>po_item_out
               IMPORTING
                item_out = lt_item .
          CLEAR: ls_item.
          READ TABLE lt_item INTO ls_item WITH KEY number_int = IS_IGP_ICOM-number_int del_ind = ' '.
          IF sy-subrc EQ 0 AND IS_IGP_ICOM-ITEM_PROCESS_TYP EQ 'ZC' AND ls_item-ordered_prod IS NOT INITIAL AND ls_item-subtype EQ 'DP'.
            lv_ind = 'X'.
          ENDIF.
          IF lv_ind EQ ' '.
            cs_new_itmpset-gr_ind     = ls_doc-zzgr_ind.
            cs_new_itmpset-gr_basediv = ls_doc-zzir_ind.
            cs_new_itmpset-ir_ind     = ls_doc-zzgr_basediv.
          ENDIF.
         ELSEIF is_igp_icom-header IS NOT INITIAL.
          CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
           EXPORTING
             i_guid   = is_igp_icom-header
           IMPORTING
             e_header = ls_po_header.
           CALL METHOD zcl_po_partner=>po_item_out
             IMPORTING
               item_out = lt_item .
            IF lt_item IS INITIAL.
              lv_ind = 'X'.
            ELSE.
              CLEAR: ls_item.
             IF ls_po_header-process_type EQ 'ZC'.
               LOOP AT lt_item INTO ls_item WHERE del_ind = ' ' AND ordered_prod IS NOT INITIAL
                                                  AND subtype EQ 'DP' AND number_int = IS_IGP_ICOM-number_int.
                 lv_ind = 'X'.
               ENDLOOP.
             ENDIF.
    *    REFRESH: lt_item.
    *    CALL METHOD zcl_po_partner=>po_item_in
    *      EXPORTING
    *        item_in = lt_item.
    *         READ TABLE lt_item INTO ls_item WITH KEY number_int = IS_IGP_ICOM-number_int del_ind = ' '.
    *        IF sy-subrc EQ 0 AND ls_po_header-process_type EQ 'ZC' AND ls_item-ordered_prod IS NOT INITIAL AND ls_item-subtype EQ 'DP'.
    *          lv_ind = 'X'.
    *        ENDIF.
    ******* End of Correction
            ENDIF.
         IF ls_po_header-process_type IS NOT INITIAL AND lv_ind EQ ' '.
                     SELECT SINGLE * FROM zts_related_docs
                                     INTO ls_doc
                                     WHERE zzdoc_type = ls_po_header-process_type.
          IF sy-subrc EQ 0.
             cs_new_itmpset-gr_ind        = ls_doc-zzgr_ind.
             cs_new_itmpset-ir_ind        = ls_doc-zzir_ind.
             cs_new_itmpset-gr_basediv    = ls_doc-zzgr_basediv.
    *                     READ TABLE lt_item INTO ls_item WITH KEY number_int = IS_IGP_ICOM-number_int del_ind = ' '.
    *                     IF sy-subrc EQ 0 AND ls_po_header-process_type EQ 'ZC' AND ls_item-ordered_prod IS NOT INITIAL.
    *                       cs_new_itmpset-gr_ind = 'X'.
    *                       cs_new_itmpset-gr_basediv    = 'X'.
    *                     ENDIF.
           ENDIF.
          ENDIF.
          ENDIF.
         ENDIF.
        ENDIF.
       ENDIF.
    ENDENHANCEMENT
    Regards,
    Rafi

  • GL Open Item Managed Flag Changed Historically - Orphan items left on acct

    Back in 2000 for some of our GLs the Open Item Managed flag was changed.  Initially it was not checked but now it is. We know that SAP doesn't really let you do it anymore but apparently back then whoever did it didn't follow what was then the suggested procedure.  As a result we have an account balance of say 500,000 which I can see in FS10N however if I run it for all open items in FBL3N I get 450,000 because 50,000 are not open or cleared.  I can't go in and clear these off against anything because they are not open item managed.  Is there a program that can be ran to make them open? 
    I thought RFSEPA01 would do the trick and after running it in our QA environment the log states:
    Line Items Year Remark
             1 2000 Document selected
             1 2000 Document changed
    However when I go to F-03 it still won't bring the documents in as it says they are not open item managed.
    Sure enough if I go look in table BSIS at the document the Open Item Managed flag is not set. 
    What's the best procedure to resolve these?  Do I have to create a Z program that will flag the Open Item Managed field (XOPVW) and then clear these documents off against something?
    TIA

    Hello,
    Please check the SAP note 175960.                                                                               
    As explained in the note 175960, is not possible to subsequently          
    activate the open item management under some conditions.                                                                               
    With NewGL, the split information on open items is stored in              
    FAGL_SPLINFO and FAGL_SPLINFO_VAL which are only updated when the         
    document is being posted through active document split. Also RFSEPA02     
    does not update these tables.                                                                               
    If you are NOT using NEW/GL with doc split (inactive), you may create     
    add-on report by copying RFSEPA02 and adding modification on the report   
    per note 175960.                                                                               
    As the note states, if you decide to take RFSEPA02 approach,     
    please do so at your own risk. Possible problems (such as data            
    inconsistency) can only be handled by SAP within chargeable remote               
    consulting.                                                                               
    All important information is written on note 175960.
    Regards,
    REnan

  • G/L account item without tax code in document with deferred taxes

    Hi ,
    While releasing the billing document to accounting i get this error " G/L account item without tax code in document with deferred taxes". Not able to release it to accounts. What could be the possible reason??
    Actually, this error is occuring only when i am using a Discount Condition (Z Condition).
    Please guide what could be the problem in the Discount Condition?
    Thanks and Best Regards

    whats this Z condition type. Is it  a tax condition type. If yes , please check the tax code assigned to this in the condition type defintion (VK12) and in FTXP check if this code is assigned with Account key.
    Also in the pricing procedure, if this condition is Active (not statistical) whats the account key assigned to it. Then check  whats the GL Account assigned to this Account key (VKOA).
    Then in FS03 , check this GL account number and under "Control Data" whats the Tax category maintained. You can have a * for the tax category here.
    Hope this helps
    Regards
    Sai

  • Creation of cProjects automatically from creation of Portfolio Item in xRPM

    Hi,
    If we check out the box for the automatic creation of cProject along with creation of Portfolio item then the cProject as well as an internal order is created in the system.
    While I am creating an item and selecting for automatic creation, I am not able to get the internal order and not even the corresponding cProjects.
    Help please !!
    Regards,
    Nishit

    Hello,
    I am looking for a cProjects knowledge resource to start after a brief demo or just discussion on how cProjects would be implemented at out site. The company is a Global chemical company and we know we want cProjects but need more info before we get started. We are looking for a resource willing to provide this info. This is for an 18  month project. Work can be done remotely.
    Jan Valeriano
    jan.valeriano  @  els-it.  com
    215  668 -  3854
    ASAP
    Thanks
    jv
    +

  • Creation of condition table without copy

    During creation of Condition table ( without copying any condition from available tables), Is it possible to see all field catalouges available? and if possible then how can we see all fields available to add desired ones into our table?

    Hi,
    SPRO >Sales and Distribution->Basic Functions>Pricing>Pricing Control-->Define Condition Tables
    In the above menu path you can find out the Field catalog what SAP has given if you want to add new field you can add provided
    If you done the Enhancements
    Regards,
    Prasanna

  • Automate Creation of new items in EBS

    Hey everyone -
    Just a question ,
    we want to automate creation of new items in our system.
    Our view is something like -
    1. user GUI to request a new item, according to predefined templates.
    2. Users fill a few fields of information.
    3. Item manager gets notified and approves item is needed.
    4. Automation to run batch and create everything relevant. (org assignment, item KFF, category assignments, BOMs etc). As much automation as possible, we can map template behaviour, variety is small.
    I was wondering if there is any product supporting such behaviour.
    I looked into Oracle's APC, and it seems like it doesnt do enough. Besides as far as I noticed it relies mostly on Item Catalog attributes which we don't. Also Im not sure if this product is "alive" coz oracle bought AGILE for PLM.
    Does anyone know of a product that supports creation of new items and is flexible to fit our needs?
    We want to make sure we're not missing something before we develop custom code for that.
    Thanks,
    Aaron

    Hi,
    This is prom PIM to Oracle
    I have done an interface which creates an item in master and child .Which assighns category set on iots level controls .It inserts item into all active subinventories.
    It notifies the end user with email any item already exits and error .
    Regarding templates.
    it assigs compatible templates at master and org leve.These are predefined and are not validated in program
    Edited by: Sankuratri on Apr 5, 2009 10:02 PM

  • Err in PO creation-Sales document item is not defined for this transaction

    Dear Consultants the errror  occurs when we process  Individual Purchase Order scenario.
    Err in PO creation-Sales document item is not defined for this transaction  
    Thanks&Regards,
    SanthaRam

    This error because the item category is not determined correctly in the sales order.
    Check the item category in Sales order line item, for Individual Purchase order scenario its TAB.
    If its not TAB, then check the assignement for Item category in VOV4.
    This thread is more of the SD part, so also put it in SD forum for better solutions.
    Regards,
    Sheetal

  • How to convert a open item become cleared item without using F-32

    Dear experts,
    Can I convert an open item become clear item without using F-32.
    Please help.

    Hi,
    You can use F-28.
    If it's useful assign points
    Thanks&Regards,
    Kumar

  • Returning a ZERO on Slow-Moving Item without transaction

    Hi all,
    Via a multi-provider, we have implemented several slow-moving item in our reports, eg we return all the value of some dimensions whether we have transaction or not on these dimension values.
    Now for dimension value for which we have no transaction it returns in Bex an empty result on the key figure instead of a zero, is there a way to force BW to put a zero on a slow-moving item without any transaction?
    Thanks in advance for your assistance
    David

    Hallo
    FI you go to the Query Designery --> Property Display than you can cusotmioze how to display the zero. You probably have the option Zero Values Display as Blank.
    I hope this can help you
    Mike

  • Is there a way to keep the checkmark or initials (Sign toolbar) active so that I can check a whole list of items without going back and forth to the button?

    Is there a way to keep the checkmark or initials (Sign toolbar) active so that I can check a whole list of items without going back and forth to the button?

    There is another way to "popup" the screen. Mute and then
    unmute the cellphone.
    Sheng-Chieh

  • Purchasing info records for PO-items without material master

    Hi gurus,
    I would like to have the system automatically determine certain settings (e.g. reminder/urging data).
    For PO-items with material master there is no problem, because all information can be stored in the purchasing info record, and are automatically found when I enter the material number.
    For items without material number/master I tried to generate a info record for the material group. When I enter the no. of the info record, everything works fine. But the info record is not automatically found, if I only enter the material group no.
    Is there any way to make the system find the info record by itself?
    Thanks
    Alicia

    Thanks to both of you!
    Priyanka:
    How can you create a source list for a material group? I thought this was possible for materials only!?
    Of course, you cannot have more than one info record at a time for a material group. But one would be enough for me...
    Dhruba:
    Thanks for the advice, but I know how to manually select a info record. The point is, I'd like to have the system determine it according to the material group I enter.
    Any other ideas?
    Alicia

Maybe you are looking for

  • Excel viewer 2003 - cannot open XLSX

    Hi, We use Excel Viewer 2003 for terminal services users.  The server is patched with the latest hot fix and office patches.  We have Excel viewer 2003 SP3 installed with the latest compatibility pack / fileformatconverters. Can someone tell me why i

  • Reference order with inquiry through copy control

    Hi SD gurus, We are currently having automatic order creation and then the open inquiry are required to be linked manually to newly created sales order via u2018create with referenceu2019 option inside the order menu. We want to achieve this  below f

  • Grouping by Comma in new column using DAX Only

    Hi, If I have a table like this, column1, column2 A | apple A | Orange B | banana C | Staple B | Pencil How do I group it like this in power pivot, Column1 | Column2,Column3 A | apple | apple, orange A | Orange | apple, orange B | banana | banana, pe

  • Tiger doesn't install on external firewire disk (partition)

    hi, i've got a Lacie Porche 250GB firewire drive, partitioned in two parts, and i want to install tiger on the first 50GB partition, but the installer give me an error about the destination: "You cannot install Mac OS X on this volume. Mac OS X canno

  • Location security within roles and org sturucture

    We have been using SAP for some time.  We have some specific roles with certain location values for resticiting some access but generally all of our roles when it comes to the org levels, we have used asterisk (*).  It was always an out os scope proj