Mount fat32 on x86: already mounted or busy

hi. i suppose mounting fat32 on x86 is well-documented, but i'm having trouble, so i'd appreciate some help.
im dual booting with solaris 10 and xp. my partitions are as follows:
1st physical drive
[boot sector] 55 MB
[c:] label XP (NTFS)
solaris partitions...
2nd physical drive
[d:] label Data (FAT32) (about 17 GB)
i'd like to mount my FAT32 drive. according to man mount and man pcfs, i thought i'd do seomething like:
bash-3.00# mount -F pcfs /dev/dsk/c1t0d0p0:d /mnt/data
which yields:
mount: /dev/dsk/c1t0d0p0:d is already mounted or /mnt/data is busy
theres nothign in the /mnt/data folder. as far as i can tell, the drive isn't mounted. am i naming hte wrong device? im reading this "device-special:logical drive" stuff and i guess it's not making sense. i've included some more info below.
hopefully after this i can mount the drive in the vfstab, but if not i suppose ill be back.
bash-3.00# iostat -nxp
extended device statistics
r/s w/s kr/s kw/s wait actv wsvc_t asvc_t %w %b device
3.6 1.0 30.5 4.5 0.0 0.0 2.9 4.9 0 2 c0d0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.7 0 0 c0d1
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 fd0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 c1t0d0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 c1t1d0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 unknown:vold(pid507)
bash-3.00# mount
/ on /dev/dsk/c0d0s0 read/write/setuid/devices/intr/largefiles/logging/xattr/oner ror=panic/dev=1980000 on Sun Feb 19 20:27:38 2006
/devices on /devices read/write/setuid/devices/dev=4380000 on Sun Feb 19 20:27:24 2006
/system/contract on ctfs read/write/setuid/devices/dev=43c0001 on Sun Feb 19 20:27:24 2006
/proc on proc read/write/setuid/devices/dev=4400000 on Sun Feb 19 20:27:24 2006
/etc/mnttab on mnttab read/write/setuid/devices/dev=4440001 on Sun Feb 19 20:27:24 2006
/etc/svc/volatile on swap read/write/setuid/devices/xattr/dev=4480001 on Sun Feb 19 20:27:24 2006/system/object on objfs read/write/setuid/devices/dev=44c0001 on Sun Feb 19 20:27:24 2006
/lib/libc.so.1 on /usr/lib/libc/libc_hwcap1.so.1 read/write/setuid/devices/dev=1980000 on Sun Feb 19 20:27:37 2006
/dev/fd on fd read/write/setuid/devices/dev=4680001 on Sun Feb 19 20:27:38 2006
/tmp on swap read/write/setuid/devices/xattr/dev=4480002 on Sun Feb 19 20:27:38 2006
/var/run on swap read/write/setuid/devices/xattr/dev=4480003 on Sun Feb 19 20:27:39 2006
/export/home on /dev/dsk/c0d0s7 read/write/setuid/devices/intr/largefiles/logging/xattr/oner ror=panic/dev=1980007 on Sun Feb 19 20:27:44 2006
thanks!!!

