Last field not shown in MONI if its empty during content conversion-urgent

Hi All,
        I have my input structure like
   <RECORDSET>
      <EMPLOYEE>
         <FIRSTNAME>
         <LASTNAME>
         <PHONENUMBER>
      </EMPLOYEE>
   </RECORDSET>
       I have given my sender Conversion parameters like
   Employee.fieldSeparator=*
   Employee.endSeparator='nl'
   Employee.fieldNames=FIRSTNAME,LASTNAME,PHONENUMBER
It is working fine.But if the value is empty for any of the field it is showing up with empty tag in MONI but for the Last field i.e.,PHONENUMBER if the value is empty the tag is not being shown in MONI. Please help me in this issue.It is very urgent.

Hi Dinakar,
I haven't tried but u can check these parameters and give it a try
<b>NameA.missingLastfields</b>
If the inbound structure has less fields than specified in the configuration then the XML outbound structure is created as follows:
&#9675;       ignore
Outbound structure only contains the fields in the inbound structure
&#9675;       add
Outbound structure contains all fields from the configuration; the fields missing in the inbound structure are empty.
&#9675;       error
Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
&#9679; <b>     NameA.additionalLastFields</b>
If the inbound structure has more fields than specified in the configuration then the XML outbound structure is created as follows:
&#9675;       ignore
Outbound structure only contains the fields in the inbound structure
&#9675;       error
Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
The default value is ignore. If you have defined the NameA.fieldFixedLengths parameter, the default value is error.
<b>NameA.lastFieldsOptional</b> (obsolete)
You use this parameter to specify whether the last fields can be omitted (YES) or not (NO) in a comma-separated structure.
If you do not make an entry, the default value is NO.
Check for details:
http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm
Sachin

