How to transfer IDOC - E1EDL24 segment data into my_itab?

Hi Experts,
Am trying to transfer data from a Segment-E1EDL24 to an itab of fs_itm_data.
data: begin of fs_itm_data,
tapos(6),
nista(18),
altme(3),
end of fs_itm_data.
So, when u see this E1EDL24 segment in WE31, there are lot of fields in it.
And am getting the data as,
idoc_data-segnam = E1EDL24
idoc_data-sdata = 00001012345678 (i.e. POSNR+MATNR)
So, to do dump this segment data into itab, am wrting code by using OFF SETTIng ; like,
  fs_itm_data-tapos         = edidd-sdata+0(6).
  fs_itm_data-nista         = edidd-sdata+146(15).
  fs_itm_data-altme         = edidd-sdata+161(3).
1 - but, I dont think that, this is correct practice
2 - if there is no value for Alt UNIT of edidd-sdata+161(3), wht happens?
3 - If MATNR varies in its length, like 1 - 18?
so, let me know that,
1 - How to transfer this segment data into this itab?
THANQ

If I understand ur requirement correctly then u need to move idoc_data-sdata to an internal table itab.In that case no need to move data from idoc_data-sdata to itab directly using OFF SETT.
1st declare one wrokarea of type E1EDL24.
data: w_E1EDL24 type E1EDL24.
Now move the content of idoc_data-sdata to the workarea.
move idoc_data-sdata to w_E1EDL24.
Now u can do field by field assignment to move data from w_E1EDL24 to ur table.
fs_itm_data-tapos = w_E1EDL24-tapos.
fs_itm_data-nista = w_E1EDL24-nista.
fs_itm_data-altme = w_E1EDL24-altme.
Here I am assuming that field names in the structure fs_itm_data are same as field names in the segment w_E1EDL24.
Regards,
Joy.

