FTP under SAP ECC6

Hello Ladies and Gentlemen,
Does anyone can explain why when I use the FTP Function module with ABAP program the command PUT write the file in Unix Format with LF (OAx) rather than
CR LF(ODxOAx).
We use this program to put a file created under HPUX to Windows System.
Thanks for your help
Regards
Bernard Giannesini
email [email protected]

Hi,
I don't know this FM but I had this problem once when I tried to transfer files from a linux server to a windows server through FTP protocol.
I think you should look for a parameter for switching the transfer mode. When transfering files in BYTE mode, no conversion is applied so if your file comes from a unix system, you'll get LF chacracter at end of every line, and the file will look weird in a windows system.
If you use ASCII mode, those special characters which are system dependent will be automatically translated.
Hope this helps.
Regards,
Nicolas.

Similar Messages

  • How  to  create an infotype in sap ecc6.0 ?

    Hi all,
    I know i how to create an infotype   in   sap 4.7, but i am facing the problem while
    creating an infotype in sap ecc6.0 version. could u plz provide me  the info with screen shots how to create an infotype and how to enhace that infotype ?
    Waiting for u r response.
    Regards,
    Ravi

    Hi ,
    To create OM infotype:
    1. Go to SE11 and create a structure HRI9XXX (9XXX --> name of the infotype). Add the required fields to this structure and save and activate. then come out of it.
    2. Go to PPCI and enter Infotype number (9XXX) and description.
    3. Click create.
    4. In the infotype category select details for the infotype.
    5. Click create button. It should create the infotype.
    6. Click on Check. A window with menu will open.
    7. In that window navigate to Table Entries.
    8. Under table Entries, select T777I and click on change.
    9. It opens SM30. Click on Maintain.
    10. Select the infotype and add information for "Time Constraint" and "Infotype Per Object Type".
    11. Save.
    12. Go back to check menu, see if all entries exist. Do not worry last 5 table entries. And you are done

  • Does SAP ECC6 support advance tax return (rfumsv00)/GST reporting for USA a

    Does SAP ECC6 support advance tax return (rfumsv00)/GST reporting for USA and Canada?

    Hello
    I think it does.
    However please check this
    In some countries, you cannot use the general program for tax returns to create the annual tax return because of specific national reporting requirements. For these countries, SAP delivers additional country-specific programs to meet these reporting requirements.
    For the individual country-specific reports, see the General Ledger menu under Reporting ® Tax Reports.
    The program RFUSVX10 performs the data medium exchange, allowing you to transfer the DME file to a hard drive or diskette. You can find more information on this topic in the program documentation.
    Regards

  • Secure FTP from SAP

    Hi,
    How do you handle secure FTP from SAP without using scripting ?
    Is it possible to set up your RFC destination using the SSL option under the Logon/Security Tab ?
    Or is there another method ?
    Cheers
    Colin.

    Check out - Call   RSFTP020
    Here is an example of
    how to FTP a file from the Application server to a remote server using standard SAP functions.
    REPORT ZKBTST32 LINE-SIZE 132.
    Test SAP FTP functions
    DATA: BEGIN OF MTAB_DATA OCCURS 0,
    LINE(132) TYPE C,
    END OF MTAB_DATA.
    DATA: MC_PASSWORD(20) TYPE C,
    MI_KEY TYPE I VALUE 26101957,
    MI_PWD_LEN TYPE I,
    MI_HANDLE TYPE I.
    START-OF-SELECTION.
    MC_PASSWORD = 'password'.
    DESCRIBE FIELD MC_PASSWORD LENGTH MI_PWD_LEN.
    *-- FTP_CONNECT requires an encrypted password to work
    CALL 'AB_RFC_X_SCRAMBLE_STRING'
    ID 'SOURCE' FIELD MC_PASSWORD ID 'KEY' FIELD MI_KEY
    ID 'SCR' FIELD 'X' ID 'DESTINATION' FIELD MC_PASSWORD
    ID 'DSTLEN' FIELD MI_PWD_LEN.
    CALL FUNCTION 'FTP_CONNECT'
    EXPORTING
    USER = 'userid'
    PASSWORD = MC_PASSWORD
    HOST = 'servername'
    RFC_DESTINATION = 'SAPFTP'
    IMPORTING
    HANDLE = MI_HANDLE
    EXCEPTIONS
    NOT_CONNECTED = 1
    OTHERS = 2.
    CHECK SY-SUBRC = 0.
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    HANDLE = MI_HANDLE
    COMMAND = 'dir'
    TABLES
    DATA = MTAB_DATA
    EXCEPTIONS
    TCPIP_ERROR = 1
    COMMAND_ERROR = 2
    DATA_ERROR = 3
    OTHERS = 4.
    IF SY-SUBRC = 0.
    LOOP AT MTAB_DATA.
    WRITE: / MTAB_DATA.
    ENDLOOP.
    ELSE.
    do some error checking.
    ENDIF.
    CALL FUNCTION 'FTP_DISCONNECT'
    EXPORTING
    HANDLE = MI_HANDLE
    EXCEPTIONS
    OTHERS = 1.
    Hope this helps you,
    CHeers,
    THomas

  • FTP in SAP

    Hi,
    Can any one help me how to do an FTP in SAP ECC. Step by step will be useful.
    Regards
    D.Mukundan

    Usually you are using the ftp client of the underlying operating system to transport files from the SAP ECC system to an other machine.
    So define your external ftp command in the SM69 and use the FM  SXPG_COMMAND_EXECUTE to execute it in your own program.

  • SAP ECC6.0 IDES Installation on VMware ESX

    SAP Experts...
    I am having problem installing SAP ECC6.0 IDES (with oracle) to VMware ESX server due to limitation of vmware create space up to 250GB max. SAP required at least 288GB for database space.
    what I want to do is install IDES as local machine with ABAP + Java.
    Does anyone have experience with install IDES as local machine on VMware? any clue, solution or sapnote is greatly appreciated.
    Thanks in advance.
    Irianto.

    > I am having problem installing SAP ECC6.0 IDES (with oracle) to VMware ESX server due to limitation of vmware create space up to 250GB max. SAP required at least 288GB for database space.
    VMWare ESX can use LUNs up to 2 TB. You could also create two disks and configure a RAID-5 on Windows.
    Oracle is not supported under VMWare.
    Markus

  • Converting 32bits MSCS SAP ECC6.0 server to 64bits MSCS SAP ECC6.0 server

    Hi Gurus,
    I want my SAP ECC6.0 production server which is currently running under 32bits MSCS to be upgraded to 64bits MSCS servers. as i encounter performance problems being 32bit machine(oracle database).
    Has anyone on the board done it before?
    Can anyone suggest the steps involved in the procedure? or suggest any standard SAP documentation/SAP notes?
    Any non standard document would also be welcome.....:)
    Thanks in advance.
    Regards,
    Nishit.

    You can achive that by doing a homogeneous system copy.
    Read,
    http://service.sap.com/systemcopy
    Regards
    Juan

  • Both Source system and BI system under BI tab not comming under SAP tab

    Dear Experts
    we have installed ECC6.0EhP4 ABAP and Netweaver BI7.0EhP1 ABAP,with AIX6.1,Oracle11G, I am trying to make connectivity between two system
    its done successfully,But I am facing following error
    1.in BI and ECC i am seeing source system and BI system under BI tab, its not coming under SAP tab,and BI consultant saying they are not able to extract the data from ECC ,they want source system Under SAP tab,how to solve this
    2.In BI  system they unable to execute the query ( I have applied GUI7.20 BI patch and Query patch) for this do we need JAVA stack?? kindly advice me
    Regards
    krishna
    Edited by: krishna murthy on Mar 31, 2011 8:36 AM

    thank you very much  after gone through that Snote 1087980
    problem got solved
    Enter the following values
    I_BIW_LOGSYS GDVCLNT200
    I_OLTP_LOGSYS GDVCLNT200
    I_FORCE_DELETE <X>
    < DO NOT ENTER ANY VALUE IN THE FIELD - RFC target sys !!!!! >
    Go to RSA1-> Source systems in the BI system connected to the ECC
    system.
    Select the ECC source system and select RESTORE in the right click
    menu.
    thanks
    regards
    krishna

  • Migrating to Oracle from SAP ECC6.0

    We are planning to "ditch" our SAP ECC 6.0 to a third party vendor who is using an Oracle Database system. I have been challenged with information gathering about how we will move our data out of SAP and into the oracle database. If I am in the wrong discussion please point me in the right direction.
    I was under the impression that Oracle might have a "tool" for this purpose.

    Hi,
    If I understand it correclty then SAP ECC6.0 is only an application. What is the underlying database that holds the actual data ?
    There is a migration workbench feature in SQL*Developer but it depends on the actual database holding the data.
    Have a look here -
    http://www.oracle.com/technetwork/database/migration/index-084442.html
    Regards,
    Mike

  • Publishing a WebService in SAP ECC6.0

    Hello Everyone,
    I published a WebService in SAP ECC6.0 using a Remote enabled function module which has one input field and one output field. After publishing that in WSADMIN transaction when i give the URL in the browser the XML format has the Root node as function module name,internal table name as child node and the 2 fields of the function module as child node to internal table name. The issue is PeopleSoft team are not able to ping the 2 fields as they are in the 3rd level in XML file.
    Could you please let me know if there any solution to have those 2 fields under the Function Module name so that they can directly ping the root node to interact with the fields.Thanks in advance.
    Goutham

    Hello,
    Does anyone know how to maintain Authorization Field in SAP ECC6.0?
    Many thanks
    Sunny

  • SAP ECC6 memory and paging issues

    Dear Experts
    I have recently upgraded my 4.6C systems to an ECC 6 system (DB2 LUW 9.5 on AIX 5.3 TL9 64 Bit OS)
    I have been running the LPAR with 14 GB of memory and we are around 100-200+ users using the system, I was monitoring using nmon and found that Physical Memory was around 99.8% Used   (14311.8MB and 22.6MB was free) also the paging space was around 37.2% in result causing the system at times to run slow which can have a very negative effect on the users.
    After further investigation I found that after a system restart the Physical Memory would start around 50.9% and increased at a steady pace until it reached 99.8% that is when the system would start using the paging space which would steadily increase, I found that the only solution was a system restart at least once a week to reduce the memory consumption.
    At first glance it looked like a database manger memory leak with the process db2sysc, so I searched the net with the search words u201Cdb2 memory leaku201D and found the following APARs and notes.
    APAR JR30285 - Pervasive memory leak when compiling SQL statements that use SQL/XML functions
    APAR IZ35230 - There is a pervasive unix-specific private memory leak in the security component
    Note 1288341 - Memory leak in APPLHEAPSZ -> SQL0954C 
    Note 1352361 - Memory leak in shared memory area abrfci
    Note 1147821 - DB6: Known Errors and available Fixes in DB2 9.5 LUW
    After reading the notes and APARs I decided to updated DB2 to the latest fix pack (5SAP), but after the fix pack was implemented it did not solve the memory problem
    I started look at different problems with SAP ECC6, db2 and AIX with paging/memory problems and I found the following notes to do with AIX memory and paging but none of them helped as all parameters and settings were set accordingly  
    789477 - Large extended memory on AIX (64-bit) as of Kernel 6.20
    191801 - AIX 64-bit with very large amount of Extended Memory
    973227 - AIX Virtual Memory Management: Tuning Recommendations
    884393 - AIX saposcol consumes large amount of memory.
    856848 u2013 AIX Extended Memory Disclaiming 
    1048686 u2013 Recommended AIX settings for SAP
    1121904 u2013 SAP on AIX: Recommendations for Paging
    1086130 u2013 DB6: DB2 Standard Parameter Settings
    After even more investigation I found the following evidence suggesting AIX Virtual Memory Manager might have a problem

    Shared memories inside of pool 40
    Key:       42  Size:    17792992 (  17.0 MB) DB TTAB buffer              
    Key:       43  Size:    53606392 (  51.1 MB) DB FTAB buffer              
    Key:       44  Size:     8550392 (   8.2 MB) DB IREC buffer              
    Key:       45  Size:     7014392 (   6.7 MB) DB short nametab buffer     
    Key:       46  Size:       20480 (   0.0 MB) DB sync table               
    Key:       47  Size:    10241024 (   9.8 MB) DB CUA buffer               
    Key:       48  Size:      300000 (   0.3 MB) Number range buffer         
    Key:       49  Size:     2769392 (   2.6 MB) Spool admin (SpoolWP+DiaWP) 
    Shared memories outside of pools
    Key:        3  Size:   114048000 ( 108.8 MB) Disp. communication areas   
    Key:        4  Size:      523048 (   0.5 MB) statistic area              
    Key:        6  Size:   692224000 ( 660.2 MB) ABAP program buffer         
    Key:        7  Size:       14838 (   0.0 MB) Update task administration  
    Key:        8  Size:   134217828 ( 128.0 MB) Paging buffer               
    Key:        9  Size:   134217828 ( 128.0 MB) Roll buffer                 
    Key:       18  Size:     1835108 (   1.7 MB) Paging adminitration        
    Key:       19  Size:   119850000 ( 114.3 MB) Table-buffer                
    Key:       41  Size:    25010000 (  23.9 MB) DB statistics buffer        
    Key:       63  Size:      409600 (   0.4 MB) ICMAN shared memory         
    Key:       64  Size:     4202496 (   4.0 MB) Online Text Repository Buf. 
    Key:       65  Size:     4202496 (   4.0 MB) Export/Import Shared Memory 
    Key:     1002  Size:      400000 (   0.4 MB) Performance monitoring V01.0
    Key: 58900114  Size:        4096 (   0.0 MB) SCSA area                   
    Nr of operating system shared memory segments: 16
    Shared memory resource requirements estimated
    ================================================================
    Total Nr of shared segments required.....:         16
    System-imposed number of shared memories.:       1000
    Shared memory segment size required min..:  692224000 ( 660.2 MB)
    System-imposed maximum segment size......: 35184372088832 (33554432.0 MB)
    Swap space requirements estimated
    ================================================
    Shared memory....................: 1654.8 MB
    ..in pool 10  328.6 MB,   58% used
    ..in pool 40  143.3 MB,   30% used
    ..not in pool: 1174.1 MB
    Processes........................:  413.4 MB
    Extended Memory .................: 6144.0 MB
    Total, minimum requirement.......: 8212.2 MB
    Process local heaps, worst case..: 3814.7 MB
    Total, worst case requirement....: 21882.9 MB
    Errors detected..................:    0
    Warnings detected................:    3

  • Windows requirements for SAP ECC6 EhP7

    Hi experts,
    we want to install SAP ECC6 EhP7 on Windows Server (2008 or above). I've already checked on the PAM its feasability, with Kernel 7.40. The DB would be Oracle 11.2.0.4.
    I've found that for hardware that: 4 CPU ~2GHz each with 10 Gb Memory and 500 Gb Disk is the minimum (tell me if I'm wrong), but now I'm more interested in the software part.
    So I'm trying to find info about windows package (language and else) necessary for SAP ECC6.0 EhP7 installation. I tried to find notes about it but in vain...
    Could you give me some tips ?
    Thank you for your time,
    Best regards.
    Alexiel.

    Hi Divyanshu,
    thank you for your help and fast reply and sorry for my late reply, I was busy doing something else.
    I'll check your link that seems very insteresting! Thanks for sharing.
    Regards,
    Alexiel.

  • SAP Ecc6.0 Installation error during ABAP Import Phase 20 of 24

    While I am installing SAP ECC 6.0 with Original DVD. I am getting some Issues.
    I had finished upto 4 stpes .  and after that IMPORT ABAP, showing error in " Log files are written to C: Program files:sapinst......"
    Please Retry , View Log & Stop.
    I am clicking Retry again it will be come same issue. Please Let me know.
    Log Files Name - "ABAP Processors of Instances SID\DVEMGS00"

    Still I am getting same problem in mine SAP ECC6.0 Installation.
    In Abap Instance Phase 20 of 24.  Error in ABAP Instance. I check the mmc.
    Disp+work is in Gray Color. Remainiing Server Green Color. After Few minutes it will stopped in Work Process.
    Still Going Installation for same Process.
    Let me know.

  • SAP ECC6.0 and PI 7.0 remote logon problem in windows vista OS

    hi,
    I got remote connection for sap pi 7.0 and my OS is Windows Vista.
    i am getting error like this,
    when i click on sap Xi 7.0 and SAP ECC6.0 on sap logon pad,
    i am getting the error like this,
    sap gui 710
    maximum number of connection handles reached.
    no more memory is available.
    do you want to see the detailed error description
    could you some idea on this..what to do?
    thanks & regards
    Ruban

    hi,
    I am closing this thread..bec i did not find any soultion.
    Thanks
    Ruban

  • Issue in source system creation under sap node

    hi,
    i am facing a strage issue here while creating a sap source system. 
    i have two development systems - bd1 for bi development, rd1 for r/3 development. rfc is propely maintained between both of the systems. now im creating the source sytsem under transaction rsa1 - source sytem - sap, i put in all the details and it prompts me to log in to the source system as well. it creates the system properly but the problem is that im creating it under the node sap and it goes under the node bi.
    i have deleted it from there and repeated the same process again but still everytime it comes only under the node bi irrespectiv e of the thing that im creating it under sap.
    this is the first time im facing this strange issue i have done the same process many time but never seen nething like this, does anyone have any idea for the same.
    kindly give ur inputs.
    thanks
    dipika

    Hi Dipika,
    It is not an operational issue. Its just a display and should not have any problems.
    Please go through the below SAP Note to fix the issue.
    [Note 1087980 - ECC Source systems appearing in BI folder|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1087980]
    Regards,
    Gaurav
    Edited by: Gaurav Kothari on Aug 31, 2009 4:20 PM

