Set item description (column 3) in matrix problem

Hello there,
I try to set field Dscription (column "3") in either Quotations or SalesOrders.
But B1 keeps popping up with Item picker list.
This is normal behaviour when you change this field and leave (without pressing CTRL), but how can I workaround this in SDK?
Thanks in advance.
Edited by: Harm van der Veen on Mar 2, 2009 11:56 AM
Version 2007A - PL 41
Dim oCell = DirectCast(Matrix.Columns.Item("3").Cells.Item(1), Cell)
Dim oBox = DirectCast(oCell.Specific, EditText)
oBox.String = "Variable Item Description"

Thanks for the answer.
It's not the most practical and clean method but it works for now.
Can't Freeze Form using this method however.
Dim oCell = DirectCast(Matrix.Columns.Item("3").Cells.Item(1), Cell)
oCell.Click()
MyApplication.SendKeys("Variable Item Description")
MyApplication.SendKeys("^{TAB}")

Similar Messages

  • Item description not filling in Sales and Purchase module screen

    Hi
    i am here with a problem, while selecting the item code in the Grid of Purchase and Sales module related screens like Sales order, Purchase order etc, the item description is not getting field, though i tried to select the item from the item Description column.
    Kindly help me with this problem
    regards
    Pradeep

    Hi Pradeep,
    Is your problem Solved then Please close Thread by Making Correct and helpful Answer.
    If your Problem is not Solved then Please check your default Warehouse in General Setting >>> Inventory Tab.
    I think Default Warehouse is not present in Item Master Data Inventory Tab.
    Try to Update Default Warehouse in General Setting >>>> Inventory Tab. You need to make Default Warehouse which is present in All Item Master Data >>>> Inventory Tab.
    Hope this Helps
    Regards:::::
    Atul Chakraborty

  • SO Item description missed

    Dear All,
    Would like to enquiry that the Item Description in the SO suddenly disappear.i have no idea of why, the user has no access right to add any column, only administrator is authorized to do so, so i assume no one updated the table column. it happened twice this week.
    Please kindly advise.
    Thank you.

    Dear All,
    Thank you for your advise.
    Dear Suda,
    I mean the Item Description column is unselected in the SO interface, i need to use the administrator right to login to the form setting to help the user to select the Item Description again.
    You are right, my server has multiple company databases! the user has no right for other database as it is another company's database, the user doesn't even has a user login account for other databases.
    Thank you

  • How to make an EditText with CFL act like a system "Item Description" ?

    Hello,
    I have added an EditText with a CFL linked to "lf_items".
    I want the EditText to act like a system "Item Description" EditText, so that when
    the user enters a value and presses on CTRL+TAB in it, a CFL event will not be triggered and the focus will simply be transfered to the next item.
    Does anybody know how to do that ?

    have found a solution.
    I wanted to have an EditText with a CFL pointing to
    SAPbouiCOM.BoLinkedObject.lf_Items .
    In sap's marketing document one can enter a free description to
    the "Item Description" column by using CTRL + TAB .
    I needed to build a similar solution.
    The answer I found was to:
    Track a CTRL+ TAB press,
    Read the value the user entered from the EditText.Value
    Totally stop the CFL event
    Do oMatrix.FlushToDataSource()
    Write the value to the DBDataSource of the user table
    Do oMatrix.LoadFromDataSource()
    Allow the CFL event to run as usual.
    Cheers

  • Can I make auto layout of Matrix Chart after setting fixed rows/columns ?

    Can I make auto layout of Matrix Chart after setting fixed rows/columns ?
    I want to make Matrix Chart to auto layout to zooming out a chart of filter.
    Matrix Chart's layout is AUTO layout at creating.
    Matrix Chart layout can fix specfic rows / columns from layout toolbar.
    BUT fixed layout's Matrix Chart does not zoom a chart of filter.
    Regards,
    Yoshihiro Kawabata
     

    Hi Yoshihiro - at the moment if a specific number of row/columns has been set for small multiples the chart will maintain these proportions even after filtering.
    If the chart hasn't had a set row/column dimensions set it will automatically be re-laid out when filtered however.

  • Matrix problems

    I have created an addon for the sales order form.
    I would like the addon to prevent the user from leaving the quantity field until a specific condition is met, which is determined by a query which is based on the item and quantity of the specific line.
    For example if on line 2 of the matrix there is an item '1111' then a query is run using that item and if the specific result is 0 then the user must not be able to leave the quantity field on line 2.
    This is my code so far:
    if (pVal.FormType == 139 && pVal.ItemUID == "38" && pVal.ColUID == "11" && pVal.EventType == SAPbouiCOM.BoEventTypes.et_VALIDATE)
    but this runs in an infinite loop and doesn't allow the user to change the quantity.
    Any ideas?

    Hi and thanks for the reply. Maybe I wasn't too clear. The code for querying the database and getting a result works fine with my addon. The problem is catching the event. It seems to run in an infinite loop when I set the quantity field as active. This is my full code:
                    if (pVal.FormType == 139 && pVal.ItemUID == "38" && pVal.ColUID == "11" && pVal.EventType == SAPbouiCOM.BoEventTypes.et_VALIDATE)
                    try
                        oItem = oForm.Items.Item("14");
                        oText = (SAPbouiCOM.EditText)(oNewItem.Specific);
                        if (oText.Value.ToString() == "Pick List")
                            //itemcode
                            oText = ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("38").Specific)).Columns.Item("1").Cells.Item(pVal.Row).Specific);
                            string it = oText.Value.ToString();
                            //quantity
                            oText = ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("38").Specific)).Columns.Item("11").Cells.Item(pVal.Row).Specific);
                            string q = oText.Value.ToString();
                            //Whs
                            oText = ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("38").Specific)).Columns.Item("24").Cells.Item(pVal.Row).Specific);
                            string w = oText.Value.ToString();
                            string query = "SELECT " +
            "CASE WHEN " +
            "( " +
            "(Convert(numeric(19,6),'" + q + "')>(SELECT OnHAND FROM OITW WHERE ItemCode='" + it + "' AND WhsCode= '" + w + "')) " +
            "OR " +
            "(SELECT SUM(OnHand)-SUM(isCommited)-Convert(numeric(19,6), '" + q + "') FROM OITW WHERE ItemCode= '" + it + "' GROUP BY ItemCode)<=0 " +
            ") " +
            "THEN '0' " +
            "ELSE '1'" +
            "END 'Test'";
                            oForm.DataSources.DataTables.Item("Descript").ExecuteQuery(query);
                            userDT = oForm.DataSources.DataTables.Item("Descript");
                            string s = userDT.Columns.Item("Test").Cells.Item(0).Value.ToString();
                            if (s == "0")
                                globals.SBO_Application.SetStatusBarMessage("Not enough Stock in Warehouse!!!!", SAPbouiCOM.BoMessageTime.bmt_Medium, true);
                                oText = ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("38").Specific)).Columns.Item("11").Cells.Item(pVal.Row).Specific);
                                oText.Active = true;
                    catch
    Edited by: Costas Ioannou on Jun 17, 2008 1:29 PM

  • HI can u help me to sort out this Matrix Problem

    i ve used the following codes to create matrix in SAP 2007 A Pl 15.
    Set objItem = frmBPMaster.Items.Add("CCMatrix", it_MATRIX)
            Set oMatrixCC = objItem.Specific
            Set oColumns = oMatrixCC.Columns
            oMatrixCC.Layout = mlt_VerticalStaticTitle
    Set objItem = frmBPMaster.Items.Add("CCMatrix", it_MATRIX)
            objItem.Left = 175
            objItem.Width = 230.59
            objItem.Top = 135
            objItem.Height = 150
            objItem.ToPane = 2
            objItem.FromPane = 2
            Set oMatrixCC = objItem.Specific
            Set oColumns = oMatrixCC.Columns
            oMatrixCC.Layout = mlt_VerticalStaticTitle
            Set oColumn = oColumns.Add("#", it_EDIT)
            oColumn.Width = 2
            oColumn.RightJustified = True
            oColumn.Editable = False
            oColumn.DataBind.SetBound True, "", "20_CC"
            Set oColumn = oColumns.Add("CCName", it_EDIT)
            oColumn.TitleObject.Caption = "Credit Card Name"
            oColumn.Width = 16  
            oColumn.Editable = True
            oColumn.DataBind.SetBound True, "", "21_CC"
            oMatrixCC.Clear
            oMatrixCC.AddRow
            oMatrixCC.SetLineData 1      
            oMatrixCC.Columns("#").Visible = False
            oMatrixCC.AutoResizeColumns
    finally It shows multiple of columns in that matrix but i just want like this
    CCname -
    Type      -
    NO        -

    No, I didnt meant it so. Through SDK you arent able to do it with matrix object. The way which is functional I found is create form in screen painter -> you`ll receive srf file (xml) and in this xml is something as
    <action type="add"><item uid="matrixMZ" type="127" left="10" tab_order="0" width="1180" top="53" height="450" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1"><AutoManagedAttribute/><specific SelectionMode="1" layout="0" titleHeight="16" cellHeight="16"><columns>
    and there is cellHeight="16" ...
    The other way is save form as xml (property of form, example is in sdk help) and load it with height property.

  • Column addition in Matrix through XML

    Hi all,
    I am unable to add columns in userdefined matrix in system form through XML.
    After loading the XML in the system form the matrix is appearing without columns. 
    SSPL_FUNCTIONS.Common.ReplaceUIDandLoadToB1("SSPL_FRM4_150", FormUID)    
    <item uid="MTSALHD1" type="127" left="16" tab_order="0" width="210" top="309" height="120" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific SelectionMode="0" layout="0" titleHeight="21" cellHeight="16">
                    <columns>
                      <action type="add">
                        <column uid="col0" type="16" title="#" description="" visible="1" AffectsFormMode="1" width="20" disp_desc="0" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="0" table="" alias="" />
                          <ExtendedObject />
                        </column>
                        <column uid="CLSALGR_CD" type="113" title="Salary Group" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_SALGR_CD" />
                          <ValidValues>
                            <action type="add">
                              <ValidValue value="SG01" description="BASIC" />
                              <ValidValue value="SG02" description="DA" />
                              <ValidValue value="SG03" description="HRA" />
                              <ValidValue value="SG04" description="CONVEYANCE" />
                              <ValidValue value="SG05" description="OTHERS PAY" />
                              <ValidValue value="SG06" description="MISC PAY" />
                              <ValidValue value="SG07" description="PF" />
                              <ValidValue value="SG08" description="ESI" />
                              <ValidValue value="SG09" description="I_TAX" />
                              <ValidValue value="SG10" description="OTHER DEDUCTION" />
                              <ValidValue value="SG11" description="INSURANCE" />
                              <ValidValue value="SG12" description="PERSONAL LOAN" />
                              <ValidValue value="SG13" description="ADVANCE TO EMPLOYEE" />
                              <ValidValue value="SG14" description="TOUR ADVANCE" />
                              <ValidValue value="SG15" description="CONTROL 1" />
                              <ValidValue value="SG16" description="PENSION" />
                              <ValidValue value="SG17" description="CONTRIBUTION" />
                              <ValidValue value="SG18" description="MISC DEDN" />
                              <ValidValue value="SG19" description="CONTROL 2" />
                            </action>
                          </ValidValues>
                          <ExtendedObject />
                        </column>
                        <column uid="CLSALHD_CD" type="113" title="Salary Head" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_SALHD_CD" />
                          <ValidValues>
                            <action type="add">
                              <ValidValue value="SH01" description="BASIC" />
                              <ValidValue value="SH02" description="DA PAY" />
                              <ValidValue value="SH03" description="HRA PAY" />
                              <ValidValue value="SH04" description="CONVEYANCE" />
                              <ValidValue value="SH05" description="OTHER PAY" />
                              <ValidValue value="SH06" description="MISC PAY" />
                              <ValidValue value="SH07" description="PF" />
                              <ValidValue value="SH08" description="ESI" />
                              <ValidValue value="SH09" description="I_TAX" />
                              <ValidValue value="SH10" description="OTHER DEDN" />
                              <ValidValue value="SH11" description="INSURANCE" />
                              <ValidValue value="SH12" description="PERSONAL LOAN PR" />
                              <ValidValue value="SH22" description="PERSONAL LOAN INT" />
                              <ValidValue value="SH13" description="ADVANCE TO EMPLOYEE" />
                              <ValidValue value="SH14" description="TOUR ADVANCE" />
                              <ValidValue value="SH15" description="GROSS PAY" />
                              <ValidValue value="SH16" description="TOTAL DEDUCTION" />
                              <ValidValue value="SH17" description="NET PAY" />
                              <ValidValue value="SH18" description="PENSION" />
                              <ValidValue value="SH19" description="PF EMPLOYER CONTRIBUTION" />
                              <ValidValue value="SH20" description="ESI EMPLOYER CONTRIBUTION" />
                              <ValidValue value="SH21" description="MISC DEDN" />
                              <ValidValue value="SH23" description="PF GROSS" />
                            </action>
                          </ValidValues>
                          <ExtendedObject />
                        </column>
                        <column uid="CLINDVOPTN" type="121" title="Indv. Opt." description="" visible="1" AffectsFormMode="1" width="50" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_INDVOPTN" />
                          <ExtendedObject />
                        </column>
                        <column uid="CLSAL_AMT" type="16" title="Rate" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <databind databound="1" table="@SSPL_MR_EMPSALST" alias="U_SAL_AMT" />
                          <ExtendedObject />
                        </column>
                      </action>
                    </columns>
                  </specific>
                </item>
    Thanks
    Chitrita

    Hi Vitor,
    <?xml version="1.0" encoding="UTF-16"?>
    <Application>
      <forms>
        <action type="update">
          <form appformnumber="60100" FormType="60100" type="4" BorderStyle="4" uid="F_86" title="Employee Master Data" visible="1" default_button="" pane="3" color="3" left="148" top="10" width="694" height="501" client_width="686" client_height="467" AutoManaged="1" SupportedModes="15" ObjectType="171" mode="0">
            <datasources>
              <dbdatasources>
                <action type="add">
                  <datasource tablename="@SSPL_MR_EMPSALST" />
                </action>
              </dbdatasources>
              <userdatasources>
                <action type="add">
                 <datasource uid="UDS1" type="8" size="64000" />
                </action>
              </userdatasources>
            </datasources>
            <items>
              <action type="update">
                <!Header>
                <item uid="8" type="8" left="3" tab_order="0" width="124" top="75" height="16" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Position" />
                </item>
                <item uid="9" type="8" left="3" tab_order="0" width="124" top="93" height="16" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="CODESIG_CD" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Job Title" />
                </item>
                <!AdministrationTab>
                <item uid="58" type="4" left="130" tab_order="0" width="96" top="75" height="16" visible="0" enabled="1" from_pane="10" to_pane="10" disp_desc="0" right_just="0" description="" linkto="FRDTL" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="" alias="" />
                  </specific>
                </item>
                <!PersonalTab>
                <item uid="7" type="8" left="10" tab_order="0" width="104" top="259" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Gender" />
                </item>
                <item uid="42" type="113" left="115" tab_order="0" width="116" top="259" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="102" type="8" left="10" tab_order="0" width="104" top="276" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Date of Birth" />
                </item>
                <item uid="113" type="113" left="115" tab_order="0" width="116" top="276" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="103" type="8" left="10" tab_order="0" width="104" top="293" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Country of Birth" />
                </item>
                <item uid="106" type="16" left="115" tab_order="0" width="116" top="293" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="104" type="8" left="10" tab_order="0" width="104" top="310" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Marital Status" />
                </item>
                <item uid="105" type="113" left="115" tab_order="0" width="116" top="310" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="109" type="8" left="242" tab_order="0" width="70" top="314" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="No.of Children" />
                </item>
                <item uid="114" type="16" left="370" tab_order="0" width="20" top="314" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="108" type="8" left="242" tab_order="0" width="104" top="297" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="ID No." />
                </item>
                <item uid="115" type="16" left="370" tab_order="0" width="116" top="297" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="107" type="8" left="242" tab_order="0" width="104" top="246" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Citizenship" />
                </item>
                <item uid="112" type="113" left="370" tab_order="0" width="116" top="246" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="110" type="8" left="242" tab_order="0" width="104" top="263" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Passport No." />
                </item>
                <item uid="116" type="16" left="370" tab_order="0" width="116" top="263" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="111" type="8" left="242" tab_order="0" width="104" top="280" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Passport Expiretion Date" />
                </item>
                <item uid="117" type="16" left="370" tab_order="0" width="116" top="280" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <!Finance>
                <item uid="88" type="8" left="435" tab_order="0" width="126" top="273" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="4" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Bank Details" />
                </item>
                <item uid="89" type="8" left="435" tab_order="100940" width="104" top="305" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="80" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Bank" />
                </item>
                <item uid="80" type="113" left="504" tab_order="100540" width="116" top="305" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="85" type="8" left="435" tab_order="0" width="104" top="369" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="77" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Account No." />
                </item>
                <item uid="77" type="16" left="504" tab_order="0" width="116" top="369" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                </item>
                <item uid="87" type="8" left="435" tab_order="100900" width="104" top="321" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="79" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Branch" />
                </item>
                <item uid="79" type="16" left="504" tab_order="100560" width="116" top="321" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
               </item>
              </action>  
              <action type="add">
                <item uid="CODEPT" type="113" left="130" tab_order="0" width="96" top="110" height="15" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_DEPT" />
                  </specific>
                </item>
                <item uid="CODESIG_CD" type="113" left="130" tab_order="0" width="96" top="93" height="16" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_DESIG_CD" />
                  </specific>
                </item>
                <item uid="BTSKILL" type="4" left="376" tab_order="0" width="126" top="345" height="21" visible="1" enabled="1" from_pane="3" to_pane="3" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Skill Details" />
                </item>
                <item uid="STCATEGORY" type="8" left="10" tab_order="0" width="104" top="242" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Category" />
                </item>
                <item uid="COCATEGORY" type="113" left="115" tab_order="0" width="116" top="242" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_CATEGORY" />
                  </specific>
                </item>
                <item uid="STBLDGRP" type="8" left="9" tab_order="0" width="104" top="326" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Blood Group" />
                </item>
                <item uid="COBLDGRP" type="113" left="115" tab_order="0" width="116" top="326" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_BLDGRP" />
                  </specific>
                </item>
                <item uid="STHEIGHT" type="8" left="9" tab_order="0" width="104" top="341" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Height" />
                </item>
                <item uid="ETHEIGHT" type="16" left="115" tab_order="0" width="116" top="341" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_HEIGHT" />
                  </specific>
                </item>
                <item uid="STWEIGHT" type="8" left="9" tab_order="0" width="104" top="356" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Weight" />
                </item>
                <item uid="ETWEIGHT" type="16" left="115" tab_order="0" width="116" top="356" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_WEIGHT" />
                  </specific>
                </item>
                <item uid="STIDMRKS" type="8" left="9" tab_order="0" width="104" top="371" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Identification Marks" />
                </item>
                <item uid="ETIDMRKS" type="16" left="115" tab_order="0" width="116" top="371" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_IDMRKS" />
                  </specific>
                </item>
                <item uid="STMJINJ" type="8" left="9" tab_order="0" width="104" top="386" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Major Injury" />
                </item>
                <item uid="ETMJINJ" type="16" left="115" tab_order="0" width="116" top="386" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_MJINJ" />
                  </specific>
                </item>
                <item uid="STMJSURG" type="8" left="9" tab_order="0" width="104" top="401" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Major Surgery" />
                </item>
                <item uid="ETMJSURG" type="16" left="115" tab_order="0" width="116" top="401" height="14" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_MJSURG" />
                  </specific>
                </item>
                <item uid="CBMETRCITY" type="121" left="500" tab_order="0" width="121" top="242" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Metro City (For IT)" AffectsFormMode="1" val_on="Y" val_off="N">
                    <databind databound="1" table="OHEM" alias="U_METRCITY" />
                  </specific>
                </item>
                <item uid="CBPHCHLL" type="121" left="500" tab_order="0" width="121" top="260" height="15" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Physically Challenged" AffectsFormMode="1" val_on="Y" val_off="N">
                    <databind databound="1" table="OHEM" alias="U_PHCHLL" />
                  </specific>
                </item>
                <item uid="BTFAMILY" type="4" left="370" tab_order="0" width="121" top="340" height="20" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Family Details" />
                </item>
                <item uid="BTSTATRY" type="4" left="370" tab_order="0" width="121" top="370" height="20" visible="1" enabled="1" from_pane="4" to_pane="4" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Statutory Details" />
                </item>
                <item uid="RTUPPER" type="100" left="557" tab_order="0" width="107" top="224" height="1" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific />
                </item>
                <item uid="STPER_CATG" type="8" left="316" tab_order="0" width="99" top="31" height="15" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Person Category" />
                </item>
                <item uid="COPER_CATG" type="113" left="426" tab_order="100031" width="95" top="31" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="100031">
                    <databind databound="1" table="OHEM" alias="U_PER_CATG" />
                  </specific>
                </item>
                <item uid="STDIVISION" type="8" left="316" tab_order="0" width="99" top="48" height="15" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Division" />
                </item>
                <item uid="CODIVISION" type="113" left="426" tab_order="100031" width="95" top="48" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="100031">
                    <databind databound="1" table="OHEM" alias="U_DIVISION" />
                  </specific>
                </item>
                <item uid="COPOSITION" type="113" left="130" tab_order="100032" width="96" top="75" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="100032">
                    <databind databound="1" table="" alias="UDS1" />
                  </specific>
                </item>
                <item uid="STPAY_MODE" type="8" left="16" tab_order="0" width="97" top="289" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Pay Mode" />
                </item>
                <item uid="COPAY_MODE" type="113" left="119" tab_order="0" width="76" top="289" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="1" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific AffectsFormMode="1" TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_PAY_MODE" />
                  </specific>
                </item>
                <!--MatrixColumns Addition Problem -->
                <item uid="MTSALHD1" type="127" left="16" tab_order="0" width="210" top="309" height="120" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific SelectionMode="0" layout="0" titleHeight="21" cellHeight="16">
                    <columns>
                      <action type="add">
                        <column uid="col0" type="16" title="#" description="" visible="1" AffectsFormMode="1" width="20" disp_desc="0" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLSALGR_CD" type="113" title="Salary Group" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLSALHD_CD" type="113" title="Salary Head" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="1" editable="0" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLINDVOPTN" type="121" title="Indv. Opt." description="" visible="1" AffectsFormMode="1" width="50" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                        <column uid="CLSAL_AMT" type="16" title="Rate" description="" visible="1" AffectsFormMode="1" width="60" disp_desc="0" editable="1" right_just="0" val_on="Y" val_off="N" backcolor="-1" forecolor="-1" text_style="0" font_size="-1">
                          <AutoManagedAttribute />
                        </column>
                      </action>
                    </columns>
                  </specific>
                </item>
                <!--MatrixColumns Addition Problem -->
                <item uid="STTAX_PAN" type="8" left="435" tab_order="0" width="90" top="255" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETTAX_PAN" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Income Tax PAN" />
                </item>
                <item uid="ETTAX_PAN" type="16" left="527" tab_order="0" width="90" top="255" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_TAX_PAN" />
                  </specific>
                </item>
                <item uid="CBSAL_ACC" type="121" left="435" tab_order="0" width="90" top="289" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Salary Account" AffectsFormMode="1" val_on="Y" val_off="N">
                    <databind databound="1" table="OHEM" alias="U_SAL_ACC" />
                  </specific>
                </item>
                <item uid="STBRS_CODE" type="8" left="435" tab_order="0" width="90" top="337" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETBRS_CODE" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="BRS Code" />
                </item>
                <item uid="ETBRS_CODE" type="16" left="527" tab_order="0" width="90" top="337" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_BRS_CODE" />
                  </specific>
                </item>
                <item uid="STMICRCODE" type="8" left="435" tab_order="0" width="90" top="353" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETMICRCODE" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="MICR Code" />
                </item>
                <item uid="ETMICRCODE" type="16" left="527" tab_order="0" width="90" top="353" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_MICRCODE" />
                  </specific>
                </item>
                <item uid="STDR_CARD" type="8" left="435" tab_order="0" width="90" top="385" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETDR_CARD" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Debit Card No." />
                </item>
                <item uid="ETDR_CARD" type="16" left="527" tab_order="0" width="90" top="385" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_DR_CARD" />
                  </specific>
                </item>
                <item uid="STCR_CARD" type="8" left="435" tab_order="0" width="90" top="401" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="ETCR_CARD" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific caption="Credit Card No." />
                </item>
                <item uid="ETCR_CARD" type="16" left="527" tab_order="0" width="90" top="401" height="15" visible="1" enabled="1" from_pane="7" to_pane="7" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
                  <AutoManagedAttribute />
                  <specific TabOrder="0">
                    <databind databound="1" table="OHEM" alias="U_CR_CARD" />
                  </specific>
                </item>
              </action>
            </items>
            <DataBrowser BrowseBy="33" />
          </form>
        </action>
      </forms>
    </Application>
    thanks
    Chitrita

  • How to set a custom column in a workflow task.

    Hello,
    I'm looking for some assistance a bit with how to set a custom column in a Workflow Task.
    I have a List Workflow that starts when an item is created in a list. The workflow, platform type SharePoint 2013, starts a new task, Task1, with Content Type 1. This Content Type has a custom column called Age. Once the Task1 is completed a new task, Task2,
    with Content Type 2, starts and has the same column Age, as Task1.
    How can I populate the Age column in Task2 with the content of the Age column in Task1?
    Since I start the task by running "Assign a task to ..." Action I was thinking to copy the Age column from the Task1 to the list item that started Task1, which has a column Age as well, and then in Task2 to start another workflow - which is associated
    with the Content Type 2,  that would try to read the Age column from the list item that started Task2, which was set once Task1 was competed - I know it's complex but this is how I was thinking. 
    The problem with this approach is that I can't get a reference to the list item that started Task2 to read the Age from the list item.
    Is there a better approach? I use SharePoint Designer 2013 to design all this.
    Any assistance is appreciated.
    Thank you.

    Hello Sebastian,
    you can get the Age column from Task 1 and then update the Task 2 Age column with that value. I am not sure why you want to run another workflow on Task 2.
    You can perform below steps to set Age column from Task 1 to Task 2.
    1.  Create Task 1 using Assign a task , wait till the task is completed.
    2. Get the Age column value based on Task 1 once the task is completed.
    3.Create Task 2 using Assign a task ,  uncheck wait till the task is completed option.
    4. Update the Task 2 with Age column in Task1.
    5. Use Wait for the field to equal value , check for Task Status is completed or not.
    >>The problem with this approach is that I can't get a reference to the list item that started Task2 to read the Age from the list item.
    you can get the related item from task list item to get the main list item.
    Other option is, Use Javascript and CSOM  in task edit form to get the Age column from Task1 and prepoluate the Age value when Task2 is opened.
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to add a Description Column in the Content Panel (Bridge CS5)

    Hi,
    Is it possible to add a Description Column in the Content Panel. If so, how?
    I'm talking about the Description from the IPTC Core data and I'm using Bridge CS5.
    Thanks in advance,
    Frank

    This is the screenshot of the Metadata Workspace with the Content Panel (not Metadata Panel). As you can see it shows Name, Label, Keywords etc. but it's not possible to show Description in that list as a column.
    I still agree that it would be a big bonus if you could alter this workspace with description field (even with more lines etc) but what Curt shows you might be an alternative. I couldn't help noticing that you have not created your own custom workspaces.
    Try and play with this. You have the option to divide the window in 3 columns max but you can create different panels as a row in 1 column.
    Grabbing a tab and move it to a new location until a single blue line appears (between the borders, a bit tricky). A vertical blue line means as a column and a horizontal line means a row. A surrounding blue line means same panel but adding as a tab. You can rearrange the tabs by dragging to left or right. under the menu window you can select which panels are visible or use right mouse click menu on top of a panel to choose.
    Sadly enough only 3 columns and only one panel of it's kind per workspace, but you can resize the panels also to your own workflow needs.
    In Bridge preferences you can change the colors for background in the general tab and in the metadata tab you can select what info to view in certain sections. Personally I have set my IPTC to view only description, keywords, date created and a few other subjects.
    That is the nice thing about Bridge, creating custom workspaces, save them and being able to recreate them without problems :-)
    I attach some screenshot of my daily workflow (with the luxury of having a 30' screen) but there are plenty of other options possible, don't forget to name and save your workspace.

  • Display item description when manually entering a journal

    Is it possible to display the item description when users enter and/or display a manual journal?
    (it already has been discussed on this forum that one cannot display the item description easily in the master data list, I assume that my query will be the same, hopefully someone will tell us how to do it)

    The item descriptions are included in the manual documents in release 6.0 (we have also enhancement package 3).
    This is set in the dcoument type configuration in the tab labeled "document field options" in column "Name".

  • Add data in a user defined column in System matrix

    Hello All,
    I have created a User defined column in the Goods Issue Form
    When I choose a particular order, I get values in the matrix defined by system
    Based on this selection, I fire a query which returns a value and this value has to be
    displayed in the user defined column.
    I am trying to add a value to this column but I get the following error message
    Form Item is not Editable
    Here is the code written in form activate event
           code = (EditText)matrix.Columns.Item(1).Cells.Item(i).Specific;
                    string strcode = code.Value.ToString();
                    string str;
                    str = "select itemCode from owor where Docnum='" + strcode + "'";
                    RecSet.DoQuery(str);
                    e = (EditText)matrix.Columns.Item(15).Cells.Item(i).Specific;
                    strcode = RecSet.Fields.Item(0).Value.ToString();
                    try
                        matrix.Columns.Item(15).Editable = true;
                        e.String = strcode;
                        matrix.Columns.Item(15).Editable = false;
                    catch (System.Runtime.InteropServices.COMException com_err)
    Regards
    Nirmala B

    On system forms, you cannot update the DataSource (DBDataSource) of system matrixes, SAP blocks it.
    The only solution is to set the column visible and editable, and write in it with the matrix cell set value method.
    The downside is that the user will be able to see and edit the values (unless you catch all edit and click events to that cell).

  • Is it Possible to link user defined column of system matrix ?

    HI All,
    Is it possible to link (with ExtendedObject) user defined column  of system matrix?
    For Example, In purchase order form, I have added one column called U_ItemCode (through Tools-User Defined Fields-Marketing Doc). I want to give drill down to Item master.
    Here is the code:
    OColumn = OMatrix.Columns.Item("U_ItemCode")
    olink = OColumn.ExtendedObject
    olink.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_Items
    the last line gives me 'Object refrence not set to an instance of the object' error.
    For user form, it works fine (since it has the column defined as LinkedColumn in screen painter). How can we do this in system matrix?
    thanks in advance
    regards,
    Binita

    Hi Binita,
    nice to see you
    i mean the following:
    1.) add the field in marketing document lines -> you need this to store the values in database
    but this user field column will not have the arrow so we do ...
    2.) you also add a linked column to the system matrix. you can copy the values from the udf column
    to your manual added column and than you can use the arrow. (maybe you should disabled this column)
    the result is you have two columns - the udf column and the linked manual column
    i hope you know what i mean - very complicated
    regards
    David

  • Changing Item Description in Sales document through programmatically.

    Hi
    How to change the sales document Item Description programmatically.  I have one customization form, this will open when ever the user tabbed out from Quantity column. In that user form , user might be change the item description. I want to replace the sales document item description with the new one. if i manually replace it , the standard Item CFL will be automatically popup.
    How can i resolve this?
    Regards
    Senthil

    Hi petr,
    Thanks for suggestion, I have already tried this, first of all i have change the Lines description and call the Ctrl+Tab functionality using sendkey method, but problem is after assigning the new description the system will open the CFL immediately.
    Thanks
    Senthil

  • Formatted Search is not auto-refreshed when Item Description changes

    Hi all,
    I have a UDF "Packing Details" at Goods Receipt screen row level.
    My formatted search setting is the field should be auto-refreshed when Item No is changed.
    1) I press TAB at Item No and choose an Item, Packing Details UDF will auto-refresh. (No problem)
    2) However, if i press TAB at Item Description and choose an Item, Packing Details UDF will not auto-refresh. I need to press SHIFT+F2 to make packing details appear.
    I try the same setting at Goods Receipt PO, the Packing Details UDF will refresh automatically regardless i choose the item from Item No or Item Description.
    Is anyone face this problem before?
    Thanks.
    Regards,
    Lay Chin

    Thanks Gordon.
    I have told this to customer before, but they prefer to have 'Refresh' on both Item Code and Item Description.
    I think we have no choice but let the customer to choose either one, right?
    Thanks.
    Regards,
    Lay Chin

Maybe you are looking for

  • Creation of a a payment file variant - "RFFOAVIS"

    Hi Need help on Creation of a a payment file variant for post finance customer collection (debit direct) Program "RFFOAVIS" Any help mostly appreciated Thanks V.S.K

  • How do i install a cd player in a 1998 TOYOTA CAMRY XLE V6?

    Hi everybody.  Can anyone help me out in installing a cd player in a 1998 TOYOTA CAMRY XLE V6? The problem is how do i install it? I bought the harness from future shop making sure its the right one for the car's model, year etc. The harness has 2 pl

  • Using VPD in APEX

    I need to use a VDP in APEX to restrict access to seeing some records. In other oracle apps I did with VPD, I did these steps: 1) Created a view (SP_TEACHER) 2) Created a function to dynamically set the predicte (where) 3) Created a policy dbms_rls.a

  • Workflow and WD integration

    Hi, We are implementing Workflow and Webdynpro ABAP integration.Employee submits competences from portal, this triggers an approval task to the manager .Manager will approve the task from worklist and when he clicks on task, Web dynpro application op

  • Assign Chief Position to custom OM Object Business Unit

    Hello Is it recommended or doable to assign chief position via 012 relationship to the top most custom object Business  Unit. Currently the  chief position relationships is for Org Units. We would like to keep Chief Position to OU, also if possible t