How to populate data from bol to assignment block.

Dear experts,
I saw on sdn discussion similar questions, but have not found the suitable answer.
I need to add fields for BP using EEWB and to work with this field in WEB UI. For achievement of it I have executed following steps:
1. Using EEWB has added new z u2013 fields to BP. This fields have appeared in tcode bp on a tab "customer data".  Besides I have seen this field in created z u2013 BOL.
2. Using tcode BSP_WD_CMPWB has created z bsp component.
3. In z bsp component has created view and custom controller which correspond earlier created z - BOL. Also has created following binding:
   owner->do_context_node_binding(
            iv_controller_type  = cl_bsp_wd_controller=>CO_TYPE_CUSTOM
            iv_name = 'ZBP_S_INF/NumBpOutSYS'
            iv_target_node_name = 'ZZ9BHEEW'
            iv_node_2_bind      = ZZ9BHEEW ).
4. Has redefined method DO_PREPARE_OUTPUT and would make modify the *.htm file for the purpose on toolbar there were buttons of editing of the data.
5. Has adding z - assignment block to bp_head component.
At start WEB UI the assignment block it is visible in list displayed blocks of account data. In this block there are buttons on toolbar. But in this block the data is not displayed. Though really data there is, as they are displayed in tcode bp.
Please inform as to populate the data from bol to z u2013 component. I assume that it is necessary for me to create get_ methods. But methods get_ and set_ do not cause query.
Iu2019m work in CRM 7.0.
Best regards,
Eugene.

HI, Prasenjit
Here the text my html pages
<%@page language="abap" %>
<%@extension name="thtmlb" prefix="thtmlb" %>
<%@extension name="chtmlb" prefix="chtmlb" %>
<%@extension name="bsp" prefix="bsp" %>
<thtmlb:areaFrameSetter toolbarButtons  = "<%= controller->gt_button_header %>"
                        maxButtonNumber = "3"
                        displayMode     = "<%= controller->view_group_context->is_view_in_display_mode( controller ) %>" />
<chtmlb:configTable actionsMaxInRow       = "3"
                    allRowsEditable       = "TRUE"
                    displayMode           = "<%= controller->view_group_context->is_view_in_display_mode( controller ) %>"
                    downloadToExcel       = "TRUE"
                    id                    = "Table1"
                    onRowSelection        = "select"
                    personalizable        = "TRUE"
                    selectedRowIndex      = "<%= ZZ9BHEEW->SELECTED_INDEX %>"
                    selectedRowIndexTable = "<%= ZZ9BHEEW->SELECTION_TAB %>"
                    selectionMode         = "<%= ZZ9BHEEW->SELECTION_MODE %>"
                    table                 = "//ZZ9BHEEW/Table"
                    usage                 = "EDITLIST"
                    visibleFirstRow       = "<%= ZZ9BHEEW->VISIBLE_FIRST_ROW_INDEX
%>"
                    visibleRowCount       = "6"
                    width                 = "100%"
                    xml                   = "<%= controller->configuration_descr->get_config_data( ) %>" />
Whether the page can html operate extraction of the data?

