How to add custom fields in BADI  Subscreen.

Hi Friends,
I have to include some custom fields in MFBF tcode.(In make-to-order tab page).
To do that I have used RM_HR_INTEGRATION  BADI definition  and created implementation for this. In the provided subscreen I tried to add custom fields but it asks access key . I donu2019t know , how to proceed further. Your help is needed.
Or kindly provide me solution to achieve my requirement.
Thanks in Advance,
senthil.

Hi Venky,
We can see the documentation in
se18 -> badi -> LE_SHP_TAB_CUST_HEAD -> display -> documentation button above the definition name
in the first pop-up of documentation..go to the end which says 'Further notes'
Further notes
Documentation on BAdI Interface LE_SHP_TAB_CUST_HEAD
click on this and we have a detailed description of each method defined in the badi
Hope it helps
Regards
Byju

Similar Messages

  • How to add custom field to ical

    Hi
    I run a small business from my mac pro and my iphone. I would like to get a good workflow but it seems I am missing a few bits of information.
    First I would like to add custom fields to ical so that I can gather all the information I need in one spot. For example, I create a meeting with new client Tim Smith on Friday so I want to enter his name and contact info into ical because I need his address and phone number on the event so I can reference it.
    Then I would like to find a way to automatically create a contact card based on that information. If I can find an apple script that reads the fields in Ical and creates new contacts based on new events that I created.
    Then I would like to automate extracting the email addresses to send out preformed group mailers for people who were in my calendar that day ie "Thanks for meeting with me, I think we got a lot accomplished and hope to see you at the next meeting." etc etc
    Then also automate reports based off of my ical events such as "Report for how many times I had a meeting in the Blue Room this week" or "How many times did I meet with Timothy Smith"  this year
    I have tried automator and it doesn't seem strong enough to do this so I am thinking AppleScript but I am not very good at it. Anyone have any ideas on any of these issues?

    Tried the iCal forum and support
    www.apple.com/support/ical
    Tried Lion Community?
    you have notebook and tower?
    www.apple.com/support/macbookpro

  • How to Add Custom Field in Blackberry

    How can we add custom field in Blackberry 8830 or a Curve ?
    Hani Abidi 

    hello, what application are you talking about?
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • How to add custom field to the task via CSOM?

    Hello!
    I'm trying to add custom fields to my programmatically created task in project 2013. Tasks are created. Then I get them and load custom fields by:
    DraftProject projCheckedOut = tstProj.CheckOut();
    projContext.Load(projCheckedOut.Tasks);
    projContext.ExecuteQuery();
    foreach (var task in projCheckedOut.Tasks)
    projContext.Load(task.CustomFields);
    projContext.ExecuteQuery();
    But the each CusomFieldCollection object has only 1 field (Health, because it have a default value and created automatically). But when I load my project in Project professional i saw more than 1 field, but they are empty.
    Then I tried to add a new custom field to each CusomFieldCollection of each task.
    var newField = new CustomFieldCreationInformation();
    newField.FieldType = CustomFieldType.TEXT;
    newField.Name = "F_1";
    newField.Description = "test description";
    task.CustomFields.Add(newField);
    task.CustomFields.Update();
    New field added to the collection, but when I update the project and publish it nothing is happened.
    How to add a custom field to the each task and set it value?
    Or how to attach enterprise task custom field to my tasks.
    I'm using Microsoft.ProjectServer.Client.

    Hi
    Hope the below posts are of some  helpful for you 
    http://social.msdn.microsoft.com/Forums/en-US/d79f22f2-7fd2-46af-b778-e189c8611120/use-csom-to-update-projects-custom-fields?forum=project2010custprog
    http://msdn.microsoft.com/en-us/library/microsoft.projectserver.client.project.setcustomfieldvalue.aspx
    Thanks
    Geeth
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

  • How to add custom field in delivery address/performance location tab in SRM shopping cart and Ship to address Pop-up in SRM PO?

    Hi Experts
    i have a reuirement where i have to add custom field in delivery address/performance location tab in SRM shopping cart and Ship to address Pop-up in SRM PO
    i am doing below steps for this.
    1. Adding custom field ZZfield in structure INCL_EEW_PD_PARTNER_CSF by  using  append structure.
    2. Spro ->Supplier Relationship Management -> SRM Server -> Cross application basic settings -> Extensions and field controls (personalization) -> Configure field control ->Configure Control for Fields of Substructures
    then click on  "Metadata for Fields of Substructures and Table-Like Enhancements"  
    add the below entry
    Bus. Object Set Type  : I am trying 7 and 29
    Structure Field Name  : ZZfield
    Bus. Object Type       : BUS2121/BUS2201
    Set Level                    : Item
    Field Visible :  Check box should be checked
    Field Enable :  check box should be checked
    Can anyone has the idea of this?
    Thanks
    Rohit

    Hello Rohit,
    Please create a enchancement for component  /SAPSRM/WDC_UI_DO_SHIPTO.
    Add new input field and label in view V_DODC_SHIPTO.
    Bind the input field value with field ZZfield from structure  /SAPSRM/WDC_UI_DO_SHIPTO in the context node SHIP_TO .
    Regards,
    Neelima

  • How to add custome field to QM01 transaction .

      Hi every one !
      i want to add cutstom field to QM01 transation .
      i trying to this using QM00_SUBSCR_5000 badi . but here when i open subscreens tab layout when i going to add input out box and label
      its asking for access key .
      how can i do this pls any one send me clearly using screen shots ...
      see the screen shot attached ....

    Addition of Custom fields to QM01 Tcode:
    Go to function group XQQM
    ,create the screen under screens tab number 0090.
    Declare the screen fields under include tab ZXQQMTOP .
    data :
    dist  like qpcd-code,
    sal   like qpcd-code,
    cust  like qpcd-code.
    Under process on value-request. Create a module for f4 help
    for the custom fields.
    Under the function module EXIT_SAPMIWO0_008 write the code for updation of custom fields to
    the structure  viqmel.
    Under PAI create a module for capturing the screen field
    values.
    Case sy-ucomm.
    when '10\TAB02'.
    viqmel-cust = cust.
    viqmel-dist = dist.
    viqmel-sal = sal.
    endcase.
    For
    QM02 and QM03use EXIT_SAPMIWO0_008 for display of
    the screen field values.
    Under the PBO of the screen create a module for fields to
    be in display mode.
    if sy-tcode = 'QM03'.
    loop at screen.
    if sy-ucomm = '10\TAB02'.
    screen-input = 0.
    modify screen.
    endif.
    endloop.
    endif.
    Thanks,
    Shailaja Ainala.

  • In T-Code: MIRO ; how to add custom fields in Table Control

    In MIRO
    in PO Reference tabstip i want to add 2 custom fields ( say PO segment Invoice number and vechecle names i have to populate ).
    How to do dis ,
    any BADIs or any EXITS ????
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Regards,
    Ramesh.
    Edited by: Alvaro Tejada Galindo on Dec 29, 2009 11:24 AM

    ok

  • How  to add custom fields to the  sap standard  program ukm_bp_display

    How  to add new custom  fields to the  sap standard  program ukm_bp_display .
    could u  please any one help me on this?

    Hello Kumar,
    You have to modify below structure, as this structure is providing the field catalog for output display (ALV).
    Here you can see there are a lot of include structures, so if you want to add fields in the output display you can add those fileds as an append structure to any of the below mentioned structures (Like ukm_s_account, ukm_s_bp_cms_sgm etc as per your requiremnt and positon at which you need to dispaly your fields.)
    DATA: BEGIN OF gt_grid_alv OCCURS 0.
           partner LIKE but000-partner,
           credit_sgmnt LIKE ukmbp_cms_sgm-credit_sgmnt.
            INCLUDE STRUCTURE ukm_s_account.
            INCLUDE STRUCTURE ukm_s_bp_cms_sgm.
    DATA:   credit_sgmnt_txt LIKE ukmcred_sgm0t-credit_sgmnt_txt.
          Gruppe Vector
            INCLUDE STRUCTURE ukm_s_bp_vector.
          Gruppe OBL = Obligo
          include structure UKM_S_BP_CMS_MALUSDSP_OUT.
            INCLUDE STRUCTURE ukm_s_display_segment.
            INCLUDE STRUCTURE ukm_s_bp_cms.
            INCLUDE STRUCTURE bus000_dat.
    *DATA:   icon(4).
          Gruppe RAST (Raster)
    DATA:
             rast01 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast02 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast03 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast04 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast05 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast06 LIKE ukm_s_display_segment-AMOUNT_GRID.
    DATA:    rast2_6 LIKE ukm_s_display_segment-AMOUNT_GRID.
    "Summe raster 2 bis 6
    DATA:  END OF gt_grid_alv.
    Another way is you can  go  to SE38, and you can create implicit enhancements.One enhancement point is available here in this required area. so create an implementation and add your fileds with data types.This way is also simple.
    Hope this will solve yiour problems.
    Regards,
    Antony Thomas

  • How to add custom field in Message type MBGMCR IDOC

    Hello,
    Could you please help me on below requirement.
    There is standard IDOC type MBGMCR.In this IDOC type there is one segment with the name E1BP2017_GM_ITEM_CREATE.
    How can we add custom filed in this segment E1BP2017_GM_ITEM_CREATE?
    I tried to use Append structure.But systme is not allowing us to create custom filed in this..
    It is a outbound.I created custom program to send this IDOC to other system .
    Could you please help me out on this.
    If you need any further details pls let me know.Thank you in advacne.
    Regards

    Hello Rohit,
    Please create a enchancement for component  /SAPSRM/WDC_UI_DO_SHIPTO.
    Add new input field and label in view V_DODC_SHIPTO.
    Bind the input field value with field ZZfield from structure  /SAPSRM/WDC_UI_DO_SHIPTO in the context node SHIP_TO .
    Regards,
    Neelima

  • How to add custom field in SRM-MDM catalog

    Hi Guys,
    I have to add a custom field in SRM-MDM catalog. I know, it is done through MDM console, but how, it is done, This, I don't know.
    Please help me.
    Thanks in advance!!
    Note-> we are at SRM5.0 + MDM2.0
    Neelesh

    Please check the online help.
    [http://help.sap.com/saphelp_mdm550/helpdata/en/6c/24e342f6307176e10000000a1550b0/frameset.htm|http://help.sap.com/saphelp_mdm550/helpdata/en/6c/24e342f6307176e10000000a1550b0/frameset.htm]
    Regards,
    Masa

  • How to add customized fields for free search in PA30

    Hi,guys
       I have created some customized infotype. and I want to add the field of that infotype into free search.
       How do I do that?
       Please help
    Thank you in advance

    Hi Luke,
    I am getting follwoing error in cds file 1906. 05 Oct 2011 09:46:58 ERROR com.nakisa.Logger - com.nakisa.framework.data.commandProcessor.impl.OracleCommandProcessor : getDataTables : Problem executing query. Data Element Name: SAPOrgUnitDataElement.
    This error is only coming in Quality & not in dev. In Dev, It is showing Org Structure for a scenario but in Quality, it is showing a blank screen & giving this error in cds log file.
    I have copied SAPOrgUnitDataElement.xml into SAPOrgUnitDataElement_copy.xml & then used standard SAPOrgUnitCostCenterInheDataElement data element to create a linked data element called SAPOrgUnitDataElement (using SAPOrgUnitDataElement_copy & SAPOrgUnitCostCenterInheDataElement).
    All the fields in SAPOrgUnitCostCenterInheDataElement got added in source Organization Structure feilds & I have also added cost center name field in view but still it is not showing in scenario Org chart in dev. Because of data issues, I thought to test it on Quality but there I am even not able to see Org chart for a scenario & it is giving above said error in cds log file.
    Please help!
    Thanks,
    Prashant

  • How to add Custom fields ( under the Custom Tab) in RMMAIN ( SOLMAN 4.0)

    Hi Expert,
    I am working in SOLMAN 4.0
    i want to add some Custom fields in RMMAIN Transaction -Screen level..( under one custom tab)
    i have tried in EEWB, it is not helpful for RMMAIN
    is any Screen exit available for RMMAIN? or any other way?
    I ll give Reward points
    Thanks & Regaids
    Ganesh, R

    Hi,
    go through this...
    https://wiki.sdn.sap.com/wiki/display/Snippets/Displaycustomerfieldsinheaderoflogisticsinvoiceverification+transactions
    Thanks,
    Shailaja Ainala.

  • How to add custom field in Documents Tab of PO Header ?

    Dear SRM Friends,
      This is a challenging task as an ABAPer to confront to..
      We are in the midst of a requirement where we have to add a custom field in the PO Header. But the requirement is to add the field in Documents Tab in PO Header Data as found in the following path of SRM Webpage  :
    Operational Purchaser > Purchase Orders > Process Purchase Order > Select a PO > Header Data > Documents.
      As guided by "Note 672960 - User-defined fields 2" , on executing all the steps of the note the field is getting added, but in the Basic Data Tab of the PO. But this doesnt meet the client requirement.
      Anybody having some solution to this, shall be greatly awarded.
    Thanks in advance,
    Vikas.

    Hi Vikas,
    You can define a Text ID in Header data with F4 help. But the list of values will be fixed, but configurable. This will exactly solve your problem. This will be quite simple and straight forward solution with no custom developments.
    Please Navigate to
    SAP Implementation Guide -> Supplier Relationship Management -> SRM Server
    -> Cross-Application Basic Settings -> Text Schema
    1. Define Text Types
    Select BBP_PD and double click text id. Add a new text id here.
    2. Define Text Schema
    Select PO and add the newly created text id and set required parameters.
    3. Define Fixed Values for Texts
    Select your PO transaction type and maintain the required values for F4 help / drop down.
    Hope this would solve your problem.
    Regards
    Kathirvel

  • How to add customer fields in UI Marketing.

    Dear SAP Colleague,
    We are migrating our SAP CRM landscape from version 4.0 to 7.0.
    We have already performed a technical migration of our development environment. But now we are facing the following issue:
    In 4.0 we have a Custom Aditional Fields Tab at the Campaigns Screen in the CRM_MKTPL transaction.
    This fields were customized through the CRMC_MKTPL_SETTYPE transaction
    Now, in 7.0 the UI doesn't show this fields and the IMG Activity corresponding to this transaction is out of the menu,
    also, in 7.0 this transaction is obsolete.
    How can we do it in order to use this fields again.
    Edited by: Jorge Anzola on Aug 12, 2011 12:13 AM

    Thanks Naresh, I can use the AET but with this tool I create the new fields and show them at the UI, but in the CRM Aplication the tool make an append structure in the main table of campaign, then the fields have a direct relationship with each record on the table, i.e. with each campaign.
    My problem is that I have another table Zxxxxx containing the fields and filled  with the info entered by the business transaction when we had the release 4 of the CRM. Then I can't make the binding with this table.
    How can I refer the fields in the UI to the fields in this another table, and how can I make the relationship between the main table of campaign and my Z table. ?

  • Add Custom Fields in MB1B Tcode

    I want to Add Custom fields in MB1B Header Data. I not able to find way how to do that. So can you please let me know how to add custom fields in MB1B.
    Thanks & Regards
    Nikunj Shah

    Hi Parikshit,
    There is no badi or user exit available to add a custom fields.If that fields are standard one then it can be controlled against the movement type.Go to T code: OMCJ .Select the movement type, and click on display. And maintian the filed settings accordingly.
    Post if need help.
    if you need validations there are some exits.
    TCode MB1B
    EXIT_SAPMM07M_001 - MBCF0002 - Customer function exit: Segment text in material doc. item
    EXIT_SAPMM07M_003 - MBCFC003 - Maintenance of batch master data for goods movements
    EXIT_SAPMM07M_004 - MBCFC004 - Maintenance of batch specifications for goods movements
    EXIT_SAPMM07M_005 - MBCF0006 - Customer function for WBS element
    EXIT_SAPMM07M_009 - MBCF0009 - Filling the storage location field
    EXIT_SAPMM07M_010 (Propose Batch / Transfer Batch) - MBCFC010 - Propose batch number on Inventory Management item screen
    Regards,
    Madhu.
    Edited by: madhurao123 on Jun 28, 2011 9:44 AM

Maybe you are looking for

  • How do I use multiple paragraph styles in one line?

    I'm working on my thesis in APA style.  I'm creating a Table of Contents with the help of Pages.  When you get to Level 3 in APA headings (no problems with Levels 1 and 2) it needs to look like this: [0.5in Indent] Masculinities in higher education. 

  • Using iMac G5 as a display?

    can i use my imac to screen share with my macbook?

  • Success with Oracle Portal?

    We are in the process of starting a Oracle Portal project. Has anyone out there deployed anything and can you share your experiences? Is anyone aware of any development resources available in Minneapolis/St. Paul? Thanks!

  • Macbook stuck in boot up

    ok so my computer crashed and eveyrtime i turned it on it went straight to kernal panic, long story short i got a new harddrive. i reinstalled all my files via time machine, it worked great and everything went back to normal for a bit. i had to get a

  • IOS 6 not showing all Artists

    After searching the discussions and a few third-party sites, I'm losing hope that iTunes Match will work again on my iOS devices.  I actually noticed this first on my iPhone 4S, and can confirm it on my iPod Touch.  Like many others, after upgrading