Referencing a MovieClip on stage through XML

Hello.
I have a swf with several MovieClip instances on the stage at
authoring time. For example, say I have mBuilding that contains
mFloor, that in turn contains mAppartment.
I have an xml file that contains data so the swf knows what
to do with the MovieClips.
I've been trying different things, but I'm still stumped. Can
anyone give me some advice?
Thanks in advance.

still no prevail, this is now what i got so far
AS3
var my_x:Number;
var my_y:Number;
var myCoord:XML;
var myXMLLoader:URLLoader = new URLLoader();
myXMLLoader.load(new URLRequest("coords.xml"));
myXMLLoader.addEventListener(Event.COMPLETE, processXML);
function processXML (e:Event):void{
    var myXML:XML = new XML(e.target.data);
    myCoord = myXML.pos1;
    sample_mc.x = my_x = Number(myCoord.@XPOSITION);
    sample_mc.y = my_y = Number(myCoord.@YPOSITION);
and the XML
< position>
< pos1 XPOSITION="100" YPOSITION="55">< /pos1>
< /position>
i know i'm just a beginner with AS but i really thought this was something simple. do i have obvious errors.

Similar Messages

  • OVM Server login through xml-rpc

    Hi,
    I installed OVM Server 2.2.1 on a x86 pc. Interested in remote control of OVM through xml-rpc, I try to login through xml-rpc. The python codes which are referenced from Xen API are:
    *>>> import xmlrpclib*
    *>>> server = xmlrpclib.Server("http://mypc:8006")*
    *>>> session = server.session.login_with_password("xxxx", "xxxx")*
    The OVM Server can't be login. The error message is:
    *{'Status': 'Failure', 'ErrorDescription': ['MESSAGE_METHOD_UNKNOWN', 'session.login_with_password']}*
    I have modified /etc/xen/xend-config.sxp as follows before login:
    *1. (xend-tcp-xmlrpc-server yes)*
    *2. (xend-tcp-xmlrpc-server-address 'mypc')*
    *3. (xend-tcp-xmlrpc-server-port 8006)*
    Then I restart xend.
    OVM Server support xml-rpc, since the communication between OVM Server and Manager is through xml-rpc. From feedback error message, the socket communciation is OK. I wonder whether xmlrpclib is modified, or the question lies on password and username?
    Thanks for any help.
    Edited by: 854681 on Apr 26, 2011 2:30 AM
    Edited by: 854681 on Apr 26, 2011 2:31 AM

    Hi,
    I would not mess around with xml-rpc, because the calls are not documented by Oracle.
    So if you change the OVS_AGENT/MANAGER it might be, that these calls change.
    As an alternative I would suggest either taking the web-service API, which the OVM Manager provides, or use ovmcli, if you prefer the commandline.
    Regards
    Sebastian

  • Help with delivering dynamic text through an external file, through XML?

    I'm struggling to find the best way to deliver dynamic text
    from an external file, through XML, to a Flash file.
    I use small Flash pieces to deliver multiple sets of content
    through a single .swf file. An example is here:
    http://www.esi-intl.com/public/government/federal.asp
    In the .swf file at the bottom, I'm using a three-scene .fla
    file. I'm putting the actionScript in the Actions layer atop each
    frame. Example:
    stop ();
    loadVarsText = new LoadVars();
    loadVarsText.load("fedNews.txt");
    //assign a function which fires when the data is loaded:
    loadVarsText.onLoad = function(success) {
    if (success) {
    trace("done loading");
    //Now that we know the data is loaded,
    //set the text content of the Text Field
    //with the instance name "scroller" equal to the
    //contents of the variable
    scroller.html=true;
    scroller.htmlText = this.var1;
    } else {
    trace("not loaded");
    In that .txt file, I'm putting the information like this:
    var1=<font face="tahoma,verdana,sans-serif" size="11px"
    color="#000000"><b><a href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'>DAU
    Grants ESI Course CON353
    Equivalency</a></b><br>Advanced Business Solution
    in Contracting (CON 353) is an equivalency for DAU's CON 3535
    course, Advanced Business Solutions for Mission Support. <a
    href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'><U><font
    color="#996633">Continue</font></U></a></font>
    So much of this is pick-ups from what I've researched in
    Google. I'm looking for a way I can feel more confident in my code,
    and also have that code follow CSS.
    Lastly, I recognize the problems in XML with using single
    quotes / double quotes, and the & symbol. This is one of my
    largest time sucks, and I'd like to find a better way to do this.
    Thank you

    Hi,
    Did you ever find a resolution to this? I'm having a similar
    issue that I can't seem to get multiline dynamic text working in
    CS3.
    The font is embedded but it just displays the first line, and
    then a blank. I'm sure this worked fine in Flash MX.
    Cheers, Ant

  • How to send a request and get a response through xml

    How to send a request and get a response through xml files?

    This is the code that works for me. Hope you find it useful.
         public static String sendHttpGetRequest(String endpoint, String requestParameters){
              String result = null;
              // Send a GET request to the servlet
              try{
                   // Send data
                   String urlStr = endpoint;
                   if (requestParameters != null && requestParameters.length () > 0){
                        urlStr += "?" + requestParameters;
                   URL url = new URL(urlStr);
                   HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                   conn.setRequestProperty("Accept", "application/xml");
                   // Get the response
                   BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   StringBuffer sb = new StringBuffer();
                   String line;
                   while ((line = rd.readLine()) != null){
                        sb.append(line);
                   rd.close();
                   result = sb.toString();
              } catch (Exception e){
                   e.printStackTrace();
              return result;
         }

  • Sender sending data through XML, How to process it in ECC (No PI involve)?

    Hi,
    The sender system sending data through XML tag and that need to be processed in SAP side.
    How it can be done without involving XI or IDoc?
    Is it possible through HTTP post?
    Sample XML Transactions
    1. SAP Availability Transaction (Request)
    <?xml version="1.0" standalone="yes"?>
    <ECCAVAILREQUEST>
    <AVAILTEXT>CHK STATUS</AVAILTEXT>
    </ECCAVAILREQUEST>
    2. SAP Availability Transaction (Response)
    <?xml version="1.0" standalone="yes"?>
    <ECCAVAILRESPONSE>
    <AVAILTEXT>OK</AVAILTEXT>
    </ECCAVAILRESPONSE>
    3. DUMMY_SYSTEM PO Transaction (Request)
    <?xml version="1.0" standalone="yes"?>
    <DUMMY_SYSTEM REQUEST>
    <CREATEPB>1</CREATEPB>
    <POORDERDATA>
    05607015156070151TORDAEHTWW05727500002D0979054+
    </POORDERDATA>
    4. DUMMY_SYSTEM Order/Inquiry Transaction (Response)
    <DUMMY_SYSTEM RESPONSE>
    <C_PO>99999</C_PO>
    <RETURNDATA>
    DAT&#13;&#10;
    </RETURNDATA>
    </DUMMY_SYSTEM RESPONSE>

    Hi,
    check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/21/e9c97ceb1911d6b2ea00508b6b8a93/content.htm
    this is for processing inbound IDOc through XML-HTTP(Inbound) port
    like this there should be an option for reading files placed by HTTP_POST.
    in SICF transaction there should be a service to do that.
    defaulthost -> sap-> xi-> adapter_plain. i know you don't have XI in your landscape but this is the component which be responsble for receving messages over HTTP_POST.
    look for a program which can access messages from there.
    please check with your basis team
    Suresh

  • Import and Export CSV Through XML File in Oracle

    Hi Gurus,
    I am sorry , I had deleted this post.
    Thanks
    Edited by: user10679113 on Feb 5, 2009 6:13 AM

    What does it mean to do something with comma separated values through XML. That is a new concept for me.
    Either something is CSV or XML but what is it you are trying to describe? Please provide an example.
    Then come the obvious questions like what version and edition of Oracle on what platform? What does any of this have to do with email? How large a file? etc.
    No one else has responded so I can only assume they are thinking what I am ... "what is this person trying to do?"

  • Cannot add movieclip to stage

    Hi, I cannot add movieclip to stage. Here's the code:
    package
        import flash.display.*;
        public class Game extends MovieClip
            private var s1:ScrollPlatform = new ScrollPlatform();
            public function main()
                addChild(s1);
                s1.x = 0;
    I have this in the first frame in the timeline:
    var game:Game = new Game();
    game.main();
    Please help. I am a newbie.

    You class Game has no contractor. You must have:
    public function Game():void {
    Perhaps your function main() is meant to be Game()
    Then either set Game as your document class (Game becomes your main timeline), or create an instance and add to the stage:
    var game:Game = new Game();
    addChild(game);

  • Price column is blank on GRPO upload through XML

    Dear SDK Forum Members,
    We are trying to upload GRPO transaction linked to PO through XML, all values import fine but for the Price.  The price column is blank.
    Need your assistance on this.  The following is the sample XML file.
    <?xml version="1.0" encoding="UTF-16" ?>
    - <BOM>
    - <BO>
    - <AdmInfo>
      <Object>20</Object>
      <Version>2</Version>
      </AdmInfo>
    - <Documents>
    - <row>
      <DocNum>17</DocNum>
      <DocType>dDocument_Items</DocType>
      <HandWritten>tNO</HandWritten>
      <Printed>tNO</Printed>
      <DocDate>May 29 2008 7:29PM</DocDate>
      <DocDueDate>May 29 2008 12:00AM</DocDueDate>
      <CardCode>V1010</CardCode>
      <CardName>Far East Imports</CardName>
      <Address>300 Elm Street Suite 300 Los Gatos CA 988778 USA</Address>
      <DocCurrency>USD</DocCurrency>
      <DocRate>0.000000</DocRate>
      <DocTotal />
      <Reference1 />
      <Comments />
      <JournalMemo />
      <PaymentGroupCode>2</PaymentGroupCode>
      <DocTime />
      <SalesPersonCode>2</SalesPersonCode>
      <Confirmed>tYES</Confirmed>
      <ImportFileNum />
      <SummeryType>dNoSummary</SummeryType>
      <ContactPersonCode />
      <ShowSCN>tNO</ShowSCN>
      <Series>13</Series>
      <TaxDate />
      <PartialSupply>tYES</PartialSupply>
      <DocObjectCode>20</DocObjectCode>
      <DiscountPercent>0.000000</DiscountPercent>
      <RevisionPo>tNO</RevisionPo>
      <BlockDunning>tNO</BlockDunning>
      <Pick>tNO</Pick>
      <PaymentMethod />
      <PaymentBlock>tNO</PaymentBlock>
      <MaximumCashDiscount>tNO</MaximumCashDiscount>
      <WareHouseUpdateType>dwh_Stock</WareHouseUpdateType>
      <Rounding>tNO</Rounding>
      <DeferredTax>tNO</DeferredTax>
      <NumberOfInstallments>1</NumberOfInstallments>
      <ApplyTaxOnFirstInstallment>tNO</ApplyTaxOnFirstInstallment>
      <DocumentsOwner>3</DocumentsOwner>
      <DocumentSubType>bod_None</DocumentSubType>
      <Address2 />
      <PayToCode />
      <UseShpdGoodsAct>tNO</UseShpdGoodsAct>
      <IsPayToBank>tNO</IsPayToBank>
      <DownPayment>0.000000</DownPayment>
      <LanguageCode>3</LanguageCode>
      <PickRemark />
      <SequenceModel />
      <UseCorrectionVATGroup>tNO</UseCorrectionVATGroup>
      <VatPercent>0.000000</VatPercent>
      </row>
      </Documents>
    - <Document_Lines>
    - <row>
      <LineNum>0</LineNum>
      <ItemCode>X0004</ItemCode>
      <ItemDescription />
      <Quantity>10</Quantity>
      <ShipDate />
      <Price>650.000000</Price>
      <PriceAfterVAT>650.000000</PriceAfterVAT>
      <Currency>USD</Currency>
      <Rate>0.000000</Rate>
      <DiscountPercent>0.000000</DiscountPercent>
      <VendorNum />
      <WarehouseCode>01</WarehouseCode>
      <SalesPersonCode>2</SalesPersonCode>
      <CommisionPercent />
      <TreeType>iNotATree</TreeType>
      <AccountCode>_SYS00000000019</AccountCode>
      <UseBaseUnits>tNO</UseBaseUnits>
      <SupplierCatNum />
      <CostingCode />
      <ProjectCode />
      <BarCode />
      <VatGroup />
      <Height1>0.000000</Height1>
      <Height2>0.000000</Height2>
      <Lengh1>0.000000</Lengh1>
      <Lengh2>0.000000</Lengh2>
      <Weight1>0.000000</Weight1>
      <Weight2>0.000000</Weight2>
      <Factor1>1.000000</Factor1>
      <Factor2>1.000000</Factor2>
      <Factor3>1.000000</Factor3>
      <Factor4>1.000000</Factor4>
      <BaseType>22</BaseType>
      <BaseEntry>17</BaseEntry>
      <BaseLine>0</BaseLine>
      <Volume>0.000000</Volume>
      <VolumeUnit />
      <Width1>0.000000</Width1>
      <Width2>0.000000</Width2>
      <Address />
      <TaxCode />
      <TaxType>tt_Yes</TaxType>
      <TaxLiable>tYES</TaxLiable>
      <ShippingMethod>3</ShippingMethod>
      <CorrectionInvoiceItem>ciis_ShouldBe</CorrectionInvoiceItem>
      <CorrInvAmountToStock>0.000000</CorrInvAmountToStock>
      <CorrInvAmountToDiffAcct>0.000000</CorrInvAmountToDiffAcct>
      <WTLiable>tNO</WTLiable>
      <DeferredTax>tNO</DeferredTax>
      <NetTaxAmount />
      <NetTaxAmountFC />
      <LineTotal />
      <TaxPercentagePerRow />
      <ConsumerSalesForecast>tNO</ConsumerSalesForecast>
      <ExciseAmount />
      <SWW />
      <DistributeExpense>tYES</DistributeExpense>
      <ShipToCode />
      <RowTotalFC />
      <TaxOnly>tNO</TaxOnly>
      <UnitPrice>650.000000</UnitPrice>
      <LineStatus>bost_Open</LineStatus>
      <LineType>dlt_Regular</LineType>
      <ChangeAssemlyBoMWarehouse />
      </row>
      </Document_Lines>
      </BO>
      </BOM>
    Thanks
    Suda

    Hi Suda
    nice to meet you. thx for your nice email.
    what i would try in your xml is to remove linetotal - it's an empty tag.
    generally i would try to remove all empty tags.
    the next is that you use price, priceafvat, unitprice and they have the same value
    but you don't set the taxcode.
    maybe you should try your luck with setting only one price tag - start with price or unitprice.
    i hope it's a bit helpful - this xml imports are always tricky.
    lg David

  • How to read the pdf through XML in background

    Dear Experts,
    I need to pass the value of PDF forms  stored in directory  into R/3 through XML..In foreground it is working perfectly but in background i am facing problem in ADS connection.
    Regards,
    Amitav

    Hi,
    Can You give the code for debugging.
    Thanks,
    Shiva
    Edited by: Shiva GuruNathan on Sep 21, 2009 9:01 AM

  • How to Call DataGrid through xml

    Hi,
    I need to fill my datagrid when i click the add button. How
    to do it and how to call through Xml. Any idea.
    Regards
    Muthu

    Hi,
    You can find a sample in which XML data is being displayed
    using DataGrid.
    http://livedocs.adobe.com/flex/3/langref/mx/controls/DataGrid.html#includeExamplesSummary
    Hope this helps.

  • Multitouch with movieclip on stage

    Hello:
    Is possible to rotate, zoom,etc with multitouch class using a movieclip on stage?
    I have put this code, but not response at all, can you tell me what I do wrong? thank you:
    import flash.display.StageDisplayState;
    import flash.display.StageScaleMode;
    import flash.display.StageAlign;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.display.Sprite;
    import flash.events.TransformGestureEvent;
    import flash.ui.Multitouch;
    import flash.ui.MultitouchInputMode;
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    afoto.addEventListener(TransformGestureEvent.GESTURE_ROTATE , onRotate);
    function onRotate (e:TransformGestureEvent):void{
                  myImage_mc.rotation += e.rotation;
    My movieclip  myImage_mc is on the stage.

    Excuse me I made a mistake, this is the code:
    import flash.display.StageDisplayState;
    import flash.display.StageScaleMode;
    import flash.display.StageAlign;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.display.Sprite;
    import flash.events.TransformGestureEvent;
    import flash.ui.Multitouch;
    import flash.ui.MultitouchInputMode;
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    myImage_mc.addEventListener(TransformGestureEvent.GESTURE_ROTATE , onRotate); 
    function onRotate (e:TransformGestureEvent):void{
                  myImage_mc.rotation += e.rotation;

  • Iterate through xml elements vb cs2

    Does anyone know how to iterate through xml elements without xml rules (unfortunately I have to do this project with cs2). I've heard it's hard and slow to iterate through each element in cs2.

    Here is a script I find useful. It recursively iterates over indesign xml structure and invokes a function on each node.
    HTH,
    =========================================================
    function invokeFunctionOnNode(parentNode, func) {
    var pNode = parentNode;
    //Call on Parent Node
    func(pNode);
    var elementCount = 0;
    try{
    elementCount = pNode.xmlElements.length;
    }catch(ex){}
    if (elementCount > 0) {
    var ctr = 0;
    for (var elem = 0 ; elem < elementCount; elem++) {
    var currentNode = pNode.xmlElements.item(elem);
    func(currentNode);
    try {
    if (currentNode.xmlElements.length > 0) {
    invokeFunctionOnNode(currentNode, func) ;
    } catch(ex) {}

  • Send Image through xml file

    Hey guys,
    I want to send an JPEG image through xml file. i dont want to just give the URL of the image but i want to actually send the image through xml. Im new in XML so can you please give me a working sample code.
    Thank you so much.

    Working code will not be difficult to write. Jpeg or other binary info can be encoded in xml using base64 encoding or some other encoding algorithm.
    After base64 encoding you will get some text which will be the base64 equivalent of the image data. This text can be placed in CDATA section of your image element and transferred.
    On the receiving end you will need to decode the text. After this what u have is the binary data for ur image.
    It will not be difficult to find libraries for base64 encodin/decoding on the net.
    Hope it helps

  • 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

  • Inserting a record through XML into the tbale

    Hi,
    When i insert a record into a table through XML data which is through CLOB,
    the data gets inserted and when i commit the ransaaction and check in my table, the data gets inserted for only few feilds and the remaining feilds will be blank , though the value in the field is inserted through XML.
    please get back to me at the earliest.

    are you sure you can see the hole content?
    increase the maximum width for displaying CLOB:
    SQL> desc test
    Name Null? Typ
    DATA CLOB
    SQL> insert into test values ('<EMPS><EMPLOYEE_ID>200</EMPLOYEE_ID>
    2 <FIRST_NAME>Jennifer</FIRST_NAME>
    3 <LAST_NAME>Whalen</LAST_NAME>
    4 <EMAIL>JWHALEN</EMAIL>
    5 <PHONE_NUMBER>515.123.4444</PHONE_NUMBER>
    6 <HIRE_DATE>17-SEP-87</HIRE_DATE>
    7 <JOB_ID>AD_ASST</JOB_ID>
    8 <SALARY>4400</SALARY>
    9 <MANAGER_ID>101</MANAGER_ID>
    10 <DEPARTMENT_ID>10</DEPARTMENT_ID></EMPS');
    1 row created
    SQL> select * from test;
    DATA
    <EMPS><EMPLOYEE_ID>200</EMPLOYEE_ID>
    <FIRST_NAME
    SQL> set long 500
    SQL> select * from test;
    DATA
    <EMPS><EMPLOYEE_ID>200</EMPLOYEE_ID>
    <FIRST_NAME>Jennifer</FIRST_NAME>
    <LAST_NAME>Whalen</LAST_NAME>
    <EMAIL>JWHALEN</EMAIL>
    <PHONE_NUMBER>515.123.4444</PHONE_NUMBER>
    <HIRE_DATE>17-SEP-87</HIRE_DATE>
    <JOB_ID>AD_ASST</JOB_ID>
    <SALARY>4400</SALARY>
    <MANAGER_ID>101</MANAGER_ID>
    <DEPARTMENT_ID>10</DEPARTMENT_ID></EMPS
    SQL>

Maybe you are looking for