Enhance Component BP_CONT with additional Field Set

Hi Experts,
I want to achieve following scenario. In sales account master, when you create a contact out of an account you get view BP_CONT/ContactQuickCreateEF. This view does not offer the the field set STANDARDADDRESS which is the one used for contact individual address.
Hence, I want to enhance the view BP_CONT/ContactQuickCreateEF with the field set STANDARDADDRESS from view BP_ADDR/StandardAddress.
Can you give me a solution on how to enhance view BP_CONT/ContactQuickCreateEF with the wizard. I want to make the STANDARDADDRESS fields (from contact master main address) available here. We do not want to use the Work/Relationship address for contacts.
Any help on this is higly appreaciated, as I am new to WebUI dev.
thx
Makroeis

For button creation, code in DO_PREPARE_OUTPUT of the result IMPL class after redefining. Once done. On-Click event name should be created in the same IMPL class. This method id where you will code the logic.
Since the netity would be available from the context node RESULT, you will have the collection for all the entities. STRUCT.BP_GUID  will give you the necessary GUID of the concerned contact person.
Rg,
Harshit

Similar Messages

  • Uploading of cost center data with additional fields

    Hi Gurus,
    I have uploaded the cost center data. now my client has given same data with additional fields data(ORT01, ORT02, TXJCD). first time I have uploaded with LSMW IDOC methos COSMAS1. but in the same idoc the extra field not available. So i have tried recording method for KS02 to upload the data. but the data is not changed. in the sence the additional fields data not loading. while uploading i getting the probelm at TXJCD. it is getting a popup window. i was not able to handle that. Is there any other Basic IDOC to upload the data with all the fields in cost center. BAPI or Direct input program? Thanks in advance

    hi,
    you can  avoid the popup screen by using  OK code.
    ~linganna.

  • Enhance search functiponality with custom fields

    Hi Experts,
    I want to enhance component PRD01QR/Search with custom field in order to allow seraching for it. It is enhanced via set type. Please could you send me steps how to dpo it?
    Thanks,
    Juraj

    Hello,
    Maybe this helps:
    http://scn.sap.com/thread/3151887
    Best regards,
    Thomas Wagner

  • Problem with a field set to refresh after insert at Row level

    hello all,
    i have a problem with a field (a serial) which is set by a db trigger at insertion. The field "refresh after insert" is properly set in the Entity and everything is refreshed correctly when i insert data via an adf form in a jspx but when i want to insert programmatically nothing is refreshed. I insert data this way :
    ViewObject insertVO = findViewObject("myView");
    Row newRow = insertVO.createRow();
    newRow.setAttribute("mandatoryAttribute1",value1);
    newRow.setAttribute("mandatoryAttribute2",value2);
    <more init here but not the serial since it will be set by the DB trigger>
    insertVO.insertRow(newRow);
    but when i want to get back the value with "newRow().getAttribute("TheSerial");" i always get a null back and not the value set by the db trigger.
    One way to get the serial is to commit after each insert but i don't want to commit between inserts.
    i've tried to unset the refresh after insert and override the createDef() method to setUseReturningClause(false) as it's is advised in chapter 26.5 of the ADF 4GL dev. guide but in this case i have an exception JBO-29000: JBO-26041.
    How can i get the value back properly ?
    thanks
    -regards

    The data for the newly created row doesn't get inserted into the database until the commit is executed, so the insert trigger isn't called.
    If you need to get the value without committing, then you should implement the trigger programmatically and drop the trigger from the database. The code below shows how you could do this.
    ViewObject insertVO = findViewObject("myView");
    Row newRow = insertVO.createRow();
    SequenceImpl seq = new SequenceImpl("MY_SEQ", insertVO.getDBTransaction());
    Long next = (Long)seq.getData();
    newRow.setAttribute("primaryAttribute", new Number(next));
    ...You will need to replace MY_SEQ and primaryAttribute with the correct values for your example, but this should acheive what you want.

  • Connection MESG and INOB with additional field

    Hi friends,
    i'm beginner in ABAP and for this reason i create reports in ABAP query.
    So i create query between tables MSEG and INOB (then INOB with AUSP).
    In INOB-OBJEK - value is matnr and charg,
    but value in this field is: for example 
    matnr                    charg
    EK759064BK (8 free spaces) 0000000066
    EK759064BK (8 free spaces) 0000000067
    EK759064BK (8 free spaces)  0000000068
    EK759064BK (8 free spaces)  0000000069
    EK759064BK (8 free spaces) 0000000070
    My idea is to create additional field with MSEG-MATNR and MSEG-CHARG and relate with INOB-OBJEK
    (concatenate mseg-matnr mseg-charg into refkey.) 
    result is:
    EK759064BK0000000066
    EK759064BK0000000067
    EK759064BK0000000068
    EK759064BK0000000069
    EK759064BK0000000070
    Now my question is how to change code and create additional field like INOB-OBJEK, how to change my code so i have 8 free spaces between MATNR and CHARG?
    Edited by: Marin Lyubomirov on Dec 13, 2009 9:39 AM

    the ABAP keyword CONCATENATE has a parameter RESPECTING BLANKS
    So if you use this this parameter, then you would get the missing 8 spaces, because the material number field is 18 long and your material only 10 long.
    Alternative, just use an own field that is 8 long and do the concatenation like this :
    concatenate mseg-matnr myfield mseg-charg into refkey

  • Can I enhance extract structure with standard field?

    Friends,
    Can I enhance the extract structure with standard field.
    Eg. If I want add(append) field PACKNO to Extraction structure MCVGIH. PACKNO is a field from standard table. So Can I do this and populate this without using abap code(customer exit) Should I give foreign key field also in the append stucture.
    Please help me
    Joe

    Hi Joe,
    mostly it works as A.H.P explained, because in the extractor they mostly do a move-corresponding of the fields. Sometimes they don't, specially for newer applications and extractors because the abap statement move-corresponding is on the list of obsolete statements. In that case you need to do some coding.
    So basically I would recommend to add the field, regenerate the datasource and check the result with rsa3.
    regards
    Siggi
    Message was edited by: Siegfried Szameitat

  • FAGL_FC_VAL with additional field

    Hi SAP guru,
    I am striving to tranfer the additional account assignments (cost centre) from the original posting. So I have maintained them in the view V_FAGL_FCBAL when performing  the balance valuation for profit and loss accounts with report FAGL_FC_VALUATION (New General Ledger). I am using ECC6.0
    However, the sytem still does not transfer the cost centre at all.
    Would any of you have any idea as to why the system ignores the entries from V_FAGL_FCBAL?
    Kind regards
    taro

    Hello,
    The system behaviour is, If you have Cost Center activated as one of the document split characteristics in the customizing "Define Document Splitting Characteristics for Controlling" in the IMG menu, in such case, the exchange rate difference lines will receive the cost center of the original invoices so that these exchange rate difference lines will be distributed correctly as per the account assignment. From document split point of view, this is necessary. In such case, OKB9 setting does not have any impact. Only if KOSTL (Cost Center)  is not defined as split characteristic at the IMG mentioned above, then OKB9 will be taken into account because document split is not nessary to distribute the amount per cost center.
    Either you have to maintain correct cost center in OKB9 Or active document splitting for your company code in order to get cost center for exchange rate difference line item.
    Hope this information helps.
    Suresh Jayanthi.

  • CO/PS Line item reporting with additional fields (vendor number/name)

    Hi
    how i can post PS,cost center and orders commitment line items for below reports
    The SAP standard reports are:
    CJI5 PS Commitment Line items
    KSB2 Cost Centre Commitment Line Items
    KOB1 Orders Actual Line Items
    KOB2 Orders Commitment Line Items.
    give me suggestion for above tr. codes
    Regards
    nreddy

    hi
    I want post line commitment line items for PS,Coscenter and orders for testing reports

  • CRM 2007 UI - Add Field Set to an Assignment Block

    Hello Community,
    We would like to enhance an assignment block with additional field sets in BSP WD Workbench.
    Example:
    - the Assignment Block "Private Date" - BP_Cont/ContactAltOV - within the contact component BP_Cont has several SAP Standard field sets in the BSP WD Workbench; Examples are: NAME1; TEXTHEADER; BUILHEADER ...
    - We need to extend this assignment block with fields of the field set STANDARTADRESS from Component BP_ADDR/StandardAddress
    Does anyone has documentation describing this development or knows how to do this. The WebUI cookbook and RKT material is not really helpful on this.
    Thanks for your help
    Michael
    Edited by: Michael Thiel on Apr 23, 2008 4:42 PM

    Hi,
    this would not work within a few from my understanding.
    What you need to do to get additional fields or set of fields available in the configuration of this view is to enhance the context of thie view in the component workbench.
    For being able to do this you need to enhance the componentn BP_CONT and the view itself.
    - Select the view in the component view so that the view structure appears on the right side.
    - Expand "Context" and then "Context Node"
    - Right-click "Context-Node" and select "Create"
    - Follow the wizard...
       - create a new context node (e.g. zAddress ) of type BuilStandardAddress
       - you don't need attributes or custom controller assignment for this case
       - make it dependent from BuilHeader via relation BuilStandardAddressRel
    After having generated the new node you should see the new field set in configuration.
    If you need F4-helps or specific controls you might have to generate P-/V-getters for the attributes you have in mind.
    Good Luck!
    Peter

  • EEWB and adding additional fields to the IBASE header

    Hello,
    I have used the EEWB (Easy Enhancement WorkBench) to add additional fields to the IBASE header. The process ends with a success state and in all steps there are no logs. The objects are generated and visible in the database table of the IBASE header and activated.
    When I go to the IB53 transaction the systems starts compiling. After the compiling there are no additional fields visible?
    In the EEWB no more actions are possible and it seems only an append structure was created with the new fields (GENERIC_IC_TASK).
    How do I get the fields to be visible in the IBASE transaction?
    I am using CRM 5.0.

    Ramakanth/Kiran,
    For creating screen structures or additional fields on the IBase header screen you would need to manually append entries in Database Tables T371D.... through T371Z, it is a set of around12-14 tables depending on the scenario which would need updations.
    Once updated in the right sequence you can see the EEWB fields on the Ibase header screen.
    Hope this helps.
    Amit Sitlani

  • Additional fields in infoset query can not be used as datasource fields

    I create one infoset query with additional fields (using ABAP code) in R/3. When I create datasource RSO2 using this infoset query, system only show all fields without additional fields that I enhanced in infoset query. Does that mean we can not get additional fields information in generic datasource creation that we enhanced in infoset query?

    dear Awa,
       you are enhanced some fields in r/3.right that fields are  shown in
    rsa6 select your data source click on display your datasource then select
    extract structure its shows how many fields are haveing particular
    datasource .or otherwise goto rso2 select your data source display
    double click on  your extractstructure  its show how many fields haveing
    the particular datasource. check the Rsa6 what ever fields you newly added that field default hide mode
    you remove the hide tickmark.

  • SQ02 - Query with adicional fields

    Hi, I need your help to develop a query with additional fields.
    The case is that:
    In my query I only have a table VBAK and my propose is that this query returns me the quantity that are in a sales document for some material that should be selection parameters.
    So I create 2 additional fields: one that is the u2018 Material u2018 that have no codification and other that is the quantity that have the code:
    select single ZMENG into quantity from VBAK where matnr = material.
    But the result is null, I don't know why.
    Can you help me?
    Thanks in advance.
    Dora

    Hi,
    MATNR is not available in VBAK !
    You have to create first an info-set using SQ02 : here you link VBAK and VBAP, and select the fields you need.
    From SQ01, create a new query where matnr is a selection field ....

  • [ADF 10.1.3.4] display additional fields according to CheckBox value

    Hi all!
    I have the following requirement to address via ADF:
    When the user select one checkbox within a form some further fields should be displayed on the page, without perform any "validation" action on the previous fields.
    In ADF partial submit is available only on commandlink and commandbutton.
    How can I refresh a portion of page (panelgroup) according to checkbox value?
    What are the possible solutions that we have for this?
    Have you got some code-snippet to show me a workaround?
    Thanks in advance
    Edited by: Federico Leopizzi on 23-feb-2010 16.36

    Hi Federico,
    set autoSubmit="true" on your af:selectBooleanCheckbox and the partialTriggers on a component surrounding your additional fields.
    See " Only Rendered ADF Faces Components Can React To PPR"
    http://blogs.oracle.com/Didier/2008/04/only_rendered_adf_faces_compon.html
    Regards,
    Didier.

  • Adding additional fields on standard SAP pop up box

    Hi Experts!!
    I have to enhance IT0378(Adjustment Reasons) with additional fields. Same time I have to enhance a pop box wich is generating  in IT0171( General Benefits) in CE workbench.
    ( if you click on workbench, we get a popbox with a statement ' Benefit data for other Personnel assignments' . Selet green right mark with name 'work bench'. It will take you to Concurrent Employment Benefit Workbench screen. Choose any position in the left side then select create Adjustement reason button. you will get a pop box. Exaclty here i have to add the fields whatever i am going to enhace in IT0378 )
    Could you please give some easy steps to get it done.
    Regards,
    Ravi Visarapu.

    http://wiki.ittoolbox.com/index.php/Implement_a_screen_exit_to_a_standard_SAP_transaction

  • Additional Field in FAGLL03

    Dear Experts,
    We want to add new field in FAGLL03. There are so many OSS note issue by SAP. Is anybody can provide sequence of notes for adding field in FAGLL03. We are on ECC 5.0
    Please provide anybody have the same.
    Thanks & Regards,
    Kalpik Shah

    hi
    check this note
    Note 945932 - FAGLL03: Enhancing dynamic selections with certain fields
    it clearly gives you the steps to add a field to fagll03
    Regards
    Sach!n

Maybe you are looking for

  • Help Please! -- issue with Mad Catz controller

    Can anyone help me out here? I have a Mad Catz Wireless PC Con and I'm having trouble getting it to work. After plugging it into a USB port, when I go to the System Profiler and go to the USB section, the PC Con is listed as hooked up to the USB port

  • Opening Document in Work from the Sent To Email a Link instead on downloading it

    Documents send via the Sent To > Email a Link SharePoint 2010 Document Library Menu is downloading rather than opening in Word. This is happening for some users and while it is open in Word just fine for other users. New to SharePoint

  • Making jar files available to javac?

    Sorry, this is probably just a dumb newbie question. I'm having a problem setting up a library jar file in a windows environment. I know that this is just an issue of setting up the PATH or CLASSPATH or something else correctly but I can't seem to ge

  • Smart form to be printed 4 times

    Hi, when samrtfrom is excuted it should print 4 copies, I have the same data in all the windows except in footer window, In footer window for first copy 1. Bank copy                              second copy 2 .bankcopy                              th

  • Performance root cause

    hi Team, We have XI 7.0 running and 6 hours back we had experienced slowness in message processing. But over period of time, the overall performance back to normal. So now i need analysis why there was slowness in message processing. Please help me w