FCC Receiver Error

Hi Experts,
I am working on a fiel to file scenario where in I am writing filename using Dynamic Config in a Java Map.
The output payload is :
<?xml version="1.0" encoding="UTF-8" ?>
- <ns0:MT_OUT_triggerfile xmlns:ns0="http://www.test.com/triggerfile">
- <Content>
  <Data>Name is Dominic</Data>
  </Content>
- <File>
  <filename>InputFile.txt</filename>
  </File>
  </ns0:MT_OUT_triggerfile>
Now my requirement is that I need to write the Data in a text file at the receiver end.
I don't need file name in the content of the output file.
Below are the content conversion parameters given.
Recordset Structure : Content,File
Content.endSeparator     'nl'
Content.fieldSeparator     'nl'
File.noOfColumns     0
File.fieldFixedLengths     0
File.fixedlengthTooShortHandling     'Cut'
I am getting an error : *'java.lang.Exception: Column value 'InputFile.txt' too long (>0 for 0. column) - must stop', probably configuration error in file adapter (XML parser error)'*
I am wondering now in the file adapter using FCC can't we suppress unwanted node?
Something missing in the above Config?
Can someone help me on this?
Thanks & Regards,
Dominic

Hi Sarvesh,
I even tried this before itself but it dint work.
Further you have mentioned that "If it fails then you may have to give the Content.fieldFixedLengths & Content.fieldNames as well".
The issue here is not with the content field as when i just change the value of fieldFixedLengths for File the content conversion works with the filename also in the file.
The below config works but i dont need the file name in the text.
Recordset Structure : Content,File
Content.endSeparator 'nl'
Content.fieldSeparator 'nl'
File.noOfColumns 0
File.fieldFixedLengths 12
File.fixedlengthTooShortHandling 'Cut'
I do not want the file name to be in the file basically needs to suppress the File node.
Thanks & Regards,
Dominic

