First line not coming when FCC is used

Dear All,
I am using FCC on sender side and the input file is in UTF-8 format....
i am using FCC with key fields on the sender file adapter...
now as the UTF-8 file was having control characters at start the keyfield was not matching the start of file and hence the first line of data was not coming in moni..
i got an answer to this query yesterday where Stefan Grube and Volker replied saying that some of the editors like notepad and word add control chars at start in UTF-8 files and hence UTF-8 files should be created only using editors like TEXTPAD .....
but the problem is that the file would always have control chars at start.. what are the ways of removing it ?
i am thinking of an adapter module at the sender side...
Edited by: Tarang Shah on Jun 11, 2009 6:31 AM

Hi,
I faced this kind of problem previously.
Have used SynTextEditor in which the hidden/special/control chars are clearly visible, delete those chars and use for input.
Alternatively, you can save the file in UTF8 format in textpad and use as input.
Regards

Similar Messages

  • I downloaded 10.5.1 now I cannot open libraries from my external hardrive.  They are not highlighted when I open using the Option key

    I downloaded 10.5.1 now I cannot open libraries from my external hardrive.  They are not highlighted when I open using the Option key

    Hello, when you try Tylerdowner's reply make sure that you '''do not install Firefox using a limited Windows XP account''', you need sp2 and above in your xp.
    thank you

  • My macbook pro will not charge when I am using it.

    My macbook pro will not charge when I am using it. My battery will say "charged" then "not charging" and it goes back and fourth. It says "Power Source: Power Adapter". But when I use my pro it will loose the power source then reconnect a second later to it. This problem is getting annoying because I have to stop using my macbook pro to charge it.

    Reset SMC.
    http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    If this does not help, contact Apple.
    Best.

  • Partner Role not coming when creating the Vendor Master

    Hi all
    There is a standrd role AZ.
    There is a standrd Partner Determination procedure  L1.
    The role AZ is assigned to the Partner Determination procedure  L1.
    When creating the vendor master in MK01 the role is not coming in the list of partner function.
    For Document types there is a standard shema 0002.
    The role AZ has also been assigned to doc type.
    What can be the reason.
    Is the assignment against doc type at all required.
    Please suggest.
    Regards

    The procedure for setting partner functions:
    Step 1
    Vendor Account Group
    IMG->LOGISTICS GENERAL->BUSINESS PARTNER->VENDOR->CONTROL ->DEFINE
    ACCOUNT GROUPS AND FIELD SELECTION
    Step 2
    Defining Partner  Schemas
    IMG->MATERIALS MANAGEMENT->PURCHASING->PARTNER -> DETERMINATION -
    >PARNER SETTINGS IN VENDOR MASTER RECORD
    ->DEFINE PARTNER SCHEMAS
    Step 3
    Assign Partner Schema
    IMG->MATERIAL MANAGEMENT->PURCHASING->PARTNER DETERMINATION->PARTNER 
    SETTINGS IN VENDOR MASTER RECORD->DEFINE PARTNER SCHEMA
    „«  THEN ASSIGN PARTNER SCHEMA
    Step 4
    Define  Permissible Partner Role Per Account Group
    IMG->MATERIAL MANAGEMENT->PURCHASING->PARTNER DETERMINATION -
    >PARTNER ROLES ->DEFINE PERMISSION PARTNER ROLES
    If you want a partner schema for your own document type then define your partner schema and assign to document type using the below mentioned path.
    IMG->MATERIAL MANAGEMENT->PURCHASING->PARTNER ->DETERMINATION -
    >PARTNER SETTINGS IN PURCHASING DOCUMENTS ->DEFINE PERMISSION 
    PARTNER SCHEMAS
    And then
    ASSIGN PARTNER SCHEMAS TO DOCUMENT TYPE
    Once you have this configuration then you change your vendor in easy access menu (XK02-select partner function) define the partner roles.

  • BP Number is not coming when creating Org. Unit ?

    Hi Experts,
                      I am creating an Org Unit, using the T.Code PPOCA_CRM. I have created one Org Unit.
    But the problem is BP number is not coming as shown in the picture below : -
    See the ID of my Org. Unit is coming which is  O 50017026 but Business partner column is empty but at the same time when I check already created Org unit by SAP it's BP number appears as shown below : ---
    Why is this problem coming , So does it means the Org Unit which I have created It is not created as a Business Partner ? If it's the case, what is it then ?
    Does this problem has anything to do with the number range and assignment of it to Org units ?
    What are the step I need to do that my Org unit created as a Business Partner in the system ?
    Can someone guide please ?
    Thanks in Advance : -------

    Hi Kumar,
    One possilbe reason is that the system still has to get the indicator
    HRALX/HRAC indicator in table T77S0 activated.  Please check if it is activte.
    Please see note 548202 which deals with this issue. In
    particular see point 4. Please check the following entries in table
    T77S0:
    HRALX   HRAC    X  Activate HR Integration
    You can maintain this table via trx. SM30. These two entries above have
    to be maintained. This activates the automatic creation of Business
    Partners. These settings are relevant independently if you use external
    HR integration or not. Afterwards run report from point 4 of the
    attached note 548202.
    Best regards - Christophe

  • Form in Dynamic page not working when checkbox is used.

    I have created a form using dynamic page. The form most have display fields and a checkbox field. When I check a box, it assigns 'Y' value and when unclick, it assign 'N' to the database field.
    When I submit the form, the procedure which is supposed to save the form data never gets executed. Well, at least it says, page not found HTTP 404 error.
    Interestingly if I make this field a text box and manually enter 'Y' or 'N', and then submit the form, the procedure is executed. Data gets saved.
    Is the checkbox not supposed to be used for a database field because checkbox value can be assigned only using javascript and the procedure never get that value ?
    Can you please tell me how to use a checkbox for a database field using dynamic page ?
    thanks,
    Mainak

    Sharmila,
    When I said, the form does not get submitted, I meant that the procedure does not work. The form gets submitted but the procedure does not work. It gives HTTP 404 error. That is what perplexes me. I am unable to understand why the procedure does not work when I click a checkbox.
    May be you can make this work. I am hopeless about this.
    Here is the code for the procedure sumbit_form:
    NOTE: I ADDED TWO FIELDS CALLED PROMOT VARCHAR2(1), PROMOTID NUMBER(4) TO THE EMP TABLE AND CREATED A NEW TABLE CALLED PROMOTEMP. THIS IS A TEST CASE.
    create or replace procedure sumbit_form
    (p_empno IN portal30.wwv_utl_api_types.vc_arr, p_promot IN portal30.wwv_utl_api_types.vc_arr, p_action IN VARCHAR2)
    is
    begin
    if p_action = 'save' then
    for i in 1..p_empno.count LOOP
    update scott.promotemp
    set promot = p_promot(i)
    where empno = p_empno(i);
    END LOOP;
    end if;
    commit;
    htp.p('<b>Saved Successfully</b>');
    htp.p('<table border=1 bordercolor="red">');
    for c1 in (select * from promotemp where promot='Y')
    LOOP
    htp.p('<tr><td>');
    htp.p(c1.ename);
    htp.p('</td><td>');
    htp.p(c1.job);
    htp.p('</td><td>');
    htp.p(c1.mgr);
    htp.p('</td><td>');
    htp.p(c1.sal);
    htp.p('</td><td>');
    htp.p(c1.deptno);
    htp.p('</td></tr>');
    end loop;
    htp.p('</table>');
    EXCEPTION
    when others then
    raise;
    end;
    Here is the code for the dynamic page.
    <HTML>
    <HEAD>
    <TITLE>Promot Emp</TITLE>
    <script language="JavaScript1.1">
    function include(form) {
    var thisform = form;
    for (var i=0; i<thisform.length; i++) {
         if (thisform.elements.type == 'checkbox') {
              if (thisform.elements[i].checked) {
                   thisform.elements[i].value = 'Y'; }
              else { thisform.elements[i].value = 'N'; }
    form.submit();
    function show(form) {
    var thisform = form;
    for (var i=0; i<thisform.length; i++) {
         if (thisform.elements[i].type == 'checkbox') {
              if (thisform.elements[i].value = 'Y') {
                   thisform.elements[i].checked = true; }
              else { thisform.elements[i].checked = false; }
    </script>
    </HEAD>
    <BODY>
    <FORM action="scott.sumbit_form" method="post">
    <table border=1 bordercolor="red">
    <tr>
    <td> </td>
    <td>Name</td>
    <td>Job</td>
    <td>Manager</td>
    <td>Hire Date</td>
    <td>Commission</td>
    <td>Department#</td>
    <td>Include</td>
    </tr>
    <ORACLE>declare
    i number;
    begin
    i := 0;
    for c1 in (select * from scott.promotemp where promotid = :promotid)
    loop
    htp.p('<tr><td>');
    htp.p('<input type="hidden" name="p_empno" value='||c1.empno||'>');
    htp.p('</td><td>');
    htp.p(c1.ename);
    htp.p('</td><td>');
    htp.p(c1.job);
    htp.p('</td><td>');
    htp.p(c1.mgr);
    htp.p('</td><td>');
    htp.p(c1.hiredate);
    htp.p('</td><td>');
    htp.p(c1.comm);
    htp.p('</td><td>');
    htp.p(c1.deptno);
    htp.p('</td><td>');
    if (c1.promot = 'Y') then
    htp.p('<SELECT NAME="p_promot" SIZE="1">
    <OPTION SELECTED VALUE="'||c1.promot||'">Yes
    <OPTION VALUE="N">No
    </SELECT>');
    else
    htp.p('<SELECT NAME="p_promot" SIZE="1">
    <OPTION SELECTED VALUE="'||c1.promot||'">No
    <OPTION VALUE="Y">Yes
    </SELECT>');
    end if;
    htp.p('</td></tr>');
    end loop;
    htp.p('</table>');
    htp.p('<input type="submit" value="save" name="p_action">');
    end;
    </ORACLE>
    </form>
    </BODY>
    </HTML>
    thanks,
    Mainak

  • Tax Ammount not coming when we are going for miro

    Dear Sap
    we have Recept material (101) Against PO then Capture & Post Excise Bill ,But when we go for MIRO that a time tex amunt not coming,while in po & Excise it have mantained as per same

    Hi, there is 2 fields of Tax code in MIRO, 1 at the item level & 1 at header level,
    If you maitain tax code in PO, it will only show at item level, whereas the header level tax code comes from the configuration that you have maintained for default tax code.
    So have you changed the header tax code as maintained in PO, and put a tick on "Calculate Tax", Check

  • Subtemplate footer is not coming when calling from the main template

    Hi All,
    The footer from the subtemplate is not coming in the output when calling from the main template. Does anybody worked on the subtemplate?
    If the same footer is put in the main template, it is displaying.
    Please respond as this is a critical issue for us.
    Thanks,
    Ambadas

    Hi Tim,
    Thanks for your reply. Here is syntax which I got from the Oracle BI Publisher blog. And this is to just test locally.
    http://blogs.oracle.com/xmlpublisher/2006/04/11?import:file:///C:/temp/HeaderFooter.rtf
    <?import:file:///d:/test/GEPOPRINT_GER_GER.rtf?>
    <?import:file:///d:/test/GEPOPRINT_US.rtf?>
    <?for-each@section:G_HEADERS?>
    <?if:POH_REPORT_NAME='GER PO w/GERMAN Data'?>
    <?call-template:PO_GERMAN?>
    <?end if?>
    <?if:POH_REPORT_NAME='US Purchase Order'?>
    <?call-template:PO_US?>
    <?end if?>
    <?End for-each?>
    And I don't have any footers in the main template but in the subtemplate I have the respective footers. If you want, I can send all the RTF's to you directly.
    Let me know.
    Thanks,
    Ambadas

  • My keyboard will not appear when i am using Notes App

    My on screen keyboard does not appear when I use Notes app. The + sign (to add a new note) does not function to create a new note
    Does anyone have any answers
    Thanks

    Try closing the Notes app completely and see if it works when you re-open it : from the home screen (i.e. not with Notes 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Notes app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Time Machine Restore and now says Scanner not found - when trying to use

    the printers.
    Had a faulty harddrive -(per the apple store - this after replacing the screen and logic board...) - so they installed a new one - I restored from my time machine backup - and then went to use my HP 1315 Scanner. Didn't work - get error - scanner not found - even though I can print to the device.
    So - I uninstalled and reinstalled the printer in the system preferences - but get same error - so instead I uninstalled all the HP apps and reinstalled them (a pain because HP doesn't make 10.5 software yet).
    Still same issue - Scanner not found.
    I was using this same scanner prior to the hard drive freeze. HP posts a notice that if you really want the hp software to work you should downgrade to Tiger, install, then reupgrade - but that seems like a lot of hassle to get a scanner to work.
    Does anyone have another suggestion?

    Thanks Barry -
    I wish Profile allowed to list all of my computers and all of My OS systems - but it doesn't - so I'm forced to post each and every time whatever OS is causing whatever issue I'm having.
    I have deleted and reinstalled several times to no avail. I do get an error on install that the HPIOX cannot launch...
    I am a bit frustrated - this is the 5'th device an Apple upgrade has cost me...
    All my belkin devices for my iphone don't work with the new iphone (they altered a pin configuration for the power)
    The 1,000 upgraded car kit for Mercedes that I bought just a month ago -- worked great with Iphone 2g - doesn't charge the 3g
    Leopard has killed my scanning capabilities...
    It wouldn't be such a hard pill to swallow except I keep seeing that ad where the japanese girl comes by and the Mac guy starts talking japanese and the tag line "it just works" -
    No - in fact - it doesn't.
    My camera only shares pictures with the mac - movies require a 3 way translation
    My printer will print - but not scan
    My Mercedes car kit will play music - but not charge
    All of these things worked with Tiger and Iphone 2g - seems to me like either Apple is trying to force profitability of its partners by forcing consumers to constantly upgrade to new equipment - or - they just don't give a s_t ----

  • Youtube does not work when i am using wifi on iphone 4

    the youtube does not work when i use wifi. it works perfectly when i use 3 g network ..

    At home when i use my Wi-Fi it work normal, but as soon as i go out, for example on the bus or at work it keeps saying "Cannot connect to Youtube".

  • Excel Chart High-Low Lines Not Rendering when Chart Object Contains No NumCache and StringCache

    I have a number of Excel xlsx files which contain a Chart object configured with High-low Lines.  The High-Low Lines render without issue when the Number Cache & String Cache exist in the file.  A process updating the files removes the Number
    Cache and String Cache from the Chart Object.  After this process has updated the files Excel no longer observes the High-Low Line configuration.  I have verified that the files still contain the setting for the Chart to have High-Low Lines (<c:hiLowLines
    />).  Excel does not recognize that the setting is set (not rendered when viewed or preserved in the file settings after saving in Excel). Excel does not present any errors and everything else works fine.
    Reproduction of Issue:
    1. Create an Excel Document containing a Chart Object with High-Low Lines enabled.
    2. Manually edit the chart1.xml file (in the xlsx file), removing all the Number Cache and String Cache entries from the document (<c:numCache/>, <c:strCache/>).
    3. Open the Document in Excel and view the Chart.  It will not draw the High-Low Lines and if saved the file will no-longer contain the hiLowLines setting.
    The issue has been confirmed in Excel 2010 and Excel 2013.

    The issue has been tested on different computers, 11 in total.  The OS ranges from Windows 7 to Windows 8.1.
    I have not tried in other file formats.  Due to the requirements of the project I'm restricted to xlsx.
    The application interacting with the files is proprietary.
    I've simulated the issue by removing the Number Cache & String Cache manually from the Chart1.xml file.  This causes the issue to occur.  I will note that if i only remove one of the cache entries from the file the High-Low lines will be observed
    in Excel.  It seems to only happen if all of the cache entries are removed.  The file is never interpreted by Excel as corrupt under any of the modifications.
    The issue seems like Excel fails to evaluate the High-Low Lines property when the cache is completely removed.  I'm not sure what Excel is doing to negate the property under the condition of no cache.  After the files is opened with Excel and saved
    the High-Low Lines property no-longer exists in the file.

  • HU not coming when create inbound delivery via outbound delivery using SPED

    Hi experts,
    In my synario  :::issue : Handling units from  outbound delivery are not transferred to  the automatic created inbound    delivery using SPED output type.
    Error when HU is assigned manually     ::Handling unit 10000013565 is already assigned to outbound delivery 87005777.
    Can somebody solve my probeleam or is there any sap note availavle to solve this probleam.I am using ecc 6.0 environment.
    Thanks
    subhasis

    We have the same issue. Please post the resolution. Thanks.

  • Can receive mail, see first lines but blank when opened....

    Hi there,
    I have been using my iPod Touch without problem for months. Got it updated last week and now I have a problem with my mail. I can receive new mail and the first few lines are displayed, but when I click on it to open it and read it, all the messages are blank. Anyone figured out a solution to this glitch? Many thanks!

    I had the same problem (started 2 days ago) and also, when I was creating a new email I could enter text into the subject line but not in the body of the letter.
    I did a reset and it solved the problem. To reset:
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until either the Apple logo or battery symbol appears

  • Lookup expression is not working when I am using with in the rectangle box in SSRS

    I have two datasets with common member is ProgramID.
    I have followed the below steps,
    1. Added one table  (2x2) and mapped this table to dataset1. After that I have removed top row.                                               
    That means I am maintaing only  data row.
    2. Added group to the table (ProgramID). Now the programid is sitting at cell#(1,1) and  cell#(1,2) is blank
    3. I have verified the report with preview and able to see the data for my all programs. I have 5 programs
    4. my plan is adding chart and matrix reports to cell# (1,2). If I am adding chart/matrix to the cell#(1,2) then we can't contol the  cell alignments in terms of height x width.
     To resolve that problem, I have added one rectangle control to the cell#(1,2) then I have added my chart and matrix report
    5. After completing the report, I have verified with preview and able to see the reports (chart/matrix) for all my 5 programs by page wise (note: I have provided page break before for my rectangle)
    6. Till this point, I have no issues
    7. Now, I have added one more row under the group. so, we have our main table (2x2). Becuase of programId group we can only see 3 cells in total table  (cell# (1,1) =ProgramId  cell#(1,2)=chart and matix reports under rectangle box; cell#(2,1)=already
    merged with ProgramID group; cell#(2,2)= planned to add one more rectanlge and add two reports (chart and matrix)
    8. Now, i have added rectangle to cell#(2,2) then added chart and matrix reports within the rectangle.
    9. cell#(2,2) reports are needs to extract the data from dataset-2. Here we have common member is ProgramID (ds-1,ds-2)
    10. First I have tested for matrix report by adding lookup expression
          Matrix report (2x2)
         row-1: Cell(1,1)= Gender report heading ; cell(1,2)=Month  (column group)
         Note: month is also common member in both the datasets. 
         row-2: cell(2,1)--  =Lookup(Programid.value, Programid.value,Gender.value,"Dataset2")  (Gender data is Male and Female)
                    Cell(2,2) -- empty for now
     11. I have tried to preview the report and able to see the report without any issues and below are observations
            main Table (2 x2)
             Cell# (1,1)  = ProgramID --Returning all 5 programs properly
             Cell# (1,2)  = Dataset1 related report (chart and matrix reports under rectangle) -- able to see without any issues
             Cell#(2,1)  = We already know this is merged cell. i.e menas ProgramID dispalying
              Cell#(2,2)= Only Male record is dispalying in the matrix report which is under rectanlge (here we have applied Lookup expression.
    Note: male is the first record from the database and Female is the second record
    Also, observed that Cell#(2,2) matrix report is unable to display the gender count information when I have provided count value expression in the cell(2,2) within the matrix and the expression I have uses is
      = sum(Lookup(ProgramId.value,ProgramId.value,GenderCOunt.value,"Dataset2"))
    Please ask me if I am unable to explain or lengthy explain.
    Point : Why the lookup expression is giving the first record only (in case of gender #(male, female) and why it is unable to give the gendercount.  Gendercount cell is totally blank.
    Please help me.
    Kishore.

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Unable to populate the default value  using form personalization

    Hi, I need to default a value in order managemnt for waybill number shipping -- transaction - delivery - detail -- In Order management Shipping - Transactions Source system -- Order management From Order number - Any ordernumber say find I want to de

  • 24/7 chat always closed

    Over the last week I've repeatedly tried to get in contact with Adobe. Every time I try and ask a question on the 24/7 chat it says it's closed? I've also tried phone support numerous times and waited 20+ minutes and I'm yet to get through to anyone.

  • Show sales per month

    Hi, Are trying to make a report showing the sales amount planned to be shipped out per month, having the salesprice for each Project in a textfield (text 24) trying to summarize all items that are have finishdate within the current month. Is this, or

  • Automation support dll

    Hi I am adding 3rd party DLL in my program using ActiveX controller option. In some computer my exe file is working properly and in some computer it is giving me error. I checked that in debug mode and I found that it is saying like " Function CA_Cst

  • Help:String arg[ ] problems

    Hi: I am having problems with my encryption program and I want to check that the contents at the command line a being read properly. ex: java Monoalphabet -k feather in.txt out.txt -k(indicates encryption) feather(keyword) How do I check to make sure