Problem with file sender adapter and endSeparator

Hy,
have the following situation: with a sender File adpater i have to receive the same structure of data but in two mode.
1) First mode : each recorset is defined as a file line
   Example (not fields separator):
   fielda,fieldb,fieldc
   field2a,field2b,field2c
2) Second mode : recorset of the same line without end
    separator and fieldseparator
   Example (not fields separator):
   fielda,fieldb,fieldc,field2a,field2b,field2c,......
I configured the adapter as follow.
structure.fieldFixedLengths      1,2,3
structure.fieldNames             field1,field2,field3
structure.lastFieldsOptional     YES
structure.processFieldNames      fromConfiguration
structure.endSeparator           'nl'
PROBLEM
Mode 1) works but mode 2) doesn't work.
Could anyone solve my problem??
Thank's
Mati

Hi,
Try using two differnt record structure name for each mode.for eg give it as structure1 and structure2.then u give the content conversion parameter for both the recordset depending on ur requirement i.e, with and without end seperator.
regards
jithesh

Similar Messages

  • Problem in File Sender Adapter in File with quotes

    Hi experts.
    We're having a problem in File Sender Adpapter.
    We've configured the adapter with FCC. We use the fieldSeparator = ; to convert the file to xml.
    The problem arises when between two ; appears a quote. For insantce in this line:
    HUMALVAL MASCOTAS S.L.;"AV/DE EUROPA SN;P.IND.ALCORCO;28922;ALCORCON;40.349968;-3.847452;
    The adapter shows this error:
    More elements in file csv structure than field names specified.
    If the line was (without "):
    HUMALVAL MASCOTAS S.L.;AV/DE EUROPA SN;P.IND.ALCORCO;28922;ALCORCON;40.349968;-3.847452;
    everything would work correctly.
    How could we solve this?
    Thanks in advance.
    Regards.

    Hi,
    Please use  xml.enclosureSign=u201C in your sender FCC.
    Hopes this helps to you.
    Regards,
    P.Rajesh

  • File sender adapter and content conversion with polish character

    We are loading a csv file with PI 7.0 file sender adapter using "content conversion" - all fields go through EXCEPT a special character hex '208C' (space in front) looks like "Æ" is converted to hex 'C28C'.
    We are using code page UTF8
    We are using:
    enclosuresign "
    enclosuresignescape ""
    fieldcontentformatting nothing
    enclosureconversion NO
    Hope some one can help

    Hi Bohamo,
    Hope you have set the following for your file sender adapter :
    1. Transfer Mode is set to Binary,
    2. File Type Text,
    3. Encoding ISO-8859-1( for Western European Latin ).
    Inorder to recognize Polish Character, try as follows :
    Your sender file after coming into Pi has XML encoding declaration 'UTF-8'.
    Write a simple XSLT mapping to change the value of the attribute "encoding" to "ISO-8859-1" in the output XML of message mapping . Include this XSLT map as the second mapping step in your interface mapping.
    First step in your interface mapping will be your already existing message mapping.
    An example of the XSL code :
    <?xml version='1.0'?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method='xml' encoding='ISO-8859-1' />
    <xsl:template match="/">
    <xsl:copy-of select="*" />
    </xsl:template>
    </xsl:stylesheet>
    or you can also do java mapping if you are comfortable with java code !
    Cheers,
    Ram.

  • Problem in file sender adapter for newline character

    Hi All,
         I'm trying to read a file of only one record with the following fields.
    Name
    Age
    Place
    <b>Each field is seperated by a new line</b> which is the cause of the problem.
    <b>The problem is the value 'nl' for x.fieldSeperator is not been recognised in file sender adapter.</b>
    The adapter creates a new record (new XML) for each individual field seperated by new line.
    <b>I've tried even with the corresponding hexadecimal values '0x0a' and '0x0d'.</b>
    Looking for some help.
    Thanks,
    Joe.

    Hi Shabarish,
            Thanks for your reply. But I tried that too already... It also didn't work..
    File adapter is successful... But it generates seperate records for each fields that's wat the prob is..
    Thanks,
    Joe.

  • How to ignore columns in CSV File with File Sender Adapter

    Hi,
    I have a CSV File that I need to load with XI. The File contains 10 columns but I only need the data from 3 columns, let's say column 1,4 and 7. Can I configure the XI File Sender Adapter in a way that it only loads the data for the required columns and ignores the rest?
    Thanks in advance.
    Alex

    Alex,
    Dont think so. Why not create Dummy fieldName for these columns you want to ignore.?
    Regards
    Bhavesh

  • Pick up a specific file with File Sender Adapter.

    Hi guys,
    I would like to know how I can pick a specific file in a file pool (folder)? I would like to choose this file by name, like FileA or FileB, etc.
    I’m asking this because I have an asynchronous file scenario (BPM) with a receiver adapter that put the File with a specific name (variable substitution) in a folder.
    And I would like to do something like this:
    In another asynchronous scenario (BPM), a File sender adapter picks up this specific file (using the name). The correlation is made trough an IDOC that XI receives before pick up the file, this IDOC has payload field with the name of file to be picked.
    Is it possible receives the IDOC, read the field with the name of the file to be picked and choose this specific file? In a Sender File Adapter how I can do something like variable substitution like receiver adapter does.
    Thanks in advance,
    Ricardo.

    Hi,
    <i>Is it possible receives the IDOC, read the field with the name of the file to be picked and choose this specific file? In a Sender File Adapter how I can do something like variable substitution like receiver adapter does.</i>
    No this is not possible. The only dynamic thing you can do is use wild card characters like *.
    So, maybe you can pick a file like . or AA. and so on...
    Regards,
    Bhavesh

  • Problem with File content conversion and parameters

    Hi experts,
       What is the use of file content conversion that is available in file adapter? For what cases we can use it?
      What do the different content conversion parameters mean?
    Kindly help
    Thanks
    Gopal

    Hi,
    We use the file content convertion to conver the flat file that is text file into XML,
    File adapter cant understand the format the file is,so we have to declare the content convertion parameters.
    Check some links which will tell how the convertion is done.
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    /people/venkat.donela/blog/2005/06/08/how-to-send-a-flat-file-with-various-field-lengths-and-variable-substructures-to-xi-30
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    /people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    Regards,
    Phani
    Reward points if helpful

  • Problem with JDBC Sender adapter

    hi guys!
    I´ve problem in PI 7.0, with the JDBC Sender Adapter, execute select sentence and update status in Oracle database.
    In RWB Message Monitoring and SXMB_MONI I can't see any message.
    Someone have any idea how to fix it?
    Thanks in advance.

    Hi David,
    First check on the sender communication channel, if no data has been picked up by PI on channel,
    then check the configuration of channel in the ID, especially select query.
    If that is ok, then ask the sender application team(oracle database team) to run the query on their side
    and to check if they are getting any data.
    There could be the possibility of error in data also.
    -Supriya.

  • Problem with File Sender

    Hi All,
    I'm using the sync-async bridge for the following scenario.
    An HTTP request(sync) is made to XI and the message is passed to the first receive step of a BPM. The BPM will send the message asynchronously to a business system which has a file adapter and creates a file. Another file adapter polls for this file (Delete Mode), and as soon as the file is created, reads it and sends a message to the Second receive step of the BPM asynchronously. Then the Second Send step will synchronoulsy send this message back and closes the SA-Bridge.
    The problem is in the Second receive step. Instead of sending an asynchronous message after reading the file, the message sent is shown synchronous. The interface used is also asynchronous. Also the file adapter is not deleting the file after picking it up. It continuosly reads the same file and sends many messages.
    Does someone have any idea, why this problem occurs. Note that I'm not using an integration scenario. I have created 3 receiver determinations.
    1. Fromm HTTP to BPM
    2. From BPM to File System
    3. From File System to BPM (This step gives the problem)
    Can someone help me out?
    Thanks,
    Sandeep

    Check if ur response msg is correlated to request message, or else XI will not be able to map the response to request structure
    if in doubt chk this blog
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi

  • Problem with File Sender directories

    Hi everybody.
    I have a File Sender.
    I´d like to generate dynamically the "Archive Directory" and "Directory for Archiving Files with Errors"
    How could I get that?
    Regards

    Hi Cristian,
    Here we have to see two things :
    1. For one sender communication channel you can have only one Archive directory and
         as a standard it has to be hard coded while channel configuration.doing it dynamically is not possible i guess.
         if you don't have too many archive directories using multiple channels would  be an option.
    2. How you will identify the file with errors ? If you have some conditioning to check for a invalid
       file then i think you can  configure a service with a conditions to route all the invalid files through one channel
       in receiver determination(default receiver).
        Or if you can tell if the file is good or bad , only when the target system receives and validates
        it then  i think a BPM can be configured to receive the ack flag and send the file to Directory for
       Archiving Files with Errors.
    Regards,
    Srinivas

  • Problems with broadcom wlan adapter and wlan-button.

    I've got a laptop (HP Compaq 6715S), which has an integrated wlan adapter (broadcom 4311/4312?). A couple of weeks ago the adapter was working ok with ndiswrapper and bcmwl5.inf driver, but it stopped working recently probably after ndiswrapper and/or kernel upgrade. Loading the ndiswrapper module from rc.conf made the whole system kernel panic (IRQ problem?) until I added:
    acpi=noirq
    to the kernel boot parameters. Now this error doesn't occur every time I load ndiswrapper, but the problem still exists. BCM43xx driver doesn't work either. I'm using the 64-bit arch.
    in my rc.conf I have:
    MOD_AUTOLOAD="yes"
    MOD_BLACKLIST=(pcspkr joydev bcm43xx bluetooth hci_usb pcmcia yenta_socket pcmcia_core)
    MODULES=(fglrx ieee80211 ieee80211softmac ieee80211_crypt ieee80211_crypt_wep ieee80211_crypt_tkip
    ieee80211_crypt_ccmp powernow-k8 k8temp thermal fan battery button cpufreq_powersave cpufreq_ondemand
    freq_table)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    DAEMONS=(syslog-ng dbus laptop-mode acpid cpufreq @alsa network wicd gdm)
    lspci:
    00:00.0 Host bridge: ATI Technologies Inc RS690 Host Bridge
    00:01.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge (Internal gfx)
    00:04.0 PCI bridge: ATI Technologies Inc Unknown device 7914
    00:05.0 PCI bridge: ATI Technologies Inc Unknown device 7915
    00:06.0 PCI bridge: ATI Technologies Inc RS690 PCI to PCI Bridge (PCI Express Port 2)
    00:12.0 SATA controller: ATI Technologies Inc SB600 Non-Raid-5 SATA
    00:13.0 USB Controller: ATI Technologies Inc SB600 USB (OHCI0)
    00:13.1 USB Controller: ATI Technologies Inc SB600 USB (OHCI1)
    00:13.2 USB Controller: ATI Technologies Inc SB600 USB (OHCI2)
    00:13.3 USB Controller: ATI Technologies Inc SB600 USB (OHCI3)
    00:13.4 USB Controller: ATI Technologies Inc SB600 USB (OHCI4)
    00:13.5 USB Controller: ATI Technologies Inc SB600 USB Controller (EHCI)
    00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 14)
    00:14.1 IDE interface: ATI Technologies Inc SB600 IDE
    00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia
    00:14.3 ISA bridge: ATI Technologies Inc SB600 PCI to LPC Bridge
    00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
    00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
    00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
    00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
    00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
    01:05.0 VGA compatible controller: ATI Technologies Inc RS690M [Radeon X1200 Series]
    02:04.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b6)
    10:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5906M Fast Ethernet PCI Express (rev 02)
    30:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g (rev 02)
    dmesg |grep ndis (after error)
    ndiswrapper version 1.49 loaded (smp=yes, preempt=yes)
    ndiswrapper (link_pe_images:576): fixing KI_USER_SHARED_DATA address in the driver
    ndiswrapper: driver bcmwl5 (Broadcom,10/12/2006, 4.100.15.5) loaded
    Modules linked in: ndiswrapper snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device snd_pcm_oss
    snd_mixer_oss container tsdev rtc_cmos rtc_core rtc_lib serio_raw evdev psmouse i2c_piix4 i2c_core ehci_hcd
    ohci_hcd shpchp pci_hotplug cpufreq_ondemand cpufreq_powersave k8temp ieee80211_crypt_ccmp
    ieee80211_crypt_tkip ieee80211_crypt_wep ieee80211softmac ieee80211 ieee80211_crypt fglrx(P) usbcore tg3
    snd_hda_intel snd_pcm snd_timer snd_page_alloc snd_hwdep snd soundcore ac button battery fan sbs thermal
    video output powernow_k8 freq_table processor ext3 jbd mbcache sd_mod sr_mod cdrom sg ahci ata_generic
    pata_atiixp libata
    [<ffffffff88405e77>] :ndiswrapper:win2lin2+0xe/0x11
    [<ffffffff883fa330>] :ndiswrapper:IoAcquireCancelSpinLock+0x10/0x20
    [<ffffffff883fae47>] :ndiswrapper:IofCompleteRequest+0x87/0x180
    [<ffffffff883fc4d2>] :ndiswrapper:pdoDispatchPnp+0x52/0x490
    [<ffffffff88400c08>] :ndiswrapper:mp_init+0xa8/0x1e0
    [<ffffffff883fa5f4>] :ndiswrapper:IofCallDriver+0x34/0xc0
    [<ffffffff883fb930>] :ndiswrapper:IoSyncForwardIrp+0x90/0xd0
    [<ffffffff88400e1b>] :ndiswrapper:NdisDispatchPnp+0xdb/0xee0
    [<ffffffff883fb1db>] :ndiswrapper:IoInitializeIrp+0x3b/0x70
    [<ffffffff88405e77>] :ndiswrapper:win2lin2+0xe/0x11
    [<ffffffff883fa5f4>] :ndiswrapper:IofCallDriver+0x34/0xc0
    [<ffffffff883fa61f>] :ndiswrapper:IofCallDriver+0x5f/0xc0
    [<ffffffff883fa330>] :ndiswrapper:IoAcquireCancelSpinLock+0x10/0x20
    [<ffffffff883fa5f4>] :ndiswrapper:IofCallDriver+0x34/0xc0
    [<ffffffff883fb6bf>] :ndiswrapper:IoBuildSynchronousFsdRequest+0x2f/0x50
    [<ffffffff883fc9fc>] :ndiswrapper:IoSendIrpTopDev+0xac/0x100
    [<ffffffff883fccff>] :ndiswrapper:pnp_start_device+0x4f/0xa0
    [<ffffffff883fcf6f>] :ndiswrapper:wrap_pnp_start_device+0x21f/0x260
    [<ffffffff883fd000>] :ndiswrapper:wrap_pnp_start_pci_device+0x50/0x60
    [<ffffffff883ef04c>] :ndiswrapper:loader_init+0x13c/0x260
    [<ffffffff883700b7>] :ndiswrapper:wrapper_init+0xb7/0xc3
    The other problem that I have is the wlan-button: The wlan adapter isn't always turned on at boot and I have found no way to turn it on from linux. It can be turned on by booting to windows or resetting the bios to defaults, but it is not very nice. I've noticed that pressing the wlan button adds one usb device:
    Bus 001 Device 003: ID 03f0:171d Hewlett-Packard
    Is there a way to fix these problems?

    lenni wrote:
    When I used to use ndiswrapper, just downloading one of the generic INF files didn't do the trick for me. I had to go to my manufacturer's homepage and download it there extract the drivers from the exe and use them in order to get my card work reliably.
    Also, have you used a 64 bit driver? This guy reckons you need it:
    http://www.linuxquestions.org/questions … ost2952703
    I guess I solved it. I have been using the 64-bit driver, but have tried the 32-bit driver from hp diver site too.  For some reason ndiswrapper seems to install a driver named "ndiswrapper" with this 32-bit driver, which is why it didn't work. So my solution was:
    1) Get the 32-bit driver from hp.com
    2) rmmod ndiswrapper
    3) remove all installed ndiswrapper drivers: ndiswrapper -r <drivername>
    4) installed the 32-bit driver: ndiswrapper -i bcmwl5.inf
    5) ndiswrapper -l gave me:
    bcmwl5 : driver installed
    device (14E4:4312) present (alternate driver: bcm43xx)
    ndiswrapper : invalid driver!
    6) Got rid of the weird ndiswrapper driver inside ndiswrapper: ndiswrapper -r ndiswrapper
    7) modprobe ndiswrapper
    Rebooted a couple of times and it seems to work ok.
    How about the wlan-button problem?

  • Problems with File Names, Placing, and Tracing Options in Actions

    I am trying to make an action that would place .psd files that are in a folder into Illustrator, trace using a custom option, (possibly expand),scale, and save. I would like the title to be the same as the psd file but ending in .ai instead of .psd.
    First problem is how to to name the .ai file.
    How can I make the action base the name of initial and final .ai file upon each individual psd file? In other words, testname.psd would become testname.ai
    Second problem is that as I make the action I seem to have to choose a file not a folder in order to proceed. This means that the action will only work for that .psd file.
    How can I choose a folder to place instead of simply a file?
    Third problem is that I have a custom preset tracing option that I use. Although I recorded this option as I made the action, in each batching cycle the dialog box for tracing opens and I must manually choose and confirm my tracing option.
    How do I record a tracing option that will automatically activate as part of an action?
    Please post your response here. If you want to E-mail me, my new address is [email protected]
    Thanks in advance for your help.
    Clifford

    How do I record a tracing option that will automatically activate as part of an action?
    You don't. You need to save it as a LiveTrace settings preset. Only named presets can be properly referenced in actions and then you would bypass the panel. As for the rest - file actions should be overridden with the respective settings on the batch panel, where you simply pick the folders for in and out, not specific files. You don't place them, you simply open them. By placing them, you merely add an unnecessary step that has no practical relevance whatsoever in this case.
    Mylenium

  • Problems with file location variables and Oracle 9i

    I'm new to Oracle and I'm seeing if I can get Oracle 9i running and do anything useful for me on a Solaris 9 platform.
    The installation of Oracle went OK except step three, creating a starter database. The installation wanted to put it on the same file system as {ORACLE_HOME} although I told the installation that I wanted {ORACLE_BASE} on another file system. So of course there wasn't enough room on the file system to make the starter database.
    I thought I'd be able to correct this after installation. I tried to make a General Purpose Database with Database Configuration Assistant but DBCA in step 5 of 7, File Location Variables still shows {ORACLE_BASE} to be the same as {ORACLE_HOME}, and no way to change that variable on this screen. Don't I want to change { ORACLE_BASE} to a file system that has enough space to make the data base? How do I change this variable? When logged in as the oracle user, I don't see it listed by setenv.
    When I ignored this setting and tried to finish DBCA, it hung.

    I looked for the {ORACLE*} environmental variables in the profile and login files of my oracle user, but didn't find that they were added by my Oracle setup. So I didn't think defining them as environmental variables would persist or overrule the global variables set at dbca run time.
    In the dbca windows, step 5 displays these global variable settings provocatively in a table, as if Oracle wants me to verify and edit them if necessary, but I keep poking at them with right mouse clicks, left mouse clicks, backspace, and delete, but all I can do is turn them blue.
    Currently when I use dbca to try to create a general purpose database, it hangs at 50% done, but not much space is used up on {ORACLE_HOME}. So it doesn't really look like the hang is caused by the disk being full. One of the processes that is hung is jre, so I thought I'd review the Oracle requirements and locations for JRE on my system.

  • File sender adapter is not working

    Hello All,
    We are facing a problems with file sender adapter. Communication channel is not picking the files from the directory, but the status in RWB for that channel is 'Functioning'. We are not sure whether the channel is locked or any other problewm with adapter. (In Alternate option, we have created copy of that channel and when it is activated, it picked the file )
    Can anyone help us how to identify whether channel is locked and any other solutions in this case.
    Regards,
    Sreenvias.

    Hi Srinivas,
    The file adapter ( The respective channel) is definitely locked in PI . Ideally for each polling interval a lock is being created and once the processing is over , the lock should be released/deleted automatically to allow further polling interval. If the lock is not released by the system automatically,further polling will not happen as expected. ( This may affect all sender file adapters as well. I would recommend to do a check in al sender file communication channels)
    You can see/delete the locks in Visual admin.
    Go to Server>Services->Locking adapter  and click refresh
    The entries for file adapter ( with name $XIAFFileAdapter) should be deleted by selecting those particilar entries and click delete selected locks.
    If you have more than one node, then same should be done in all server nodes.
      The temprory solution would be creating/copy the existing channel in ID with same properties and assign it into particular sender agreement.
    But, the lock may be created again which potentailly stops all your file based interfaces. Hence i would suggest to use Timeout parameter avialable in file sender adapter which termiates FTP session as you defined, This should solve your issue permanently.
    The FTP server do have thier own time out settings but if you don't defne any particulat time out in PI, the FTP server forcefully disconnects the FTP sessions which created locks in PI.
    Hope this solves your issue.
    PS: The same bahaviour would expected for all sender JDBC adapter as well

  • File sender adapter:FILE to IDOC without BPM, can't see in SXMB_MONI.

    Hi all
    I have a FILE - XI - IDOC Async scenario without BPM.
    I configured FILE sender adapter and IDOC receiver adapter. I made a mapping to transfer file data to the structure of IDOC.
    Now when i am trying to load the file using command prompt, i cud see nothing in the monitoring. Whereas if i go to the communication channel monitoring of runtime workbench, i saw that CC is polling correctly and was reading the file also.
    And also wen i saw in the processed folder which i mentioned in the CC configuration for the ARCHIVE DIRECTORY, i saw that file got transferred to the folder also.
    I don't understand why i cant see anything in the monitoring.
    Could anybody help me to rectify the problem. Is there anything i m missing ?
    Regards
    Naina

    Rajesh/Amar
    TCode:: SXMB_ADM->Integration engine configuration->specific configuration->runtime
    Trace_Level = 3 then you can get all MONI PIPELINE Steps also
    I did this change but cudn't see anything in SXMB_MONI.
    This is how i have configured my process:
    http://wiki.sdn.sap.com/wiki/display/XI/FiletoMultipleIDOCSplittingwithoutBPM
    But instead of IDOC splitting i have simple FILE - XI -IDOC scenario.
    I have configured everything exaclty the same way it is mentioned here. But for me the process is not visible at all.
    I can't even see the first request message in the monitoring.
    This is the message i can see in the communication channel monitoring:
    2010-05-24 09:07:41 Success Channel CC_*: Entire file content converted to XML format
    2010-05-24 09:07:41 Warning Channel CC_*: Empty document found. Proceed without sending message
    2010-05-24 09:07:41 Success File "/xyz/ABC.txt" archived after processing
    Is there any problem with the file and that could be the reason it cant convert the file to the request message MT_REQUEST and thus am not able to see anything in monitoring.
    help me guys....this is a simple process and i m stuck...its frustrating
    Regards
    Naina

Maybe you are looking for

  • How to setup BPEL JNDI connection on the application server

    Hi Can anyone tell me how to write a JNDI connection for my BPEL process? Currently we are invoking all my BPEL processes from a property file, but i need to call my BPEL process thru JNDI connection. Is it possible? If yes then How? Has anyone got a

  • Materialized View - does not contain a primary key constraint

    I am trying to create materialized view. I gone through the MV wizard creation. Added 2 columns (foo_column, foo_pk) of the table and have a simple select statement (Select foo_column from foo_dim). Also created a primary key contrainst and refencing

  • Amend approved Purchase Order

    How do I amend a purchase order that is already approved. Amend quantity, payment terms, etc.,

  • Getting IP Address information from an NSNetService object

    I have an NSNetService object that I received from doing a Bonjour discovery. This object represents a web server that I want to connect to. I have the following (nasty) code for doing that: - (void) serviceReceived:(BonjourViewController*)bvc didRes

  • A question about transport of the change to InfoSet

    Hello Expert, I made a change to the infoSet MMIV03 by Transaction SQ02 and add MKPF-USNAM into the field group INVENTORY MANAGEMENT. Then I clicked Save button, but there is no pop up window to ask me to save into transport. I clicked "Generate" but