Load Commodity codes through XML

Hi,
I'm trying to upload the commodity codes through an XML file.
Transaction code - /SAPSLL/LLNS_UPL102
I'm getting the following error.  Can someone help me with this.  Can anyone send me a file with the correct format which was accepted here earlier.
Error during consistency check for numbering scheme : Initial load
Message no. /SAPSLL/CORE_LLNS060
Diagnosis
The file to be uploaded is an initial file. This means that numbers and the corresponding scheme definition must not already exist in the system.
System Response
Processing is suspended.
regards
Surender

Hi,
I'm trying to upload the commodity codes through an XML file.
Transaction code - /SAPSLL/LLNS_UPL102
I'm getting the following error.  Can someone help me with this.  Can anyone send me a file with the correct format which was accepted here earlier.
Error during consistency check for numbering scheme : Initial load
Message no. /SAPSLL/CORE_LLNS060
Diagnosis
The file to be uploaded is an initial file. This means that numbers and the corresponding scheme definition must not already exist in the system.
System Response
Processing is suspended.
regards
Surender

Similar Messages

  • How do i load an image through XML?

    Hi.
    My code is below. What I am trying is to dinamically load images from xml. I attach the holder from the library, and when i try to target it and addChild to him i get an error:
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
    xmlLoader.load(new URLRequest("links.xml"));
    var xmlLength:int;
    var iconPos:Number = 0;
    function LoadXML(e:Event):void {
    xmlData = new XML(e.target.data);
    var xmlLength = xmlData.link.length();
    for (var i=0; i<xmlLength; i++) {
    var d:MovieClip = new icon();
    content_mc.addChild(d);
    d.name = "d"+i;
    var target:DisplayObject = content_mc.getChildByName("d"+i);
    var ldr:Loader = new Loader();
    ldr.load(new URLRequest(xmlData.link[i].icon));
    target.addChild(ldr);
    How can i make this happen and load the image into it's holder?
    Thank you.

    Code from adobe's sample packages cut&&paste&&edit:
    AS4 code:
    import flash.events.IOErrorEvent;
    var fotoElenco:Array;
    var fotoXML:XML;
    var fotoURLRequest:URLRequest=new URLRequest();
    var fotoURLLoader:URLLoader=new URLLoader();
    var fotoLoader:Loader=new Loader();
    var fotoPosition:Number=0;
    var errorMessage:TextField=new TextField();
    caricaFoto();
    function caricaFoto():void
        addChild(errorMessage);
        fotoURLRequest.url="gallery.xml";
        fotoURLLoader.load(fotoURLRequest);
        fotoURLLoader.addEventListener(Event.COMPLETE, showFoto);
        fotoURLLoader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorEventXML);
    function ioErrorEventXML(event:IOErrorEvent):void
        manageErrorMessage(true, 0);
    function manageErrorMessage(val:Boolean, num:Number):void
        if(val && num==0){
            errorMessage.x=stage.stageWidth/2;
            errorMessage.y=stage.stageHeight/2;
            errorMessage.text="Errore caricamento file XML";
        if(val && num==1){
            errorMessage.x=stage.stageWidth/2;
            errorMessage.y=stage.stageHeight/2;
            errorMessage.text="Errore caricamento file IMMAGINE";
    function showFoto(event:Event):void
        fwd_mc.buttonMode=true;
        back_mc.buttonMode=true;
        back_mc.addEventListener(MouseEvent.CLICK, manageFoto);
        fwd_mc.addEventListener(MouseEvent.CLICK, manageFoto);
        fotoElenco=new Array();
        fotoXML=XML(fotoURLLoader.data);
        for each(var prop:XML in fotoXML.foto)
            fotoElenco.push({url:prop.@url, didascalia:prop.@didascalia});
        viewFoto(fotoPosition);
        gallery_mc.addChild(fotoLoader);
        manageButton();
    function manageButton():void
        if(fotoPosition<1){
            back_mc.visible=false;
        }else{
            back_mc.visible=true;
        if(fotoPosition>=fotoElenco.length-1){
            fwd_mc.visible=false;
        }else{
            fwd_mc.visible=true;
    function manageFoto(event:MouseEvent):void
        switch(event.currentTarget)
            case fwd_mc:
                if(fotoPosition<fotoElenco.length-1)
                    fotoPosition++;
            break;
            case back_mc:
                if(fotoPosition>0)
                    fotoPosition--;
            break;
        viewFoto(fotoPosition);
    function viewFoto(num:Number):void
        fotoLoader.load(new URLRequest(fotoElenco[num].url));
        fotoLoader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorEventIMG);
        didascalia_txt.text=fotoElenco[num].didascalia;
        manageButton();
    function ioErrorEventIMG(event:IOErrorEvent):void
        manageErrorMessage(true, 1);
    XML code:
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery>
        <foto url="img/immagine1.jpg" didascalia="Didascalia 1 foto"/>
        <foto url="img/immagine2.jpg" didascalia="Didascalia 2 foto"/>
        <foto url="img/immagine1.jpg" didascalia="Didascalia 1 foto"/>
        <foto url="img/immagine2.jpg" didascalia="Didascalia 2 foto"/>
    </gallery>

  • Loading commodity codes using VE94 or VEU4

    Hi Peeps
    I have an issue, which hopefully someone may have a solution for
    We have a system with multiple company codes and different length commodity codes. These are set in config (V168) as country specific.
    We are interfacing with another SAP system whose commodity codes for the specific country (for example UK)range in length from 7,8 and 11. The problem I have is when using VEu4 you have to say how long your codes are and at what place the texts start.
    any ideas anyone how this can be done?
    Thanks
    D

    Hi Peeps
    I have an issue, which hopefully someone may have a solution for
    We have a system with multiple company codes and different length commodity codes. These are set in config (V168) as country specific.
    We are interfacing with another SAP system whose commodity codes for the specific country (for example UK)range in length from 7,8 and 11. The problem I have is when using VEu4 you have to say how long your codes are and at what place the texts start.
    any ideas anyone how this can be done?
    Thanks
    D

  • Loading Flash Video through XML

    Hello,
    I have an Flash gallery that loads dynamic content from an
    XML file. I'm trying to display a flash movie in the main display
    section, so when a user clicks a thumbnails the corresponding video
    would play in the main display area. Right now the thumbnails are
    displaying wonderfully but when I try to load an external swf file
    using the loadClip() method, that itself is the the container of an
    FLV(01.swf + 01.flv), the video doesn't play. Nothing loads. But
    the funny thing is I tried to load a simple swf file and it loads
    fine. I'm guessing it has to do with the video. There's some
    drawback to loading flash videos in this manner. I've attached the
    code, and would appreciate any help. Thanks.

    check the path to your video. it should be relative to the
    _level0 swf's embedding html.

  • Upload and compare commodity codes in SAP

    Hi Gurus,
    Can anyone guide me on how transactions VEU4 and VE14 are used?
    Are there any pdfs or tutorials available?
    Thanks,

    Hi,
    please use this link
    http://help.sap.com/saphelp_gts71/helpdata/en/04/b95d3f7d77a800e10000000a114084/content.htm
    it may be usefull for u.
    Loading Commodity Codes and Import Code Numbers
    Use
    This procedure describes how to load an external file containing commodity codes or import code
    numbers for use in your system.
    Prerequisites
    u2022 The external file must be in ASCII format
    u2022 You need to know the structure of the file u2013 which columns (positions) the codes, the text
    descriptions and the units of measure occupy.
    Procedure
    1. You access this function from the Foreign Trade Data Service Cockpit.
    2. Choose the appropriate tab u2013 European Union, Japan or Other u2013 in the Load/Compare
    section of the Data Service Cockpit. Choose the Load commodity code button next to the
    Commodity code field to display the selection criteria screen.
    3. Enter the selection criteria and the file specifications.
    Entries in the following fields are mandatory:
    u2013 Country key
    u2013 File name
    u2013 Drive
    u2013 Subdirectory
    u2013 Initial position goods number
    u2013 Final position goods number
    u2013 Initial position goods text
    u2013 Final position goods text
    See the field help (F1) for detailed information about each of the fields in this procedure.
    You can determine the actual positions of the columns for the data record structure
    entries by opening the ASCII file and counting the spaces used for the digits and the
    text characters. For this you need to identify the beginning and end positions of the
    codes, their texts and units of measure (when applicable) and enter them in the
    corresponding fields.
    For example, for a commodity code file with the contents "12345678 Sample text"
    (with no unit of measure), you should make the following entries in the data record
    structure section:
    Data Record Structure
    Field
    Entry
    Initial pos. goods no.
    1
    Final pos. goods no.
    8
    Initial pos. goods text
    10
    Final pos. goods text
    21
    If there is no unit of measure (optional entry), the last position for the goods text can be a
    number that is much greater than the actual final position for the goods text (for example,
    200).
    4. If you want to use this set of codes as the basis for maintaining the codes in the system,
    select Carry out preparations and enter an identification code in the Key for upload field. You
    will need this key to access this set of codes during maintenance.
    5. If you are installing codes from floppy disks or several files
    u2013 For the first disk or file, select First data carrier
    <![if !supportLists]>u2013 <![endif]>For additional disks or files, select Further data carriers
    6. Execute the function.
    Results
    The system uploads the file contents to the SAP System.
    Potential Errors
    When you execute this report, the system issues an error message if
    u2022 The values for the beginning and end positions overlap
    u2022 You enter an incorrect length for a commodity code or import code
    number
    u2022 The length for the codes has not been maintained for the country you
    enter on the selection screen.
    You assign commodity code and import code lengths for each country in
    Table T609S in Customizing (see Sales u2192 Foreign Trade/Customs u2192
    Basic Data for Foreign Trade u2192 Length of commodity Codes/Import
    Code Numbers).
    Bset regards,
    venkataswamy.y

  • LSMW for Commodity Code

    HI Experts,
    does enyone know the name of direct input, which transfer commodity code to SAP?
    I can't do it by batch input recording becouse i don't have direct transaction in spro to filling the commodity code.
    Thanks for reply
    Kasia.

    follow the menu path Logistics > SD > foreign trade > data service > service > Load / Compare >  (your region) >  Load commodity code
    Please read OSS note 1034696

  • Problem loading Image through XML!

    Hi,
      I am Akshay and am beginner in this forum. I am trying to load images using flickr API and having problem.
    I am doing it in following fashion:
    1) I am calling the Httpservice to get the xml through flickr API as
    <s:HTTPService id="photoService" url="http://api.flickr.com/services/feeds/....FullAPI" resultFormat="e4x" result="photoResultHandler(event);" fault="photoFaultHandler(event);"/>
    2) In photoResultHandler I am retrieving the XML
    private function photoResultHandler(re:ResultEvent):void
    photoXml= re.result as XML;
    However, I am struggeling to retireve elements from photoXML and then use it to display image in :
    <mx:Image  id="img0" x="151" y="98" width="520" height="291"/>
    The XML structure is as below:
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <feed">
    <entry>
         <author>  </author>
         <link rel="enclosure" type="image/jpeg" href="http://farm5.static.flickr.com/4484460580_04bbced2d8_o.jpg"/>
    </entry>
    <entry>
    </entry>
    I need to load the href value of link  which can be found in feed-->entry-->link in the above xml.
    Please help!
    -Akshay

    Hello Dave,
       Thanks for your prompt reply. Here's the mxml code :
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" creationComplete="photoService.send()"  minHeight="600">
    <fx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.events.MoveEvent;
    import mx.rpc.events.FaultEvent;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    public var photoXml:XML;
    private function photoResultHandler(re:ResultEvent):void
    photoXml= re.result as XML;
    //var src :int =  "{photoXml.feed.entry.updated}" as int;
    img0.source= String(photoXml.entry[0].link[1].@href);
    private function photoFaultHandler(fe:FaultEvent):void
    Alert.show(fe.fault.message);
    ]]>
      </fx:Script>
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    <s:HTTPService id="photoService" url="http://api.flickr.com/services/feeds/photos_public.gne?id=48951865@N07" resultFormat="e4x" result="photoResultHandler(event);" fault="photoFaultHandler(event);"/>
    </fx:Declarations>
    <mx:Image  id="img0" x="151" y="98" width="520" height="291"/>
    </s:Application>
    Hope it helps you in finding out the problem...DO let me know your thouhgts
    Thanks again for your replies so far......
    -Akshay

  • TS3212 every time i try to download itunes my computer comes ups up with an error code half way through  down load error code 2330

    every time i try to download itunes my computer comes ups up with an error code half way through  down load error code 2330

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • Commodity code from GTS to Feeder - full load

    Which report can I use to transfer all materials / commodity codes to the feeder system.  I know that report /SAPSLL/STAWN_RETRANSFER  can be used to select the materials as of a certain date, but I want to re-synchronize GTS with the feeders because the batchjob which was created for this stopped running for a number of days.
    Regards,
    Luc Schouterden

    Hello Luc,
    to re-transfer commodity codes execute on GTS side report /SAPSLL/STAWN_RETRANSFER and on feeder side /SAPSLL/STAWN_RETRANSFER_R3.
    1. /SAPSLL/STAWN_RETRANSFER calls RFC function module into the feeder system which fills up intermediate tables /SAPSLL/T604R3 and /SAPSLL/SWNWLR3 (preparation of takeover commodity code to feeder)
    2. Than report /SAPSLL/STAWN_RETRANSFER_R3 takes the records from 2 intermediate tables from previous step and distributes these into the MARC, T604 and T604T tables (assignment of commodity codes and descriptions to materials)
    Best regards,
    Gabriel.

  • How to load a code from wufoo to iweb through html

    i am trying to load a registration form from wufoo to iweb and cant figure out how to do it. I dont know where to find my html from iweb to load the code. When the code is in how do i see if it works or not. Thanks so much jacob

    When you login to wufoo you get to a page called "Form Manager"
    On this page you find the list of your Forms
    Click on "Code" near the form of interest
    Copy the code
    Go to iWeb
    Choose Web Widgets=>HTML Snippet
    (or go to Insert=>HTML Snippet)
    and paste the code in the black window that appeared
    Click on "Apply" and you form will display in iWeb.
    Regards,
    Cédric

  • 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

  • Risk in populating Unit of measure for commodity code (foreign trade) in ECC

    We have recently implemeted product classification in GTS for the EU and US.  We want to implement the transfer of tariff data from GTS to ECC via the standard GTS transactions /SAPSLL/SWN_RTR and /SAPSLL/SWN_RTR_R3.
    Our compliance team is concerned about beginning to populate the unit of measure commodity code in ECC.  I know this field is only visible when a supplementary unit is on the tariff number and is different than the base unit of measure on the material master.  These additional units of measure must be configured in order for the XML tariff files to load properly.  
    One concern that has come up is the conversion of the base UoM to the new unit of measure from the tariff files.  Are there other issues/risks I need to be aware of?  My understanding is this unit is used only when reporting the products to the customs authorities.
    I appreciate any guidance you can give me. 

    Hello Alison,
    We implemented this, however, made an enhancement not to transfer the UOM to ECC. Our consultants are unable to clearly articulate the use of UOM in classification. I still have not have a complete grasp of UOM with classification. One thing we constantly run into, is job fails when external/internal UOM is not maintained during transfer of classification from GTS to ECC. Since we are not transferring UOM to ECC, we are now considering enhancement, so we do not have to maintain internal/external UOM from the files we receive from Customs Info. We have had a number of issues trying to figure out what to maintain as internal UOM for UOM sent by Customs Info. There is no ISO code to cross reference and makes it very difficult to figure this out.
    Another thing that you need to be aware off - if you have products that is not classified in GTS and you have classification maintained in ECC, you can overwrite ECC values with blanks- the product master change/update date (for anything - not just classification) is picked up by the re-transfer job. We are currently making enhancements in the commodity code retransfer program, only to transfer when there is a value in GTS for classification.
    I see Dave's message above " UoM is necessary for the calculation that supports your sourcing decisions as well as for your declarations to the authorities". I am really interested to understand the function of UOM in classification.
    Regards,
    Padma

  • 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

  • Load Sales Order from Xml file

    Hi,
    I want to load a sales order from xml file. How can I do so? Where I'll get the xml schema for Sales Order or other documents (delivery,invoice etc)?
    Plz reply with code and xml file.

    When I'm going to load SO from xml file, it's showing an error:
    "The connected value 0 was not found in table Uasge of Nota Fiscal".
    What is this table for? Which attribute is related with this table?
    How can I find out that?

  • Error while uploading commodity codes in VEU4

    Hello
    I am trying to upload around 200 commodity codes for MM through VEU4. Initially i got the following error
    Maintain the length of the comm.code / import code no. in table T609S for the country PK
    Message no. EI025
    But then I configured length for the country PK in SPRO -> MM ->Purchasing -> Foreign Trade/Customs -> Basic Data for foreign trade - > Length of commodity code.
    Country: PK
    Arrival/ Dispatch:1
    Length: 9
    But now when i execute tcode VEU4 i again get the error
    But then I configured length for the country PK in SPRO -> MM ->Purchasing -> Foreign Trade/Customs -> Basic Data for foreign trade - > Length of commodity code.
    I am entering the following information in VEU4
    Country: PK
    Source File: comm.txt
    Source Drive: C
    Initial item goods no: 1
    Final item goods no: 9
    Initial item goods text: 11
    Final item goods text:: 30
    Kindly please help!
    - Regards
    Sahar Khalid

    Syed Nasir explained it well :
    Further there is a blue info button in the selection screen, which gives you instructions too.
    Edited by: Jürgen L. on May 13, 2011 5:13 PM

