Add custom tab at line item level in transaction FMBB to view CI_FMBL flds

Good day to all,
We have added new fields in Budget posting (FMBB) in Line data using custom include CI_FMBL. 
We want to display some item level fields from CI_FMBL in tab - Financial Budget
We also want to add more item level tabs, next to tab Financial Budget and put some more item level fields from CI_FMBL there. 
Any suggestions on how to accomplish this?  
Thanks in advance.

Hi,
The customer include CI_FMBL can only be used with FMPEP and not with other transaction like FMBB.
Technically speaking, the structure CI_FMBL must be part of many other interfaces like the one use by BAdI 'FMKU_BUDGET_EVNT'.
In order to add such customer fields in FMPEP, you have to use the BAdI 'FMBW_CUSTOMER'. For instruction, you have to look at the note 1356725 and the instruction of paragraph 30. Please read the instruction and start to do your implementation.
With the BAdI 'FMBW_CUSTOMER', you can use the PBO and PAI for handling the customer fields. There is no other place to populate these customer fields. Do you want to use customer fields in FMPEP? Please check note 1356725 for reference.
I believe this answer your inquiry.
Best Regards,
Vanessa Barth.

Similar Messages

  • Add new column at line item level in MIR7 transaction

    Hi All,
        I would like to know how to add new column at line item level for GL Account
       tab  in MIR7 transaction. could you please let me know how do i add new
       column in MIR7  transaction. Please let me know is there any user exit or any
       other wat to do it.
    Thanks,
    rao

    Hi,
    The customer include CI_FMBL can only be used with FMPEP and not with other transaction like FMBB.
    Technically speaking, the structure CI_FMBL must be part of many other interfaces like the one use by BAdI 'FMKU_BUDGET_EVNT'.
    In order to add such customer fields in FMPEP, you have to use the BAdI 'FMBW_CUSTOMER'. For instruction, you have to look at the note 1356725 and the instruction of paragraph 30. Please read the instruction and start to do your implementation.
    With the BAdI 'FMBW_CUSTOMER', you can use the PBO and PAI for handling the customer fields. There is no other place to populate these customer fields. Do you want to use customer fields in FMPEP? Please check note 1356725 for reference.
    I believe this answer your inquiry.
    Best Regards,
    Vanessa Barth.

  • Query : Custom field at line item level in SRM 7.0 .

    I was going through a document which instructs on how to add a custom field at line item level in SRM 7.0.
    I found this code :
    CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
    EXPORTING
    I_GUID = IV_DOC_GUID
    I_WITH_ITEMDATA = 'X'
    TABLES
    E_ITEM = LT_ITEM
    E_MESSAGES = LT_MESSAGES
    E_STATUS = LT_STATUS. . 
    LOOP AT LT_STATUS INTO WA_STATUS.
    IF WA_STATUS-STAT EQ 'I1015' AND WA_STATUS-INACT IS INITIAL.
    LV_STATUS_APPROVE = 'X'.
    ENDIF.
    ENDLOOP.
    I wanted to know what is 'I1015'  and what is its significance .
    please advise .
    Ambar

    HI
    This speaks about the status of the Cart. This means that the Status of the Cart is AWAITING APPROVAL...I dont know which document you have gone through but procedure for adding a Custom Field in SRM 7.0 is:
    1. Create a Custom field in the Database in SRM. Preferrably add the field in an include and extend thta include to the table in SE11.
    2. Go to Portal Login of SRM and right click the part of the screen where you want to add the custom field. Click on More Field Help. The popup will give you the name of WebDynpro Applicaiton which controls that area.
    3. Login to SRM via GUI and display the webdynpro application using SE80. Enhance the Webdynpro application.
    4. Add the custom field to the Context of the WebDynpro Application View. You will be selecting the field from the database table while adding the custom field to the context
    5. Add the field at the specified place in Layout Tab of the WebDynpro View,
    6. Create a binding between the Layout Field and the Context
    7. Activate the changes.... you will see the field in Portal login of SRM....
    For more details , refer to the Webdynpro help of the application...
    Regards
    Virender Singh

  • Custom filed at line item level in order.jsp

    Hi,
    I want to add a custom material number field at the line item level that will search for the item related to the customer material number and populate the order.jsp.
    similar to the below mentioned Standard functionality:-
    In order.jsp when we enter a valid item no in the item text box
    and press enter then the related data of the item is populated in order.jsp.
    Is this possible ??
    If yes please let me know how can we achiese this.

    Satish,
    the problem with product search is that ....
    custommaterial number will be mapped with the item number for different customers in a separate table. so if i place the searc in proucts search tab it will fetch form product master.
    so I was think of extending the process flow and from jsp capture the value entered and trigger action from there make a item search following the standard process.
    but my problem is that I am not able to capture the value entered in the custom field when refresh is clicked?
    can you tell me how is the item search done when we enter the item number and press enter?
    please suggest

  • Posting customer payment at line item level

    Hi all ,
    Is there any way that we can configure customer payment in lock box to be done at line item level,
    what I mean here is if some invoice has three line items then can we configure some BADIs & do some ABAP coding to post at one of the line items?
    Please guide

    HI Nik,
    Not sure of vendor invoice. But we did customer invoice payments at item level. Follow below steps.
    1. FIll in all the details in F-28 iitial screen.
    2. In additional selections select radio button Others, Press enter.
    3. In the popup select document number.
    4. Here enter ur accounting doc number.
    5. Click on process open items
    6. Here u will get all line items. Now click on search and select line item, Neter item number.
    7. Now u will get only the line items u want.
    8. Now u can do complete or partial payments as per ur req.
    Hope it is clear.
    Thanks,
    Vinod.

  • Trigger badi after giving data in custom tab of po item

    Hi,
    We have added custom tab in po item level, now we want to make those fields manditory
    for specific document type.We are using badi ME_PROCESS_PO_CUST .
    The message is getting triggered initially , but after giving data in the custom fields the badi
    is not getting triggered again.And triggers if we make changes to some other fields in po.
    So can we trigger the badi after giving data in custom tab ?
    I was trying something like this.
    method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM .
      DATA: l_if_header TYPE REF TO if_purchase_order_mm,
            ls_header TYPE mepoheader,
           ls_mepoitem TYPE mepoitem,
      l_if_header = im_item->get_header( ).
      ls_header   = l_if_header->get_data( ).
      CALL METHOD im_item->get_data
        RECEIVING
          re_data = ls_mepoitem.
    IF ls_header-bsart = 'BW'.
    if ls_mepoitem-ZZONAME IS INITIAL.
    MESSAGE 'Plz enter Operator name in custom data' TYPE 'E'.
    endif.
    endif.
    endmethod.
    Any pointers are welcome..

    Solved using exit EXIT_SAPMM06E_012
    This exit will trigger even after giving data in custom tab at po item level.

  • Customized drill-down report cannot go to line item level (FGI4 and FGI1)

    Hi Expert,
    I created a customized drill-down report using New GL features, as follows:
    FGI4 create form, with reference to form: 0SAPBLNCE-01
    FGI1 create report for the form created.
    After that I set some things like characteristic, variables, and output type.
    When I execute the report, the data shown cannot be drill-down to line item level:
    Goto > Line Item (this function is disabled).
    Kindly advise why I cannot goto line item level, where I copy from standard form: 0SAPBLNCE-01, which ha sthe features of drill-down to line item level.
    Thanks
    sbmel

    Hi sbmel,
    For calling up a line item report in a drill down report you need to make the below settins:-
    - You first have to generate the line item report with program RGRGENSI for your summary table.
    - Then assign the generated line item report to the summary report.
               Assiging the report is part of the 'Change drilldown report' function, which you reach by activating the characteristic selection field and then Extras -> Report assignment.
                In the dialog box that appears, choose the 'Other report type' function and insert the line item report generated earlier, as an ABAP report
    Regards,
    Gaurav
    Edited by: gka2707 on Jul 19, 2010 8:07 AM

  • Indicator 'M" in the Confirmations Tab of the PO Line item level

    Hello
    I just wanted to know the relevance of the Indicator " M" available in the confirmations tab of the Purchase Order line item level  after the Inbound delivery is posted in the system?
    Whats the impact of this indicator ?
    How is it set auto ?
    Whats the relevance config to set this or not to set this indicator on ?
    How does it Determines whether or not the information from this confirmation category is to be taken into account by materials planning and control. ?

    Hi,
    Indicator: Confirmation is relevant to materials planning: - Determines whether or not the information from this confirmation category is to be taken into account by materials planning and control.
    Examples: - If you mark inbound deliveries as MRP-relevant, but not loading confirmations, quantities and dates from the former will be taken into account in the materials planning process, whereas the latter will only serve as information for the purchasing department.
    In Short, you can see the Inbound Delivery No in MD04 screen if it is marked as MRP relevant.
    This can be configured in SPRO > MM > Purchasing > Confirmations > Set Up Confirmation Control, here select the confirmation control key and double click on "Confirmation sequence" in dialog structure and activate indicator "MRP-relevant"

  • How can I add the expiration date at line item level

    My User is selling voucher. The voucher is sell at line item. eg GV$5, GV$10,etc
    Each voucher line item sold need to be entered with a EXPIRATION date of that voucher.
    Maybe 3 months from issue, maybe 6months/1 year from issue.
    How can I add this to the sales order line item level?
    Which field can I used and how to configure?

    Hi Colin ,
       The question is not very clear , but i assume that you are asking about the  self expiry date of the particular material ,
    1. The setting you can do by activating  shelf life data  in material master :Plant data/stor1
    2.  its better to have a batch managed material for that you can sort the material acording the self expiry date.
    3. Once you maintain self expiry date system by default pick  the material at the time of  delivery
    Note-Shelf life expiry it will give the life of the material from the day of manfacture,remaining shelf life also will  give .
    Hope it is helpful
    Best regards
    Venkat

  • Issue in using custom discount condition type in pricing agreement at Service Contract line item level

    Hello
    We are facing an issue while using a Z discount condition type in price agreement at service contract line item level.
    A Z Condition type has been created in ECC and assigned to the pricing procedure. This pricing procedure is downloaded in CRM and determined in the service contract.
    A condition maintenance group using this Z condition type is created in CRM and assigned to service contract item category.
    Condition records are created in CRM for this condition type/condition maintenance group for specific products along with sales org and discount percentage.
    But when the price agreement(using this condition type) is used at the item level of a service contract, the system throws errors (related to product/unit of measure and sales org, even though no issues seem to be there)and thus the price agreement is not allowed to be used.
    If anyone has worked on such kind of scenario, please get in touch, I will share more details for the same. 
    Regards
    Ankit Arora

    Dear Ankit,
    Once the pricing procedure is downloaded, please maintain the document pricing procedure at service contract header level, and maintain the customer pricing procedure at business partner sales area billing data.
    In spro, maintain the pricing procedure for the combination of sales area, document pricing procedure, customer pricing procedure.
    Please crosscheck whether the condition table is active or not.
    Regards,
    Maddy

  • Add new custom tab to SC item

    Hi all,
    I want to add a new custom tab to SC item.
    I've created an enhancement point within the component /SAPSRM/WDC_UI_SC_DOFC_D1 and I've added the new tab.
    The problem is that when I select this tab in the portal a message is displayed as following:
    "The screen component is unknown. The navigation must be canceled"
    By the moment the tab is empty, but I've tried to add a ViewContainerUI Element and I've added an embed view in the window, but the same message is still displayed...
    Do you know what i need to do in order to add this new tab?
    Thanks in advance.

    now, i am getting the data with the following sentence:
    DATA: lv_guid TYPE bbp_guid.
        DATA lo_componentcontroller TYPE REF TO ig_componentcontroller .
        lo_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
        lv_guid = lo_componentcontroller->mo_bom_sc->/sapsrm/if_cll_item_admin~get_lead_selection( ).
    Then I can use the bapi BBP_PD_SC_ITEM_GETDETAIL in order to get the data.
    Now, i want to SET this data with some modifications...
    Any idea?

  • Correspondence at line item level for Residual customer document

    HI All,
    I want to store corresponence letter for residual documents. The document containts some 20 line items and i want to store different correspondence letters for each & every line item.But system stores at header level and not in line item level.
    I am able to do, when i ran F.61 for each & every line items. Whether its possible to type correspondence for all line items at a single shot and possible to run F.61.
    Thanks
    Hari

    Hi Liz,
    I´ve got the similar problem like you wrote. 
    My client had a reorg project behind and locked the old profit centers. For the reason of clearing open items and FX valuation those locked profit centers need either to be  re-locked or the posting need to be posted to the new profit centers by using substition. Could you please kindly advicehow did you solved this problem?
    OR maybe someone else can help?
    Many thanks in advance.

  • Screen exit for Service entry sheet at line item level

    Hi,
    We would like to add some custom fields at service entry sheet at line item.
    A new tab to be introduced with custom fields at serive entry line item level.
    Any idea which screen exit can be use? or
    what is the way to find the screen exit?
    Regards,
    Sandeep

    Hi Sandeep,
    You can try to use the user defined fields in table ESLL                                                                               
    ESLL-USERF1_NUM   User-Defined Field                                   
      ESLL-USERF2_NUM   User-Defined Field                                   
      ESLL-USERF1_TXT   User-Defined Field                                   
      ESLL-USERF2_TXT   User-Defined Field                                                                               
    or develop a custom solution with the help of customer enhancement         
    SRVDET (transactions SMOD, CMOD).
    You should use EXIT_SAPLMLSP_030 to transfer values. 
    Regards,
    Edit

  • Line Item Level Coupons

    Hello Everyone,
    Are line item level coupons available where you tie a promotion to a particular item?  I know you can set it up where if you buy A01 you get A02 free, but is there a way to set that up as a 1-to-1 ratio?  Let me explain a little further...  Our client has end users placing orders through distributors, so the distributor is actually placing the order.  The end users apply and receive a promotion code when they sign up and place their first order (which must be done through a distributor).  The distributor may combine these orders from end users into one large order, therefore for each A01 that is on order, they give away a bag of items free (let's say A02), to that customer but they want to capture a note with that promotion that it is for a particular end user.  So, the question is, is it possible to track that only one promotion is given per one item (for each A01 on the order only allow the same number of free A02).  Also, is it possible for each promotion to add a note that will designate which end user it goes to?  Any thoughts would be greatly appreciated.
    Thank you in advance for your time!
    Kristen

    Hi Kristen,
    Do you still need help on this one?
    I am no completely clear on what you are after.
    When you set up a discount(coupon) you can limit the number of times it can be redeemed per user.  Is that what you are after?  Or is there more to it?
    There is no "note" associated with this.  Not sure what you mean by that.

  • Send CV03N attachments present in Purchase order at line item level

    I have a purchase order and want to send it via email. The purchase order has attachments at line item level (e.g. a specification in pdf format). Attachments were able to see through T-code CV03N,
    When transferring the PO to vendor ,smartform is attached to email and sended to vendor .now we need additioanl attachments also to be sended in same email which is present at line item level (CV03N),Whether it is possible to copy the attachments into the email, so they are sent out, too?
    Please explain the methods
    Print program used for smartform is custom Z name space.
    Thanks in advance
    Regards,
    arun

    part 3
    *& Cet GOS attachments
    IF pa_incl = 'X'.
      CALL FUNCTION 'BDS_GOS_CONNECTIONS_GET'
        EXPORTING
          classname          = 'BUS2010'
          objkey             = lv_ebeln
        TABLES
          gos_connections    = lt_gos_connections
        EXCEPTIONS
          no_objects_found   = 1
          internal_error     = 2
          internal_gos_error = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        MESSAGE i001(zmm) WITH 'BDS_GOS_CONNECTIONS_GET' sy-subrc DISPLAY LIKE 'E'.
      ENDIF.
      LOOP AT lt_gos_connections INTO ls_gos_connections.
        CLEAR lv_docid.
        lv_docid = ls_gos_connections-loio_id.
        CALL FUNCTION 'SO_DOCUMENT_READ_API1'
          EXPORTING
            document_id                = lv_docid
          IMPORTING
            document_data              = ls_document_data
          TABLES
            object_content             = lt_object_content
            contents_hex               = lt_contents_hex
          EXCEPTIONS
            document_id_not_exist      = 1
            operation_no_authorization = 2
            x_error                    = 3
            OTHERS                     = 4.
        IF sy-subrc <> 0.
        MESSAGE i001(zmm) WITH 'SO_DOCUMENT_READ_API1' sy-subrc DISPLAY LIKE 'E'.
        ENDIF.
    * Create attachment name as file name
        CONCATENATE ls_document_data-obj_descr '.' ls_document_data-obj_type INTO at_subj.
    *add attachment
        IF ls_document_data-obj_type = 'TXT'. "If text document, attachment type should be 'RAW'
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'RAW'
              i_attachment_subject = at_subj
              i_att_content_text   = lt_object_content.
        ELSE.
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'BIN'
              i_attachment_subject = at_subj
              i_att_content_hex    = lt_contents_hex.
        ENDIF.
      ENDLOOP.
    ENDIF.

Maybe you are looking for

  • ASN creation based on ECC inbound delivery

    Hi All, I have a scenario in which we are creating an inbound delivery in ECC and corresponding ASN should be created in supplier system. In order to achieve this functionality of ECC to supplier system is there any way to map this functionality thro

  • How to set focus on a specific component in an ADFT application

    Hello all, We are developing ADFT applications for telnet devices using ITS. Is there any way to set the focus on a specific gui component (input text for example) for telnet devices. Thanks

  • Runtime exception in mapping

    Hi Gurus,          In my scenario, while testing the scenario Iam getting the error in MONI as "During the application mapping com/sap/xi/tf/_MM_NUNACE_SR3_01_ a com.sap.aii.utilxi.misc.api.BaseRuntimeException was thrown: RuntimeException in Message

  • Problem with classes generated with .classgen

    When I run the sample app from the "Using XML in Oracle Database Applications, Part 2" that generates classes, the syntax is: java SampleMain -root MYMAIN myfile.dtd All the elements in myfile.dtd get a class built for them, but they also reference M

  • About single transformation in ABAP

    Hi gurus, We are trying to use single transformation to change an ABAP internal table to xml. Our structure of internal table is like below: DATA: BEGIN OF I_TOXML,                   A TYPE CHAR10,                   B TYPE CHAR10,           END OF I_