Multiple MX records with PIX and ASA5510

I need some help with a setup for email.
Setup
I have a PIX525 and an ASA5510VPN and an internal 2950 router. The PIX does firewalling and the ASA does VPN. Currently all outbound Internet traffic goes through the PIX via the router with this command:
ip route 0.0.0.0 0.0.0.0 10.1.1.2 1
The ASA5510 with its dedicated external IP is used to allow VPN traffic in.
The problem:
I have two separate domain names and two MX records. One (mail.PIX.com)is pointed at the external IP of the PIX the other (mail.ASAVPN.com) is pointed at the ASA5510. I can receive inbound mail through both of the devices. I'd like to mail go out using both domains one through PIX and the other thru ASA. The problem is the router says all unknown traffic go to PIX.
How do I route mail from a host (10.1.1.5) to the ASA5510(10.1.1.4), while sending the mail from host (10.1.1.3) to PIX(10.1.1.2)

I am not folliwing something here. If your gateway for 10.1.1.5 is truly set to the ASA and the ASA has the nat rule on the outside for the 10.1.1.5 address there should be no issue. It sounds like you are sending your traffic back out the pix interface. If your gateway is the 10.1.1.254 address the router will send the traffic to the PIX or redirect you to do so with an ICMP redirect.
Just the simple fact that it's coming out with the wrong external address leads me to beleive that that is the issue.
Any configs/route tables on the servers and firewalls would help.

