Getting error in file transfer from one system to another system

Hi All
One of my client (User) wants to transfer his file from  SAP R/3 System SAP XI system. He is using a customize t-code ZFIR0325 (Trial balance report transfer to Hyperian System). When user execute the  program he is getting error "File Transfer Failed due to Network chk with Admin"
I checked with Network team but they said it is okay from their side. We also check for authorization but there is no issue regarding authorization.
Name of File Path of Aplication Server, XI destinaion and XI directory entered by user is correct.
We also put authorization trace in XI System to RFC User (In file transfer from one system to another system this RFC User is geeing Used) but no authorization issue was found.
Please help me to resolve this problem. I any detail require I will provide the same.

Guruprasad Wrote:
He is using a customize t-code ZFIR0325 (Trial balance report transfer to Hyperian System).
We also put authorization trace in XI System to RFC User (In file transfer from one system to another system this RFC User is geeing Used) but no authorization issue was found.
Firstly, no one in the community can answer on how a custom transcation code and a program associated with it behaves.
If there are no authorization issues in the system, you have to look at the exact error message. Look if your XI system is allowed to receive files from the SAP system.
Unfortunately, you should do some more home work before putting your question here. If everything is fine and configured correctly, then the issue might be with the program.
Regards,
Raghu

Similar Messages

  • Getting error , while passing parameters from one page to another page

    Hello friends,
    i am getting error, while passing parameters from one page to another page, below code i wrote.
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    ArrayList arl=new ArrayList();
    EresFrameworkAMImpl am=(EresFrameworkAMImpl)pageContext.getApplicationModule(webBean);
    ERecordImpl ERecordObj=new ERecordImpl();
    HashMap hMap = new HashMap();
    hMap.put("1",ERecordObj.getTransactionName());
    hMap.put("2",ERecordObj.getTransactionKey());
    hMap.put("3",ERecordObj.getDeferredMode());
    hMap.put("4",ERecordObj.getUserKeyLabel());
    hMap.put("5",ERecordObj.getUserKeyValue());
    hMap.put("6",ERecordObj.getTransactionAuditId());
    hMap.put("7",ERecordObj.getRequester());
    hMap.put("8",ERecordObj.getSourceApplication());
    hMap.put("9",ERecordObj.getPostOpAPI());
    hMap.put("10",ERecordObj.getPayload());
    // hMap.put(EresConstants.ERES_PROCESS_ID,
    if(pageContext.getParameter("item1")!=null)
    pageContext.forwardImmediately(EresConstants.EINITIALS_FUNCTION,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    hMap,
    true,
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES
    Error(71,2): method forwardImmediately(java.lang.String, byte, null, java.util.HashMap, boolean, java.lang.String) not found in interface oracle.apps.fnd.framework.webui.OAPageContext
    Thanks
    krishna.

    Hi,
    You have imported the wrong class for HashMap.
    Import
    com.sun.java.util.collections.HashMap; instead of java.util.HashMap
    Thanks,
    Gaurav

  • Getting error while scheduling load from one cube to another

    Hi,
    I have create one cube ,which has got loaded from two data sources and load into the cube went successful.I have created copy cube and schedule the load into copy cube from the base cube,where i am getting error message syaing that"New work Area started,terminated the system" and "Core_dump","Rolled-Out session terminated" all the above messages are getting and so many short dumps.I am getting all the above messages.
    Even i have change data packet size from 20000 to 5000 and increares dialup process from 2 to 5.But still i am getting same kind of messages.
    Please some one can help me out from this issue.

    Hi,
    In which version you are.
    If you in 7.0 then have you checked in DTP.
    Just logooff from your server, and again relog, and try to load once again.
    Let us know status ....
    Reg
    Pra

  • File transfer from one system to another system

    How can I use ODI to do file transfer from one system to another system ?
    Do I need to create Models or I have to simply use Jython procedure/script to do the same ? Kindly help. I have done DB to DB using Knowledge Modules. But I am not able to understand this piece.
    Kindly help.

    If you are asking about file transfer use ODI FTP tool to do it. If you are asking about file transformation..
    You can not do file transformation directly in ODI like we do in any other ETL tool like data stage or Ab Initio.. File transformation in ODI can be done using staging database in an interface(i.e ELT way).
    Create source and target data stores for the file to be transformed. Create an interface using File to SQL LKM to load the file into staging database and then use SQL to File Integration knowledge module.
    Thanks,
    D

  • From Forms 5.0 I want to copy a file/folder from one location to another.

    Hi,
    I have a question and I really appreciate your help.
    My Question is
    I would like to copy a file/folder from one location to another.
    (For ex: From my Hard disk to a Network folder).
    I want to do this from Oracle Forms 5.0 and my operating system is Windows 2000/NT Workstation.
    At present my users are doing this by using drag and drop windows functionality,
    But now they want to do this by using a GUI screen.
    I would greatly appreciate if somebody can answer my question.
    Thank you very much and have a nice day.
    Thanks & Regards
    Sanjeev.

    Hi Shay,
    Am able to copy the files/folders by doing the follwing.
    Declare
    My_Command Varchar2(1000);
    Begin
    MY_COMMAND := 'XCOPY /E ' ||:FROM_LOC ||' '|| :TO_LOC ;
    HOST(MY_COMMAND);
    End;
    But my problem is am not able to trap the errors.
    Do you have any idea?
    Thanks

  • How do I transfer from one ArrayList to another -

    Hi
    Basically what I want to do is transfer from one arayList to another using an iterator to iterate of the list and transfer certain entries to another - one is called lots, the other is called unsold.
    I don't want help with trying to get the right fields to transfer at the moment I'm just trying to get it to transfer EVERY entry, which I cant seem to to with this while loop
    public ArrayList getUnsold()
           Iterator it = lots.iterator();
            while(it.hasNext()) {
                    Lot lot = (Lot) it.next();
                    unsold.add(lot.getDescription());
                    return unsold;With the above all I seem to get is the first item in the 'lots' list to transfer even though theree are 3 items that need to be transferred...
    I have declared all arraylists and everything on this level works I just cant transfer items over properly...
    Any help is most appreciated.
    -greg

    Add these print statements (and others you think might help) to help you see what's going on: public ArrayList getUnsold()
           Iterator it = lots.iterator();
            while(it.hasNext()) {
                    Lot lot = (Lot) it.next();
                    System.out.println(lot);
                    System.out.println(lot.getDescription)());
                    unsold.add(lot.getDescription());
                    System.out.println(unsold);

  • Vendor Open items transfer from one Recon to Another recon

    We have wrongly maintained one recon account in Vendor. 
    Is there any way to trnasfer Vendor Open items transfer from one Recon to Another reconciliation account..

    Hi,
    The best way is to transfer the items from old to new reconciliation account.
    Please use the following entries to transfer.
    1. Dr Vendor a/c(Old recon a/c)
        Cr Vendor clearing a/c
    After nullifying the balance in old recon account, here chage recon in the master.
    2. Dr Vendor clearing a/c
        Cr Vendor a/c(New recon a/c)
    F101 only post the adjustment entry at period end and reverse the same entry in next period. So, transferring the items is the best method. If you have volume of data, then create a LSMW for this.
    Rgds
    Murali. N

  • File transfer from one smaller Lacie to bigger Lacie: A problem

    Dear friends
    I purchased another bigger Lacie drive with more memory. I followed the instruction and backed up all files from internal drive to this new Drive. Since my smaller Lacie was getting very full I also transferred all my FCP files by dragging them to the new lacie drive. But in the process something strange happened:
    When I open the fcp files from this new Lacie they all go offline, and when I try to reconnect them they don't go online. On the other hand, when I open fcp project files from my old lacie the files open but after a long time & after a lot of clicking & when the circling of the little circle stops. Sometimes, the little circle doesn't stop at all unless I force quit. I must have done something wrong transferring the files. What could it be, and how can I fix the problem? I would be grateful to you to help me to solve this problem step by step. faruk

    Hi Andy
    I am sorry I keep coming back, but I believe I am getting very close to solving this mysterious aspect of fcp's with your help & encouragement.
    1. When both lacies of the same name are connected to 800 ports I get to my projects online regardless which of the 2 paths I take: Macintosh HD/users/....or Big lacie/powerbook Backup/Macintosh HD/users. Therefore, question of media reconnection doesn't seem to apply here.
    2. When small lacie is connected & the big one not, I still get to my projects online no matter which the two paths I take. Here also Media connection doesn't seem to apply either.
    3. The only time the projects go offline & Media connection seem to apply is when big lacie is connected & the small one is not regardless which of the two paths I take. When I click to reconnect in this case I get the following messages:
    a. There are no clips selected that have files associated with them.
    When I select a clip or the sequence in the browser I get file Attribute Mismach which says:
    Some attributes of one or more of the files you have chosen do not match the attributes of the original. This may cause problems within the sequences that are dependent on them, the attributes that differed are as follows: -Media start and End. Would you like to connect them again?
    When I click continue it says; one or more files did not have enough media to recconect some clips. Some edited clip items have had their out point adjusted.
    b. "I did move around clips & folders from one project to another, but that's it. But the fact is that inside FCP folder I created in big lacie I do see all media files you have mentioned & the box is ticked already.
    c. But when I click Macintosh HD in the the first column where all FCP files are installed I get the following:
    Second column: capture scratch, audio render files, & render files
    Third Column: Only Capture Scratch opens & I get the same three folders
    Fourth column: Again, only Capture Scratch opens, but opens strangely to one of my projects Maps & when I click the project, it opens to a fourth column as the same three in the Second Column.
    Fifth Column: Strangely again Olnly Scratch Disk opens to the next column with the same three folders & the same process continue to two more columns & then stops opening. What did do wrong. should I delete files in the big lacie & start all over again, painful as it is? Have best weekend. faruk

  • Using jdk1.3.1 to transfer files/folders from one directory to another

    I am writing a simple program to transfer files and folders from one directory to another
    For example, I have some files and folders in C:\send\ directory.
    I want to know how to move them to C:\receive\ directory.
    Can someone please tell me which class I should use and which method?
    I need to complete this urgently.
    Thanks.
    Deeply appreciate it.

    not very difficult. You should use the File class and the "renameTo" method.
    Example:
      File origin = new File("c:\\lost\\myFile.zer");
      File dest = new File("c:\\found\\myFile.zer");
      origin.renameTo(dest);Of course you have to take care that the file doesn't exists previously, etc. But i think that all you need is in the File class.
    Hope this helps.
    Zerjio

  • HT2518 transfer files, applications from one mac to another mac

    Whst is the best way to move files and applications from one mac to another?

    How to use Migration Assistant:
    http://support.apple.com/kb/HT4413?viewlocale=en_US
    http://support.apple.com/kb/TS1963
    Troubleshooting Firewire target disk mode:
    http://support.apple.com/kb/HT1661

  • Material transfer from one plant to another

    Hi expert
    i am transfer material from one plant to another , for the same i have  created a vendor in that i have assigned supplying plant, and in the Purchase order, i am need to use inventoried tax code.
    For the same i have done transfer with 351 and i did migo , but i didnt get  FI document for 101 movement
    If it is development, how do we acheive this.
    Let me know if you need more details on this. Appreciate your possible solutions to this.
    Thanks
    Rgds
    Nabil

    For the stock transfer within two plants in the same company code, Accounting document gets generated on doing goods issue.
    Supplying Plant Stock/Account BSX gets credited
    Receiving Plant Stock BSX gets debit.
    After that its stock in transit for the receiving plant and by doing goods receipt you are just taking goods in so the accoun ting document does not get generated again while doing GRN.
    If it is Company Code, it will be  sale & purchase concept  where in  vendor & customer master are created in respective plant and the accounting entries for that scenario will be
    At the supplying plant
    Stock Account Credited
    Cost of Goods sold Acc Debited
    At Receiving plant
    Stock Account Debited
    GR/IR Clearing Acc Credited
    You can also go through following link
    Re: STO -FI document is not generate from the GRN
    Regards
    Sangeeta

  • Excise for assets during transfer from one plant to another plant

    Hi SAP gurus,
    Pls note i have an issue during tranfer of asset from one plant to another.When i tranfer asset from one plant to another , in my suppling plant i create an Excise invoice where EXCISE RECOVERY ACCOUNT (debit) is getting hit instead of CENVAT PAYABLE ACCOUNT ( debit).
    What may be the issue ?
    And in same ways during inward of the goods - MIGO at the receiving plant CENVAT CLEARING ACCOUNT (credit)  gets hit.
    Now both Excise recovery account & cenvat clearing account are not gettiing nullified.
    The Process is as given below.Should i change any step or do i have to configure something
    **Master Data**
    1.     Material code (UNBW) should be available in both plants with Sales views -MM01                    
    2.     Stock should be available otherwise upload the stock with 501 movements (UNBW). No impact on FI u2013 MB1C
    3.     Excise details maintained in both plants for the Material code as Asset u2013 J1ID
    Business Process:
    1.     Transfer the Credit of UNBW asset to the current financial year if not updated u2013 J2I8.
    2.     Create STO PO - for UNBW Material Code with Item category U and Document type ZSTO (Mention the Price which is the base for Tax calculation. This needs to be decided by UCAM. Normally it is the  first initial actual Price at which the asset was procured ) u2013 ME21N
    3.     Do outbound delivery -  VL10B
    4.     Do Vl02n PGI ( stock is reduced and NO FI Document, stock in transit in Receiving Plant)
    5.     Do VF01 with ZSTO billing type. Verify the Price and Tax details( NO FI Doc)
    6.     Do J1iin with reference to Billing doc, Excise values flows from Billing document and Excise  invoice is created. Now FI Document will be created
    FI documents have the below entries:
    BED account credited u2013
    E Cess account credited u2013
    S Hecess   account creditedu2013
    Excise duty recovered  debited +
    7.     Do MIGO in receiving plant with reference to PO/Delivery note and by referencing the Excise Invoice and Date, Post it. Stock will be updated in receiving plant. NO FI document. Excise Entries appear in receiving plant
    On hold Account + (50% of total duty)
    BED  + (50% of BED)
    Ecess + (50% of Ecess
    SHEcess + (50% of SHEcess)
    Cenvat Clearing  credited u2013
    8.     Transfer Credit in the next financial year  -J2I8 ( refer this separate business  process
    document)
    Pls guide
    Nandu

    Hello Nandu,
    Please check the G/Ls assigned against CAGI and CAGR in "Specify Excise Accounts per Excise Transactions"  and "Specify G/Ls Accounts per Excise Transactions" configuration for Tax on Goods Movement > India.
    The combination should help you arrive at the right G/L accounts.

  • Itunes Playlist Transfer From One Computer to another

    i followed the support instructions for transferring itunes playlist from one computer to another but when i did it it created one massive playlist is there any way to transfer your itunes playlists to another computer so i dont have to remake all my playlist again im a dj and its kinda hard to to dj looking through over 30k plus songs searching for one after another.... please help someone.... thank you

    Copy \Music\iTunes\iTunes library.xml file to the desktop on the new computer.
    Open iTunes on the new computer then File > Library > Import playlist and select the iTunes library.xml you copied.

  • Transfer from one mac to another mac

    i am trying to transfer all itunes files from one mac to another one via a hard disk
    found this information:
    http://support.apple.com/kb/hT1751
    but does not seem to work for me.
    has anyone more information?
    Mark

    try this script:
    iTunes Track CPR v1.3 
    This script attempts to locate the files of so-called "dead tracks"--iTunes tracks designated with (!)--that you assume are not actually missing but are still located in the iTunes Music folder in their "iTunes File Order" (Music -> Artist -> Album -> file.xxx)."

  • File move from one dir to another with SXPG_COMMAND_EXECUTE

    Hi all,
    Need some help in using UNIX COMMAND with SXPG_COMMAND_EXECUTE.
    I need to move files from one directory to another with MV command,so anybody have any idea regarding the same?
    If any sample code then that will be really gr8.
    Its urgent requirement so pls do the needful
    Thanx in advance

    Hi
    You will have to create external operating system command in SM69 to use with SXPG_COMMAND_EXECUTE. Pass the command name that you create in sm69 to this FM .
    You would need authorization objects S_LOG_COM, S_RZL_ADM to be able to successfuly use this FM.
    Regards
    Kalpana

Maybe you are looking for

  • Photos won't link from contacts to favorites

    Photos that are in my contacts have disappeared from Favorites. This happened after upgrade 10.2.1.2141 Removed favorites and linked them again but photos still do not link to Favorites.

  • How do you select the ical calendar which an event is added to?

    Since switching from iPhone 3GS to iPhone 4, I cannot choose which ical calendar to add an event to. It used to be an option when you created a new event, but now it creates all events in a new calendar, called 'calendar', which I neither want, nor s

  • Not picking up Toplink Descripters or classes from dependant project

    Working w/ beta3 of the designer, and building a database adapter to do an insert, I've noticed that the BPEL process generates its own set of Offline Database Tables, Toplink Mappings and object classes, even though these offline tables, objects and

  • Doc Uploaded by ABAP Class CL_SA_DOC_FACTORY= UPLOAD_DOC not visible

    I am uploading a document in Solution manager through the below code. CALL METHOD CL_SA_DOC_FACTORY=>UPLOAD_DOC   EXPORTING     I_DOC_TITLE              = 'TEST'     I_DOC_TECH_NAME          = 'TEST'     I_DOC_TYPE               = 'AD'     I_DOC_STAT

  • Serial Number is already Locked by User

    Hi, We have ISU Material where Serialization Profile is activated system. We create Serial Number Automatically when we do the MIGO. The System is giving me a error that " Serial Number is already locked by User". If I enter quantity say for Example