Maybe you are looking for

  • Remembering SaveAs dialog position on dual-monitor

    Hello, I'm using Acrobat 9 Standard with dual monitor setup. How can I get Acrobat to remember the last position of the SaveAs dialog on the other monitor after moving it there? I'm using a script to automate the extraction of each page and saving ea

  • LR4.1 doesn´t create a psd

    when i use the external editor function, LR4.1 doesn´t create a psd-file. CS5 will directly open the DNG. With LR4.0 i didn´t have this problem. Anyone here to solve this problem? (VISTA Ultimate)

  • FCE HD won't start on my brand new iMac Intel!!!

    Hello, Can anyone help? I just bought a new iMac Intel 1,8Ghz - 17' and my FCE HD doen't want to start anymore... I keep receiving an error message when its starts. Message says something like: "Software or Hardware Compatibility problem. --> AGP gra

  • Command+f default window

    Would like to set the find window (command+f) to always appear without the sidebar and name selected by default, is that possible? Using EasyFind right now, which stays the way I leave it on my last search.

  • Configure This Portlet 'Edit' button pop up shows error

    When I try to create a new portlet based on the 'Header' portlet by opening the Portlet Configuration Wizard and choosing the 'Header' portlet from the 'Published Content Portlets' 'en' folder, that works fine. But then once the pop up closes and the