Outbound file

Hi ,
  i need to send the SAP data to liberty through an outbound interface flat file . The file has 3000 characters and in that they are only few fields from SAP has to be filled and the rest of the fields  has to be filled with spaces in between the SAP fields . I am taking output table and in that i am filling required fields from SAP and the rest of them as a Filler varaibles in between but the output table declaration comes out too big,Please let me know if there is any other approach to follow.
Thanks,
Makks.

I don't think you have to define an internal table with all the filler fields if you are sure that SAP is not going to be the source for those fields. You can deal with it in different ways.
option 1.
Declare only one field for the entire free space.
data: begin of itab occurs 0,
        field1 ....,
        field2 ....,
        myspace1(1000),
        field3.....,
        myspace2(1000).
data: end of itab.
Here we are combining all the blank fields into a single field even though for the receiving system, it may be 20 fields. So myspace1 if just one field of your internal table with 1000 spaces, your receiving system will see it as 20 fields with spaces.
option 2:
Declare an internal table with just the fields you fill in from SAP. When you are transferring the record to unix using 'TRANSFER', you move the individual fields to the corresponding offsets of a 3000 long string.
data: v_string(3000).
data: begin of itab occurs 0,
        field1...
        field2....
        field3...
data: end of itab.
loop at itab.
  clear v_string.
  move: itab-field1 to v_string+0(xx),
        itab-field2 to v_string+50(xx),
        itab-field3 to v_string+2525(xx).
  transfer v_string to file.
endloop.