Similar Messages

  • Skipping fields during content conversion

    is it possible to skip fields during content conversion in file sender adapter?
    The case is, the CSV file contains 300+ field and i only need 10. Therefore i have created a datatype with those 10 field.
    I was hoping to skip the fields i do not need during content conversion.
    If this is not possible i see no other than to create a datatype with 300+ fields by hand. Which will take all day!
    Hopefully there is a solution, since i could not find what i needed on the SAP Help or SDN.
    Thanks in advance for all your time!

    Hi M,
    is it possible to skip fields during content conversion in file sender adapter?
    No .. this is not possible during FCC.
    The case is, the CSV file contains 300+ field and i only need 10. Therefore i have created a datatype with those 10 field.
    Hopefully there is a solution, since i could not find what i needed on the SAP Help or SDN.
    Well, you can give it a shot. There are freewares available on internet, which can transform the CSV file to XSD. Then you can import that XSD structure in ESR.
    The only point is that your source CSV file must be having the header (with all field names on it).
    I had done this with another integration tool, no idea how it will work with PI. But it's worth giving it a try.
    If this is not gonna happen, then you have no other option but to create complete DT manually or use adapter module (not recommended for such cases).
    Regards,
    Neetesh

  • Qualifier Field Not Shown in Qualified Table

    Hi All,
    Can anybody tell me why the values of qualifier fields are not shown in the qualified tables? And where are those qualifier values stored, in the main table or in the qualified table itself?
    Best Regards
    Jerome

    Hi Jerome,
    Before starting, I am assuming there is no confusion relating to Qualifiers & Non-Qualifiers.
    Non-Qualifiers --> Decidors/Fields whose value changes
    Qualifiers --> Fields which get decided/whose value changes based on the Non-Qualifers.
    You said - "<i>Can anybody tell me why the values of qualifier fields are not shown in the qualified tables?</i> "
    <b>1. )</b>What I understood from your question is that; when you select your Qualified Table in the Record Mode of the Data Manager, the qualifiers appear to be locked/non-editable. Is that right?
    All the qualifiers are locked because <b>they have no context in the Qualified table.</b>
    For e.g.: If your Qualified table is "Addresses" consisting of
    Non-Qualifiers --> Address Type(say Home(can be more than 1), Office,etc)
    Qualifiers --> HouseNo,Street, City, Country,etc.
    What would it mean if we put the street name "XYZ Street" for the record selected. Nothing -- the street must be connected to a main table record, a Customer(Cust_Id)  and and an address-type(Home) to have meaning.
    <b>2.)</b> If the above interpretation of your Q is not correct, then 2nd case could be --> when you select your main table in DM (Record Mode)and try to add a Qualified Lookup value to a record you are unable to see the qualifiers. Right?
    In the main table Double-click on the quailfied lookup field. An screen pops-up. Here we see the available lookup records -- these are in fact the records we saw when we switched to view the Addresses qualified lookup fields, which means these are the values stored in the non-qualifiers. You have to select & add them (Selected Lookup Records). The qualifiers become enabled. Now you an add values to them.
    You can either use an existing Address type or add a record to the Qualified-Lookup Table from here.  We can add and remove types of addresses -- a main table record may have any number of any type of address. When we add a type, for example "Favourite Restaurant Address"(say), we can enter information for the qualifiers, those field which make sense only when connected to a main table record and a non-qualifier. If we add two "Home" addresses each can have it's own values for the City, Street, Country, State and Postal Code qualifier fields
    To answer 2nd part of your Q - "<i>And where are those qualifier values stored, in the main table or in the qualified table itself?</i>"
    Qualifiers are database “subfields” that apply not to the qualified table record by itself, but <b>rather to each association of a qualified table record with a main table record.</b>
    Hope this helped your cause. Please mark helpful answers.
    Regards,
    Siddharth Sharma.

  • Sender file adapter dropping last column during content conversion

    I am trying to process a flat file with pipe delimited data, but when the last column of the file is empty the file adapter ignores the column, causing issues with the subsequent mapping program.  For example, if the file contains the following data..
    1||three|
    ... the converted content produced is...
       <column1>1<column1>
       <column2/>
       <column3>three</column3>
    My mapping is expecting that <column4/> also be delivered in order to function properly.  The fields are all defined in record.fieldNames, and if there is any data present following the third pipe it is assigned correctly to the column4 element.  I have also experimented with setting missingLastFields to "add", and tried explicitly specifying endFieldSeparator to 'nl' with no success.
    Is there anyway to control this behavior in the communication channel, or is my only option to to account for it within the mapping by using mapWithDefault function for every field that appears at the end of a record?

    Nataliya,
    Ensuring that the element is populated during the mapping appears to be the only way to account for this.  Therefore, whenever mapping the last column of a record set, I just made sure to use the MapWithDefault function in case the last field of the record is empty.  It's a little extra manual effort, but it appears to be working fine so far.  I was hoping for a better answer myself.

  • Text Field not shown in Adobe 6.0 and 7.0

    I created a simple pdf file with a text field in Adobe LiveCycle Designer 7.0. After I fill the text field with a third party tool in a program, the field's value dosen't appear in Adobe Professional 7.0 while appears in Adobe Professional 6.0. What is a problem? Does some settings will affect this case?
    Thanks for any answer...

    Thanks for your reply.
    I had another test recently.
    I save a pdf as a "compatible with 6.0" type which is created by Adobe Designer 7.0. After I opened it in 6.0 and filled the text field, it worked well. But when I opened it in 7.0, all the value was lost.
    Is 7.0 not well compatible with 6.0? What could I do if I created pdf with 7.0 and the users use 6.0 (you know, I can't request all the users to use new 7.0)?
    Any advice will be appreciated.

  • Customer field Not shown in ME21n and ME22N

    Hi,
    While creation ME21N and change ME22N we are unable to get Customer field in Delivery address tab of the PO, We are getting Address and Vendor (Sc Vendor) fields in Delivery address tab , but customer not able to see.
    The Customer field we can seen through ME23N.
    We have cross check screen layout for ME21N and ME22 and NBF here in all cases Customer field is Optional.

    Hi,
    Please check screen layout for AKTH & AKTV.
    Regards
    Subbu.

  • Custom Fields not shown in BSEG using OXK3 transaction

    Hi,
    I have added new custom fields in Expert Mode using OXK3 transaction to add new fields in BSEG table.
    The Include CI_COBL is created with custom fields in OXK3  .
    I then tried to add fields by selecting "Add Field to BSEG" but an access key is required which I do not have.
    Now is there any other way or what is the next step to reflect the custom fields in BSEG table after creating the CI_COBL in OXK3 transaction.
    I do not have access to SAP Marketplace from where I can refer to SAP Notes.
    Thanks
    Amit

    Hello Amit,
    Are you sure this is a question related to SAP ByDesign and not SAP ECC?
    You will certainly have more luck finding answers in the right forum thread.
    Best regards.
    Jacques-Antoine Ollier

  • Portal report - If rows returned are 1 greater than max,last row not shown

    We are experiencing what appears to be a bug with reports developed from a locally built Provider in Portal...
    If my "maximum rows to return" is set to 20, and my search returns 21 rows/results, the "next" button to navigate to the last row does not appear. Therefore, the last row is not returned to the user....
    We have been able to duplicate this with any number... For example, if we set the "max rows to be returned" to 59, and our results come back with 60 rows, neither the "next" button or last row are returned...
    Bug by chance?
    Thanks in advance for any help offered....
    ~Chris

    Hi Varsha,
    Please pay attention when you are requesting motnly period for
    start date : 1st July 2008
    end date : 1st july 2008
    After saving the period is changed to
    Start Date : 7/1/2008
    End Date  : 7/31/2008
    When you are requesting weekly period for the same interval, after sving the dates are changed again, according
    you settings of first day of the week. It it is Monday it could be as following
    Start Date : 6/30/2008
    End Date  : 7/6/2008
    So you are asking data for not quite the same period.
    Do you have data for monthly period in that interval?
    Regards,
    Victoria Gur

  • 360 panorama not shown in preview on iPad with Adobe Content Viewer

    Hello Forum -
    I have a weired problem with the 360 panorama…
    When I create the panorama using the overlay creator everything works perfect and the desktop preview is showing the panorama very fine.
    On the ipad (after login with my adobe ID and downloading the Magazin) I get only a white page after tapping the defined Preview image.
    I tried:
    _deleted all images from the original folder
    _renamed the files
    _created the Overlay again
    _reloaded the images into the InDesign Document
    _published again to the Adobe server
    _deleted the "Content Viewer" from iPad
    _installed new "Content Viewer"
    Still an my DesktopViewer everything is fine, but the 360 wont work
    btw. all other elements like slideshows, videos, scrollable text etc. is working
    Any Ideas or Solutions?
    Best regards, gutsche

    Try opening the six images in Photoshop and using Save for Web & Devices to save the files. Try creating smaller files.
    The current files you're using might be too much for the iPad to handle.

  • JDeveloper 11.1.1.5.0 ADF Library task-flow not shown

    fyi
    Please consider the example application created using JDeveloper 11.1.1.5.0
    at http://www.consideringred.com/files/oracle/2011/TestsInADFLibraryApp-v0.01.zip
    (in the context of forum thread "JUnit test classes in ADF Library")
    At some point, working with that application in JDeveloper 11.1.1.5.0, I used the deployment profile "adflibTestsInADFLibraryApp-ViewController-dp" to create the ADF Library "adflibTestsInADFLibraryApp-ViewController.jar" wich seemed to have an issue.
    When in a File System Connection on the Resource Palette, that ADF Library did not show the task-flow(s) it contained.
    But, I can no longer reproduce this. If I now try to do the same, the ADF Library seems to be OK. The only thing I can think of that changed, is that JDeveloper has been restarted (a day later).
    Showing both ADF Libraries in File System Connections on the Resource Palette illustrates this
    at http://www.consideringred.com/files/oracle/img/2011/task-flow-not-shown-jdev111150.png
    When I looked inside the ADF Libraries, the respective "task-flow-registry.xml" files were somewhat different:
    - in the "broken" ADF Library there were lots of XML namespace declarations
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <task-flow-registry xmlns="http://xmlns.oracle.com/adf/controller/rc">
    <task-flow-descriptor xmlns:ns0="http://xmlns.oracle.com/adf/controller/rc" ns0:path="WEB-INF/btf/browse-employees-btf.xml" xmlns:ns1="http://xmlns.oracle.com/adf/controller/rc" ns1:id="browse-employees-btf" xmlns:ns2="http://xmlns.oracle.com/adf/controller/rc" ns2:type="task-flow-definition" xmlns:ns3="http://xmlns.oracle.com/adf/controller/rc" ns3:uses-page-fragments="true" xmlns:ns4="http://xmlns.oracle.com/adf/controller/rc" ns4:library-internal="false" xmlns:ns5="http://xmlns.oracle.com/adf/controller/rc" ns5:train="false"/>
    <task-flow-descriptor xmlns:ns0="http://xmlns.oracle.com/adf/controller/rc" ns0:path="META-INF/adfc-config.xml" xmlns:ns1="http://xmlns.oracle.com/adf/controller/rc" ns1:id="" xmlns:ns2="http://xmlns.oracle.com/adf/controller/rc" ns2:type="" xmlns:ns3="http://xmlns.oracle.com/adf/controller/rc" ns3:uses-page-fragments="false" xmlns:ns4="http://xmlns.oracle.com/adf/controller/rc" ns4:library-internal="false" xmlns:ns5="http://xmlns.oracle.com/adf/controller/rc" ns5:train="false"/>
    </task-flow-registry>- in the "ok" ADF Library there was only one XML namespace declaration
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <task-flow-registry xmlns="http://xmlns.oracle.com/adf/controller/rc">
       <task-flow-descriptor path="WEB-INF/btf/browse-employees-btf.xml" id="browse-employees-btf" type="task-flow-definition" uses-page-fragments="true" library-internal="false" train="false"/>
       <task-flow-descriptor path="META-INF/adfc-config.xml" id="" type="" uses-page-fragments="false" library-internal="false" train="false"/>
    </task-flow-registry>- (q1) How can these not shown task-flows (or its different task-flow-registry.xml file) be explained?
    many thanks
    Jan Vervecken

    Thanks for your reply Chris.
    Chris Muir wrote:
    a) When you say you've "used the deployment profile" I'm guessing you mean within JDeveloper and not via ojdeploy? ...That is correct.
    ... it seems you're doing the ADF Library generation inside JDev, not via ojdeploy via Ant correct? ...That is correct.
    ... (For reference the bug numbers are 10028879, 10028816, 913159). ...On My Oracle Support I have found:
    - bug 10028879, "OJDEPLOY FAILS TO COMPILE/GENERATE TASK-FLOW-REGISTRY.XML WHEN ${USER.DIR} USED" (having "Base Bug 10076058" which does not seem to be published)
    - bug 10028816, "OJDEPLOY FAILS TO GENERATE TASK-FLOW-REGISTRY.XML FOR CASE-INSENSITIVE WIN PATH" (and a patch)
    - for number 913159 I got "No results found" (which might be an unpublished bug, or a wrong number)
    ... by that stage I was sick of logging bugs against ojdeploy. ...Really, where did it hurt. ;-) ... logging bugs should not be a problem ...
    b) Regards the File System Connection in the Resource Palette, are you using an UNC mapping? ...No UNC mapping, just the local file system.
    ... The relating bug numbers are 9340973 and 12940696. ...On My Oracle Support I have found:
    - bug 9340973, "RESOURCE PALETTE FAILURE ON USING NETWORK PATHED FILE CONNECTIONS" (having "Base Bug 12940696" which does not seem to be published)
    - for number 12940696 I got "No results found" (which might be an unpublished bug, or a wrong number)
    So, about "I don't think these are related but let's rule them out", I think those are ruled out.
    regards
    Jan

  • Module pool screen element not shown

    Hi,
    I have a module pool with table control.
    I have added a new field to the internal table and included it in layout-checked properties and it is active/shown in output and input enabled
    Also, when I checked in PBO debugging, loop at screen, when the screen element is this field, active/input/output = 1
    I have activated the program/generated it/logged off from system and logged in again (to take care of refreshing the screen)
    The internal table has values for this field.
    When I execute the screen directly instead of module pool program, field is shown in table control
    But when I execute the module pool program, this field and heading are not shown in table control but empty space allocated for this field is shown.
    May I know how can I resolve this.
    Thanks!

    Hi Vasu,
    Go through this [Sample|http://help.sap.com/saphelp_nw04/helpdata/EN/9f/dbac5e35c111d1829f0000e829fbfe/content.htm].
    Regards,
    Maruthi

  • Company Code field now shown in Cost Center Master Data

    Hi
    I am new, I configured CCA. Created Controlling area and versions. When I created a cost center company code field not shown. I think one cost center assined to a one company code but in cost center master data Company code field not shown. I want to cost center company code specific. I using ECC6
    Pl help.

    Hi,
    When you will assign additional company codes, the cost centre created now, by default will be assigned to the existing company code, and for the new one - you will have to define cost centres again. So, everything is fine, do not worry.
    Regards,
    Eli

  • File is not creating on the Receiver for File Content Conversion

    Hi,
    i have created a scenario with this blog
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    for sender side i am using File Content Conversion to read .txt file and on receiver side i need xml file i have done that.
    when i placed the file in the sender folder it gets picked up and i checked in Communication Channel monitporing in Runtime WorkBench it is processed Successfully. but no XML File is created on the Receiver side. i am unable to see the messages on SXMB_MONI also.
    Please suggest some ideas to solve this.
    Thanks,
    Giridhar.C

    Hi Giridhar.
    unable to see the messages on SXMB_MONI also
    If the file got picked and in Communication Channel monitoring RWB you can see that it is processed without any errors ,, then i feel it should come in come.Please check the Audit log in RWB, there you can see the error message if any.
    Please check the connection parameters in FTP and make sure that the same sender folder is
    not being used by any other scenario.If you have done any recent changes then do  a cache refresh .
    Please post if you see any error in content conversion.
    Regards
    Srinivas

  • File sender content conversion 0..unbounded does not pull file

    i am trying to map a flat file using content conversion to this xml structure:
    <Header>
    <Field_ID/>
    <Filler/>
    <Record_type/>
    <File_name/>
    <File_date/>
    <File_time/>
    <Heb_code/>
    <Claim_no/>
    <Cont_no/>
    <Remark/>
    </Header>
    <Claim_Header>
    <Field_ID/>
    <Filler/>
    <Record_type/>
    <Vendor_code/>
    <Garage_no/>
    <Data_code/>
    <Year/>
    <Job_no/>
    <Cont_no/>
    <License_no/>
    <ODO_meter/>
    <Claim_type/>
    <VIN_code/>
    <Claim_open_date/>
    <Claim_fix_date/>
    <N_code/>
    <C_code/>
    <Ejob1/>
    <Ejob2/>
    <Page_no/>
    <Pre_conf_date/>
    <Pre_conf_no/>
    <Part_buy_date/>
    <KM_prev_fix/>
    <Bill_prev_fix/>
    <Material_fault/>
    <Damage_whole/>
    <Damage_code/>
    <Job_amount/>
    <Towing_amount/>
    <Parts_amount/>
    <Hour_rate/>
    <Cont_mark/>
    </Claim_Header>
    <job_row>
    <Field_ID/>
    <Filler/>
    <Record_type/>
    <Vendor_code/>
    <Garage_no/>
    <Data_code/>
    <Year/>
    <Job_no/>
    <Cont_no/>
    <page_no/>
    <line_no/>
    <shaaton_code/>
    <job_finish_code/>
    <amount/>
    <job_time/>
    <row_value/>
    <color_code/>
    </job_row>
    <part_row>
    <Field_ID/>
    <Filler/>
    <Record_type/>
    <Vendor_code/>
    <Garage_no/>
    <Data_code/>
    <Year/>
    <Job_no/>
    <Cont_no/>
    <page_no/>
    <line_no/>
    <material_code/>
    <amount/>
    <unit_price/>
    <row_value/>
    </part_row>
    <remark>
    <Field_ID/>
    <Filler/>
    <Record_type/>
    <Vendor_code/>
    <Garage_no/>
    <Data_code/>
    <Year/>
    <Job_no/>
    <Cont_no/>
    <page_no/>
    <line_no/>
    <remark/>
    </remark>
    <footer>
    <Field_ID/>
    <Filler/>
    <Record_type/>
    <File_name/>
    <File_Record_no/>
    <Claim_no/>
    <Cont_no/>
    <Remark/>
    </footer>
    job_row, part_row and remark are records that occur 0..unbounded.
    when i write in recordset structure: Header,1,Claim_Header,1,Job_Row,1,Part_Row,1,Remark,1,Footer,1
    and put file with one record each, the file is pulled, but when i change recordset structure to:
    Header,1,Claim_Header,1,Job_Row,* ,Part_Row,* ,Remark,*,Footer,1
    the file is not pulled.
    can anyone tell me what i'm doing wrong?
    thanx
    Tomer

    Hi,
    Refer this links for FCC.
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1)
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2)
    File Receiver with Content Conversion
    Content Conversion (Pattern/Random content in input file)
    NAB the TAB (File Adapter)
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1)
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2)
    How to send a flat file with various field lengths and variable substructures to XI 3.0
    Content Conversion (Pattern/Random content in input file)
    NAB the TAB (File Adapter)
    File Content Conversion for Unequal Number of Columns
    Content Conversion ( The Key Field Problem )
    The specified item was not found.
    File Receiver with Content Conversion
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    Regards,
    Phani

  • Segment field is not shown in profit center master data

    Hi,
      When i activated New GL ,but the segment field is not shown in profit center master data. How can i make the field shown ?
    Thanks.

    After activating the New GL have you defined the segment? First define the segment under Enterprise Structure and in Fin.Acctg Global settings(New)-Legers-Display scenarios for General Ledger Accounting, you need to create new entries for FIN_PCA & FIN_SEG.
    Hope this helps you.

Maybe you are looking for