Co code copy problem

Hi,
I copied 0001 co code to 555, i also copied INT chart of a/cs,
now while changing the chart of a/c from INT to 111, it is showing error message "RESET COMPANY CODE DATA BEFORE CHANGING THE CHART OF A/CS"
But after copy, i just changing the chart of a/cs
what may be reason
Rgds
sunfico

Hi
While copying if you have ticked "yes" to " copy G/L accounts" then it will not allow to change COA as per your choice. Coz, master data of G/L at COA level is being copied to your company code. If you want to assign your own COA, then tick on "NO" to aforesaid option
hope this helps
pushkaraj

Similar Messages

  • 'copy' problem ade 4

    'copy' problem with ade 4
    copy with edit [copy function greyed out] or manual [ctrl+c - even in right sequence] not working on ade publication 'Nuwe Testament en Psalms
    ’n Direkte Vertaling'
    the copy function does work on 'Getting Started With ADOBE DIGITAL EDITIONS 4.0', a book which is part of the program
    pc specs are more than adequate
    urgent help needed here
    thank you!
    in Christ
    gabriel

    hi dominic
    yes, i can do that with this document to
       1. with the copy function from the file tab
       2. by selecting text and right click
       3. manually with ctrl+c
    my problem is with the other publication, 'Nuwe Testament en Psalms'n
    Direkte Vertaling', there the copy option in the file tab is greyed out and
    manually it does nothing - none of the three copy methods work.
    pse see attached jpg
    from gabriël smita child of the Living God through Christ Jesus[?]
    South Africa
    *0823260759"So faith comes by hearing, and hearing by the word of Christ."
    <https://mlj-sermons-mp3-tagged.s3.amazonaws.com/Romans/3260D.mp3>Rom 10:17*
    *https://www.facebook.com/ggsmit <https://www.facebook.com/ggsmit>bugged by
    cockroaches? <http://www.ecozap.co.za>bugged by ants?
    <http://www.cockroaches.co.za/killing_ants.pdf> *

  • Hot Code Replace Problem...

    Hi Everyone,
    I am using WebLogic 10 with Eclipse. Whenever i start the server in debug mode and make two three changes in the code... WHAM.... I get the Hot Code Replace error. Is there any way so that the server can keep up with the code changes. Publishing the app again takes approx 40 mins!

    Almost always this is a limitation of the JRE/JDK you are using and really
    nothing to do with Eclipse.
    Try a different VM and see if you have better luck
    HTH
    Darins
    "bobz" <[email protected]> wrote in message
    news:75257188f239cb376da31e19b214d2d9$[email protected]..
    > hi buddies,
    >
    > i am getting "hot code replace" problem whenever i change my
    > java code and build the project and access the website without re-starting
    > the server. so, finally i endup with re-starting the server whenever i
    > change the code. this consumes a lot of time. is there any possibility to
    > work without re-starting the server even after the code change.
    >
    > regards,
    > satish.

  • Hi,  We use a Mac os window. How can we get Adobe error code 16 problems in premier cs5. Before 6 da

    Hi,
    We use a Mac os window. How can we get Adobe error code 16 problems in premier cs5. Before 6 days premier does not loaded a Audio.
    please help me.

    I think you are posting to the wrong forum.  I'd post this in the Premier forum: http://forums.adobe.com/community/premiere/premierepro_current
    -Carl V.

  • Code inspector problem

    Hi all,
    I'm checking the syntax before to release my order requests and I have several errors in code inspector.
    Ok, I've fixed these errors. The problem is if I execute the code inspector again the errors are displayed again... but the code is ok, there are no errors.
    It happened to me a lot of times, with several object types, may be the next day if I pass the code inspector the errors dissapears or may be not.
    It's very strange. I've tried with other users, doing log off and login again... but nothing...
    Do you know if exits some transaction code for "refresh" the code inspector? the buffer or something?
    Thanks in advance.

    Hi,
    I've worked with code inspector quite a lot and I've never spoted this kind of problem. I would suspect that this is not code inspector problem but rather something is wrong with your repository objects.
    If I were you I would try to debug code inspector. There is somewhere inside SCAN ABAP-SOURCE command used. Check what input is being used.
    BR
    Marcin Cholewczuk

  • HT203977 is there any way to restore factory settings on an Iphone 5s that will not connect to Itunes because the phone is locked with a pass code.  Problem is that the screen is completely shattered.

    is there any way to restore factory settings on an Iphone 5s that will not connect to Itunes because the phone is locked with a pass code.  Problem is that the screen is completely shattered.

    If the screen is completely shattered why bother to try and restore the phone?
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support

  • Problems if code copied from ecc 6.0 to ecc 4.7

    HI Experts,
        If i copy code from ecc 6.0 to ecc 4.7 any problems will arise. like function modules not exist. Please let me know the basic problems which i can face if i do this copy from 6.0 to 4.7.
    Thanks.

    why don't you just test it? Copy it over and do a syntax check.
    If there was no difference then SAP would not need to provide different releases.
    Of course there are function modules in current system which were not written when 4.7 was launched at the market. When we implemented ECC6 we upgraded as well to Unicode which forced us to change coding in old programs.
    There are ABAP commands which have not been there at 4.7 times.
    You can't get a clean bill of health for such generic question, you can just test it, and if there is trouble then you need to fix it to make it run.
    If you have read some OSS notes for new developed functionality then you could know how rarely SAP offers the option to implement such function in a lower releases. 

  • File data copying problem

    Hi,
    Im trying to copy the contents fron one file(say abc.txt) to another file(say def.txt)....Whats wrong in the below code...
    package com.home.practise.streams;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    public class CopyOneFileToAnotherFile {
         CopyOneFileToAnotherFile() throws IOException {
              File file = new File("C:\\Documents and Settings\\Harishwar\\Desktop\\abc.txt");
              try {
                   BufferedReader br = new BufferedReader(new FileReader(file));
                   FileWriter fw = new FileWriter(new File("C:\\Documents and Settings\\Harishwar\\Desktop\\def.txt"));
                   BufferedWriter bw = new BufferedWriter(fw);
                   int ch;
                   while((ch = br.read()) != -1){
                        bw.write((char)ch);
                        System.out.print((char)ch);
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public static void main(String[] args) throws IOException {
              new CopyOneFileToAnotherFile();
    }Im not getting the output inside the file "def.txt"...why so?? what might be the problem in the above code??

    Thanks for your reply, dudes...Now I got the output..But i had one small doubt..Why these java soft people didnt write flush() method in predefined streams or readers or writers( say BufferedWriter or some other output stream).Because they're buffered. If they were auto-flushed they wouldn't be buffered.
    Why they gave us a choice to write this flush() expilictly....?So that you can control when the buffer is flushed. For performance and transactional reasons.
    Why wouldn't they have written in these predefined classes(say BufferedWriter) itself?? Because then they wouldn't be buffered. So there wouldn't be any point in them existing, or at least in having those names.
    And another small doubt, when we write explicitly bw.close(), does this mean we are saying GC to collect this variable?No, it means flush and close the stream and release the associated file handle.
    Can't GC collect this variable after complete execution of this program?Of course, but it's a file writer with a local buffer, so you should close it yourself, explicitly, when you have finished writing to it, so that you know that you've flushed and closed it, so that your application doesn't proceed on a false assumption, for example so you don't print any misleading messages saying that you've written all the data when you haven't.
    If you don't want local buffering, don't use it. But then your tactic of reading and writing one character at a time is suddenly going to run several orders of magnitude more slowly. And it's still correct discipline to dispose of external resources immediately you've finished with them.

  • File copying problems

    Copying some files using the Finder results in a dialogue box error message: "The Finder cannot complete the opeeration because some data in +(file name)+ could not be read or written. (Error code -36). The same files copy without error when using SilverKeeper (v.2.0.2) backup program.
    I am also experiencing a problem when quitting SIlverKeeper. A second or so after selecting Quit, and after the program has actually quit, a system dialogue box appears saying that the program has unexpectedly quit and offering choices of Reopen, Report to Apple or Close.
    The system also seems somewhat sluggish.
    Can anyone offer suggestions?

    Hi John, At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!
    Disconnect the USB cable from any UPS so the system doesn't shut down in the middle of the process.

  • Error 36 and External Drive File Copy Problem & USB Connections

    In attempting to copy a folder with some 200G+ of files from my iMAC, with OSX 10.6.7, to an external portable WD 1Tb HD, newly formatted to HFS+ (journaled), and connected to the iMAC via a USB cable to the USB port on the iMAC keyboard, I kept getting an error message that Finder could not complete the operation as some data couild not be read or written and transfered, and gave the "Error Code -36". After some searching ont he internet for this error code I came across a host forums discussiong the error code BUT all referred to it being the result of MAC OS hidden "dot-underscore" companioned files being created when the MAC OS X file system copies or moves files to a FAT16 or FAT32 volume. This was not the situaion in my case a both drives were OS X formatted HFS+. Eventually I came across a very vague reference to the error also occuring when the cable connection with the external HD was not solid. I reconnected my external HD and attempted the file transfer again - with the same result. Eventually I decided to plug the external HD into a USB pot on the back of the iMA itself, rather than the keyboard set. Sure enough the error issue disappeared - the transfer successfully completed.
    So my question relates to the "usb connection" challenge with iMAC. the iMAC has only 4 USB ports on the back directly. I did have two desktop external HDs plugged into 2 of these USB ports at the back of the iMAC, as well as a WACOM pad device into the 3rd, and an EPSON 3880 printer into the 4th, and so was forced to employ the ports ont he keyboard for portable HD. So - what's the answer in a situation where the 4 are insufficient and it would appear that the keyboard ports seemed to be unpowered?? Any suggestions?

    It's actually a Time Machine backup drive which is formatted in Mac OS Extended (Journaled). I wish I'd copied the exact error message.
    I believe it was something to the effect of "Error 36: The file could not be copied because some of the date could be be read/written" or something along those lines. Next time it comes up I'll copy it. I have Drive Genius running with DrivePulse, but it doesn't ever seem to start.
    My biggest concern is that this is a sign that the drive is failing. When backing up, it also slows, or stops midway through and just hangs there. Though I haven't done a lot of extensive testing on that because if the drive is failing, I don't want to speed that process up any more.
    To add to the complication, there is a second external drive which Time Machine is also backing up for me. There is one particular file, the Virtual Machine file, I was trying to get off the other external drive and it produced the same problem. That's when I went into Time Machine to try and retrieve the file that way and it did the same thing. The other external drive is making some sounds, but it doesn't sound like a distinct clicking, more like a more pronounced version of the normal constipated hard-drive sound. The Time Machine drive, isn't making any obviously strange sounds at all.
    So, I can't tell whether the drives are failing or if it could actually be that particular file itself causing some strange problems.

  • Unknown error code 13014 problem, this is the first time I've ever seen it.

    After I upgraded my PC, I copied old libraries and music files from the old hard drive to the new one. I installed the newest version of iTunes (8.0.2) and when I plugged in my ipod, I saw something I had never seen. Guess what it is?
    'Unknown error code 13014!'
    I had no problems for using every function that my iPod touch and iTunes have (including Genius play list) and of course, I've been updating every version of firmwares and iTunes programs. After I googled about this incident, I figured out this problem should not be seen on the newest version of iTunes but I'm still surffering from it.
    Temporally, I turned off Genius Play List and now, that error code doesn't pop up but of course, I can not use Genius Play list because of it.
    I uninstalled and reinstalled iTunes, restored firmware, moved Library Extras & Genius.itdb and do them again and again. Of course, none of them worked.
    What can I do? Is there anyone else who is experiencing same thing to me? How can I get my Genius Play List function back?
    Please Help me. I'm desperate. :<

    Did you properly prep your new drive first?
    Drive Preparation
    1.  Open Disk Utility in your Utilities folder.  If you need to reformat your startup volume, then you must boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs) then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    Steps 4-6 are optional but should be used on a drive that has never been formatted before, if the format type is not Mac OS Extended, if the partition scheme has been changed, or if a different operating system (not OS X) has been installed on the drive.
    When formatting has completed quit DU and return to the installer.  Complete the OS X installation.
    I think you should shutdown the installer then erase the drive per the above and start again.

  • Dynamic ITAB copy problem with field type P

    Hello everyone
    I need to copy the structure of an internal table that is pass by reference into a method.
    Actually everything is fine else than the field type P with decimal is not created properly in the new itab.
    Scenario:
    An internal table is pass by reference to a method. We need to trait the data without modifying the original table. The Idea is to copy the structure and the data of the referenced internal table into an internal table created dymanically in the method.
    Here is what I did and working fine when there are no field of data type "CURR".
    Extract the structure of the reference data.
    Create a dynamic internal table.
    So far so good. Everything seams to work fine. BUT
    when I am trying to copy the data from the reference table to the just created internal table the field with data type "CURR" doesn't work.
    Here is my example:
    FIELD-SYMBOLS: <FS_TABLE> TYPE STANDARD TABLE,
                   <TMP_TABLE> TYPE STANDARD TABLE,
                   <LS_TMP_TABLE> TYPE ANY,
                   <LS_TABLE>     TYPE ANY,
                   <LS_VALUE>     TYPE ANY.
    DATA: lt_data      TYPE STANDARD TABLE OF vbak,
          ls_data      LIKE LINE OF lt_sortfield,
          ref_data     TYPE REF TO data,
          l_structure  TYPE REF TO DATA,
          lv_ltname    TYPE string.               
    select * from vbak UP TO 10 rows INTO CORRESPONDING FIELDS OF TABLE lt_data.
    * --- Assign the reference variable to the table
    * ---- Only use to simulate a parameter that is assign to a reference to a internal table
    unassign <FS_TABLE>.
    lv_ltname = 'lt_data[]'.
    ASSIGN (lv_ltname) to <FS_TABLE>.
    GET REFERENCE OF <FS_TABLE>[] INTO ref_data.
    * --- Assign the reference to the field-symbol
    UNASSIGN <FS_TABLE>.
    ASSIGN ref_data->* TO <FS_TABLE>.
    * --- Create a working area for the reference table to a field-table
    CREATE DATA l_structure LIKE LINE OF <FS_TABLE>.
    ASSIGN l_structure->* TO <LS_TABLE>.
    * --- Retrieve the structure of the field-symbol pointing to the internal table
    DATA: lr_tabledescr   TYPE REF TO cl_abap_tabledescr,   " Internal Table description
          _r_structdescr  TYPE REF TO cl_abap_structdescr.
    lr_tabledescr ?= cl_abap_tabledescr=>describe_by_data( <fs_table> ).
    _r_structdescr ?= lr_tabledescr->get_table_line_type( ).
    * --- Read internal table structure to create dynamic internal table
    data: ls_struc like LINE OF _r_structdescr->components,
          xfc           type lvc_s_fcat,
          ifc           type lvc_t_fcat.
    * --- Why the field (component) NETWR length is now 8 instead of 15?
    LOOP AT _r_structdescr->components into ls_struc.
      clear xfc.
      xfc-fieldname = ls_struc-name .
      xfc-datatype  = ls_struc-type_kind.
      xfc-inttype   = ls_struc-type_kind.
      xfc-intlen    = ls_struc-length.
      xfc-decimals  = ls_struc-decimals.
      append xfc to ifc.
    ENDLOOP.
    DATA:   dy_table      type ref to data,
    * --- Create dynamic internal table
    call method cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog = ifc
      IMPORTING
        ep_table        = dy_table.
    * --- assign reference internal table to Field-symbol
    assign dy_table->* to <tmp_table>.
    unassign <ls_tmp_table>.
    DATA: ls_tmp_struc type REF TO DATA.
    CREATE DATA ls_tmp_struc like LINE OF <tmp_table>.
    ASSIGN ls_tmp_struc->* TO <ls_tmp_table>.
    Loop at <fs_table> INTO <LS_TABLE>.
    MOVE-CORRESPONDING <ls_table> TO <ls_tmp_table>.
    APPEND <ls_tmp_table> TO <tmp_table>.
    ENDLOOP.
    * <fs_table>-netwr length is 15
    * <ls_tmp_table>-netwr length is 8
    * ??????????? Why the length is different?
    * ??????????? It should a structure copy and have the
    * ??????????? same length
    I use VBAK as example, and the field NETWR is using data type "NETWR_AK" where it us a data type "CURR" with length 15 and decimal 2.
    When reading the structure, the method get_table_line_type of the class cl_abap_tabledescr return a length of 8 instead of 15.
    Any idea how to get the exact structure of a variable that is refering to a data type?
    Regards
    Daniel

    Hello Everyone
    Thank you for your replies.
    I think I didn't explain myself clearly.
    My goal is to be able to create an exact  structure copy of a "Type ref to data" into a new internal table that is not defined yet.
    Example:
      A method contain a parameter that is a ref to DATA type.
      That parameter is refering to an internal table from the calling program.
      Now I want to create an internal table into the method where this one will be an exact structure copy of the parameter.
      So, lets put some name here.
      parameter: ip_data type ref to data.
      FIELD-SYMBOLS: <FS_REF_DATA> TYPE STANDARD TABLE,
                                    <FS_CP_DATA>  TYPE STANDARD TABLE.
    ASSIGN ip_data->* TO <FS_REF_DATA>.
    " some code to assign the same structure to <FS_CP_DATA> from <FS_REF_DATA>
    " than copy the data from <FS_REF_DATA> to <FS_CP_DATA>.
    <FS_CP_DATA> [ ] = <FS_REF_DATA> [ ].  " This is working if no type P with decimal exist into the structure
    " Than I can play with the data of <FS_CP_DATA> without modifying the data of <FS_REF_DATA>.
    My problem would be solved if I can create dynamically an internal table that has an exact structure copy of the passed parameter.
    Regards
    Daniel

  • Code Portabiltiy problem

    I have translated some c code that we use to
    encrypt files. I have a problem when I
    try to move the code to another machine.
    I wrote the code on a sun under solaris 8, using
    java 1.4.0-b92.
    The other machine I am trying is also solair 8,
    with the same build.
    It will not work on the second machine if I
    compile it there, or copy the class file. I
    get no error messages, but I cannot encrypt and
    decrypt a file successfully
    the relevent methods:
    private String crypt(String inPut, int mode)
    throws Exception {
         Cipher crCipher =
    Cipher.getInstance("Blowfish/CBC/PKCS5Padding);
         String iV = "";
         String cText = inPut;
         byte[] encodedIV;
         AlgorithParameters algParams;
         if (mode == Cipher.DECRYPT_MODE) {
              encodedIV = input.substring(0,8).getBytes();
              cText = input.substring(8);
              IvParameterSpec specIV = new IvParameterSpec(encodedIV);
              crCipher.init(mode, blowfishKey, specIV);
         } else {
              crCipher.init(mode, blowfishKey);
              algParams = crCipher.getParameters();
              if (algParams != null) {
                   encodedIV = crCipher.getIV();
                   iV = new String(encodedIV);
         ByteArrayOutputStream bos = new ByteArrayOutputStream();
         ByteArrayInputStream bis =
    new ByteArrayInputStream(cText.getBytes());
         CipherOutputStream cos = new CipherOutputStream(bos.crCipher);
         int outLength = 0;
         byte[] buffer = new byte[8192];
         while ((outLength = bis.read(buffer)) != -1) {
              cos.write(buffer,0,outLength);
         bis.close();
         cos.close();
         cText = iV + bos.toString();
         return cText;
    the key is set like this:
    SecretKeySpec blowfishKey;
    String newKey = "Some random string of bytes";
    Provider sunJCE = new com.susn.crypto.provider.SunJCE();
    Security.addProvider(sunJCE);
    KeyGenerator kgen = KeyGenerator.getInstance("Blowfish");
    kgen.init(448);
    SecretKey skey = kgen.generatorKey();
    byte[] raw = newKey.getBytes();
    blowfishKey = new SecretKeySpec(raw, "Blowfish");

    If you really need to convert the byte array to a String, you need to use something like Base64 encoding.
    If your byte array contains random bytes, which it does after this call:
    encodedIV = crCipher.getIV(); then you cannot simply convert the byte array to a String like this: String s = new String(byteArray); Random bytes do not translate to String characters. That's why.
    Specifying one of the Java standard charsets, as here: String s = new String(byteArray, "UTF-8"); will not do the job either. I recommend you leave the byte arrays as byte arrays, there is no need to convert them to strings in your program.
    BTW, you should put your code in between &#091;code&#093;...&#091;/code&#093; tags. It makes it more readable.

  • SCM client copy- Problem in CIF

    Hi,
    Recently we done client copy from production system to test system for both SCM as well as ecc system.
    Problem is Master data  is with logical system name of production system in APO.
    We defined only logical system names for ECC and SCM client and kept name of buisness system group naming same as production to avoid this problem.
    But there is problem in resoure external capacity logical system name is same as production only.
    It is not feasible to delete all trasaction data and master data from APO and retransfer.
    How can we change logical system name in resource?
    I came to know that there  isprogram to convert  logical system name in customization as well as master data?
    If this is true can you give name of program in APO as well as ECC if any?
    Regards,
    Santosh

    Hi Santosh ,
    Yes there is a report to change the logical system name from resource.
    Report name is: /SAPAPO/CHANGE_BSG_RESOURCE for which the program  need be included in your system as per code given in Note 924136 - Change of the LOGQS (BSG) for resources.
    This will resolve your requirement...
    Regards,
    Digambar

  • Bar code print  problem

    Hi friends,
        Please don't tell me that "before posting the thread search in google" because i searched this thing and then i'm posting the thread. the problem is given below.
    I'm using the barcode "BC_CD39" it displays in print preview but in printed copy it displays only material document number.
    Thanks & Regards,
    Vallamuthu.M
    Moderator message: your decsription is much too vague to allow help without asking you many questions in return, please describe problems in all technical detail when posting again.
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on Dec 8, 2010 2:43 PM

    Hi,
    Can you provide the information how you declared the style for bar code and the font family for that bar code.
    and also provide the deceleration in the smart form if possible with screen shot.
    Kruthik

Maybe you are looking for

  • Windows XP Conversion Kit

    Hi all I have a new T61 with Windows Vista Ultimate. I would like to downgrade to Windows XP. I got three CD's with the Notebook 1. Rescue and Recovery CD P/N 43R4481 2. Product Recovery CD for T61 .. P/N 44Y4003 3. Supplemental Product Recovery CD f

  • Can I use mac mini buying from Japan(110V) in Thailand(220V)?

    I found the power cord said 125V 3A on the head and 125V 2.5A on the others side so I'm not sure that can I use this cord in 220V system. I known that mac mini can use with every electric system but not sure with the cord, please help. Thank You

  • Reg:table names

    Hi gurus ,please provide me table name and field names for the following. 1.sales employee 1 2.sales employee.2 3.named account 4.primary technology 5.secondary technology points will be rewarded. thanks &regards sash.

  • Premiere Pro CS3 - Preset & Media File Questions

    Volunteered to create a high school football highlight video using Premiere Pro CS3 on a Mac.  The video will be shown in a banquet hall using a NEC projector attached to the ceiling.  The hall owner doesn't have any info on the projector, so I don't

  • JSP taglib tags

    hello every one i am using JSP taglibs in my work and i am trying the example given in book - " JSP The Complete Reference" . example of database operations . In chapter 11. But when i compile i am getting warning that EVAL_BODY_TAG is deprecated. so