Similar Messages

  • FCC Receiver Error :Column value '   ' too long

    Hi Experts
    I am getting data from SAP for which i should create a file which is fixed length on the target side
    My structure is :
    File----1.....Unbound
    ----->Header --- -1..1
    >RecordType
    >Transcode
    >PO_Num
    >Vend_ID
    >Crea_date
    >WHS_ID
    >POM_Status
    >Cancel_date 
    >Delv_date 
    >Ord_type 
    >POM_Char
    ---->Record_Detail---1..Unbound
    >Record_typ
    >PO_Num
    >Line_no
    >Itm_no
    >Sch_No
    >QTY
    >UOM
    >Vend_itm_no
    >Delv_Date
    >Buyer_name
    >WHS_ID
    ---->var1-0..1
    ---->var2-0..1
    var1 and var2 I am using for variable substitution.
    I have configured the receiver FCC as below
    Record Structure  HeaderRecord,Record_Detail
    HeaderRecord.fieldFixedLengths     1,1,30,10,8,2,1,8,8,8,1
    Record_Detail.fieldFixedLengths     1,30,5,30,3,8,2,20,8,25,2
    And I have given var1 and var2 in varaible substitution.
    But I am getting the following error when recevier receiving the file
    Could not process due to error: java.lang.Exception: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'java.lang.Exception: Column value '0811200613.WAPONUM' too long (>1 for 0. column) - must stop', probably configuration error in file adapter (XML parser error)'
    Please help me
    Regards
    Sowmya

    Hi,
    If u have added Trailer Node ( And Var1 & Var2 inside it) then try adding this:
    Trailer.fieldFixedLengths     0,0
    Trailer.fixedLengthTooShortHandling     Cut
    Hope it will solve ur problem.
    For reference check:
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Check ur final structure is like this:
    Recordset Structure: File,Header,Record_Detail,Trailer
    Header.fieldFixedLengths: 1,1,30,10,8,2,1,8,8,8,1
    Header.fieldNames: RecordType,Transcode,PO_Num,Vend_ID,Crea_date,WHS_ID,POM_Status,Cancel_date,Delv_date,Ord_type,POM_Char
    Record_Detail.fieldFixedLengths: 1,30,5,30,3,8,2,20,8,25,2
    Record_Detail.fieldNames: Record_typ,PO_Num,Line_no,Itm_no,Sch_No,QTY,UOM,Vend_itm_no,Delv_Date,Buyer_name,WHS_ID
    Trailer.fieldFixedLengths: 0,0
    Trailer.fieldNames: var1,var2
    Trailer.fixedLengthTooShortHandling: Cut
    File.fieldSeparator: 'nl'
    Thanks,
    Mahi
    Edited by: Maheshwari Morbale on Nov 21, 2008 6:33 AM

  • FCC Receiver side

    Hi Experts,
    Im working with the file to file scenario with FCC receiver side parameters ( sender xml with receiver text).
    I want my fields with comma separated values...like... abc,xyz,mno.. so on...
    Im giving the parameters as :
    HEADER1.fieldSeparator: 'nl'
    HEADER.fieldseparator: ,
    Where the structure is Header1--->Header.
    Im getting the error as :
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Channel has not been correctly initialized and cannot process messages
    Channel has not been correctly initialized and cannot process messages.
    Please help.

    Hi Robin,
    My sender xml file structure is :
    DT_FCCRec-->HEADER1->HEADER--->lastname,name,middle,company...so on till 10 fields.
    My output file should be a text file with comma seperated values.
    I need 5 rows...with 10fields seperated by comma:
    name,lastname,firstname.....10 fields
    name1,lastname1,firstname1...10fields
    name5,lastname5,firstname5...10fields.

  • Fields Order change in FCC receiver

    Hi experts,
    i am receiver message in following format:
    EMPID(12)
    EMP_NAMEFULL(100)
    EMP_NAME(30)
    and i have mapped it with receiver type as
    EMP_NAMEFULL(100)
    EMPID(12)
    EMP_NAME(30)
    ( i am just changing the fields sequence)
    Here i am using FCC receiver adaptor in which i have specified the required fields names and lengths(100,12,30). but it gives me error of fields too short for first field.
    if i give the fields names and length in corresponding to seder message as(12,100,30) it is working fine but file contains wrong filed sequences {EMPID(12)EMP_NAMEFULL(100)EMP_NAME(30)}
    but i want {EMP_NAMEFULL(100)EMPID(12)EMP_NAME(30)}
    Can any body suggest what should i do?
    Thanks in advance.

    Hi All,
    solved it... my mapping was not proper.

  • I have an iMac 5.1 with Mac OSX 10.6.8 and 2 GB memory and an L2 cache of 4 GB.   lately I have been receiving error messages of " start up disk almost full; please delete files." is the start up disk the same thing as the hard drive?

    I have an iMac 5.1 with Mac OSX 10.6.8 and 2 GB memory and an L2 cache of 4 GB.   lately I have been receiving error messages of " start up disk almost full; please delete files." is the start up disk the same thing as the hard drive?  I opened the hard drive and from the column on the left of the menu I've selected "search for" and under that " all images" then "all documents"  I've deleted a few files from each. Are documents and images that I have deleted from here also deleted from the folders on my desktop?

    You should never, EVER let a conputer hard drive get completely full, EVER!
    With Macs and OS X, you shouldn't let the hard drive get below 15 GBs or less of free data space.
    If it does, it's time for some hard drive housecleaning.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your iMac's Trash icon in the Dock?
    If you use iPhoto, iPhoto has its own trash that needs to be emptied, also.
    If you store images in other locations other than iPhoto, then you will have to weed through these to determine what to archive and what to delete.
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Delete any other mail in your Junk folders. Also, look through your Sent Mail to see if there is anything that can be deleted.
    Other things you can do to gain space.
    Once you have around 15 GBs regained, do a search, download and install OmniDisk Sweeper.
    This app will help you locate files that you can move/archive and/or delete from your system.
    STAY AWAY FROM DELETING ANY FILES FROM OS X SYSTEM FOLDER!
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Look in your Applications folder, if you have applications you haven't used in a long time, if the app doesn't have a dedicated uninstaller, then you can simply drag it into the OS X Trash icon. IF the application has an uninstaller app, then use it to completely delete the app from your Mac.
    Download an app called OnyX for your version of OS X.
    When you install and launch it, let it do its initial automatic tests, then go to the cleaning and maintenance tabs and run the maintenance tabs that let OnyX clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Good Luck!

  • Send error. -9107 and receive error. -9109

    hello *,
    i am trying to get the sample apps. work.
    i have installed oDbSrv.9i, m-Srv + mdk and mobile Client(win32 native) on the same machine.
    i installed the samples by using the script.
    each time i am trying to sync with msync.exe i am recieving one of the following errors:
    send error. -9107 or receive error. -9109
    i am using the following sync-infos:
    user jane
    pwd jane
    srv. <http://myMachine>
    i installed another client (webtogo) on another machine.
    everthing works fine until i want to sync.
    the message reference says i have to look for bad communication to the mobilesrv..
    i can ping, i can run setup, i can login.
    even when i am starting to sync from the webtogoclient the clock which tells me the connecting to server state says done!
    but in the next step (sync app-data) the noted errors occures.
    can anybody give me a solution for this issue?
    thx

    We have seen this problem before and it is most likely because you installed MDK, Mobile Client and Mobile Server on the same machine. Install Mobile Server and MDK on one machine A and Mobile Client on another machine B.

  • I can't open my Itunes keep receiving error message- The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder

    I can't open my Itunes keep receiving error message- The iTunes Library.itl file  cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. I have even tried removing and reinstalling iTunes and it still does work because I continue to receive this error message. Please Help!

    Anyone can help to advice how to solve this issue ?

  • Tried to open lr 5 in cc. Receive error message "LR encountered an error when reading from its preview cache and needs to quit". How do I fix the problem?

    Tried to open LR 5 in cc. Receive error message "LR 5 encountered an error when reading from its preview cache and needs to quit". How do I fix the problem?

    Hi, Have a look under the "MORE LIKE THIS" on the right there should be an answer in one of those threads.

  • I recently tried to print a document to an hp printer, but received error 79 message. Can anyone assist me

    I recently tried to print a document to an hp printer, but received error 79 message. Can anyone assist me

    Google is your friend: Hp Error Code 79, Service Errors 79 Laser Printer Repair
    As long as you don’t mind your friend always reading over your shoulder.

  • Can't access my email. Receiving error message that my account has been suspended and that I need to contact customer service. How do I get a phone number?

    The details are in the question. Receiving error message that my account has been suspended. Looking for a phone number to call and speak to someone. Or, please have someone call me at '''*removed*'''.
    '''Phone number removed by moderator to protect privacy'''

    Note that mozilla does not have a phone number and would never charge for services, if there is a page that says so, its a lie.

  • Firefox crashes whenever i want to install any addon or download any file. Some times i am receiving error while downloading any file like "could not be saved, because you cannot change the contents of that folder"

    I am the user of latest firefox 3.6.6 browser. I am getting problems of frequent crashes whenever i tries to install any addon. The crashes also occures whenever i want to download any file.
    I am also receiving errors while downloading any file like:
    "C:\Users\****\AppData\Local\Temp\******.001.part could not be saved, because you cannot change the contents of that folder.
    Change the folder properties and try again, or try saving in a different location. I already changed it many many times but still the same problem."
    Adobe flash palyer is also giving problems of not responding. I am using updated version of it already. Java is also updated.
    I already uninstalled firefox compeletly and re installed it many many times but still the same problem. I also scanned my computer with avira and malware bytes' Anti malware and got no dection. Please ractify this problem ASAP lest my profession will suffer.
    == Crash ID(s) ==
    b7f518f2-8d86-41ca-8bab-aee632100709; 1d790e10-d8eb-4904-98c9-94bc62100708; f042d319-b9f8-42ed-a8cb-57c7d2100708

    Please help.
    It is getting worse
    Adobe flash player is crashing. I already uninstalled and re installed the latest ver. Also it is hanging randomly.
    Please help.

  • I cannot connect to the iTunes Store.  I receive Error Code -1202.  This problem began yesterday.  I have been successfully connecting to the store for months on this PC.  I am running Windows 7 and the Windows Security Center.  Thanks for any help

    TS1368 I cannot connect to the iTunes Store.  I receive Error Code -1202.  This problem began yesterday.  I have been successfully connecting to the store for months on this PC.  I am running Windows 7 and the Windows Security Center.  Thanks for any help.

    Hello alankilner,
    And welcome to Apple Discussions!
    Using Proxy: Yes
    Try temporarily disabling this setting by following the steps outlined in this Apple support document.
    http://support.apple.com/kb/TS1490
    B-rock

  • I CANNOT DOWNLOAD UPDATES RECEIVE ERROR message 0x800f0826 what can i do also cannot use all

    i can not install updates .receive error 0x800f0826
    cannot use all my symbols on my keyboard

    Please give more info so  we can help you.
    Witch operating system, photoshop cc or cs6 and what error message came up

  • Downloaded new version itunes to Windows 7, now receiving error while computer is booting Apple Sync Notifier.exe- Entry Point Not Found the procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite.dll., Help!

    Downloaded new version itunes to Windows 7, now receiving error while computer is booting Apple Sync Notifier.exe- Entry Point Not Found the procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite.dll., Help! How do I remove this message every time I start up Windows? Would it help to
    re-install Itunes and what version??

    Refer to this thread - https://discussions.apple.com/message/15685210#15685210
    Quick answer "copy the file SQLite3.dll from the C:\Program Files (x86)\Common Files\Apple\Apple Application Support folder to the C:\Program Files (x86)\Common Files\Apple\Mobile Device Support folder"

  • Can not update Photoshop CC (2014) and receive error message U43M1D206. What do I do?

    Can not update Photoshop CC (2014) and receive error message U43M1D206. What do I do?

    Bump
    I am also having the same issue with a lot of the softwares i have downloaded. Its unable to download the initial patch update.

Maybe you are looking for

  • Installation problem of Flash player on Mac

    Tried to install update of flash player, but it stopped at 20%. Uninstalled old version of flash and now I am trying to install latest version, but it stops at 30%. I am running Mac OS X Yosemite vs. 10.10.2 and Safari 8.04. Checked security settings

  • Why does not my query use an index?

    I have a table with some processed rows (state: 9) and some unprocessed rows (states: 0,1,2,3,4). This table has over 120000 rows, but this number will grow. Most of the rows are processed and most of them also contain a group id. Number of groups is

  • Overflow in PLD Forms

    I have a PLD derived from the Advice/Delivery Note, everything seems fine, but when I have above 20 items with some text attached, the text overflows to the second page. Is the a way of setting up the overflow line number or making sure that the item

  • Attachments coming out as .Jpegs?

    hey all - I've been encountering this problem when I send attachments out through mail. I'm usually sending PDF attachments out and for whatever reason, when they are received, they are in JPEG format and NOT PDF (the original format sent.) Has anyon

  • Will Japan ever be able to display Skye number in ...

    Will Japan ever be able to display Skye number in Caller ID? It's been years and so far it still seems you are unable to display a skype number in the caller ID of Japanese phones. Please advise.