PI731: FTP-FCC-Receiver with blank line at the beginning

Hi,
In my example I always get first a blank line but I do not want this blank line.
I need the field FILENAME only as a variable name for the file name schema.
Mapping:
Communication Channel (Receiver / FTP / File Content Conversion)
Result (with blank line)
How can I solve my problem? Do I need to adjust the content conversion.
Thanks
Rene

Hi René,
Here is your solution..Variable substitution in case of non-XML target files in a multi-mapping scenario
You just need to follow the adapter configuration.
Cheers,
Ambrish

Similar Messages

  • Mx 340 prints with "blank lines" across the words in just about the exact spot on each page.

    I have tried all the cleaning options several times.  Updated drivers etc and it still does it.  very strange.  This stared recently
    Thanks.

    Hi Rickbibt!
    So that the Community can help you better, we will need to know the computer operating system you're using (Windows XP/Vista/7/8 or Mac 10.x). Any error messages or other details you'd like to give will also help the Community better understand your issue.
    Thanks and have a great day!

  • How do I delete the blank space at the beginning or end of a project?

    I constantly end up with blank space at the beginning or end of a project - how do I remove it?  I get this ALL the time and I jsut can't get rid of it.  Obviously I want my project to start at 0.00 not at 1.xx.
    Thanks.

    That's not a project. You're inside an multicam angle editor. You need to edit the multicam clip into a project. That's where you edit it.

  • When I open pages it scrolls through various numbers of blank pages with a line at the side, then stops at a document, but usually an old document. I have to  go to "open recent" to get on the page I want.

    Hi
    When I open Pages it scrolls through numerouss blank pages with a line at the side 1st, then settles on an old saved pages document.I then have to go to "open recent" to select the one I want. Why?

    No
    It's the 1st version of Pages I've had on my computer.
    Can't delete them as they scroll through them at a rapid pace. The longer I've had the problem the more blank pages it scrolls through.

  • Issue with blank lines

    Hi,
    We are using SAPScript to print some of the documents for Brazil on line printer. While printing, if we are printing only one document, it is printing correctly. But when we print two documents, the second document is starting at some 4 lines below. I mean at the beginning of the second document there are 4 blank lines are coming. If we print 3 documents, then the there some more blank lines in the third document. Because of this, for the third document there are 8 blank lines are coming.
    Can anyone tell how can we fix this?

    Niamesh,
    I don't think that would solve the problem. Because we have copied the form and print program from legacy SAP system and there it is working fine. Everything is same in the new system.
    Thanks.
    Kishore

  • GUI_DOWNLOAD blank lines in the middle

    Hi All,
    I am using 'GUI_DOWNLOAD' FM to create excel file of my internal table data; Internal table is having 220 fields and expects to create 220 columns in excel file;
    In the middle of the excel file I get several blank lines on and off with only very few column values are filled;
    I checked the ITAB in debug before calling the FM it has no issues and has the correct data;
    My code is as below;
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_filename
          filetype                = 'ASC'
          write_field_separator   = 'X'
        TABLES
          data_tab                = i_compare
          fieldnames              = i_excel_head
        EXCEPTIONS
          file_write_error        = 1
    Appreciate your expert ideas please;
    Thank you
    Iver

    Hi,
    GUI_DOWNLOAD blank lines in the middle
    In your GUI_DOWNLOAD code, There is no mistake.
    I think, In your program, have you written any SET BLANK LINES ON.
    It is one case.
    Follow this link,
    http://wiki.sdn.sap.com/wiki/display/ABAP/DownloadinginternaltablestoExcel
    It may helps to you.
    Regards,
    Sekhar

  • How to remove the blank lines at the end of the JTextArea .

    Hi,
    I need to remove the blank lines in the JTextArea at the end. Suppose i am giving 'A' in the first line and press the enter key two times, after i am giving the 'B' in the third line and press enter key for two times. I need to remove, the last two lines of JTextAreae, . How i can remove these lines?

    String#trim() removes all whitespace from both ends of the String.
    The requirement was to remove line breaks from the end of the String only.
    String#replaceAll with a suitable regex would do the trick. Untested regex for this:text.replaceAll("[\\n\\r]+$", "")db

  • TB 31.4 when compsing a message, has introduced a spurious blank line between the address boxes and subject box.

    When writing a new message I used to see two lines of address boxes followed by the subject line. So, when sending an email to a single recipient, that persons address would remain on screen as I composed the email.
    As of version 31.4 the initial "Write" window shows a single address line, the subject line, and a blank line between them. The consequence is that, upon entering the recipient's address, it immediately scrolls up and can no longer be seen. This happens regardless of how I enter the address i.e. start to type, select from address book and hit ENTER or TAB, or indeed if I choose an address from the address book sidebar. (See "capture1.png")
    If I increase the space available for the header data in the "Write" window I still get a blank line between the address lines and the subject line (see "capture2.png"). Furthermore, the next time I go to compose an email I am back with the original version of the "Write" window, as shown in "capture1.png".

    You might want to drop the author an email and let him know. It is not a major thing, but something that would probably require only a minor fix.
    I have found him helpful, but slow to reply. He is always on holidays when I email him.

  • How to insert blank lines in the ALV output.

    Hi Friends,
    Could any body help me out How to insert blank lines in the ALV output.?? Any Code pls...
    Thank you,
    Vikram.C

    hi vikram
    do like this
    In the fieldcatalog table all the fields should be in editable mode
    ie lw_fcat-edit = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-repid
    i_callback_pf_status_set = 'SET_PF_STATUS'
    i_callback_user_command = 'USER_COMMAND'
    is_layout = lv_layout
    it_fieldcat = lt_fcat[]
    i_save = 'A'
    is_variant = lv_variant
    TABLES
    t_outtab = lt_license[]
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " display_data
    *& Form user_command
    FORM user_command USING r_ucomm TYPE sy-ucomm
    rs_selfield TYPE slis_selfield.
    CASE r_ucomm.
    WHEN 'ADD'. "
    data: lv_ind type i.
    data: lv_line type i.
    describe table lt_license lines lv_line.
    loop at lt_license into lw_license.
    lv_ind = sy-tabix.
    if lv_ind = lv_line.
    append initial line to lt_license.
    endif.
    endloop.
    ENDCASE.
    ENDFORM. "user_command
    reward points if useful
    Rohan

  • Insert a blank line at the start of a text file

    I'd like to insert a blank line at the start of a text file.
    I presume SED would be the best to use? Any help on code would be greatly appreciated?

    Hi David,
       That is a little more difficult in sed and awk than it seems like it should be. I'll assume that you know how to handle the redirection and I'll just post the actual sed and awk commands. If you're comfortable with multiline statements in sed it could be done with the following:
    sed '1s/./\
    Programmatically more complicated but easier to type would be:
    sed '1{x;p;g;}'
       I think that it's conceptually simpler in awk using the BEGIN address like so:
    awk 'BEGIN{ print }//'
       You'll probably get other responses using other tools. I'm certainly curious to see what develops.
    Gary
    ~~~~
       "And I don't like doing silly things (except on purpose)."
          -- Larry Wall in <[email protected]>

  • SMS Messaging: Blank line at the end of the message

    I never had this problem with the 3G, but on my iPhone 4, I often see a blank line at the end of my text message after I send it.
    Also, a similar issue I am having is that while I am drafting text messages, the words fits nicely in the text input box, but once I hit send, some words are shifted to the next line.
    *Typed in input box:*
    Sorry. We'll be there asap.
    *Show in the green bubble:*
    Sorry. We'll be there
    asap.
    Anyone know how I can solve this problem? Thank you!

    this isnt the way to respond to someones problem... thats not what this forum is for ..
    now to the op have you tried resetting your phone by holding both the home button and the sleep/wake switch for 15 seconds...
    if that doesnt work I would try restoring your phone from backup to see if you can clear this issue up

  • How can I remove the preceding blank lines in the downloaded text file?

    I have created a jsp that writes to a file and then prompts a dialog box to have an option to view or save the file. However when i view the file, there are blank lines before the actual content of the file. How can i remove these lines?
    Below is part of my code:
         response.setContentType("application/x-download");
         response.setHeader("Content-Disposition","attachment; filename=\""+ fileName + "\"");

    Hi,
    Those blank lines are normally because of the scriptlet code at the start of your jsp page.
    Remove any new lines between page directives or any include directives that you have at the top of your page.
    Look at the generated servlet code to see what exactly is causing the newline to be inserted (look for out.println("\n");)

  • Blank line in the spool file

    Good day,
    I was trying to retrive data from the table and save the results in the spool file, but I find blank lines in the spool file. What can be the couses of that? I am using oracle 9i.
    regards
    Talifhani

    SET SHOWMODE off
    SET FEEDBACK OFF
    SET VERIFY off
    SET RECSEP off
    SET TRIMSPOOL on
    SET LINESIZE 20000
    SET HEADING OFF
    SET PAGESIZE 0
    SET PAGES 0
    ==>Select the spool file
    ==>Run you query
    ==>Spool off.
    Now check the spool file.
    Good luck!!!
    Bhagat

  • My macbook pro keeps freezing with vertical lines on the screen

    I have a 2010 macbook pro that has worked wonderfully until now.  As of late it keeps freezing with vertical lines across the screen.  To me this indicates a hardware problem, but I ran a diagnostic (restarted while holding D) and it didn't find any errors.  It seems that it happens when I move or bump my macbook, leading me to think it may possibly be a disk problem, but I'm not sure how to check this.  Anybody else ever have this problem or could suggest a fix for it?

    You can try a pram reset, which might help with the display, but the bumoing thing is what concerns me.
    PRAM reset:
    Power down, power back up and hold the following keys before the start up chime.
    option, command, P, R,(no commas) continue to hold these keys till you hear the start up chime 2 times then release.
    Reboot see if this helps, the bumping part scares me.
    Hope this helps

  • I have a IMac - Mac OSX version 10.4 and présently i see only verticals lines on my dashboard and my mouse still mouving but with a little square with vertical lines at the right. This appen when i was talking with a friend on Skype. I need help to unlook

    I have a IMac - Mac OSX version 10.4 and présently i see only verticals lines on my desktop and my mouse, i mean the arrow and still mouving but with a little square with vertical lines at the right. This appened when i was talking with a friend on Skype, by error i did click on the video and slowly the vertical lines appeared and covered all ma desktop. Since then, it still there and the only things i see it is the vertical lines and the arrow with the little square.
    How can i fix this problem ?
    En français: j'ai un IMac - Mac OSX version 10.4 et présentement je vois seulement des lignes verticales sur mon bureau et ma souris c'est-à-dire la flèche, bouge mais il y a un petit carré avec aussi des lignes verticales à sa droite. Je pense que ce bug est survenu lorsque j'étais sur Skype avec une amie et que par erreur j'ai cliqué sur l'image de la vidéo et peu à peu les lignes sont appurues et tout l'écran est envahie par ces lignes.
    Comment corriger le problème ? Merci à l'avance.
    Réjeanne Blouin

    Hello, sounds like Video card  and/or heat problems.
    Have you blown the dust out lately? Let it cool for an hour or so.
    Get Temperature Monitor to see if it's heat related...
    http://www.macupdate.com/info.php/id/12381/temperature-monitor
    iStat Menus...
    http://bjango.com/mac/istatmenus/
    And/or iStat Pro...
    http://www.islayer.com/apps/istatpro/
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode).

Maybe you are looking for

  • Templates in CC - some things to think about

    Hello Animate Team and thank you for the new version!  Paths work nicely. Templates: I am thinking that template creation needs some enhancement. I wish I had noticed that before! You have to give templates a different name otherwise you will not be

  • Why this message "Could not find layout Default Echo GB"

    Why am I getting the message "Could not find layout Default Echo GB"  i.e. no Reverb effects?

  • Can't  open  Photoshop 7

    I've used Photoshop 7 for 2 years without problem, using Window xp. Starting 3 days ago I could not open Photoshop 7. The message says, "You currently have Adobe Photoshop's primary scratch and Window's primary paging file on the same volume which re

  • Partitioning of cube

    Gurus, I am extracting AR data using standard datasources in BW3.5 and would like to partition the data by creating year specific cubes. I have to store data for around 15 years so I was thinking of having cubes with data for 3 years each and report

  • E61i options button wont work in contactsfield etc...

    Since this week my e61i has some problems in different applications with the options button or some other buttons. It is always the left, blue lined, button. For example: i can't send directly message from the contactlist to a contact because the "ma