Similar Messages

  • How to transfer the Legacy Transaction Data into SAP R/3

    Hi Experts,
    I  have  issue with legacy transaction data transfer  to R/3 system. My clients want to see  last 3 years legacy transaction data into SAP R/3 system.  But I am not sure whether it is possible or not.
    Please let  me know any possibilities to transfer the legacy tansaction data into SAP.
    Please help me out from this issue.
    Advanced Thanks,
    Chandra

    Hi Sunitha,
    Here legacy sytem is MRP for Retail Sales.
    And format is excel. Since three years data available in
    existing system.
    Please let me know if any further information required.
    Regards,
    Chandra

  • How to Transfer IDoc Type to Data Type in XI

    Dear All,
    I am working on scenario to transfer data(IDoc) from SAP System to Non SAP system through XI.
    While Defining "Data Type" in XI i want to create Data Type as of IDoc type(CREMAS05).There is any direct method to import IDoc type into "Data Type" in XI.
    thanks,
    RP

    Hi Rp,
    External definitions enable you to import WSDL, XSD, and DTD documents to the Integration Repository so that you can access the message definitions they contain as external messages.
    If a description of the message structure already exists in one of the above formats, you can use it in the Integration Repository by importing it as an external definition rather than re-entering it manually using the data type editor.
    Prerequisites
    The document to be imported must conform to the WSDL, XSD, or DTD standard.
    Chk out all the details + how to import Ext Def:
    http://help.sap.com/saphelp_nw04/helpdata/en/26/9e97b0f525d743882936c2d6f375c7/content.htm
    Also refer...
    Connection Using Adapters and Imported Interfaces
    http://help.sap.com/saphelp_nw04/helpdata/en/4a/576d219c340844aaa12ce9bbc2c3ee/frameset.htm
    Incase u want to chk out the details of Idoc scenario.....
    IDoc to File:
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    Handling different partners for IDoc:
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/file%2bto%2bidoc
    Hope this was helpful..
    kanan

  • How to transfer IDOC information to BUT000?

    Hi,
    We are working on transferring Business Partner Master Data from SAP HR system to SAP CRM system through IDOCs.
    The changes done in the standard SAP fields like (Partner No, Fist name, Last name etc) are transferred to BUT000 in SAP CRM successfully.
    But the ‘Z’ Fields created by the client are not getting updated.
    When we checked the IDOC in SAP CRM in transaction bd87, it has the updated information of the Z Fields, but the system fails to transfer the same to BUT000.
    To put it in short our query is – ‘How to transfer IDOC information to BUT000?’
    Anyone who has worked on this before, please provide your valuable inputs.
    Thanks in anticipation
    Rahul

    If I understand ur requirement correctly then u need to move idoc_data-sdata to an internal table itab.In that case no need to move data from idoc_data-sdata to itab directly using OFF SETT.
    1st declare one wrokarea of type E1EDL24.
    data: w_E1EDL24 type E1EDL24.
    Now move the content of idoc_data-sdata to the workarea.
    move idoc_data-sdata to w_E1EDL24.
    Now u can do field by field assignment to move data from w_E1EDL24 to ur table.
    fs_itm_data-tapos = w_E1EDL24-tapos.
    fs_itm_data-nista = w_E1EDL24-nista.
    fs_itm_data-altme = w_E1EDL24-altme.
    Here I am assuming that field names in the structure fs_itm_data are same as field names in the segment w_E1EDL24.
    Regards,
    Joy.

  • How to transfer a set of data from Excel spread sheet to an Access database

    hi,
    Can any one please tell me how to transfer a set of data from Excel spread sheet to an Access database using SQL query.I'm using java API currently. I have done all sorts of ODBC connection in administrative tools.The file is in correct location. I have done certain coding but with errors.Help me to get rid of these errors,
    Coding:*
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection datacon=DriverManager.getConnection("jdbc:odbc:exdata","",""); *//For Excel driver*
    Connection datacon1=DriverManager.getConnection("jdbc:odbc:stock1","",""); *// For mdb driver*
    Statement datast=datacon.createStatement();
    Statement datast1=datacon1.createStatement();
    ResultSet excelrs=datast.executeQuery("select item_code,sdata,closing_stock from phy "); *//phy is the excel file*
    while(excelrs.next())
    String ic=excelrs.getString("item_code");
    System.out.println(ic);
    String d=excelrs.getString("sdate");
    double cs=excelrs.getDouble("closing_stock");
    int dbrs=datast1.executeUpdate("insert into second values('"+ic+"','"+d+"',"+cs+")"); *//second is the mdb*
    excelrs.close();
    }catch(Exception e)
    System.out.println(e);
    Error:*
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] The Microsoft Jet database engine could not find the object 'C:\JavaGreen\phy.xls'. Make sure the object exists and that you spell its name and the path name correctly.
    thanks,
    kumar.

    JAVA_GREEN wrote:
    No i haven't mixed up.But the file from where i have to retrieve the data is in csv format.Even though i created another csv driver.and tried but i cud not find a solution to load/transfer a set of records from one file(in Excel/csv format) to another file(in mdb format).plz help me.Is there any other methods for this data transfer.A csv file is NOT an excel file.
    The fact that Excel can import a csv file doesn't make it an excel file.
    If you have a csv file then you must use a csv driver or just use other code (not jdbc) to access it. There is, normally, a ODBC (nothing to do with java) text driver that can do that.

  • How to get the plsql table data into output cursor

    Hi,
    Could anybody please help me.
    Below is an example of the scenario..
    CREATE OR REPLACE PACKAGE chck IS
    PROCEDURE getdata(dept_no IN VARCHAR2,oc_result_cursor OUT sys_REFCURSOR);
    TYPE get_rec is record (ename varchar2(20),
    eno number(12));
    TYPE t_recs IS TABLE OF get_rec INDEX BY BINARY_INTEGER;
    emp_tab t_recs;
    END chck;
    CREATE OR REPLACE PACKAGE BODY chck AS
    PROCEDURE getdata(dept_no IN VARCHAR2,oc_result_cursor OUT sys_REFCURSOR)
    is
    BEGIN
    select ename, eno
    bulk collect into emp_tab
    from emp;
    open oc_result_cursor for select * from table(emp_tab); -- I believe something is wrong here ....
    END;
    END chck;
    the above package is giving me an error:
    LINE/COL ERROR
    10/29 PL/SQL: SQL Statement ignored
    10/43 PL/SQL: ORA-22905: cannot access rows from a non-nested table
    item
    let me know what needs to be changed
    Thanks
    Manju

    manjukn wrote:
    once i get the data into a plsql table, how to get this plsql table data into the cursor?There is no such thing as a PL/SQL table - it is an array.
    It is nothing at all like a table. It cannot be indexed, partitioned, cluster, etc. It does not exist in the SQL engine as an object that can be referenced. It resides in expensive PGA memory and needs to be copied (lock, stock and barrel) to the SQL engine as a bind variable.
    It is an extremely primitive structure - and should never be confused as being just like a table.
    Its use in SQL statements is also an exception to the rule. Sound and valid technical reasons need to justify why one want to push a PL/SQL array to the SQL engine to run SELECT 's against it.

  • How to store the flat file data into custom table?

    Hi,
    Iam working on inbound interface.Can any one tell me how to store the flat file data into custom table?what is the procedure?
    Regards,
    Sujan

    Hie
    u can use function
    F4_FILENAME
    to pick the file from front-end or location.
    then use function
    WS_UPLOAD
    to upload into
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'   "Function to pick file
        EXPORTING
          field_name = 'p_file'     "file
        IMPORTING
          file_name  = p_file.     "file
      CALL FUNCTION 'WS_UPLOAD'
       EXPORTING
         filename                       = p_file1
        TABLES
          data_tab                      = it_line
    *then loop at it_line splitting it into the fields of your custom table.
    loop at it_line.
              split itline at ',' into
              itab-name
              itab-surname.
    endloop.
    then u can insert the values into yo table from the itab work area.
    regards
    Isaac Prince

  • I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to my laptop.

    I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to itune.

    You can't. It still thinks that your iPhone is synced with another iTunes library (the one that you had before you reformatted the hard drive.

  • How can I read the trace data into LabVIEW for E5071B

    HI 
    I am setting up the measurement using vector network analyzer (VNA) E5071B controlled by NI 488.2. How can I read the trace data into LabVIEW and display on the graph? If anyone having an idea or know well about this process please give me the suggestion, I will much appreciate it.
    Many Thanks

    You want to start with the driver
     In case you do not know it, you can do the driver search in LabVIEW from Tools>Instrumentation>Find Instrument Drivers. You might also want to bookmark the Instrument Driver Network for information on what a driver is and how to use it.

  • How to transfer BLOB type of data from SQL Server to Oracle

    Hi,
    Actually, I create a table with BLOB type data in SQL server. In fact, there is not exact BLOB type in SQL server, it will be separated to image and ntext types. But there is exact BLOB type in Oracle.
    I don't know how to transfer this "BLOB" type into Oracle with DTS or any other methods.
    Many Thanks for your any suggestions,
    Cathy

    JAVA_GREEN wrote:
    No i haven't mixed up.But the file from where i have to retrieve the data is in csv format.Even though i created another csv driver.and tried but i cud not find a solution to load/transfer a set of records from one file(in Excel/csv format) to another file(in mdb format).plz help me.Is there any other methods for this data transfer.A csv file is NOT an excel file.
    The fact that Excel can import a csv file doesn't make it an excel file.
    If you have a csv file then you must use a csv driver or just use other code (not jdbc) to access it. There is, normally, a ODBC (nothing to do with java) text driver that can do that.

  • HOW TO TRANSFER USER DEFINED TABLE DATA IN NEW DATABASE

    Dear all , I am trying to transfer user defined table data,in new database ,can you please tell how i can do it

    Thanks for Quick responce
    I have Following databases
    1) Targate Database EOU TEST
    2) Source database  STI_BLANK
    Table @MACHINE
    I tried But it has some error
    INSERT INTO EOU TEST.@MACHINE
    SELECT STI_BLANK.@MACHINE* FROM STI_BLANK.@MACHINE
    Edited by: Abhijit Bhise on Apr 1, 2010 3:27 PM
    Edited by: Abhijit Bhise on Apr 1, 2010 3:28 PM

  • How to transfer all of my data to another mac?

    Hello folks,
    I have a MacBook Pro 15", I recently bought an MBP 17", now I want to transfer all of my data from 15 to 17. All of my mails, network connections, settings and maybe applications.
    What should I do in order to transfer my data? Is there any utility out there for doing so?
    Thank you all in advance,
    - Dunnil

    Mac OS: Moving files from your older Macintosh to a new one
    Learn how to move or copy files from an older Macintosh computer to newer one, for example, from a computer that uses Mac OS 8 or 9 to one that uses Mac OS X 10.2.
    Tip: If you'd prefer to have someone move files for you, ask about data transfer services at your local Apple Retail Store. For more information, visit http://www.apple.com/retail/. In addition to the Apple Retail Stores, many Apple Specialists, Apple Resellers, and Apple Authorized Service Providers provide various levels of data transfer services. Check the Find Service page to locate an Apple Specialist in your area.
    Tip: Some computers that come with Mac OS X 10.3.4 or later preinstalled, such as iMac G5 and Power Mac G5 (June 2004), include a version of Setup Assistant that lets you transfer information easily. The following document applies when you are moving (or "migrating") files manually from one computer to another and do not have that version of Setup Assistant.
    Contents
    What types of files should you move?
    Transferring email
    Transferring other files
    About reusing memory (RAM), peripherals such as printers, and other third-party hardware
    Internet settings
    What types of files should you move?
    There are probably thousands of files on your computer, including many used by the system software and applications. Thankfully, you do not need to move every file.
    You should think about moving these types of files:
    Personal documents that are stored on your hard disk, such as to-do lists, recipes, spreadsheets, personal webpages, and databases.
    Personal pictures, icons, movies, songs, or other multimedia files that are stored on your the computer's hard disk.
    Unfinished iMovie or iDVD projects.
    Information you keep in Stickies or Notepad (You might want to copy this information and paste it into a SimpleText document.)
    You will probably not need to move these types of files
    Entire applications (see notes).
    Log files or Read Me files
    Anything inside the System Folder
    Note: You may need to move preference files for third-party applications and third-party fonts that cannot be reinstalled from a disk. If you do not know exactly which preference or font files these are, you should not plan to move any preference or font files. It is often quicker to configure preference settings from scratch or reinstall applications from original disks on your new computer.
    Note: If you use Apple applications with your older computer (such as DVD Player, iMovie, iTunes, and iDVD), your newer computer probably includes a version of the software, and you should not need to transfer the older version.
    Will my applications (software) work on a new computer?
    Moving files is great, but what about using them after they've been moved? In most cases, you will enjoy the best Mac OS X experience by using Mac OS X versions of your applications. However, most applications that work with Mac OS 9 work fine with Mac OS X. This is because Mac OS X includes a feature called the Classic environment, which lets you use your Mac OS 9 applications. Computers that come with Mac OS X installed also include a Mac OS 9 System Folder for the Classic environment. Want to use your current Mac OS 9 System Folder instead? No problem, just copy it from your older computer. Note that it should be using Mac OS 9.1 or later, and you should also delete the Mac OS 9 System Folder that came with the newer computer. For more information about Classic, choose Mac Help from the Help menu on your new computer.
    Transferring email
    For an easy transition, use Mac OS X Mail on your new computer. Make sure you set it up before you transfer any messages.
    Use .Mac or IMAP?
    If you use .Mac or another IMAP email account, this will be very easy. If you don't use IMAP with .Mac or don't know what IMAP is, skip this section.
    You only need to configure the email application on your new computer, such as Mac OS X Mail, to work with your .Mac or IMAP account. You may have already done this when your computer started for the first time. Messages stored on the .Mac or IMAP server appear in Mail when you open it.
    You need to move a small number of messages (using POP)
    The easiest way to do this is to forward (or redirect, if your application allows) the messages you want to move to your own email address. Do not retrieve email on your older computer. Instead, retrieve email on your new computer (such as with Mac OS X Mail), and the messages that you forwarded will appear.
    Alternatively, you can open the messages in your older computer's email application and save them to your hard disk volume. You can typically do this by opening the message and choosing Save or Save As from the File menu.
    You need to move a large number of messages (using POP)
    If the choices for moving a small number of messages above won't work very well, you will need to know how your email application stores email. In some cases, such as with Microsoft Outlook Express, messages are not stored individually on the hard disk, but are stored within the application's folder in "mail databases." In this case, you should move your email application's folder just as you would transfer other files (described below). After you've moved the older email application, open Mail and choose Import Mailboxes from the File menu. For more information, see these documents:
    61459: "Mac OS X Mail: How to Import Email"
    25330: "Mac OS X 10.1, 10.2: How to Import Addresses Into Address Book"
    106996: "Mac OS X 10.2: About Import Addresses and Other Mail Scripts"
    Some applications may store the messages or attachments as separate files. In this case you need to find the files and move them with the others as described below.
    Other email services, such as America Online (AOL), or email you access through a Web browser such as Yahoo email or MSN Hotmail, may store your email on their mail servers. In this case, you should only be concerned with transferring messages that you have previously saved to your disk and deleted from the server. If these services normally work through your email application instead of a browser, see the transferring email section as well.
    Note: To access AOL mail on your new computer, you will need to install a Mac OS X version of AOL.
    If you're not sure how your email application stores email, refer to the documentation that came with it, or contact the publisher for more information.
    Transferring other files
    Using .Mac and iDisk
    If you're a .Mac member, you can use your iDisk to copy files between computers. Copy files from your older computer to the iDisk, then from the iDisk to your new computer. If your iDisk isn't large enough to copy all the files at once, you can check your .Mac account settings to manage your iDisk space, consider purchasing a capacity upgrade, or copy fewer files at the same time. If you have individual files that are too big, consider using third-party software to compress your files or folders, such as Aladdin Stuffit.
    Using a network or direct connection
    If you already have a network and know how to transfer files across it from your older computer, it's just a matter of turning on file sharing on your new computer and copying files to it.
    If you don't have a network you may be able to directly connect your computers for the transfer. See "Macintosh: How to Create a Small Ethernet Network". Even if you've never done this before, you'll find it's an easy process.
    If you don't know how to set up or use file sharing in Mac OS X, see "Mac OS X: About File Sharing".
    For more information, you can also read the Mac OS X Networking Support page.
    In the unlikely event that your older computer does not include an Ethernet port or an AirPort card, consider transferring files by other means listed below.
    Portable hard drive, iPod, or other storage device
    You can use a portable hard drives to transfer data from one Macintosh computer to another. These drives usually have a FireWire (IEEE 1394, iLink) or a USB port. Make sure your older computer has a USB or FireWire port first.
    If you have an iPod that works with your older computer and has some free space, you can use it like a portable hard drive, in Disk Mode.
    Portable FireWire drives provide the fastest transfer rate and are widely available. Portable USB hard drives have a slower transfer rate, but you can use them to transfer files.
    Burn a CD or DVD
    One of the easiest ways to transfer files from your older computer is to make or "burn" a CD or DVD of them. This has the added benefit of creating a backup of your data. Your new computer should have no issue reading the burned CD. These documents may help:
    58804: "Mac OS 9: How to Burn a CD and Choose a Format"
    25545: "Mac OS X: When You Put in A Blank CD, It Doesn't Appear"
    25402: "Macintosh: Factors That Affect Writing to or Reading From Optical Media"
    Other portable media
    You can also use portable ZIP, Jaz, magnetic optical (MO), or other forms of portable media to transfer files as long as the media device can be used on both computers.
    Advanced method: Moving an entire hard drive
    It is possible to move some kinds of hard drives from some older desktop Macintosh computers to newer ones, but you shouldn't do this unless you are an experienced computer user. Make sure your new computer has an available storage bay, cable connection, and internal bus to support the type of drive you have. You may also need to adjust master/slave or cable select jumper settings depending on the type of drive and type of new computer you have.
    About reusing memory (RAM), peripherals such as printers, and other third-party hardware
    Depending on the technologies your older computer uses, some hardware upgrades or peripheral devices may not work. To find out what's compatible, check with the items' manufacturers.
    These kinds of hardware should work, but check with the manufacturer to make sure. You should also download the latest version of any drivers or support software from the manufacturer's website.
    USB-based mouse devices, controllers, storage devices, cameras, handheld organizers (PDAs), or printers
    FireWire-based cameras, hard drives, or other devices
    These kinds of hardware are less likely to work with a new computer. You may need to purchase a more modern equivalent:
    Memory (RAM) that works with your older computer
    PCI or NuBus-based expansion cards
    SCSI-1 or -2 devices that connect externally
    Serial port- or LocalTalk-based devices
    GeoPort hardware
    You can search or browse tens of thousands of products made for Mac at the Macintosh Products Guide.
    Internet settings and bookmarks
    On your new computer, you'll need to enter Internet settings such as your type of connection and email account information. You may have already done this when the computer started for the first time. If not, see " Mac OS X: Internet and Network Topics (Getting Connected, Troubleshooting)".
    Bookmarks (or "favorites") can be transferred in a number of ways. If you have a small number of bookmarks, you may find it easier to just set them up from scratch in your new computer's Web browser. Alternatively, you can paste the URLs of your bookmarks into an email message, mail it to yourself, then get the message with your new computer.
    If you have lots of bookmarks, most Web browsers offer a way to export bookmarks to a single file. You can then transfer the file to your new computer, and import the file with your new Web browser.
    Related documents
    75320: "PC to Macintosh: How to Transfer Data"
    107600: "Safari: Can Only Drag One Bookmark at a Time From Internet Explorer"

  • How to transfer iPhone contacts and calendar into new iPad 2?

    Hi
    I have owned my 3Gs phone for about a year. I have manually entered contact and calendar data into it.
    I do not sync with outlook, gmail or other services. I have contacts on those services, but I do not want to merge everything together. Now I have a new iPad, and I need to get my contacts and calendar duplicated into my iPad.
    I don't want to get a MobileMe account.
    I have googled around and found some solutions, but I have not been able to get any to work. I have successfully installed a subset of my iPhone apps on the iPad using iTunes.
    So, how do I do this?
    I have tried the various settings on the INFO tab when my iPhone/iPad is connected to the computer (windows), but can't seem to find any settings that allow transfer between devices.
    If I make a change on one device, how do I get it to the other device?
    I wish I could see the contacts and appointments like I do the apps and media for selection and transfer.
    There must be a way, how?
    Thanks
    Randy

    It is easy to move the phone stuff to the iPad. Just restore the iPad for the backup of the iPhone. However, I know of no way to keep them in sync between the iPhone and the iPad in the future since you do not want to use/purchase MobileMe or sync with another program like Outlook or Google stuff.

  • How to convert the alv list data into pdf format

    Hi Expersts,
                      Is it possible to convert the alv list output data into PDF format? if yes, then please help me with this issue.
    thanks in advance,
    Regards,
    Samad

    hii samad,
    you can go through these link.i hope it ll solve your purpose
    How to convert list output to PDF
    Display ALV list output in PDF format
    regards,
    Shweta

  • How to Get the Previous Transactional Data into Special Purpose Ledger

    Hi,
    1). We have implemented Special Purpose Ledger. After implementing SPL, we are generating documents and getting the postings into SPL. Now I need to bring the previous postings which were entered before Special Purpose Ledger Setup. Please Help me on how to bring the transacctional data into Special Purpose Ledger.
    2).  Is it possible to define A/R Aging by Customers? in  Special Purpose Ledger by using Report Painter?
    3). What is the use of Allocation Cycles like Assessment and Distribution in Special Purpose Ledger?
    Please clarify me on above 3 points.
    Thanks
    Yadayya
    Edited by: Dogdays on Aug 5, 2011 8:02 AM
    Edited by: Dogdays on Aug 5, 2011 8:03 AM

    I have experience in intergrating project accounting to the general ledger in a data warehouse using discoverer to show the results.
    The solution I developed for my compnay is to ensure all entries from all sub-ledgers including manual journal entries are moved to the data warehouse tables have project information based on PA autoaccounting rules.
    The company I work for was interested in viewing reports that cubed cost centers (dept's.) to projects and to translate all entries (not just account balances) to USD for thier foriegn set of books. So, projects can be seen company wide in USD at lowest entry level. The solution I gave them solved the problem and they are able to view reports and evaluate costs by cost centers and projects on an enterprise wide application.
    If this is what you are looking for let me know.
    about my self : I have a B.S. in Computer Science (Theoretical Track) and 17 yrs of accounting and book keeping experience including consolidation and multi-currency sets of books.

Maybe you are looking for

  • Malfunctioning replacement iPod Touch 5 from Apple.

    I'm hoping I can get some advice. My 32 GB iPod Touch 5 that I had was having problems running apps (more than normal), so I went to The Apple Store at a mall. The person at the Genius Bar was able to replace it, and assured me it was a new, working

  • JVM falls down often. Why? (I have thread dump)

    Good day! Sometimes (about each two days) our production server falls down. But we can't understand why. There is no one record in logs and stdout. When server has falled down two days ago, I make full stack dump (kill -3). This is the link to stackd

  • How do i turn off apps in the background on 3g

    on my wifes iphone4 yu can turn off the apps running in the background by double tapping home key and turn off individual appa can you do that with my iphone 3g??????

  • IOS8 Mail Problem

    I Upgraded from an iphone 5 to a 6 Plus and restored all data from my latest iphone 5 icloud backup. I have several email accounts, a could Apple accounts, a Gmail account and a couple POP accounts. All the accounts work, send and receive, but in one

  • OperationNotSupportedException in Naming Listener

    I tried to connect to active directory and set up a listener. EventContext src = (EventContext)(new InitialContext(env).lookup("cn=Users,dc=mydomain,dc=com")); NamingListener listener = new SampleNCListener("nc1"); src.addNamingListener("", EventCont