thanks martin
i think i was trying to mount a SCSI drive instead of IDE that I have... thanks for clearing that up. i was also frustrated with teh :c part, I think I forgot about the 1st partition part.
im under the impression that c0d0p1:c is my first physical drive, which is NTFS because of:
bash-3.00# mount -F pcfs /dev/dsk/c0d0p1 /mnt/data
mount: /dev/dsk/c0d1p1:c is not a DOS filesystem.
but then why would c0d1p1 also yield:
bash-3.00# mount -F pcfs /dev/dsk/c0d1p1 /mnt/data
mount: /dev/dsk/c0d0p1, c0d0p2 is not a DOS filesystem.
then again c0d0p0, c0d0p2, and c0d1p0 yields the same...
is there a way to list the devices present, or do i have to throw knives at the wind? does anyone understand the naming schema of cN and dN? man pcfs and man mount don't help a whole lot.
i dont see anything helpful in the vfstab
#device device mount FS fsck mount mount
#to mount to fsck point type pass at boot options
fd - /dev/fd fd - no -
/proc - /proc proc - no -
/dev/dsk/c0d0s1 - - swap - no -
/dev/dsk/c0d0s0 /dev/rdsk/c0d0s0 / ufs 1 no -
/dev/dsk/c0d0s7 /dev/rdsk/c0d0s7 /export/home ufs 2 yes -
/devices - /devices devfs - no -
ctfs - /system/contract ctfs - no -
objfs - /system/object objfs - no -
swap - /tmp tmpfs - yes -
i also found thsi script that output the devices... but it doesnt see any fat32 partitions =(
bash-3.00# for f in /dev/rdsk/* ; do echo "$f = $(fstyp $f 2>/dev/null )"; done
/dev/rdsk/c0d0p0 =
/dev/rdsk/c0d0p1 =
/dev/rdsk/c0d0p2 =
/dev/rdsk/c0d0p3 =
/dev/rdsk/c0d0p4 =
/dev/rdsk/c0d0s0 = ufs
/dev/rdsk/c0d0s1 =
/dev/rdsk/c0d0s10 =
/dev/rdsk/c0d0s11 =
/dev/rdsk/c0d0s12 =
/dev/rdsk/c0d0s13 =
/dev/rdsk/c0d0s14 =
/dev/rdsk/c0d0s15 =
/dev/rdsk/c0d0s2 =
/dev/rdsk/c0d0s3 =
/dev/rdsk/c0d0s4 =
/dev/rdsk/c0d0s5 =
/dev/rdsk/c0d0s6 =
/dev/rdsk/c0d0s7 = ufs
/dev/rdsk/c0d0s8 =
/dev/rdsk/c0d0s9 =
/dev/rdsk/c0d1p0 =
/dev/rdsk/c0d1p1 =
/dev/rdsk/c0d1p2 =
/dev/rdsk/c0d1p3 =
/dev/rdsk/c0d1p4 =
/dev/rdsk/c0d1s0 =
/dev/rdsk/c0d1s1 =
/dev/rdsk/c0d1s10 =
/dev/rdsk/c0d1s11 =
/dev/rdsk/c0d1s12 =
/dev/rdsk/c0d1s13 =
/dev/rdsk/c0d1s14 =
/dev/rdsk/c0d1s15 =
/dev/rdsk/c0d1s2 =
/dev/rdsk/c0d1s3 =
/dev/rdsk/c0d1s4 =
/dev/rdsk/c0d1s5 =
/dev/rdsk/c0d1s6 =
/dev/rdsk/c0d1s7 =
/dev/rdsk/c0d1s8 =
/dev/rdsk/c0d1s9 =
/dev/rdsk/c1t0d0p0 =
/dev/rdsk/c1t0d0p1 =
/dev/rdsk/c1t0d0p2 =
/dev/rdsk/c1t0d0p3 =
/dev/rdsk/c1t0d0p4 =
/dev/rdsk/c1t0d0s0 =
/dev/rdsk/c1t0d0s1 =
/dev/rdsk/c1t0d0s10 =
/dev/rdsk/c1t0d0s11 =
/dev/rdsk/c1t0d0s12 =
/dev/rdsk/c1t0d0s13 =
/dev/rdsk/c1t0d0s14 =
/dev/rdsk/c1t0d0s15 =
/dev/rdsk/c1t0d0s2 =
/dev/rdsk/c1t0d0s3 =
/dev/rdsk/c1t0d0s4 =
/dev/rdsk/c1t0d0s5 =
/dev/rdsk/c1t0d0s6 =
/dev/rdsk/c1t0d0s7 =
/dev/rdsk/c1t0d0s8 =
/dev/rdsk/c1t0d0s9 =
/dev/rdsk/c1t1d0p0 =
/dev/rdsk/c1t1d0p1 =
/dev/rdsk/c1t1d0p2 =
/dev/rdsk/c1t1d0p3 =
/dev/rdsk/c1t1d0p4 =
/dev/rdsk/c1t1d0s0 =
/dev/rdsk/c1t1d0s1 =
/dev/rdsk/c1t1d0s10 =
/dev/rdsk/c1t1d0s11 =
/dev/rdsk/c1t1d0s12 =
/dev/rdsk/c1t1d0s13 =
/dev/rdsk/c1t1d0s14 =
/dev/rdsk/c1t1d0s15 =
/dev/rdsk/c1t1d0s2 =
/dev/rdsk/c1t1d0s3 =
/dev/rdsk/c1t1d0s4 =
/dev/rdsk/c1t1d0s5 =
/dev/rdsk/c1t1d0s6 =
/dev/rdsk/c1t1d0s7 =
/dev/rdsk/c1t1d0s8 =
/dev/rdsk/c1t1d0s9 =
/dev/rdsk/c2t0d0p0 = fstyp: cannot stat or open </dev/rdsk/c2t0d0p0>
/dev/rdsk/c2t0d0p1 = fstyp: cannot stat or open </dev/rdsk/c2t0d0p1>
/dev/rdsk/c2t0d0p2 = fstyp: cannot stat or open </dev/rdsk/c2t0d0p2>
/dev/rdsk/c2t0d0p3 = fstyp: cannot stat or open </dev/rdsk/c2t0d0p3>
/dev/rdsk/c2t0d0p4 = fstyp: cannot stat or open </dev/rdsk/c2t0d0p4>
/dev/rdsk/c2t0d0s0 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s0>
/dev/rdsk/c2t0d0s1 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s1>
/dev/rdsk/c2t0d0s10 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s10>
/dev/rdsk/c2t0d0s11 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s11>
/dev/rdsk/c2t0d0s12 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s12>
/dev/rdsk/c2t0d0s13 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s13>
/dev/rdsk/c2t0d0s14 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s14>
/dev/rdsk/c2t0d0s15 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s15>
/dev/rdsk/c2t0d0s2 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s2>
/dev/rdsk/c2t0d0s3 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s3>
/dev/rdsk/c2t0d0s4 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s4>
/dev/rdsk/c2t0d0s5 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s5>
/dev/rdsk/c2t0d0s6 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s6>
/dev/rdsk/c2t0d0s7 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s7>
/dev/rdsk/c2t0d0s8 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s8>
/dev/rdsk/c2t0d0s9 = fstyp: cannot stat or open </dev/rdsk/c2t0d0s9>
thanks again for your help

Similar Messages

  • /dev/shm not mounted /dev busy

    Recently I was trying out a boot disk I had made, and basically, I switched it off several times due to it booting the completely wrong kernel.
    Now, I'm getting to the stage "Checking File systems" and then comes up [Failed]. I then get a message saying Reboot required, and that it will reboot in 15 seconds, just a few seconds before it reboots I get "/dev/shm not mounted, /dev busy" or something similar.
    I've booted up my sysresccd, ran "fsck.ext4 -fcv /dev/sda2" to force a check and scan for any bad blocks, it came up clean, then I rebooted and got the same error, so I copied the kernel and system.map over to /boot to make sure there's no corruption and reinstalled initscripts and util-linux-ng, rebooted, same error.
    Tried different kernels, I've checked fstab and menu.lst, no problems there, so I still don't get why I still get the same problem.
    Anybody know of any fix other than reinstalling arch?
    EDIT: Editing /etc/rc.sysinit and commenting out the fsck part made it work, finding out why fsck failed now.
    Last edited by compgenius999 (2010-03-03 19:21:35)

    anybody?

  • Error Message from SLD - "Selected client already has a business system..."

    I have successfully created and test a File to IDOC scenario from a File system to ERP ECC 6.0 (client 101, system name sapdbt02)
    Right now, I creating  another File to IDOC scenario for a different file system to the same ERP ECC 6.0
    At the SLD, I would need to create two new Techncial System and Two new Business System.
    However when I creating a Business system for the ABAP Type for the ERP ECC 6.0, when selected the same client and system name of the first scenario that I have done, I got this error message
    "Selected client already has a business system associated, please select a new client or system"
    I am puzzled that I would need to a configure a new client for the same system ID for another FIle to IDOC scenario
    going to the same ERP system
    Please advise.
    Best Regards
    Freddy Ng

    For example:-
    create business system for R3 system in SLD as suggested by stefan. I assume that u have one R3 system which is either sending or receiving data from XI.
    assign the system to ur scenarios, u can use common IDOC/RFC/XI channel for sending data to R3 system.
    Separate R3 business system is required incase u have to send data to different R3 system.
    If u have different files coming from different File system in that case better to create different business service and use them.
    chirag

  • Integration server already has a business system

    Dear All,
    I got problem while creating sender business system for FILE-IDOC Scenario.I have created r3_800 business system for IDOC receiver with logical system name APOCLNT800.After that I tried to create business system for FILE Sender with logical system name XI7CLNT001.But i am getting the error "The selected integration server already has a business system with logical name XI7CLNT001. Select a different integration server or change the logical name."
    Do I need to create another logical system?
    Any help would be appreciated.Thanks in advance.
    Regards
    Vinay

    In addition to my previous post, refer the following blogs. This will help you understand how ABAP based systems in the landscape already get registered in SLD while post installation. Just check once the BS you are trying to create in SLD is already there.
    /people/michal.krawczyk2/blog/2005/03/10/registering-a-new-technical-system-in-sld--abap-based
    /people/praveen.kurni3/blog/2010/10/15/creating-a-technical-system-of-type-was-abap-in-sld133-are-we-sure-about-the-objects-that-get-created

  • Cannot mount cgroup: already mounted or busy

    I am unable to mount cgroups on a fresh boot of a recent installation, fully up-to-date.
    # mkdir /cgroups
    # mount -t cgroup none /cgroups
    mount: none already exists of /cgroups busy
    According to lxc-config, I have cgroups enabled, and `dmesg | grep -i cgroup` confirms that the relevant subsystems are initialized. I am not finding anything added to dmesg.log, kernel.log, everything.log, etc., by the mount command.
    Any ideas?

    I am unable to mount cgroups on a fresh boot of a recent installation, fully up-to-date.
    # mkdir /cgroups
    # mount -t cgroup none /cgroups
    mount: none already exists of /cgroups busy
    According to lxc-config, I have cgroups enabled, and `dmesg | grep -i cgroup` confirms that the relevant subsystems are initialized. I am not finding anything added to dmesg.log, kernel.log, everything.log, etc., by the mount command.
    Any ideas?

  • Device is mounted or busy

    Hello,
    I am running Solaris 11 with multiple zones. When I set up one of my zones, I configured it with a device (add device, set match=/dev/*dsk/device_name). Within a non-global zone, I created an ufs file system on this device and mounted i in /etc/vfstab. Now I want to remove this device and mount it in a global zone and export it out as lofi to multiple zones. I am able to remove the device from the zone's config, reboot the zone, confirm that the device is gone. I also made sure that the device entry is no longer in /etc/vfstab in non-global zone. Now I added this entry to /etc/vfstab in global zone. When I attempt to mount it, I get an error message: 
    mount: /dev/dsk /c0t600601600A212D00D6E38ED56C32E111d0s2 is already mounted or /sandsk/sanvnx-arr1/t3s1 is busy
    I am not sure why I am getting it as I can't see anywhere (in both global and non-global zones) the device to be mounted.
    If I reboot my Solaris 11 server, the problem will most likely get resolved, but I would like to do in a way that is least destructive to my users and prod env.
    Any help would be much appreciated.
    Thank you,
    Igor

    Hello Eze,
    You are right that dynamic zone config is now available with 11.2
    The issue is that despite dynamic and static attempts to remove the device from non-global zone, the device is still considered mounted within a global zone.
    There is no problem with device removal from non-global zone from the non-global zone's perspective, yet the global zone still thinks that the device is mounted within that non-global zone. Reboot resolves the issue as it flushes out the config info for all zones.
    Thank you for your reply.
    Regards,
    Igor

  • Can't mount ntfs partition

    hi.. i am running tiger, have no boot camp, but decided to run windows on it.. i've divided the drive into 2 partitions, mac and fat32. everything looked ok until i formatted the fat32 drive to ntfs using the partition utility on a windows xp install cd. since then, mac doesn't mount the ntfs drive. i wanted to copy my windows via some ntfs driver on my mac, but it doesn't want to mount it and i can't mount it via disk utility either.. any ideas??
    thanx much

    ok, here's the story:
    when i had leopard, i ran also windows xp via boot camp, i remember that when i formatted the windows partition from fat32 (default boot camp filesystem), leopard stopped mounting it after restart. that changed when i actually installed windows and started using it (i am almost sure boot camp made leopard be able to mount it normally (read only though, which changed when i installed mac fuse)). so after boot camp took care of the partition, leopard was able to mount it. now i am having this sort of problem: i am running tiger (downgraded back to it because of some bugs in leopard i dislike pretty much) but i cannot run boot camp any more. i partitioned the disk using disk utility (by default into fat32 fs) before installing of tiger. then i used a windows installation cd to reformat the windows partition to ntfs, and from that point on, i can see the disk in terminal (/dev/disk0s3 as well as in disk utility-unmounted) but i am unable to mount it, nobody knows why (i was able to do so when it was fat32). i have already installed the mac fuse with the ntfs driver, but nothing changed, the partition remains unmounted after reboot... this is what boot camp could handle, but unfortunately i have no boot camp any more... i also tried installing refit, an alternative bootloader, hoping it would help with this issue, but nothing works...
    i hope u get what i'm talking about now:)
    the only thing i want to do is to mount the ntfs partition, because i have backed my old windows up and just want to copy it back with help of mac fuse.
    anyone has any ideas??
    thanx a lot

  • My DVD burner isn't recognise, i couldn't mount my ntfs partition

    is recognize as DVD reader only
    i'm afraid is a problem just with the fstab
    this is
    /dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
    [b]/dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0[/b]
    /dev/fd0 /mnt/fd0 vfat user,noauto 0 0
    /dev/sda2 / ext3 defaults 0 1
    /dev/sda3 swap swap defaults 0 0
    /dev/sdb1 /media/sdb1 ext3 auto,users,rw 0 0
    my another problem is with the nfts partiotion
    i created the folder /media/sda1, and i mouted it with this parameters
    /dev/hda1 /media/hda1 ntfs defaults,nls=utf8,umask=007,gid=46 0 1
    but then i had the problem of
    file mounting system busy, wich i solved removing the line on my fstab
    well, that's all
    thanks

    jfca283 wrote:/dev/hda1 /media/hda1 ntfs defaults,nls=utf8,umask=007,gid=46 0 1
    Did you mean /dev/sda1 instead of /dev/hda1 ?
    I would also mount it under /mnt/sda1 instead of /media/sda1 because /media/ stuff seams to be mounted by other stuff automatically...
    Last edited by stingray (2007-10-10 00:26:32)

  • Auto Partion fails error = /dev/sda is mounted

    I booted from the cd,  ran /arch/setup then began going through the setup program
    at the point it is going to auto partition my harddrive it fails with /dev/sda is mounted or busy.
    I checked /mnt and its not showing anything mounted.
    32M for boot
    512M for swap
    7500 for / and home

    Correct me if I'm wrong...I'm stuck at work on a *cough* winbloze machine. 
    rw=read/write
    auto=mount when it boots up
    user=users can mount/unmount
    sync=write data to the drive immediatly when saved.  async writes the data whenever it gets good and ready.
    0 0 means the drive will never be force checked.
    Or at least one of the 0's does.  can't remember for the life of me what the other means.

  • Business Catalyst Not Working

    I have an Adobe Cloud full paid monthly account.  I have used Business Catalyst to preview sites for clients for about a year and a half or more.
    I did not use it for a few months and then recently tried to use it again.
    Every time I try to upload my new site to BC and try to login it says "unknown error." I have reset password twice but password is correct.
    Tech support at Business Catalyst is not being helpful except to ask me what software I'm using and my login: 
    I use Muse.
    What is going on?  I thought that my monthly $50 to Adobe included a free Business Catalyst account?  No?
    The help and FAQ pages never seem to answer the questions I have. 
    I log in to my Adobe account okay but I can't seem to log in to BC. 
    BC first forced me to change my account password.  Then they said that I had to change it back to my Adobe ID password.
    Now each time I try to log in it says there is already an account with that email.
    I think I'm going to lose my mind. 
    Customer/Tech support at other cloud systems is not this difficult to get through to.
    Max Mitchell

    Getting this error message:  This Adobe ID email address is already registered with Business Catalyst and cannot be merged with a different Business Catalyst account.

  • Creation of Business Event Type

    Hi
    We have already created a Business Event Type called Safety Refresher. Actually this training will happen every month. already created Safety Refresher and again trying to create its showing business event type already exists. Now i want under safety refresher is it possible to maintain month wise for the whole year or particular perilod.

    Hi Suraish
    You have not to create Business Event Type again and again. You only have to create new Business Event only under the said business event type. Use copy function and copy the previous business event and assign a new Schedule for the next month, also assing resources if required and then you can book the attendees against that new business event.
    Regards
    Rao Imran

  • BAPI business object to create order without charge

    Hi all,
    I am having problem to create order without charge or subsequent delivery free of charge (with sales document category 'I', read from TVAK table).
    I read from OSS 93091 that for that sales document category 'I', business object BUS2103 has to be passed. I try to do online testing but hit by error : 'Unpermitted combination of business object BUS2103 and sales doc.category I'.
    I have use the correct order type (sample order with doc. category I) for my own testing.
    Appreciate any of your help to resolve these problem.
    thanks alots.
    Alia

    Hi All,
    It is solved already by using business object BUS2032.
    thanks
    Alia

  • When I can reuse Business and Technical Systems in IR and ID

    Assuming the case(1 scenario) when I already created All SLD object Business System , technical system, SWC and product for interface scenario when file is send from R/3 MM module(Outbound) to XI through File adapter and than mapped and send to 3 party partner via firewall ftp server... All SLD object exists and are created.
    In a different scenario(2 Scenario) the 3 party partner will have to send via XI some MM related data and XI will have to feed this data into R/3 via different type adapter &#8211; this time Idoc adapter(Inbound)
    My questions are:
    1)In 2 scenario - Can I use same already created 2 Business systems for both R/3 and 3 party partner or I need to create new ones?
    Or at lease can use one of the business systems. With words &#8211; is the Business system dependable on type of adapter, inbound/outbound ?What is the criteria for reusing business system for second scenario?
    2)In 2 scenario -Can I use same already created Technical systems for both R/3 and 3 party partner or I need to create new ones?
    Same questions here...for technical system  -  can I reuse it  and when I need newone...
    Thanks all
    Regards
    Jon

    1. If u r posting data to the same R/3 with same client then u can use same WebAS ABAP Business System. U can use same third party business system for this.
    The criteria for reuse is just that if the systems are same (in case of R/3 - the clients should be same), then u should reuse it.
    2.Only 1 Technical system is created for one R3 system. This will be of type WebAS ABAP. So u will have to use same Technical system for both the scenario
    For 3rd party case, u can use different technical system, but that would be redundant. So better to use one.
    Regards,
    Prateek

  • Need information on how to create Idoc Inbound Interfaces for Business Sys

    Hi,
    I'm losing it.
    Can anyone point me to some documentation or an example of how to create inbound interfaces for Business Systems in PI 7.1.
    Here's the scenario
    I'm working on a B2B integration process which sends inbound idocs to an ECC 6.0 system.
    I've created the Business System communication component  but under the Inbound Interfaces it is blank.
    I want to have MBGMCR.MGBMCR03 as an inbound interface.
    But I forget how to get it there.
    For Business components you can just add the inbound interface.
    I've already defined the Business System in the SLD pointed it to the correct Tech System, imported the idoc definitions in the Enterprise Service Builder and set up IDX1, IDX2 to ensure the metadata exists in PI.
    But for Business systems the hep says that it's got to come from the SLD.
    Outbound/Inbound Interfaces
    For each business system, the interfaces that are installed on the business system are also entered in the SLD. These interfaces are displayed in this frame. You cannot add any other interfaces.
    I know I've done this before, but I can't remember how.
    Cheers,
    John

    Hi John ,
    Please have a look at the following links which might be of help to you
    PI 7.1 IDocs interfaces act as operations
    http://www.sdn.sap.com/irj/scn/weblogs;?blog=/pub/wlg/7933
    /people/peter.gutsche/blog/2008/10/27/what146s-new-in-sap-netweaver-pi-71
    There is a section in the following link on IDOC , have a look at the links in that section
    https://wiki.sdn.sap.com/wiki/display/XI/ImportantBlogsand+Notes
    Best Regards

  • Dreamveawer stuck with Business Catalyst account (Adobe ID Error)?

    Hi all, I recently purchased a subscription Creative Cloud, after trying one month subscription to Adobe Muse.
    In that month I joined the publishing service of temporary sites on Business Catalyst.
    I stopped the renewal to Adobe Muse because obviously passed to the next step.
    Here are the problems started, the business catalyst login ask me to merge my login data to the Adobe ID, and returns me the error that there is already an account with that email catalyst business and can not combine the two. So, after several attempts, try (discouraged) to create an adobe id again with a different email.
    Ok. Muse can go on changing the account for publishing the temporary site, but no Dreamveawer CS6. It tells me (in Italian, my language)
    "There is already an account with the same e-mail in Business Catalyst. To associate the Business Catalyst account with your Adobe ID, go to the administrative console Web Business Catalyst."
    within the web admin panel open, where I can do something to correct this?
    Upd01: I see now a similar problem posted in http://forums.adobe.com/message/4699850
    When I try to create a Business Catalyst project in Dreamweaver, I get the following error message:
    An account with the same email already exists in Business Catalyst. To associate the Business Catalyst account with your Adobe ID, please log in to the Business Catalyst web administration console.
    However, I can't find any place in the BC web administration console to link accounts.

    Hi Andrea
    Please log into your site admin area and use the "Help & support" button to log into our support area and submit a case. You should submit a case in English, as we do not offer support in other languages.
    In your case  you should add the link to this post, your first BC email account, your second BC email account . You should not use the live chat, as this issue need to be investigated & excalated.
    Best regards,
    Aniela

Maybe you are looking for