Copy down data from one row to another. - Intergraph Smart Materials - 10.2 - Help - Hexagon

Intergraph Smart Materials Web Help (10.2)

Language
English
Product
Intergraph Smart Materials
Subproduct
Web
Search by Category
Help
Smart Materials/Smart Reference Data Version
10.2

You can copy data from one row to another following the steps below. However this functionality is available only in some of the select screens. (See the note below)

  1. Turn off the Grid Edit mode, by clicking Edit in the interactive grid toolbar at the top.

  2. Click on the cell containing the data that you want to copy and press F8.

  3. Press Shift + Arrow to select the cells where you want to copy the data.

  4. Right click and click Copy Down.

  • This copy down functionality is available only in the following pages.

    • Maintain BOM

    • Position details

    • Maintain Requisition

    • Line Items

    • Quote Summaries

    • MRR Overview

    • MRR by Agreement

    • MRR by Release Notes

    • MRR by Direct Receive

    • MRR by Package

    • Material Receipt Header

    • Create MTR

    • MIR Overview

    • MIR Reservation

    • MIR Plates

    • MIR BOM Ident

    • MIR BOM Commodity

    • MIR Direct Issue 

  • HXGN_JS_CUSTOM is used in 10.1 to activate the data load and copy down functionality of Smart Materials Web in custom pages. To do this you need to update the package HXGN_JS_CUSTOM. To activate the data load option add applications and page to g_ig_data_import and to activate copy down add applications and page to g_ig_context_menu. See the code snippets below for more information.

  • Create or replace PACKAGE HXGN_JS_CUSTOM AS

    type g_func is table of boolean index by varchar2(30);

    To activate data load for custom application 901, page 100 and 101 type the following

    g_ig_data_import g_func := g_func(

    '901:100' => true,

    '901:101' => true);

    To activate data load for custom application 901, page 100 and 101 type the following

    g_ig_context_menu g_func := g_func(

    '901:100' => true,

    '901:101' => true);

    END HXGN_JS_CUSTOM;

  • The above code snippets will only work if your custom application supports editable grids for all columns.

  • Before installing a service pack the content of HXGN_JS_CUSTOM should be copied and inserted afterwards.