Similar Messages

  • How to populate data from table into datagrid in form

    hi there. may i know how to populate data from a table into a datagrid? i have created a datagrid in a form using OLE's microsoft datagrid. i'm having problem to populate data from table into the grid. can i know how to do that? thanks

    Not exactly. I want to enter input from form and the user can have all options to choose i.e. HIGH, MEDIUM or so on.
    Suppose, you have option to select HIGH, MEDIUM or LOW and you can see all these options together. You select LOW and when you save, it is saves in the table as a value. So when you view the table again, it will show LOW as active and HIGH and MEDIUM are null.

  • How to populate data from dynamic drop down list to the text field

    Hi,
    I tried to populate data from dynamic drop down list to city field. I would like to concat data from drop down list.When selecting add button to add the item and select item from drop down list, data should be displayed in the text field. However, Please help. I spent alot of time to make it works I am not successful.
    Please see the link below.
    https://acrobat.com/#d=SCPS0eVi6yz13ENV0cnUdw
    Thanks for your help
    Cindy

    Hi Rosalin,
    Loop the hidden table, get the values and populate drop down in each iteration.
    DropDownList1.addItem("Text","Value");
    You can use one more solution for this scenario. If it is a matter of 2,3 dropdowns, put three dropDowns in the form layout and give seperate static data binding to them. At run time make the dropDowns hide/visible as per the requirement.
    Hope this helps.
    Thanks & Regards,
    Sanoosh

  • How to populate data from table into Radio button group in Form 10g

    Hi,
    I have a table with 2 columns, i.e. criteria and weight.
    The weight column will contain either 5 or 4 or 3.
    I want to design a form (10g) as follows:
    CRITERIA----------------------------WEIGHT------------------
    ------------------------HIGH----------MEDIUM-------------LOW
    Cost-------------------o
    Duration-------------------------------o
    Maintenance-------------------------o
    If the criteria contains 5, it will show as HIGH, MEDIUM for 4, LOW for 3.
    Do I need one radio group for each CRITERIA column?
    How can I populate the table and display as above programatically in the form?
    Edited by: srtusar on 26-Mar-2009 04:49
    Edited by: srtusar on 26-Mar-2009 06:48

    Not exactly. I want to enter input from form and the user can have all options to choose i.e. HIGH, MEDIUM or so on.
    Suppose, you have option to select HIGH, MEDIUM or LOW and you can see all these options together. You select LOW and when you save, it is saves in the table as a value. So when you view the table again, it will show LOW as active and HIGH and MEDIUM are null.

  • How to populate data from screen on to search help field

    Hello all,
    I have a requirement in which for a field i have attached a search help and i am calling the search help by using the FM
    F4IF_FIELD_VALUE_REQUEST it is working fine.
    I have one additional requirement that whernever any data is entered on the screen field say ( A* ) then F4 is pressed on the search help in the field this value must be considered. Now it appears blank but i want this data to get populated from the screen
    field how can i achieve it.
    Warm Regards,
    Naveen M

    hii naveen,
    YOu have to make use of the function modules:
    DYNP_VALUES_READ Read screen field values before PAI field transport
    DYNP_VALUES_UPDATE Change screen field contents w/o PBO
    Each of which is very well documented
    or
    trigger the drop-down in POV.
    PROCESS PAI.
    FIELD <FIELD>.
    PROCESS ON VALUE-REQUEST.
    FIELD FIELD MODULE F4HELP_FOR_FIELD.
    MODULE F4HELP_FOR_FIELD.
    > Call search help: see the fm VRM_* to manage dropdown list
    DATA: DYNAME LIKE D020S-PROG,
    DYNUMB LIKE D020S-DNUM.
    DATA DYNPFIELDS LIKE STANDARD TABLE OF DYNPREAD WITH HEADER LINE.
    DYNPFIELDS-FIELDNAME = <other field name>.
    DYNPFIELDS-FIELDVALUE = <value>.
    APPEND DYNPFIELDS.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
    EXPORTING
    DYNAME = DYNAME
    DYNUMB = DYNUMB
    TABLES
    DYNPFIELDS = DYNPFIELDS.
    ENDMODULE.
    rgrds,
    Shweta

  • How to populate data from XML to SQLserver 2008

    Hi 
    I have following XML file data. I need to create table in sql sever and load the data. I dont know how to read and load the file located at C:Drive.
    Please kindly help me on loading the data into table
    This is what I see in the file located on C drive - invoiceXML: 
    <?xml version="1.0" encoding="utf-8"?>
    <CLinv xmlns="http://www.sdfsfdfsfd.com">
      <billCom xmlns="">billCom1</billCom>
      <remittance xmlns="">
        <remCom>remCom1</remCom>
      </remittance>
      <summary xmlns="">
        <title>title1</title>
        <TBAmt>1</TBAmt>
        <totalNC>1</totalNC>
        <accountAging>
          <past3DAm>1</past3DAm>
          <tPDe>1</tPDe>
        </accountAging>
        <items>
          <item>
            <itNo>1</itNo>
            <NC>1</NC>
          </item>
          <item>
            <itNo>23</itNo>>
            <NC>23</NC>
          </item>
          <item>
            <itNo>34</itNo>
            <NC>34</NC>
          </item>
        </items>
      </summary>
      <GrpDet xmlns="">
        <detailGrouping>
          <grouping>grouping1</grouping>
          <details>
            <detail>
              <CNo>CNo1</CNo>
              <Namtt>1</Namtt>
            </detail>
            <detail>
              <CNo>CNo2</CNo>
              <Namtt>23</Namtt>
            </detail>
            <detail>
              <CNo>CNo3</CNo>
              <Namtt>34</Namtt>
            </detail>
          </details>
        </detailGrouping>
        <detailGrouping>
          <grouping>grouping2</grouping>
          <details>
            <detail>
              <CNo>CNo4</CNo>
              <Namtt>0.9</Namtt>
            </detail>
            <detail>
              <CNo>CNo5</CNo>
              <Namtt>1.1</Namtt>
            </detail>
            <detail>
              <CNo>CNo6</CNo>
              <Namtt>23</Namtt>
            </detail>
          </details>
        </detailGrouping>
        <detailGrouping>
          <grouping>grouping3</grouping>
          <details>
            <detail>
              <CNo>CNo7</CNo>
              <Namtt>34</Namtt>
            </detail>
            <detail>
              <CNo>CNo8</CNo>
              <Namtt>0.8</Namtt>
            </detail>
            <detail>
              <CNo>CNo9</CNo>
              <Namtt>1.2</Namtt>
            </detail>
          </details>
        </detailGrouping>
      </GrpDet>
    </CLinv>

    Sorry This is the correct Data:
    <?xml version="1.0" encoding="utf-8"?>
    <CLinv xmlns="http://www.sdfsfdfsfd.com">
      <billCom xmlns="">billCom1</billCom>
      <remittance xmlns="">
        <remCom>remCom1</remCom>
      </remittance>
      <summary xmlns="">
        <title>title1</title>
        <TBAmt>1</TBAmt>
        <totalNC>1</totalNC>
        <accountAging>
          <past3DAm>1</past3DAm>
          <tPDe>1</tPDe>
        </accountAging>
        <items>
          <item>
            <itNo>1</itNo>
            <NC>1</NC>
          </item>
          <item>
            <itNo>23</itNo>>
            <NC>23</NC>
          </item>
          <item>
            <itNo>34</itNo>
            <NC>34</NC>
          </item>
        </items>
      </summary>
      <GrpDet xmlns="">
        <detailGrouping>
          <grouping>grouping1</grouping>
          <details>
            <detail>
              <CNo>CNo1</CNo>
              <Namtt>1</Namtt>
            </detail>
            <detail>
              <CNo>CNo2</CNo>
              <Namtt>23</Namtt>
            </detail>
            <detail>
              <CNo>CNo3</CNo>
              <Namtt>34</Namtt>
            </detail>
          </details>
        </detailGrouping>
        <detailGrouping>
          <grouping>grouping2</grouping>
          <details>
            <detail>
              <CNo>CNo4</CNo>
              <Namtt>0.9</Namtt>
            </detail>
            <detail>
              <CNo>CNo5</CNo>
              <Namtt>1.1</Namtt>
            </detail>
            <detail>
              <CNo>CNo6</CNo>
              <Namtt>23</Namtt>
            </detail>
          </details>
        </detailGrouping>
        <detailGrouping>
          <grouping>grouping3</grouping>
          <details>
            <detail>
              <CNo>CNo7</CNo>
              <Namtt>34</Namtt>
            </detail>
            <detail>
              <CNo>CNo8</CNo>
              <Namtt>0.8</Namtt>
            </detail>
            <detail>
              <CNo>CNo9</CNo>
              <Namtt>1.2</Namtt>
            </detail>
          </details>
        </detailGrouping>
      </GrpDet>
    </CLinv>

  • How to populate data from table to form in popup

    Hi
    I am using jdev 11.1.2.1.0
    I created a table by dragging and doping a view object data control.
    I take a pop up which invoke on click of a button
    I drop a dailog box in popup and in dialog box i drop the same view object data control.
    Now I am selecting the row of table and clicking on button to invoke popup it display the form populated by selected row of table only for the first time
    Again when I am selecting another row the popup does not displaying selected row.
    I displays only that row which i select first time.
    Please solve this problem
    Thanks

    did you set the Content Delivery for the popup to lazyUnchached?

  • How to populate data in TargetCube from SourceCube for a particular product/currency dimension selected in form1.

    Hi,
    Need help regarding Business rule scenario "How to populate data in "Target Form (plantype2)" from "Source Form(plantype1)" for a particular product/currency dimension combination selected in form1"
    Scenario 1) :  I have data for Product(Computer)/Currency(USD) dimension combination in Source Form
                        When i open Target Form and then select a Product(Computer)/Currency(USD) combination and then right click on form to invoke a Business rule to get data for this same                     product/currency combination from Source Form.
    Scenario 2) : If there isnt any data in Source Form for product(Computer)/Currency(USD) combination, then the data for product(computer)/Currency(Default Currency) to be populated into Target                     Form.
    The members in Currency Dimension (Shared Dimension) are USD & Default Currency.
    Can anyone please help.
    Thanks,
    Rajkumar

    Adding to what Celvin Kattookaran has said
    You can either write a Business Rule / Calculation script with @XREF function and also you can check condition if there is data in USD then populate USD else "Default currency"
    If you want that data in source to be available in target, then you can use @XWRITE in a rule from source cube to push the data to Target.
    Amarnath
    ORACLE | Essbase

  • How to populate data into a tabular datablock from a cursor in oracle forms

    Hello experts,
                  I am new in oracle forms.I am using Oracle forms 11g with weblogic server 10.3.5 at windows 7.My issue is that I am trying to populate data from a cursor into a tabular datablock(record number property is set to 5).I am using a button press trigger with code as:
    declare
        cursor c3 is  select empno,ename from emp;
    begin
        go_block('C');
        first_record;
        loop
        open c3;
        Fetch C3 into :c.t1,
    :c.t2;
    Exit when :system.last_record = 'TRUE';
    next_record;
    Close C3;
        End loop;
        end;
    Everything is OK here except,I have 5 record rows in C datablock but only first record is fetched into datablock.I want all records are fetched into data block
    Thank you
    regards
    aaditya

    Yes
    when i m using below query,so binary data display not display actual format
    select UTL_RAW.CAST_TO_VARCHAR2 (DBMS_LOB.SUBSTR(SOAPRTFDESC,10,1)) from soaptxsection

  • How to populate data in PAY_PEOPLE_GROUPS table (People Group Flexfiled)

    Hello
    We are migrating the data from one oracle instance to another oracle instance which are in same version of Oralce Applications 11.5.10.2. As a part of migration can anybody let me know how to populate data in "People Group Key Flexfiled" (PAY_PEOPLE_GROUPS table), ideally I will create or update employee records from the source instance to destination instance, so while creating or updating the employee records in can pass people_group_id while calling to the assignment api but my question here is before passing group id to the api i should have the data populated in PAY_PEOPLE_GROUPS TABLE so that i can fetch the group id as per the combination and pass it in to the api.. please suggest...

    Thanks for your information! by any chance do you have any sample code which will create/update assignments with People Group Flexfield; when i check "hr_assignment_api.update_emp_asg_criteria" it only has parameter to pass people group id and not having segments parameters to pass individual segments.
    Also let me know the links if you have any for all HR API guide which will help me to develope the interfaces...
    My requirement is we have two instances in which in one instance we are treating as source for HR which will be used to master for all HR related activities and we are planning to develope an interface which will bring master instance in sync with dummy instance.

  • Populate data from internal table

    Hi Experts,
    DATA: BEGIN OF it_tables OCCURS 0,
              file(30),
              tabname TYPE tabname,
              END OF it_tables.
    DATA: ldo_data TYPE REF TO data,
               ld_tabnam TYPE tabname.
    FIELD-SYMBOLS: <lt_itab> TYPE table.
      ld_tabnam = it_tables-tabname.
      CREATE DATA ldo_data TYPE STANDARD TABLE OF (ld_tabnam).
      ASSIGN ldo_data->* TO <lt_itab>.
      ld_tabnam = it_tables-file.
    In the above code it_tables-tabname contains the structure name by which <lt_itab> structure is declared. it_tables-file contains the internal table name.
    Now the next step is, i want to populate data from the internal table using ld_tabnam into <lt_itab>.
    Is this possible?
    Thanks & Ragards
    Akshay

    HI,
    Refer to this link..how to populate the dynamic internal table
    How to populate data into Dynamic Internal Table.

  • How to populate data in a JTable?????????

    hi there
    can anyone tell me how to populate data in a JTable? when a table is displayed, the table should have data retrieved from a file. thank you.

    Hi,
    it is correct, that the best way to learn about JTable is to read the online tutorial about JTable. To give you a quick guideline, where to start your implementation, I will add this:
    A JTables data is hold in a TableModel. TableModel is an interface, so if a class implements this interface correctly, you can simply populate the data hold by this TableModel by constructing a JTable this way
    JTable jt = new JTable(MyTableModel);
    where MyTableModel is your class, which implements the TableModel interface.
    When JTable has to render a cell, it will call the getValueAt(...) method of the TableModel for example.Your implementation of this method must deliver the requested data - if you prefetch a bunch of data from a file and store it internally in this TableModel or fetch it from the file just in time, is up to you.
    greetings Marsian

  • How to extract data from ODS to non-SAP system

    Hi,
    Can anybody tell me, step by step, how to extract data from ODS to a non-SAP system?
    Is it possible to do it without programming effort? And is there volume limits for this kind of extraction?
    The non-SAP system is an unix system.
    Thanks in advance
    Ella

    Ella,
    You can look at it from the concept of a BADI / Infospoke
    Extract the data from the ODS to a Flat file / RDBMS using an infospoke. I am not sure as to how the infospoke loads data into the RDBMS ( did it very long ago ) but then you can push it into an RDBMS and I am sure it will be system neutral.
    Hope this helps...
    Arun
    Assign points if it helps

  • How to use CrossReference and DVM in ODI &how to populate data into Xref

    Can any one tell how to use Domain Value Maps and Cross Referencing in ODI?
    DVM or Domain Value Map are created and used in ESB console of SOA suite.
    My actual requirement is as follows:
    The below steps describe loading data from ERP Application 1 to ERP Application 2.
    1. The Source Application ERP APP1, populates the interface table using their native technology.
    2. A job scheduler invokes the Source side ODI Package.
    3. ODI then extracts the data from Source Interface table and populates the Target Interface table.
    4. After populating the Target interface table the ODI populates the X-ref table with App 1 ID and generated common ID.
    5. The ODI either deletes or updates the rows that were processed from the Source interface table.
    6. On the Target Application ERP APP2, the native application extracts data from target interface table and populates target database there by generating ERP Application 2 ID.
    7. A job scheduler on the Target application invokes the ODI package to populate the Application 2 ID onto the Xref table matching on the Common ID.
    I just want to know :
    1. How to populate data into the Xref table from Source datastore
    2. And if data is successfully laoded from target datastore to actual base table of target then how to populate the target id into the cross reference table.

    can anyone suggest me some answer, then it would be of great help?

  • How to populate data dynamically in WSelect web element.

    How to populate data dynamically in WSelect web element. what is the syntax of WSelect web element to populate data from the database

    Hi Jamie,
    There is no Url to download ackage, instead the link is taking here
    Crystal Reports webElements
    Can you give me correct link?