Maybe you are looking for

  • ILife 11 - Yes Yes No No

    Hi Now I got hands on. YES - TimeLine is back ! Rudimentary but much better ! YES - RubberBand - audio level ajustment is back - GREAT ! ! NO - No Back to Camera via FireWire (or to Monitor for Quality Controll) - BAD NO - Still not the tool for us m

  • Problem while querying MS Acess DB through JAVA

    Hi, I am using a query as follows: strQuery = "select * from A where UID=?"; //have set the parameter resultSet = ps.executeQuery(); sysout(resultSet);//printing resultSet Object if(null != resultSet) //have created object of class UsrDetails UsrDeta

  • Change the field MARA-NUMPT (EAN category).

    Hi , We have a requirement to change the field NMARA-NUMPT (EAN category). I tried using the FM BAPI_MATERIAL_SAVEDATA and BAPI_MATERIAL_EDIT, but I dont find this field in any of the structures. Can some one suggest how to go about this?? Regards, S

  • Difference between Netweaver Different Versions

    Dear Friends,          I am new in the Netweaver world, I came across many downloads for the Netweaver Application, would you please let me know the difference between the following Netweaver Enviornments or Versions. 1. SAP Netweaver 2004 2. SAP Net

  • Itunes Radio

    I cannot create stations on my iphone 5 in the new itunes radio  error message is "unable to create station" try again later