Similar Messages

  • Edit multiple records with BC4J and Struts-JSP

    Hi everybody,
    I'm building BC4J components using entities and views and JSP business components. How can I edit and update multiple records at a time with Struts-Jsp ? Have someone already an example (with JSP and ActionForm code) ?
    thank you

    Hi,
    Nobody have an example ? Is it so difficult ?
    Thanks

  • Installing Multiple Operating Systems with grub and Arch Linux

    NOTE: Please keep in mind that there are many different ways to achieve this same result using various loop and ramdisk methods, read this with a separate window to jot down your comments and suggestions... this is ongoing for me so any help would be appreciated!
    Read the full article at Install Multiple Os without cds
    This is my first post and I plan on making this topic an official HOWTO with www.tldp.org.
    I have been into the computer security scene since 1990, but I realized that I had very little experience with the various LInux, Unix, and alternative Operating systems out there.
    I have a CD-RW drive but being a struggling computer security researcher I had no money for blank cd-recordables.  What follows is how I managed to install various operating systems on my computer (1 hard drive) without having to burn to a CD the ISO and then boot from that.
    I first partitioned my 120GB harddrive into 10 partitions, the 2nd partition is a small swap and the last partition is extra large because it holds all the ISO images..
    I then wrote a small shell script to automatically download (I love wget!)  the following.
    OpenBSD
    IpCOP
    Libranet
    Arch-Linux
    Fire
    Local Area Security
    Packet Master
    Devil-Linux
    FreeBSD
    Knoppix
    Helix
    Gentoo
    Yoper-Linux
    NetBSD
    RedHat
    Slackware
    The script also downloaded Installation manuals and md5 checksums.. (let me know if I should post... its pretty unsophisticated
    I installed Slackware (personal favorite) on hda1 using my last blank CD-R, note that I do not have a separate boot partitino.  (Should I?).  I also installed grub on the MBR.  I love grub, if you read through the man pages and all info you can find about grub, you can learn a whole lot.  Grub has much more features and capability than lilo, even though lilo comes installed by default with slack.
    I organize my kernel situation as follows...  In my /boot directory, I mkdir KERNEL, CONFIG, MAP, INITRD and that is a good way for me to keep my kernels and everything organized..  Another good way is a separate dir for each new kernel. 
    Since Arch-Linux is a solid distro, I'll use that as a first example.
    Here is the Arch-Linux section of my shell script
    goge Arch-Linux
    $w http://puzzle.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.iso
    $w http://unc.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.md5sum
    $w http://www.archlinux.org/docs/en/guide/install/arch-install-guide.html
    md55
    cat arch-0.6.md5sum
    md5sum arch-0.6.iso
    md55
    The first thing to do is to mount the downloaded ISO image so we can use it as if it were an actual CD.
    mount -t iso9660 -o ro,loop=/dev/loop0 cdimage /mnt/cdrom
    Where cdimage= the ISO image.   EX. /usr/local/src/ISO/Linux/Arch-Linux/arch-0.6.iso
    This mounts the iso as /mnt/cdrom.
    Next you need to copy /mnt/cdrom to a separate partition for the booting process.  So mkfs.ext2 /dev/hda9.  ( I prefer reiserfs or even XFS to ext but if you use something other than ext2 you could run into some problems because some of the installation kernels and initrds don't include support for reiserfs and so can't recognize the files.  Although you could use mkinitrd to create a new initrd with reiserfs support, that might be pushin it IMO...   I use the 9th partition consistently for this.  I know there is a "right" way to copy the /mnt/cdrom files so everything stays the way it is supposed too, using tar or cpio, but I'm lazy so I just do cp -rp.   
    (What is the tar or cpio commands to copy with correct permissions etc??)
    So you mount the 9th partition as whatever, say /mnt/hd and then copy the files.  Now what?
    Now edit your /boot/grub/menu.lst file to include the specific options to boot arch-linux installation. 
    A good idea is to find the isolinux.cfg file somewhere on the distro cd, this will tell you what to include in the menu.lst.
    Here is the section in my menu.lst
    title Arch Install
    root (hd0,8)
    kernel /isolinux/vmlinuz load_ramdisk=1 prompt_ramdisk=0 root=/dev/rd/0
    initrd=/isolinux/initrd.img
    This should be self-explanatory.  The root (hd0,8) is pointing to partition 9.  So the rest of the commands start from partition 9. 
    When you experience problems, remember you can always edit the grub boot options by typing 'e' and then edit the section.  Also, a good idea is to include several variations in your menu.lst so you can easily try other ways to boot efficiently.  And, remember to read up on all the installation guides that come with your distro, specifically, hard-disk installs. 
    There are special cases, Gentoo, has a semi-new compressed filesystem called squashfs.  BTW, this is AWESOME, so check it out.  It has to be compiled into the kernel, so some work is in order, but use this recompile to optimize your kernel.  You can get the squashfs patch for almost any kernel.  I use the latest stable 2.6 kernel.  Squashfs is incredible and although I don't think you need it to install from ISO, you do need it to expand the livecd.squashfs filesystem that comes with the cd.
    Heres a sample Gentoo section from my menu.lst
    title Gentoo Install
    root (hd0,8)
    kernel /isolinux/gentoo root=/dev/ram0
    initrd=/isolinux/gentoo.igz init=/linuxrc acpi=off looptype=squashfs loop=/livecd.squashfs cdroot vga=791 splash=silent
    A nother' tip is the shell that is provided if you experience problems, typically busybox or ash.  The key tools to get you going from here is mount and chroot.  Sometimes you will need to manually create a simulated file system and then chroot into it.  For instance, you might have to create boot, etc, bin, directories on the target partition. 
    I generally install each OS onto the next partition (careful of the logical partition) and add it to my menu.lst after install.  A good idea is after installation, copy the kernel and initrd(if there is one) to the slackware(or whatever) boot partition on hda1.  I copy kernels to /boot/KERNEL/ and initrd's to /boot/INITRD, then menu.lst is more organized...
    You then need to add an updated section to your menu.lst (just comment out the install section for later)
    Here is the finished arch-linux section from menu.lst
    title Arch Linux 6
    root (hd0,2)
    kernel /boot/vmlinuz26 ro root=/dev/hdc3
    This doesn't use my convenient boot/KERNEL/vmlinuz26 as you can tell by setting the root to partition 3.
    ***NOTE: Make a backup of MBR using dd and save to floppy, also backup the partition table to floppy, using cfdisk or parted.  And boot disks (I use 1 with grub, and 1 with slack, and tomsbootdisk) will invariably come in handy.  Tomsbootdisk is recommended, and make the grub boot disk when you install grub.  install to floppy.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    The final result after some fun experimenting, is when I boot, I have a cool grub boot screen come up with the option to boot into whatever OS I want, this is handy for multiple reasons.  One good thing to do after this is to port scan and vuln scan each OS, after you update of course.  Write this stuff down and you will know the weaknesses/strengths of the various OS's. 
    I can boot a custom Firewall, snort, or multiple honeypots using this procedure, as well as a graphical kde environment with a kernel optimized for graphics and my processor/architecture, or an environment devoted to forensics or even an environment suitable for programming.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    P.S. Some of the cooler alternative operating systems are BeOS 5, EOS, ER_OS, V2_OS, and my personal favorite Menuet.  Menuet is 100% assembly graphical operating system that fits on a floppy.  Its f'in money!
    This should be a good enough example to get you started, this kind of thing should be learned and not just copied... Knowing how to do this stuff could prove to be exceptionally useful...

    Start by reading all the articles built-in on your Mac - Help > Mac Help, search "printer sharing."
    http://desk.stinkpot.org:8080/tricks/index.php/2008/04/how-to-print-to-a-cups-se rver-from-mac-os-x/
    http://www.macosxhints.com/article.php?story=20080324224027152&query=share%2Bpri nter
    http://members.cox.net/18james/osxprintersharing.html
    http://ubuntuforums.org/archive/index.php/t-56940.html

  • How to record with vocals and guitar live?

    i really want to record a track/song live, with my guitar, instead of recording it beforehand, and then trying to sing over the chords. so please help me out !!!!

    I think he knows why he can't do it... didn't you mean "if you don't know how to do this..."?

  • Filter records with month and date

    Hi,
    i have records as follows in the table.
    custno trn_dt amount
    1 01-jan-06 100
    1 10-jan-06 200 --->
    1 15-feb-06 300
    2 15-dec-06 111
    2 15-jan-06 222 --->
    2 01-fen-06 333
    If i specify the runtime parameter as JAN-06 the output of the report should be with 2 records indicated with arrows above.
    the query should pick up the record with the highest date for a specific customer.
    in the above example for customer "1" 10-jan-06 is highest date and for customer "2" 15-jan-06 is the highest date.
    hope the requirement is clear.
    thanks in advance

    SELECT custno, trn_dt, amount
    FROM TABLE
    WHERE (custno,trn_dt) IN
    (SELECT custno, MAX(trn_dt)
    FROM TABLE
    GROUP BY custno)
    There are many examples on this in SQL and PL/SQL forum.

  • Recording with Quicktime and adding effect

    Hi all. I am recording Firewire video in Quicktime Player. The audio comes from a seperate source, through the line-in. To synchronize, I need to delay the audio by 600 ms. Does anyone have a method of doing so? I have an AU delay that would work. I just can't figure out how to apply it to the live lin-in.
    Thanks very much for any help.
    Jeremy

    I'll pass on some things I discovered, in case anyone has this question or anyone can add to this.
    I succeeded to some degree, by doing this:
    1. Installed Soundflower; this creates virtual sound inputs and outputs, so sound can be passed between applications.
    2. In GarageBand, I created a real instrument.
    3. Set input to Line-in
    4. Added the Voxengo Delay AU (http://www.voxengo.com/product/sounddelay) which is free and simple. The Apple AUDelay repeats the sound as well, rather than just delaying it (unless I missed something).
    5. Set GarageBand's sound output to Sountflower, and turned monitoring on.
    6. In QT player, new movie recording, with audio input set to "Soundflower".
    The good news is that I can save the GarageBand document, which can be opened and everything is immediately running. But, it would be nice if there was a way to add an effect to any input directly so that I only have to use one application.
    Any suggestions to streamline this? It is for an installation which will be run by students, so the fewer steps needed to set this up the better.

  • Live Recording with mics and Software Instruments

    Has anyone used the Software Instruments in GB to play live, while recording the Software Instruments direct and live (Real Instruments) as well?
    I'm thinking about getting a FirePod or similar, to record my band live using several mics and playing and recording Software Instruments all at once. I'm concerned that this set up might have too much latency and make the Software Instruments not playable with my band live, and perhaps all this might make my iMac G5 bog down.
    Anyone have any experiences with any or all of this kind of use of GarageBand with an audio/MIDI interface?
    iMac G5 20"   Mac OS X (10.4.6)  

    Hey Hang,
    Sorry if I'm talking in circles. That post was early!
    I'd like to be able to use the built-in Software Instruments live and record that MIDI as well as the live tracks at the same time. However, I could deal with using my own keyboards for the live sounds and just record the MIDI from them while recording the live tracks too, if that makes the system work. For instance, if the part I wanted was a piano, and the Software Instrument piano used too much processor power, I could "record" with a smaller instrument that wasn't such a hog. Then, in mixing, I'd use the Software Instrument I wanted for the keyboard part. Live, my real keyboard could provide the piano for all to hear.
    Am I making sense yet?
    I suppose one thing I could do is something I was thinking of doing already. I could get one of the $40 MIDI-to-USB interfaces to record with the band. Right now, I'm just using a stereo mic set up to record stereo into GB. I could add MIDI and see what happens. Heck, I could enable 6 more real instrument tracks at the same time and see what happens! Then I would know it was possible on the iMac at least.

  • Issues recording with internal and external mics -  blip blip noises

    soon as a click record it begins to record my voice but it also makes these audable "blip blip" noises every second which come through the speakers and then recorded in the track. i can record with audacity fine. i have checked the tracks properties and removed any filters but this still happens.. this happened awhile back and since then the machine has been formated so a new install has already occurred.
    very confused

    http://www.bulletsandbones.com/GB/GBFAQ.html#metronome

  • Multi-track recording with GB1 and GB2

    I recently purchased a new RME Fireface 800 and want to begin recording multi-track audio.
    I plan to purchase DP in the future but have spent my $ allocation for now and want to be able to at least get started using something simple and cheap like GB. I currently have GB1 and have learned from experience that it does not support multi-track recording. If GB2 does I will UG.
    Has anyone successfully recorded 8 tracks simultaneously with GB2 and if so how?
    soundegr7

    I finally got around to fixing a typo in the anchor for the above link, but instead of adding it, i replaced the typo which breaks the above link. The correct (and hopefully final) URL is:
    http://thehangtime.com/gb/gbfaq2.html#recordmultipletracks

  • Tryong to record with song and voice is muff

    Hi everyone,
    I am new here and have a quesition. I have Sound Blaster Li've and when I open Wave studio to record a song and sign with it it will record, but my voice sounds like its in background and muffled some. What could cause that?
    Thanks for any help!!!!!

    I think he knows why he can't do it... didn't you mean "if you don't know how to do this..."?

  • Primary key violation when inserting records with insert_identity and ident_current+x

    My problem is this: I have data in a couple of temporary tables including
    relations (one table referencing records from another table by using
    temporary keys).
    Next, I would like to insert the data from the temp tables to my productive tables which have the same structure but their own identity keys. Hence, I need to translate the 'temporary' keys to regular identity keys in my productive tables.
    This is even more difficult because the system is highly concurrent, i.e. multiple sessions may try to insert
    data that way simultaneously.
    So far we were running the following solution, using a combination of
    identity_insert and ident_current:
    create table doc(id int identity primary key, number varchar(100))
    create table pos (id int identity primary key, docid int references doc(id), qty int)
    create table #doc(idx int, number varchar(100))
    create table #pos (docidx int, qty int)
    insert #doc select 1, 'D1'
    insert #doc select 2, 'D2'
    insert #pos select 1, 10
    insert #pos select 1, 12
    insert #pos select 2, 32
    insert #pos select 2, 9
    declare @docids table(ID int)
    set identity_insert doc on
    insert doc (id,number)
    output inserted.ID into @docids
    select ident_current('doc')+idx,number from #doc
    set identity_insert doc off
    -- Since scope_identity() is not reliable, we get the inserted identity values this way:
    declare @docID int = (select min(ID) from @docids)
    insert pos (docid,qty) select @docID+docidx-1, qty from #pos
    Since the request to ident_current() is located directly in the insert statement, we always have an implicit transaction which should be thread safe to a certain extend.
    We never had a problem with this solution for years until recently when we were running in occasional primary key violations. After some reasearch it turned out, that there were concurrent sessions trying to insert records in this way.
    Does anybody have an explanation for the primary key violations or an alternative solution for the problem?
    Thank you
    David

    >> My problem is this: I have data in a couple of temporary tables including relations (one table referencing records [sic] from another table by using temporary keys [sic]). <<
    NO, your problem is that you have no idea how RDBMS and SQL work. 
    1. Rows are not anything like records; this is a basic concept.
    2. Temp tables are how old magnetic tape file mimic scratch tapes. SQL programmers use CTEs, views, derived tables, etc. 
    3. Keys are a subset of attributes of an entity, fundamental characteristics of them! A key cannot be temporary by definition. 
    >> Next, I would like to insert the data from the temp tables to my production tables which have the same structure but their own IDENTITY keys. Hence, I need to translate the 'temporary' keys to regular IDENTITY keys in my productive tables. <<
    NO, you just get worse. IDENTITY is a 1970's Sybase/UNIX dialect, based on the sequential file structure used on 16-bit mini computers back then. It counts the physical insertion attempts (not even successes!) and has nothing to with a logical data model. This
    is a mag tape drive model of 1960's EDP, and not RDBMS.
    >> This is even more difficult because the system is highly concurrent, i.e. multiple sessions may try to insert data that way simultaneously. <<
    Gee, that is how magnetic tapes work, with queues. This is one of many reasons competent SQL programers do not use IDENTITY. 
    >> So far we were running the following solution, using a combination of IDENTITY_INSERT and IDENT_CURRENT: <<
    This is a kludge, not a solution. 
    There is no such thing as a generic “id” in RDBMS; it has to be “<something in particular>_id” to be valid. You have no idea what the ISO-11179 rules are. Even worse, your generic “id” changes names from table to table! By magic, it starts as a “Doc”,
    then becomes a “Pos” in the next table! Does it wind up as a “doc-id”? Can it become a automobile? A squid? Lady Gaga? 
    This is the first principle of any data model; it is based on the Law of Identity; remember that from Freshman Logic 101? A data element has one and only one name in a model. 
    And finally, you do not know the correct syntax for INSERT INTO, so you use the 1970's Sybase/UNIX dialect! The ANSI/ISO Standard uses a table consrtuctor: 
    INSERT INTO Doc VALUES (1, 'D1'), (2, 'D2'); 
    >> We never had a problem with this solution for years until recently when we were running in occasional PRIMARY KEY violations. After some research it turned out, that there were concurrent sessions trying to insert records [sic] in this way. <<
    “No matter how far you have gone down the wrong road, turn around.” -- Turkish proverb. 
    You have been mimicking a mag tape file system and have not written correct SQL. It has caught up with you in a way you can see. Throw out this garbage and do it right. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Guitar "twang" when recording with macmini and M-Audio Fast Track Ultra

    hey was hoping someone might have similar setup or enough knowledge to help out.
    when i record guitar through my interface i get a clip after each guitar note that sounds very flangey (or like and outter-space type "twang" if that helps describe it) i was hoping it would come out a bit cleaner. and yes i have made sure no effects are turned on. its should be straight up clean guitar, and the notes preceding these clips are in-fact nice and clean. its just the milliseconds after each note that are bothering me.
    my biggest issue is i don't know if its being caused by my interface or a bad setting within the program. I am using the build in preamp and plugging directly into the unit, so i'm going to get a mic and see how it sounds then.
    I did a lot of research on the D/A interfaces out there and i went with the fast track ultra for the price and because the company really hyped these preamps. this is the general description you will find on sites trying to sell the FTU "4 preamps with award-winning M-Audio Octane technology"
    if this noise is cause by a problem with these preamp.... im gona be POBB! i would have saved up and waited to buy and apogee product! anyone out these using an ensemble??? would love to hear some feedback about that unit! thanks in advance for any help!

    hey thanks for the reply! i have since adjusted a few parameters and had good luck going directly into the ftu's 1/4in jack in the front. the more i use the program the more im understanding (you can see i'm relieving my neebie side!) i have not messed much with the ftu's control program itself, is this helpful when trying to get good levels and such?
    how knowledgable are you about microphones? i have a garbage mic from radio shack and when trying to record my acoustic guitar with it i really need to crank up the input on the ftu and be close to the mic to get a signal. this in turn creates that "fuzzy warm" sound that you can hear before the guitar starts playing. it's that analog sound like going through an old tube-amp or something... now while the instrument is playing its not as noticeable obviously and some people even like to add this sort of effect onto digital stuff to give it that warm feeling...
    my question is- what if i want just a nice crisp acoustic recording from my mic into garageband? do i go with something that uses phantompower or what? im just so lost because i don't know much about mics (except they can get REAL expensive... saw one for 7k at guitar center by me!) well sorry for ramblings! thanks in advance for help!

  • Recording with audacity and xfi sound c

    I just bought a sound blaster card and i use it with a pa system to play sound tracks.the problem is now my audicity recorder on my note book ain't working. will theywork togeather.

    ngoonee wrote:The daemon is already running. Did you setup your .asoundrc so that apps play to pulseaudio?
    No, I didn't. I don't have the ~/.asoundrc file. I configured the /etc/asound.conf file:
    [user@archerpc ~]$ cat /etc/asound.conf
    pcm.pulse {
    type pulse
    ctl.pulse {
    type pulse
    pcm.!default {
    type pulse
    ctl.!default {
    type pulse
    pcm.pulse_monitor {
    type pulse
    device alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
    ctl.pulse_monitor {
    type pulse
    device alsa_output.pci-0000_00_1b.0.analog-stereo.monitor
    pcm.phononpulse {
    type plug
    slave.pcm {
    type pulse
    hint {
    show on
    description "PulseAudio"
    [user@archerpc ~]$

  • Multiple (200 +) processes with Jrun And Linux

    Hello,
    We have a server in our enviroment running the following:
    2.4.9-e.27smp linux kernel
    mysqld Ver 4.0.15-standard for pc-linux on i686
    java version "1.4.1_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build
    1.4.1_05-b01)
    Java HotSpot(TM) Client VM (build 1.4.1_05-b01, mixed mode)
    47205 Oct 3 2003 jrun 4.0 updater 1a
    Starting the site with this command:
    su -c 'cd /usr/local/jrun/logs/df_nohup; nohup
    /usr/local/jrun/bin/jrun -config /usr/local/jrun/bin/df_jvm.config
    -start sitename &' userid
    We have 4 sites running on the machine each with the same
    command with the site names changed etc.
    Basicly when we start the sites each one generates 70+
    process each, usually when the server first comes up there will be
    240 + jrun process on it.
    We have a very similar configuration on our dev server, and
    it only starts 4 processes?
    Any ideas why this production server is generating so many
    processees?

    Thanks a lot for taking your precious time to review my code, Bogdan.
    I run an attempt using the additional flags you were suggesting but they didn't improve results.
    Your pointers to the DB Reference and C API sound a little bit like RTFM. In fact, I didn't read all the stuff there but a good portion of it before I was asking for help ;-) The FAQ entry I mentioned leads exactly to the "Architecting Transactional Data Store" topic.
    The code was modeled after the "The third way to architect Transactional Data Store applications is as a group of unrelated processes" using the DB_REGISTER flag.
    It seems to take a senior expert to get my simple requirement done :-(
    All I know now is I'm not alone:
    Problem with multiple processes and DB_REGISTER
    Re: Problem with multiple processes and DB_REGISTER
    Does anybody has the code for developing multi-process program .thank you.
    Re: does anybody has the code for developping multi-process program .thank you.
    Any more ideas what to try next?

  • Digital Signatures with PIX and MS IAS

    Does the PIX support simple digital signatures? I would like to find a away for an IAS server and a PIX to exchange signed packets.
    In particular I am trying to increase the security of the initial PAP shared key exchange during user authentication.
    Any help is appreciated. I am coming at this from a windows background.
    TIA - Willem

    I believe PIX supports simple Dig Sig.

Maybe you are looking for

  • How do I get my photos from a previous version of Photoshop Elements (6) into Photoshop Elements 12?

    How do I get my photos from a previous version of Photoshop Elements (6) into Photoshop Elements 12? Do I restore from a backup?  I have over 12,000 pics ( a good portion with multiple versions) and don't want to lose captions and metadata. Thank you

  • How to change the row position in a datatable

    I am storing my list of lists in a datatable : DataTable table = new DataTable(); for(int i = 0; i < info.Count; i++) table.Columns.Add(names[i]); for(int col = 0; col < info.Count; col++) for(int rows = 0; rows < info[col].Count; rows++) DataRow r =

  • Upgraded to itunes 10 and got a little problem

    I just recently upgraded to the latest version of itunes 10.1.0.54. I installed it and all my music and playlists came up and everything seemed fine, except when i went to import a new cd into it. When i tried this it said that itunes has crashed. I

  • Customize SSHR workflow

    We want to notify HR department of any address changes made by an employee using SSHR so that they can update the payroll system details. How do we achieve this functionality using HR workflow (HRSSA)? We are also thinking of HR approval instead of F

  • VL01N - Message VL200 -The batch does not exist in plant

    Hi all, I try to create a delivery for a sales order via VA03 by displaying the order, select Sales document and then Delivery from the menu bar. On the Dilvery overview screen, when I enter an invalid Batch number for the item, I receive a warming m