Maybe you are looking for

  • Premium World subscription doesnt seem to work

    I've activated the Premium subscription plan that came allong with my Surface. In my accountsettings It aslo shows up as activated. But when I try to call phone nummers (mobile or land) my Skype tells me that no subscriptioins are Active (no belance)

  • Core dump(abort) due to double free at STL string == operator,with mtmalloc

    We have a probrem; our program crashes due to SIGABRT. Our program is multithreaded (about 40 thread total),and uses libmtmalloc for more performance. By stack trace , when handling of '==' operator of STL string , free() and abort() is called like t

  • Photo Page Subscribe and Slideshow navigation buttons will not display?

    In iWeb 3.0 I have a slideshow for a newborn son...however, when you double click on the images to activate the scrolling image viewer (native in iWeb 3.0) it will not show the icons for subscribe, forward, backward, toggle thumbnails, etc. If anyone

  • Error with J1IA101

    Hi all, Whenever I am giving print command to get ARE1 print through T.code j1ia101, j1ia102 it showing me screen error  DYNPRO_MSG_IN_HELP . can you pl tell me how to rectify this? is there any problem with customization? I checked all setting from

  • Finder duplicates list of folders in sidebar

    Need help. My Finder is acting weird. It's duplicating the list of folders in the sidebar, making it an unnecessarily big window. It's just a mess. I've tried to change preferences, relaunched... Any idea anyone ? Thanks   Mac OS X (10.4.7)