Similar Messages

  • Dynamic file names in outbound file adapter

    I have to configure a flow in XI system wich takes an input file from one machine and after mapping process leaves the output file in target machine with the same name of input file.
    Name of input file won't be always the same (*.dat) so i cannot hardcode this name in outbound file adapter.
    Does anyone know how to transfer input filename from inbound file adapter to XI message and then to outbound file adapter?
    I know there is an option to create dynamic file names in file adapter but i think it isn't enought to solve my problem.

    I have to configure a flow in XI system wich takes an input file from one machine and after mapping process leaves the output file in target machine with the same name of input file.
    Name of input file won't be always the same (*.dat) so i cannot hardcode this name in outbound file adapter.
    Does anyone know how to transfer input filename from inbound file adapter to XI message and then to outbound file adapter?
    I know there is an option to create dynamic file names in file adapter but i think it isn't enought to solve my problem.

  • Get the filename after an outbound file adapter operation

    Hello,
    I am calling an outbound file adapter operation in BPEL (10.1.3.3) - using a filename mask with a sequence (i.e. po_%SEQ%.xml). I would like to provide the filename created at run-time (i.e. po_123.xml) to my BPEL process so I can send this in an e-mail. Is this possible?
    Thanks in advance!
    Rod
    Message was edited by: Rod - fixed a typo
    Rod Tunnels

    Well, I took a different approach - which looks like it will work. Instead of letting the adapter decide the filename - I'm generating that in BPEL and passing that to the adapter using the header variable. So ... nevermind. ;-)

  • How to change namespace in outbound file

    Hi,
    When I creates a outbound file using file adapter, BPEL or jDeveloper creates a file with its own namwspace like ns1: or ns15: or so on... But if I want to change it to my own tag say like tns: or its:, is it possible?
    example:
    the usual creation in BPEL:
    <?xml version="1.0" ?><ProvisionsInterface xmlns:ns1="http://www.mycomapny.com/ns/company/payments" xmlns="http://www.mycomapny.com/ns/company/payments">
    <ns1:Provider>
    <ns1:Id>1909909</ns1:Id>
    <ns1:Name>BASSETTS</ns1:Name>
    <ns1:Addr1>1 High Street</ns1:Addr1>
    I want to change it to:
    <?xml version="1.0" ?><ProvisionsInterface xmlns:tns="http://www.mycomapny.com/ns/company/payments" xmlns="http://www.mycomapny.com/ns/company/payments">
    <tns:Provider>
    <tns:Id>1909909</tns:Id>
    <tns:Name>BASSETTS</tns:Name>
    <tns:Addr1>1 High Street</tns:Addr1>
    Any idea, plase advice.
    Regards,
    Sreejit

    Hi,
    Thanks for reply.
    Actullay the requirement is that the target system doesn't want any namespace tag in front of the elements.
    I have got the answer and created a wrapper xsd, by which you can change or remove the namespace from the output file.
    example:
    <?xml version="1.0" encoding="utf-8" ?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.mycompany.com/ns/suppliers" <!-- target namespace from actual xsd -->
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd" nxsd:version="DTD">
    <include schemaLocation="NameOfActualSchema.xsd"/>
    </schema>
    Regards,
    Sreejit

  • Outbound File Adaper : Dynamic configuration of FileSize and number of msg

    I want to configure dynamically following parameters of Outbound file adapter
    1) Number of Message equals
    2)Elapsed time exceeds
    3)File size exceeds
    If we set all those parameter at designtime then automatically it stored at adapter.wsdl file but how can I change those parameter at runtime.
    Let me know regarding this.
    Thanks in Advance

    Noway.
    Only statically. Stop adapter, change in manually and restart adapter.
    Or write your own adapter in java.
    Or create several adapters with different configuration and pick appropriate adapter dynamically.

  • Append functionality in Outbound File Adapter

    Hi all,
    I have a question regarding append functionality in outbound file adapter.
    When I append files for example I get a XML file with different XML files in one file, but is it also possible to collect and bundle the files and get a same result when u use BPM?
    Do I have to add some parameters?
    Kind regards,
    Kamran Vakili

    It is not possible, when you append XML files.
    The result XML file is not valid, as you have multiple declarations and root tags.
    The append mode for the file adapter should be used only for flat files.
    Regards
    Stefan

  • OutBound File Adapter Issue

    Hi,
    I need some help in configuring file adapters:
    Process: I have a inbound adapter where i am feeding 4000 - 5000 rows of data from a flat file. I use these records to query a database and get response. I have a outbound file adapter where I write database response to a file.
    Problem: I have set the, write new file to 100 records. But if there are 3950 records going to outbound file adapter, It is only writing 3900 records in the output file directory.
    I need to write all records to the file. Please help me achieve this.
    Thank You
    Anil

    Hi,
    the batching criteria (100) is not met.
    You could improve the bahaviour by setting "Elapsed Time Exceeds" parameter, but still, there are some probs because critaria is only evaluated on invocation (anyone has an answer to that?!):
    from Doc:
    Elapsed Time Exceeds: Specify a time which, when exceeded, causes a new outgoing file to be created.
    Note:
    The Elapsed Time Exceeds batching criteria is evaluated and a new outgoing file is created, only when an invocation happens.
    For example, if you specify that elapsed time exceeds 15 seconds, then the first message that is received is not written out, even after 15 seconds, as batching conditions are not valid. If a second message is received, then batching conditions become valid for the first one, and an output file is created when the elapsed time exceeds 15 seconds.

  • TargetFilename in the Outbound File Adapter

    Hi all,
    I have created an interface that sends projects form SAP PS (by tRFC) to a file directory (using an outbound file adapter). Each project is created as a individual file. All this works well, but the filenames created for the files are not very intuitive for the users looking at the files at the receiver point since there are quite a lot of similar files only distinguished from each other by a timestamp (usualy only separated by milliseconds).
    Is there a way to make the file adapter append data from one XML tag in the file name? I.e:
    file.TargetFilename='<project></project>'.txt
    file.writeMode=addTimeStamp
    giving i.e a file '1234567_timestamp.txt'
    This way I can include i.e. the project number + timestamp as filename making it user friendly for the people using the files.
    Any suggestions will be appreciated.
    Best Regards
    Odd Hilt

    HI
    Read the file without using key field. Just define the FCC parameters Header and Items PI will pick the file.
    DT_Source
       Record
         Header 0..1
           PO_Number String 0..1
         Items  0..unbounded
           Items String 0..1
    Do the FCC
    Header.fieldnames PO_Number
    other config for Header
    Items.fieldnames Items
    other config for items
    Thanks
    Gaurav
    Edited by: Gaurav Bhargava on Nov 12, 2008 10:27 AM
    Edited by: Gaurav Bhargava on Nov 12, 2008 10:27 AM

  • How write the Outbound file name in the Inbound file

    Friends,
    I have a scenario like this.
    Outbout filename - sample.txt
    In sample.txt, i have having data like 20
    Inbound filename - vivek.txt
    i need data the like sample, 20
    (NOTE: sample is the outbound file)
    How to get this scenario.
    Thanks in advance.
    regards,
    Vivek.

    Hi Vivek,
      If your PI is of SP14 and more you have an option called Adapter Specific Message Attributes.(ASMA) in communicatoin channel configurtaion, Which will help you in capturing the Sender file name during runtime.
    So you will have to enable that option (ASMA) in Commchannel and capture file name  in UDF using Java Code with the help of sap related API and map it to the target field which u would like to get populated.
    follow the thread it has the discussion about acessing the Source file name.
       Re: Getting file directory using dynamic configuration:Code needed
    Thanks,
    Ram.

  • Error while batching outbound files in b2b

    Hi,
    i am trying to batch the 1-n outbound files of for a specific Trading Partner and doc type.
    i refered this.
    http://download.oracle.com/docs/cd/B14099_19/integrate.1012/b19370/edi_batch.htm
    but while i am runnin this it is just saying wait batch state in b2b.
    can anyoone help me on this ???
    anew

    Hi Anuj,
    thanks i got is working
    actually i was refering Orcale EDI book there it is mentioned that for batching we use like
    insert into b2b_batch_event values(sys_guid(),to_date('WED 16-JUN-2010 15:00:00','Dy DD-Mon-YYYY HH24:MI:SS'),60,'Test','ORDERS','D96A',1,1,1,'EFT_ONE_TP',null,null,null,null)
    for EDIFACT messages.
    but at batch time it was just showing wait batch ...doing nothing
    i changed it to
    insert into b2b_batch_event values(sys_guid(),to_date('MON 28-JUN-2010 9:00:00','Dy DD-Mon-YYYY HH24:MI:SS'),60,'Test','ORDERS','D96A',1,1,1,null,null,null,null,null)
    then i got it working
    thanks for you help.
    Br,
    anew
    Edited by: anew on Jun 29, 2010 4:30 AM

  • ValidateXML property in Outbound file adapeter

    Hi,
    I am using validateXML property in outbound file adapter, it is working in SOA suite 10.1.3.4 but not in version 10.1.3.3, is anybody know do we have this problem in 10.1.3.3 and do we have any patch for it for version 10.1.3.3?
    How to raise the SR in metalink, I mean which product I need to select, is it Oracle SOA platform?
    Please help / suggest.
    Regards,
    Sreejit

    Thanks for the answer.
    It was not working because the value for validateXML is true/false in 10.1.3.3 and strict/none in 10.1.3.4.
    Regards,
    Sreejit

  • About EDI outbound file name

    Hi Anuj,
    When I test EDI X12 834 outbound, the file generated is in the format %From_party%_%unique_id%.dat. I am not sure the unique_id is message ID or transaction control number, anyway it is a timestamp unique.
    My question is can I specify outbound file name format? File name convention is recently proposed. It is not compliant with the default outbound file name.
    Thank you,
    Alena
    CGI

    Hello Sir,
    Thank you for reading my thread.
    Yes, we have worked on edi 834 and completed a few different transactions with people's support in this forum. Now I am glad to help other people on this.
    1. Is HCA Adapter required for EDI 834?
    HCA is not required for EDI 834. There are a couple threads discussed this in the forum. You can search Anuj's comments regarding this. See the the link. Oracle B2B is the right solution.
    https://forums.oracle.com/thread/2551859
    2. Any Healthcare Libraries?
    If you are encountering B2B validation problem, you need to install Healthcare Library. But your problem has nothing to do with that. If you don't install the healthcare library, you still can do everything except B2B validation.
    3. Any patches
    If you are running SOA Suite 11.1.1.6.0, you need to install Health Care Patch to fix B2B validation problem. That is a bug.
    If you are running SOA Suite 11.1.1.7.9, you need to install HealthCare Library to fix B2B validation problem. It is the same bug.
    4. Any other??
    If you are using Oracle B2B, you need to active B2B ui project. It has already deployed on Weblogic server, but you need to activate it. You should be able to access B2B via:
    http://localhost:7001/b2bconsole or: http://localhost:7101/b2bconsole
    5. Any special care while generating .ecs,xsd,.dazt from doc editor???
    I don't need .dazt.  You need ecs and xsd for B2B configuration. I disabled a couple validation rules to meet our business requirements. You may not need to.
    For your particular problem, as the error message says "it can't find the agreement for the trading partners. B2B needs three information to identify the agreement. The document type (here it is 820 or 834), From TP, and To TP. If these three things meet, then B2B should be able to find it.
    Let me know how are you doing after you check these things.
    Alena Li

  • Double Quotes in Infospokes Outbound File.

    Hi,
    We have a requirement where we are supposed to have double quotes in the description for one of the characteristics in the Outbound files while extracting the data through Infospokes.
    Is this possible as data getting dumped in a file
    Could any of you guys help us in this situation.
    Thanks.
    AM.

    Hi,
    We have done that through implementation of BADi OPENHUB_TRANSFORM.
    Implement this BADI. Place the Quote  for all fields in the structure.
    You need to have the extend the output structure. Convert all the fields to Text and increase the length by 2 for Quote at the start and at the end.
    Hope this helps
    Regards
    PV

  • Problem with OutBound file binding

    Hi,
    I have a problem with sun-file-binding for write files in a directory.
    I have a service engine that send a message to the file-binding and the binding-component must write the file
    on a directory.
    But I have this error:
    FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    Consumer:Processing Message Exchange with status Error
    The log message is null.
    java.lang.Exception: Consumer:INOUT Message Exchange status ERROR.
    java.lang.Exception: FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    at com.sun.jbi.filebc.OutboundMessageProcessor.setError(OutboundMessageProcessor.java:820)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:301)
    at com.sun.jbi.filebc.OutboundMessageProcessor.run(OutboundMessageProcessor.java:174)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.Exception: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo].
    at com.sun.jbi.filebc.OutboundMessageProcessor.validateOutboundMessageExchangeProperties(OutboundMessageProcessor.java:1499)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:272)
    ... 2 more
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnConsumer(RingOneMessageHandler.java:262)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.doInOutMessageExchange(RingOneMessageHandler.java:130)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnProvider(RingOneMessageHandler.java:325)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.receiveAndProcessMessageExchange(RingOneMessageHandler.java:355)
    at it.ditech.jbi.component.utils.RingOneMessageHandler$1.run(RingOneMessageHandler.java:191)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:619)
    this is my WSDL file:
    <?xml version='1.0' encoding="UTF-8" standalone="yes" ?>
    <definitions
    targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo"
    name="echo"
    xmlns:tns="http://www.sun.com/jbi/examples/sample-service/echo"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/">
    <types>
    <xsd:schema targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo">
    <xsd:element name="item">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element type="xsd:string" name="value"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </types>
    <message name="echo">
    <part name="part"
    element="tns:item">
    </part>
    </message>
    <portType name="echo">
    <operation name="echo">
    <input name="echo" message="tns:echo"/>
    </operation>
    </portType>
    <binding name="Binding" type="tns:echo">
    <file:binding/>
    <operation name="echo">
    <file:operation verb="write">
    <input name="echo" message="tns:echo">
    <file:message use="literal" fileName="output-%t.xml" fileNameIsPattern="true"/>
    </input>
    </file:operation>
    </operation>
    </binding>
    <service name="echoService2">
    <port name="echoEP_JBIPort2" binding="tns:Binding">
    <file:address fileDirectory="/home/roger/Scrivania/in-out"/>
    </port>
    </service>
    </definitions>
    Is there anyone that can help me?
    Thanks
    Roberto

    Hi,
    I have a problem with sun-file-binding for write files in a directory.
    I have a service engine that send a message to the file-binding and the binding-component must write the file
    on a directory.
    But I have this error:
    FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    Consumer:Processing Message Exchange with status Error
    The log message is null.
    java.lang.Exception: Consumer:INOUT Message Exchange status ERROR.
    java.lang.Exception: FILEBC-E00791: Solicited Read Failed. service: {http://www.sun.com/jbi/examples/sample-service/echo}echoService2, endpoint: echoEP_JBIPort2, operation: {http://www.sun.com/jbi/examples/sample-service/echo}echo. Error was: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo]..
    at com.sun.jbi.filebc.OutboundMessageProcessor.setError(OutboundMessageProcessor.java:820)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:301)
    at com.sun.jbi.filebc.OutboundMessageProcessor.run(OutboundMessageProcessor.java:174)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.Exception: FILEBC_E00760: Missing required Input properties for outbound file operation [{http://www.sun.com/jbi/examples/sample-service/echo}echo].
    at com.sun.jbi.filebc.OutboundMessageProcessor.validateOutboundMessageExchangeProperties(OutboundMessageProcessor.java:1499)
    at com.sun.jbi.filebc.OutboundMessageProcessor.processRequestReplyOutbound(OutboundMessageProcessor.java:272)
    ... 2 more
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnConsumer(RingOneMessageHandler.java:262)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.doInOutMessageExchange(RingOneMessageHandler.java:130)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.processInOutMessageExchangeOnProvider(RingOneMessageHandler.java:325)
    at it.ditech.jbi.component.utils.RingOneMessageHandler.receiveAndProcessMessageExchange(RingOneMessageHandler.java:355)
    at it.ditech.jbi.component.utils.RingOneMessageHandler$1.run(RingOneMessageHandler.java:191)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:619)
    this is my WSDL file:
    <?xml version='1.0' encoding="UTF-8" standalone="yes" ?>
    <definitions
    targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo"
    name="echo"
    xmlns:tns="http://www.sun.com/jbi/examples/sample-service/echo"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/">
    <types>
    <xsd:schema targetNamespace="http://www.sun.com/jbi/examples/sample-service/echo">
    <xsd:element name="item">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element type="xsd:string" name="value"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </types>
    <message name="echo">
    <part name="part"
    element="tns:item">
    </part>
    </message>
    <portType name="echo">
    <operation name="echo">
    <input name="echo" message="tns:echo"/>
    </operation>
    </portType>
    <binding name="Binding" type="tns:echo">
    <file:binding/>
    <operation name="echo">
    <file:operation verb="write">
    <input name="echo" message="tns:echo">
    <file:message use="literal" fileName="output-%t.xml" fileNameIsPattern="true"/>
    </input>
    </file:operation>
    </operation>
    </binding>
    <service name="echoService2">
    <port name="echoEP_JBIPort2" binding="tns:Binding">
    <file:address fileDirectory="/home/roger/Scrivania/in-out"/>
    </port>
    </service>
    </definitions>
    Is there anyone that can help me?
    Thanks
    Roberto

  • Port File: Outbound file trigger not executed

    Hi,
    We want send some idoc's to a file port and execute a unix script after write it.
    In the same directory we have a unix script ( prueba.sh). There is no issue in this script, so we are tested it manually.
    We have configured one file port in WE21 with:.
    Outbound file TAB:- Physical directory : /idocs/
    Function module: EDI_PATH_CREATE_MESTYP_DOCNUM
    Outbound Trigget TAB: Automatic Start Possible check box checked.
    RFC destination : SERVER_EXEC.
    Directory : /idocs/
    Command file : prova.sh
    Also we have configured and succesfully tested SERVER_EXEC connection:
    TCP/IP connections:- SERVER_EXEC configured with parameters: Application server , Program: rfcexec.
    Finally file are created but script is not executed.
    Why? What is wrong?
    Thanks in advance.
    Carme.

    Solved.
    It's ncessary to activate check "Start Subsystem" in partner profile (we21)
    By default , doesn't start subsystem.

  • EDI Outbound file trigger not happening automatically.unix script

    EDI OUT bound issue:-
    We are processing IDOC by using WE19 -> Here we are selecting existing IDOC -> By using pushbutton Start Outbound Processing the IDOC EDI file is creating in directory with file name as:- /abc/xyz/edi/DECVDE_989898.
    In the same directory we have unix script file push_idoc_sci.sh is available which sends this EDI file to unix server.This script is working fine when we do manual sending of edi file - there is no issue in the script.
    1> We configured the port SAPEDI which sends this EDI file automatically by using this script file. But this is not happening.
    WE21 settings:-
    Outbound file TAB:- Phycal directory -> /abc/xyz/edi/
                                     Function module: EDI_PATH_CREATE_MESTYP_DOCNUM
    Outbound Trigget TAB:-
                                    Automatic Start Possible check box checked.
                                    RFC destination -- SERVER_EXCE.
                                    Directory-- /abc/xyz/edi/
                                    Command file -- push_idoc_sci.sh
    Inbound file TAB:- Phycal directory -> /abc/xyz/edi/ in
                                 FM -- EDI_PATH_CREATE_CLIENT_DOCNUM
    2> RFC destination TCP/IP connections:- SERVER_EXEC configured with parameters:
         Application server :- Program: rfcexec.
    The Issues is EDI file is creating in applicastion server, but it is not going automatically to unix server as automated process. even we mentoned the script in port defination to send automatically.
    Is there any we are missing? any seetings do we need to do extra?
    Please let us know.
    Thanks in advance.
    Sreedhara.

    Hi Hi sreedhara gupta
    what REDDY said is correct. Still you if you want test by using WE19 ....Put break point at include MSED7F03 at  IF direction_in <> c_direct_incoming.
    change the value of  control_record_in-outmod to 1 or 3.
    Note: Imp thing is............. there is a chase of missing segments which are requied in EDI Subsystem.
    Thanks
    Ramesh
    Edited by: Ramesh on Mar 26, 2010 7:07 PM

Maybe you are looking for