Standard File adapter Query !!

HI Guys,
Does standard File adapter has got ability to pick a file  based on required file name.
Ex: If we have 30 files in one folder, 6 file name are like xml_666778_001.xml, xml_666778_002.xml,xml_666779_001.xml, xml_666778_003.xml, xml_666779_002.xml, xml_666780_001.xml.
First I need to pick xml_666778_001.xml,xml_666778_002.xml,xml_666778_003.xml process it and keep with the same name like xml_666778.xml
Next I need to pick xml_666779_001.xml,xml_666779_002.xml process it and keep with xml_666779.xml etc.,
In this customer landscape, We have got 20 distribution centres. Each Distribution center sends more than 5 files a day. File name comes like xml_divisionnumber_001,xml_divisionnumber_002.xml etc. One division all files comes in one shot like ex:10:30:52. Sometimes we get 2 divisions with only one minute difference, but I need to pick only one division all fiels at a time, first I need to process all that one division files to bundle it(i developed this interface) and keep it on application server folder.  I deleloped one more interface to pick this bundle message   and split this message into ABAP proxy.
I am expecting your wonderful ideas please about this situation.
Thanks in advance
Kind Regards
San
Edited by: ASandhya on Jul 20, 2010 7:06 AM

Hi Udo,
I do agree and I have developed BPM messages merge. But my question is in 100 files I need to pick only 5 or 6 files with the file name like xml_00666787_001.xml like xml_00666787_005.xml  and bundle it with as a target file with the name of xml_00666787.xml. In next process again  I need to pick only 5 or 6 files with the file name like xml_00876778_001.xml like xml_xml_00876778_002.xml  and bundle it with as a target file with the name of xml_00876778.xml etc I need to pick all that 100 files by 20 times like this.
Q. How can we take dynamic file name this in Sender side fileadapter to pick particular files??
Many Thanks
Kind Regards
San

Similar Messages

  • File by File picking with Standard File Adapter with NFS Protocal !!

    Hi Folks,
    How to pick file by file with little gap in a file directory by Standard File Adapter. One interface, one communication channle.
    Ex: XML_XXXXX_XXXX1.xml
          XML_XXXXX_XXXX2.xml
          XML_XXXXX_XXXX3.xml
    First I need to pick one file XM_XXXXX_XXXX1.xml then wait for 2 minutes and pick another one in ascending order.
    I have tried with Advance option "File size" and "Msec to wait before modification check" with 1200000 MS, but no use.
    Please folks any one can help in this, which is very big help?
    Kind Regards
    Many Thanks in advance
    San

    Hi
    My BPM steps are as follows:
    1. Receive step -- Asynch
    2. Transformation -- split the message 
    3. Switch step -- Condition "ID != ' ' from transform message'
    4. In side Switch Branch 1 -- Receiver determination - Receive acknowledgment - Application
    5. Send 1 -- with Application Transport, Queue Name - 'XXX'
          This XXX queue I have configured on ID with EOIO Service
    6. block step - Send multiple messages to same receiver on top
        I have send 2 different message to one receiver, the first message is only one , second message are multiple. I am splitting    with transformation step
    7. Sender -2  no acknowledgement active
    8. stop
    Can you please tell me where I am gonna wrong!!
    I will apprecite for your efforts
    Regards
    San

  • File Adapter Query, when PI server restarts polling starts

    Hi Experts,
    I have one problem with File sender adapter if someone can suggest solution or easy way to handle situation.
    I have a interface with 50 file adapters.
    I am activating all file adapters with poling interval 24 Hours.
    And I am activating all adapters after 10 minutes interval so that all should not run at same time.
    So every thing is good.
    But the problem is that whenever BASIS team restarts the SAP-PI server. All 50 file sender adapters get restart at same time (i.e. all poling starts at same time which I do not want because of file size of all files and dependency of one interface i/p on other file o/p).
    So every time when server is getting re-started, I have to re-activate all 50 adapters by sitting for many hours after every 10 minute interval.
    Can someone suggest any solution for above problem, or itu2019s not possible to control sender file adapter poling start when server starts instead of time when I activate it originally?
    Regards

    Hi Rohan,
    As far as I know, it is not possible to schedule the adapter when the server gets restarted.
    Lets see what experts say on the same.
    Thanks,

  • Real time : File Adapter : query

    Hi Folks,
    At development time( file adapter) we test our scenario by creating a sample XML file using message mapping tool .
    The type of message we get from this contains Message Type tag with namespace Attribute.
    <ns0:MT_XYZ xmlns:ns0="urn:xyz">
    My question is in do in real time we need to tell them that create message type with the anmespace attribute we are using ? and also how to suppress namespace and will it bring any complications in the process ?
    Regards,

    Santosh,
    1.     When using the File adapter and Content Conversion to read the file into XI, you can allocate a specific message namespace
    2.     If the namespace does becomes an issue for your scenario then use an additional mapping step to remove the namespace.  For example we have the
    Mesage Type MT_NAMES which has a a type of NAMES
    Subelement NAMEREC (0 .. unbounded)
    Subelements NAME1 and NAME2
    Sample xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns1:MT_NAMES xmlns:ns1="http://namespace">
    <NAMEREC>
    <NAME1>AAA</NAME1>
    <NAME2>BBB</NAME2>
    </NAMEREC>
    <NAMEREC>
    <NAME1>CCC</NAME1>
    <NAME2>DDD</NAME2>
    </NAMEREC>
    </ ns1:MT_NAMES>
    Apply the XSL map
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"     
    xmlns:nsNN="http://namespace" >
         <xsl:template match="/">
              <xsl:for-each select="nsNN:MT_NAMES">
                   <NAMES>
                        <xsl:copy-of select="NAMEREC"/>
                   </NAMES>
              </xsl:for-each>          
         </xsl:template>
    </xsl:stylesheet>
    The namespace has been removed from the xml
    <?xml version="1.0" encoding="utf-8" ?>
    <NAMES>
    <NAMEREC>
    <NAME1>AAA</NAME1>
    <NAME2>BBB</NAME2>
    </NAMEREC>
    <NAMEREC>
    <NAME1>CCC</NAME1>
    <NAME2>DDD</NAME2>
    </NAMEREC>
    </NAMERS>
    Regards,
    Mike

  • File adapter query

    Hi,
    A custom XML document containing vendor information is picked from the file system by file adapter. The message is mapped to XML-IDOC format and then routed to the IDOC adapter
    While generating the IDOC in the receiver system the IDOC goes in error status 56.
    In this scenario is it not necessary to create partner profile and distribution model which i have not created.
    Kindly suggest what could be the problem.
    Regards
    Monzy

    Monzy,
    You always need a IDoc partner profile (transaction WE20) to get IDoc in and out of SAP R/3.  All the SAP XI IDOC adapter is doing to passing IDOC-XML data to SAP in metdata using an RFC function module (either  INBOUND_IDOC_PROCESS, IDOC_INBOUND_ASYNCHRONOUS or IDOC_INBOUND_IN_QUEUE) or receiving the IDoc data and converting into IDoc-XML
    Regards,
    Simon

  • Read File identified by filename from File Adapter

    Hi all,
    is there any way to read a file (which is identified by a given name) by using the file adapter.
    My scenario is the following:
    Webservice -> PI -> File
    I call PI via a Webservice. The webservice call contains the filename of the file that i'd like to receive as response. Is it possible to realize this scenario with PI - from my experience it is not possible. But i would appreciate if you have some alternative solutions for me.
    BR,
    Martin

    Hi Martin,
    you can't achieve required functionality by standard File adapter; you need to write adapter module to achieve it.
    SAP says
    If you are developing a module for the sender file/FTP adapter and want to access the file name, see SAP Note 819761
    below is the link for Adapter module generation which might help.
    http://help.sap.com/saphelp_nw04/helpdata/en/e9/61e1407e858031e10000000a1550b0/frameset.htm
    Regards,
    Karna...

  • File adapter and line feeds

    Hi,
    we need to produce a flat file using the content conversion of the file adapter without any line feed (the target structure is a complex one with several record types).
    Example
    What we get now:
    *AAheaderA
    *ABheaderB
    *BAItem1
    *CAsubitem1
    *BAItem2
    What we need:
    AAheaderAABheaderBBAItem1CAsubitem1*BAItem2
    It seems that with NameA.endSeparator parameter you can only add a new character, but I need to delete the line feed.
    Is it possible with standard file adapter or do we need do create our own module with java?
    Thank you.

    Hi Stefano,
    So you Basically want to do content conversion at the receiver end and that is basically to get the entire data in one line.For that please go through these links below.It clearly explains your requirement.
    <a href="/people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion Receiver with Content Conversion</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/frameset.htm">Converting File Content in the Receiver Adapter</a>
    carefully make a note of the "The ‘endSeparator’ parameter.
    Regards,
    abhy

  • PI file adapter

    Hello
    We are using PI 7.0 SP18 on HPUX.
    We recently upgrade from SP17 to SP18 to follow Seeburger Request.
    But now the Standard file adapter give us some problem.
    In RWB  we have the error below  but the file is sent and received at the destination correctly
    MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: java.lang.NullPointerException
    Error Exception caught by adapter framework: null
    Error Delivery of the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: java.lang.NullPointerException.
    Error The message status set to NDLV.
    We restarted everything, refresh the cash, chek the messaging queue, but we still have the issue.
    thank you for your help
    Fabrice

    Hi Fabrice,
         Check these threads if you haven't checked them already:
    Re: using connection File_http://sap.com/xi/XI/System failed
    Error File_http://sap.com/xi/XI/System failed
    Regards,
    Ravi

  • Seeburger SFTP - File Adapter -- Filename in reciever channel

    I am using a Seeburger SFTP Sender channel, and a "FILE" channel configured to use FTP.
    I need to have the FTP adapter to write the file name as it was sent by the SFTP adatper.
    I looks like I will need to use variable substitutions to do this, but I can't figure out how to populate a variable with the http://seeburger.com/xi/common/dtSubject that contains the file name from the SFTP Adapter.

    All you need is 1 UDF that retrieves the value of dynamic configuration. The name space is http://seeburger.com/xi/common/dtSubject as you said. I am not sure the technical name for FileName for Seeburger adapter. But you can see this in SXMB_MONI under the dynamic configuration node. Using this value populate the dynamic configuration with name space http://sap.com/xi/XI/System/File and technical name FileName. This represents the file name for standard File adapter.
    Regards
    Jai

  • Enhancement of File Adapter Functionality.

    We are trying to do some complex functionality and the file adapter doesnot support the functionality.Are there any guides/docs/SAP NOTES which helps us to enhance the standard file adapter functionality.

    Hi,
    Have you heard about the dispatcher functionality in the adapter engine? Maybe is that an option for your functionality requirements.
    Please have a look at:
    http://help.sap.com/saphelp_xi20sr1/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Some information about the dispatcher:
    <i>Most of the adapters in the Adapter Engine include a dispatcher that can process a series of user exits for converting messages. For example, this dispatcher enables you to carry out file/FTP adapter conversions, XSLT transformations, or Java-based transformations either individually, or combinations of all three.</i>
    Or you can also have a look at the PCK (Partner Connectivity Kit), which can be used to develop you own adapters...
    Some details about the PCK:
    <i> The SAP Partner Connectivity Kit (PCK) enables smaller companies that do not dispose of an SAP XI installation to connect to SAP XI.
    Customers and partners can also develop their own adapters for SAP XI. To do this, they can use the Adapter Framework in the Partner Connectivity Kit (PCK) and refer to the detailed documentation on adapter development. For more information, see SAP XI 3.0 Online documentation under SAP XI: Runtime &#8594; Connectivity &#8594; Partner Connectivity Kit &#8594; Adapter Development. </i>
    Cheers,
    Rob
    Message was edited by: Rob Viana

  • Query operation in file adapter

    Dear All,
    we have faced several issues in using polling for production env.
    We have to ensure sequential nature of data, which means FIFO order of inserts
    is there any alternative to using polling - Receive in file adapter ?
    Can we use {query database adapter  - invoke activity } in file adapter ?
    Please let me know if any body as any leads.
    Appreciate your response.
    Regards
    Arc

    we cant use Invoke activity for Read functionality for File Adapter but there is another way to achive this we can use two recieve activities in one BPEL please find the Sample here $BPEL_HOME\samples\tutorials\109.CorrelationSets
    Krishna

  • Query regarding file content conversion using file adapter

    Hi All
    I have a question regarding file content conversion in file adapter.
    I have a file coming in the following format.
    AA,111,222,333
    BB,444,555,666
    CC,777,888,999
    My incoming message structure has a hierarchy. The CC record is a structure part of BB record. BB record is a structure part of AA record. It is like this:
    AA,111,222,333
    <<BB,444,555,666>>
    <<<<CC,777,888,999>>>>
    After file content conversion, in the resulted xml, i am getting a flat hierarchy instead of nested hierarchy.
    Is it possible to get a nested hierarchy as a result of file content conversion?
    Please let me know
    Thanks
    Chandra

    Hi Udo
    According to your suggestion, I am trying to use mapping.
    I am getting a flat file and i am reading it.
    This is my source structure:
    AA,11,22,33
    BB,44,55,66
    CC,77,88,99
    This is my required targer structure:
    AA,11,22,33
    <<BB,44,55,66>>
    <<<<CC,77,88,99>>>>
    To explain this, BB record can have multiple records of CC records.
    AA records can have multiple records of BB record.
    I am using removecontext node function.
    CC (Source)  (removecontext)-> CC (target structure)
    But here, when i rightclick on source CC field in the mapping editor, i cannot see any other context except root node. So, how can i proceed here??
    Many Thanks
    Chandra

  • File Adapter to read from remote file server query

    Hi all,
    I want a SOA 11g application to read files on remote server using File Adapter. Is it possible to configure the File Adapter to read from remote location instead of locally. Is it possible. Is yes where can I find the associated remote file configuration documentation.
    Thanks
    Edited by: user5108636 on 19/09/2010 19:49

    I also changed one more properties the FTP connection factory called serverType=win. I get bits and pieces in each document. Is there any working example to connect to an FTP server running on Windows using Ftp Adapter. Still not working.
    These are the error logs related to it. Please suggest
    ####<Oct 12, 2010 1:17:22 PM EST> <Info> <Common> <server_name> <WLS_SOA> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <46e7c258a0e5cad6:-145e5cdb:12b99475c2b:-7ffd-0000000000046afa> <1286849842995> <BEA-000628> <Created "1" resources for pool "eis/Ftp/FtpAdapter", out of which "0" are available and "1" are unavailable.>\
    [2010-10-12T12:56:07.142+11:00] [WLS_SOA] [NOTIFICATION] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@170e13a9] [userId: weblogic] [ecid: 0000IiTsVSi9xWD_n91FiZ1CfLfc00006s,1:24709] [APP: soa-infra] [dcid: 46e7c258a0e5cad6:f9faea1:12b852b7f0f:-8000-00000000000005ed] FTP Adapter FetchAvlFiles Recovery still not possible after 1500 attempts due to javax.resource.spi.IllegalStateException: [Connector:199176]Unable to execute allocateConnection(...) on ConnectionManager. A stale Connection Factory or Connection Handle may be used. The connection pool associated with it has already been destroyed. Try to re-lookup Connection Factory eis/Ftp/FtpAdapter from JNDI and get a new Connection Handle.
    Thanks
    Edited by: user5108636 on 11/10/2010 19:05
    Edited by: user5108636 on 11/10/2010 19:22

  • File adapter become second step in the ccBPM (filename base on the input)

    Hi XI Expert,
    Could you help to advise me, what i should o with this scenario :
    i have ccBPM scenario :
    1. monitoring database table (using JDBC adapter), query filepath information and update
        status accordingly after process.
    2. read xml file (name and path base on the first step).
    my problem is how to pass filepath and filename to file adapter, becase as i know file adapter (sender) only
    can monitoring fix directory and file (patter).
    Thank you
    Fernand

    Hi,
    It would be better if you elaborate your scenario.
    Just check out the steps to create and display the file :
    1 Create Material MM01 1 Create PR ME51N
    2 Change Material MM02 2 Change PR ME52N
    3 Display Material MM03 3 Display PR ME53N
    4 List Extendable Materials MM50 4 Release individual PR ME54N
    5 Stock Overview MMBE 5 Release Collective PR ME55
    6 Flag for Deletion MM06 6 Create RFQ ME41
    7 Enter storage locations MMSC 7 Change RFQ ME42
    8 Create vendor (centrally) XK01 8 Display RFQ ME43
    9 Change vendor (centrally) XK02 9 Print RFQ ME9A
    10 Display vendor (centrally) XK03 10 Maintain Quotations ME47
    11 Vendor Changes (Centrally) XK04 11 Comparitive statement ME49
    12 Block Vendor (Centrally) XK05 12 Create contract ME31K
    13 Mark vendor for deletion (centrally) XK06 13 Change Contract ME32K
    14 Excise Master Maintenance J1ID 14 Display Contract ME33K
    15 Create Purchasing Info Record ME11 15 Release Contract ME35K
    16 Change Purchasing Info Record ME12 16 Print Contract ME9K
    17 Display Purchasing Info Record ME13 17 Create PO ME21N
    18 Changes to Purchasing Info Record ME14 18 Change PO ME22N
    19 Flag for Deletion ME15 19 Display PO ME23N
    20 Info Records Per Vendor MW1L 20 Release Individual PO ME29N
    21 Info Records per Material ME1M 21 Release collective PO ME28
    22 Create/ Change Service Master AC03 22 Print PO ME9F
    23 Display Service Master AC04 23 Goods Receipt/Change /Display MIGO
    24 List Display: Service Master AC06 24 Print of Material Document MB90
    25 Invoice Verification MIRO
    26 Park Invoice MIR7
    27 Display Invoice MIR4
    28 Cancel Invoice MR8M
    29 Release Blocked invoice MRBR
    30 Display of Invoice documents MIR5
    Test Description: Procurement of Non-Stock Items Test Description: Procurement of Imported Gas in Bonded Warehouse
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create PR with account assignment category ME51N 1 Create contract ME31K
    2 Change PR ME52N 2 Change Contract ME32K
    3 Display PR ME53N 3 Display Contract ME33K
    4 Release individual PR ME54N 4 Release Contract ME35K
    5 Release Collective PR ME55 5 Print Contract ME9K
    6 Create RFQ ME41 6 Create PO (do not select GR based IV) ME21N
    7 Change RFQ ME42 7 Change PO ME22N
    8 Display RFQ ME43 8 Display PO ME23N
    9 Print RFQ ME9A 9 Release Individual PO ME29N
    10 Maintain Quotations ME47 10 Release collective PO ME28
    11 Comparitive statement ME49 11 Print PO ME9F
    12 Create PO with account assignment category (A for asset and K for cost center) and enter G/L a/c ME21N 12 Invoice verification (for customs duty, warfage , CVD) MIRO
    13 Change PO ME22N 13 GR bonded MIGO
    14 Display PO ME23N 14 Transfer the material Plant storage to unbonded MIGO/MB1B
    15 Release Individual PO ME29N 15 Capture excise invoice J1IG
    16 Release collective PO ME28 16 Print of Material Document MB90
    17 Print PO ME9F 17 Invoice Verification MIRO
    18 Goods Receipt/Change /Display MIGO 18 Park Invoice MIR7
    19 Print of Material Document MB90 19 Display Invoice MIR4
    20 Invoice Verification MIRO 20 Cancel Invoice MR8M
    21 Park Invoice MIR7 21 Release Blocked invoice MRBR
    22 Display Invoice MIR4 22 Display of Invoice documents MIR5
    23 Cancel Invoice MR8M
    24 Release Blocked invoice MRBR
    25 Display of Invoice documents MIR5
    Test Description: Procurement of Imported Gas in Non-Bonded Warehouse Test Description: Procurement of Gas (Domestic) in Manufacturing Location
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create contract ME31K 1 Create Contract ME31K
    2 Change Contract ME32K 2 Change Contract ME32K
    3 Display Contract ME33K 3 Display Contract ME33K
    4 Release Contract ME35K 4 Release Contract ME35K
    5 Print Contract ME9K 5 Print Contract ME9K
    6 Create PO (do not select GR based IV) ME21N 6 Create PO ME21N
    7 Change PO ME22N 7 Change PO ME22N
    8 Display PO ME23N 8 Display PO ME23N
    9 Release Individual PO ME29N 9 Release individual PO ME29N
    10 Release collective PO ME28 10 Release collective PO ME28
    11 Print PO ME9F 11 Print PO ME9F
    12 Invoice verification (for customs duty, warfage , CVD) MIRO 12 Create Inbound delivery VL31N
    13 GR plant stocks MIGO 13 Change Inbound delivery VL32N
    14 Capture excise invoice J1IG 14 Display Inbound delivery VL33N
    15 Print of Material Document MB90 15 Create Shipment(Transport Planning) VT01N
    16 Invoice Verification MIRO 16 Change Shipment VT02N
    17 Park Invoice MIR7 17 Display Shipment VT03N
    18 Display Invoice MIR4 18 Create Shipment costs VI01
    19 Cancel Invoice MR8M 19 Change Shipment costs VI02
    20 Release Blocked invoice MRBR 20 Display Shipment costs VI03
    21 Display of Invoice documents MIR5 21 Goods Receipts MIGO
    22 Capture and Post Excise MIGO / J1IEX
    23 GR for free goods receipt MIGO
    24 Post Excise for free goods MIGO / J1IEX
    25 Print of Material Document MB90
    26 Invoice Verification MIRO
    27 Park Invoice MIR7
    28 Display Invoice MIR4
    29 Cancel Invoice MR8M
    30 Release Blocked invoice MRBR
    31 Display of Invoice documents MIR5
    Test Description: Procurement of Gas (Domestic) in Trading Location Test Description: High Sea Sales
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create Contract ME31K 1 Create Contract ME31K
    2 Change Contract ME32K 2 Change Contract ME32K
    3 Display Contract ME33K 3 Display Contract ME33K
    4 Release Contract ME35K 4 Release Contract ME35K
    5 Print Contract ME9K 5 Print Contract ME9K
    6 Create PO ME21N 6 Receipt of Order from Customer Manual Process
    7 Change PO ME22N 7 Create sales order SD process
    8 Display PO ME23N 8 Automatic PR Automatic
    9 Release individual PO ME29N 9 Display PR ME53N
    10 Release collective PO ME28 10 Create PO ME21N
    11 Print PO ME9F 11 Change PO ME22N
    12 Create Inbound delivery VL31N 12 Display PO ME23N
    13 Change Inbound delivery VL32N 13 Release individual PO ME29N
    14 Display Inbound delivery VL33N 14 Release collective PO ME28
    15 Create Shipment(Transport Planning) VT01N 15 Print PO ME9F
    16 Change Shipment VT02N 16 Goods Receipt/Change /Display MIGO
    17 Display Shipment VT03N 17 Print of Material Document MB90
    18 Create Shipment costs VI01 18 Invoice Verification MIRO
    19 Change Shipment costs VI02 19 Park Invoice MIR7
    20 Display Shipment costs VI03 20 Display Invoice MIR4
    21 Goods Receipts MIGO 21 Cancel Invoice MR8M
    22 Capture and Post Excise J1IG 22 Release Blocked invoice MRBR
    23 GR for free goods receipt MIGO 23 Display of Invoice documents MIR5
    24 Post Excise for free goods J1IG
    25 Print of Material Document MB90
    26 Invoice Verification MIRO
    27 Park Invoice MIR7
    28 Display Invoice MIR4
    29 Cancel Invoice MR8M
    30 Release Blocked invoice MRBR
    31 Display of Invoice documents MIR5
    Test Description: Procurement Scenario in Haldia / Aegis Test Description: Procurement of Services
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create Contract ME31K 1 Create PR( with Item category D) ME51N
    2 Change Contract ME32K 2 Create PR ME51N
    3 Display Contract ME33K 3 Change PR ME52N
    4 Release Contract ME35K 4 Display PR ME53N
    5 Print Contract ME9K 5 Release individual PR ME54N
    6 Create PO ME21N 6 Release Collective PR ME55
    7 Change PO ME22N 7 Create RFQ ME41
    8 Display PO ME23N 8 Change RFQ ME42
    9 Release individual PO ME29N 9 Display RFQ ME43
    10 Release collective PO ME28 10 Print RFQ ME9A
    11 Print PO ME9F 11 Maintain Quotations ME47
    12 Receipt of Order from Customer 12 Comparitive statement ME49
    13 Goods Receipt/Change /Display MIGO 13 Create contract ME31K
    14 Print of Material Document MB90 14 Change Contract ME32K
    15 Invoice Verification MIRO 15 Display Contract ME33K
    16 Park Invoice MIR7 16 Release Contract ME35K
    17 Display Invoice MIR4 17 Print Contract ME9K
    18 Cancel Invoice MR8M 18 Create service PO ME21N
    19 Release Blocked invoice MRBR 19 Change PO ME22N
    20 Display of Invoice documents MIR5 20 Display PO ME23N
    21 Release service PO ME29N
    22 Release collective PO ME28
    23 Print PO ME9F
    24 Service Entry/ Acceptance ML81N
    25 Invoice Verification MIRO
    26 Park Invoice MIR7
    27 Display Invoice MIR4
    28 Cancel Invoice MR8M
    29 Release Blocked invoice MRBR
    30 Display of Invoice documents MIR5
    Test Description: Procurement of Assets via Internal Order Test Description: Painting / Rework of Cylinders
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create Capital Investment order KO01 1 PO Creation (Item Category L, Account Assignment K) ME21N
    2 Create an AUC for the Internal Order KO02 2 Change PO ME22N
    3 Release the Internal order KO02 3 Display PO ME23N
    4 Create a Purchase order with account assignment 'F' and asssinging the suitable order number ME21N 4 Release service PO ME29N
    5 Post Goods Receipt with reference to PO MIGO 5 Release collective PO ME28
    6 Post Invoice Verification MIRO 6 Print PO ME9F
    7 Do an initial settlement of internal order to AUC (automatic). Need not maintain settlement rule in the order for AUC KO88 7 Material transfer to vendor MB1B
    8 Create an asset against which the order needs to be finally settled (Full settlement) AS01 8 Receive the material from vendor MIGO
    9 Settlement rule need to be maintained in the order for asset number for full settlement KO02 9 Logistics Invoice Verification MIRO
    10 Do a final(Full) settlement of the internal order to asset. 'Select the option full settlement' KO88 10 Park Invoice MIR7
    11 Check the posted entries for the asset AS03 11 Display Invoice MIR4
    12 Cancel Invoice MR8M
    13 Release Blocked invoice MRBR
    14 Display of Invoice documents MIR5
    Test Description: Posting of Gas Gain / Loss at the end of the Month Test Description: Physical Inventory
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create Physical Inventory Document and Post MI10 1 Create Physical inventory document MI01
    2 Update Excise Records J1IG / J1I5 2 Change Physical Inventory Document MI02
    3 Display Physical Inventory Document MI03
    4 Enter Inventory count MI04
    5 Recount MI11
    6 Post difference count MI07
    7 Count/ difference MI08
    Test Description: Filling of Cylinders 8 Update Excise Records J1IG / J1I5
    No. Business Process Steps Transaction Code
    1 Run the Filling Transaction ZFILL
    2 Check for the Material Document MB03
    Test Description: Day End Excise Transactions
    No. Business Process Steps Transaction Code
    1 Update of Registers RG1 and RG23 (Part 1) J1I5
    2 Escise Register Extraction J2I5
    3 Print Excise Registers J2I6
    4 Download Register Data J1IR
    Test Description: STO Process Manufacturing to Trading Test Description: STO Process Trading to Trading
    No. Business Process Steps Transaction Code No. Business Process Steps Transaction Code
    1 Create PO ME21N 1 Create PO ME21N
    2 Change PO ME22N 2 Change PO ME22N
    3 Display PO ME23N 3 Display PO ME23N
    4 Print PO ME9F 4 Print PO ME9F
    5 Create Outbound delivery VL10B 5 Create Outbound delivery VL10B
    6 Change Outbound delivery VL02N 6 Change Outbound delivery VL02N
    7 Display Outbound delivery VL03N 7 Display Outbound delivery VL03N
    8 Print of Material Document MB90 8 Print of Material Document MB90
    9 Create Excise Invoice J1IS 9 Create Excise Invoice J1IJ
    10 Goods Receipts MIGO 10 Goods Receipts MIGO
    11 Capture and Post Excise J1IG 11 Capture and Post Excise J1IG
    12 GR for free goods receipt MIGO 12 GR for free goods receipt MIGO
    13 Post Excise for free goods J1IG 13 Post Excise for free goods J1IG
    14 Print of Material Document MB90 14 Print of Material Document MB90
    Test Description: STO Process Trading to Manufacturing
    No. Business Process Steps Transaction Code
    1 Create PO ME21N
    2 Change PO ME22N
    3 Display PO ME23N
    4 Print PO ME9F
    5 Create Outbound delivery VL10B
    6 Change Outbound delivery VL02N
    7 Display Outbound delivery VL03N
    8 Print of Material Document MB90
    9 Create Excise Invoice J1IJ
    10 Goods Receipts MIGO
    11 Capture and Post Excise J1IG
    12 GR for free goods receipt MIGO
    13 Post Excise for free goods J1IG
    14 Print of Material Document MB90
    Sr.no Transaction Menu Path
    1 Create PR for Materials
    (ME51) Log&#61664;MM&#61664;Purchasing&#61664;Requisition&#61664;create&#61664;Ent
    er appropriate document type,item category(blank for materials),appropriate A/C ***.Cat,Del date,plant,pur grp,mat grp and ‘Req tracking no’ and ‘Requisitioner’(not mandatory)&#61664;press enter&#61664;Enter MESC no. of the material or Description in short text/long text,Qty,unit&#61664;press enter&#61664;Enter estimated unit price&#61664;press enter&#61664;Enter G/L A/C and Cost centre or ‘ORDER’depending upon A/c ***. Category&#61664;press enter&#61664;Save. Note the PR no.
    2 Create PR for Services (ME51) Log&#61664;MM&#61664;Purchasing&#61664;Requisition&#61664;create&#61664;Enter appropriate document type,item category’D’, appropriate A/C ***.Cat,Del date,plant,pur grp,mat grp and ‘Req tracking no’ and ‘Requisitioner’(not mandatory)&#61664;press enter&#61664; ‘Do you want to create outline?’&#61664;No&#61664;Enter job heading in Short text,service no or service descriptionin item 10,20,- - - - ,Qty,unit,estimated price&#61664;click on ‘Outline’&#61664;Enter G/L A/C noand Cost centre or ORDER’depending upon A/c ***. Category&#61664;Click on job heading&#61664;click on ‘new sub group’&#61664;Create new subgroups such as ‘Scope of work’, ‘Special conditions, etc&#61664;Save. Note the PR no.
    3 Check Release Strategy for PR (ME54) Log&#61664;MM&#61664;Purchasing&#61664;Requisition&#61664;display&#61664;Enter PR no.&#61664;Press Enter&#61664; Select the line item and click on the Release Strategy (Green) icon&#61664;Note the release strategy.
    4 Create Service RFQ
    (ME41) Log&#61664;MM&#61664;Purchasing&#61664;RFQ/Quotation&#61664;RFQ&#61664;Create&#61664;Enter Quot. Deadline,pur org,pur grp,plant, &#61664;Click on ‘Ref to Preq’,Enter PR no&#61664;.press enter&#61664;Select services &#61664;Click on ‘Copy+Dtails’ &#61664;Click on Vendor adress&#61664;Select Vendor&#61664;Press Enter&#61664;Check vendor details&#61664;Save&#61664;Note collective RFQ no.&#61664;Press Enter&#61664;Note the individual vendor RFQ no.&#61664;Select second vendor and follow the same procedure for as many no of vendors as deesired.
    If Quotations are to be compared with the BPCL estimate, then create RFQ for ‘BPCL Estimate’as a vendor (vendor no.300648)
    5 Printing of RFQ’s(ME9A) Log&#61664;MM&#61664;Purchasing&#61664;RFQ/Quotation&#61664;RFQ&#61664;Messages&#61664;print/transmit&#61664;Enter individual vendor’s RFQ no&#61664;Execute&#61664;tick in the check box&#61664;click on output
    6 Reprinting of RFQ Log&#61664;MM&#61664;Purchasing&#61664;RFQ/Quotation&#61664;RFQ&#61664;change&#61664;Enter RFQ no.&#61664;enter&#61664;click on Header&#61664;Messages&#61664;Delete the message ‘NEU’ and create new message by writing ‘NEU’&#61664;press enter&#61664;Save&#61664;enter printer name&#61664;tick on print immediately & release after output&#61664;Enter.
    7 Maintain RFQ
    (ME47) Log&#61664;MM&#61664;Purchasing&#61664;RFQ/Quotation&#61664;Quotation&#61664;Maintain&#61664;Enter each party’s Individual RFQ no.&#61664;Enter&#61664;select the item and click on ‘services’&#61664; Enetr the tax code&#61664; Enter quotations of each party against each line item and save&#61664;Enter jurisdiction code. .
    8
    Quotation comparison
    (ME49)
    Log&#61664;MM&#61664;Purchasing&#61664;RFQ/Quotation&#61664;Quotation&#61664;Price Comparison&#61664;Enter collective RFQ no.&#61664;Execute
    9 Create PO wrt RFQ(ME21) Log&#61664;MM&#61664;Purchasing&#61664;Pur. Ord&#61664;create&#61664;vendor known&#61664;Ref to RFQ&#61664;Enter Vendor’s RFQ no&#61664;Enter&#61664;Select the items&#61664; ‘Copy+ Details’&#61664;press enter&#61664;Enter jurisdiction code&#61664;Save. Note the PO no.
    10 Create Service PO
    Vendor known
    (ME21) Log&#61664;MM&#61664;Purchasing&#61664;Pur. Ord&#61664;create-vendor known&#61664;Enter vendor no, Pur org’1000’, Pur Grp, Item Cat.’D’, A/C ***.cat.’K’, Delivery Date, Plant, Material group (alpha numeric for services), Req tracking no. (Optional)&#61664;Press enter&#61664;Acknowledge the warning&#61664;Do you want to create Outline? Press “NO”&#61664;Enter the short text of the services in the header&#61664;Enter service no. or the short text of the services with quantity,Unit and Price.To write more details about services,select the line item & click on “Long text for line”(Paper and pencil symbol) OR double click on the service line item &#61664;click on long text symbol against line item short text&#61664;Enter ‘G/L A/C’ and ‘Cost Centre’&#61664;Save&#61664;enter Tax code ‘00’&#61664;press enter&#61664;Enter jurisdiction code ‘IN 00’&#61664;Note the PO number.
    11 Check Release Strategy for PO(ME23) Log&#61664;MM&#61664;Purchasing&#61664;PO&#61664;display&#61664;Enter PO no.&#61664;Press Enter&#61664;Go back&#61664;Select the line item and click on the Release Strategy (Green) icon&#61664;Note the release strategy.
    12 Release PO(ME28) Log&#61664;MM&#61664;Purchasing&#61664;PO&#61664;Release&#61664;Enter PO no in document no. and Release code &#61664;Execute&#61664;select the PO&#61664;Click on ‘Release + Save’.
    13 To paste a file in any long text Create a word document and save the same as RTF file.
    To upload this file in the long text, click on Text&#61664;Upload&#61664;select radio button on RTF&#61664;Click on ‘Transfer’&#61664;Give menu path for the saved RTF file&#61664;Click on Transfer&#61664;Go back&#61664;Save.
    14 Create SES(ML81) Logistics&#61664; Materials Management &#61664; Purchasing &#61664; Purchase order Display&#61664;Purchase Order Select Purchase Order &#61664;Follow on Functions &#61664; Service Entry Sheet &#61664; Maintain &#61664; Press Enter &#61664; Select the item &#61664;Click on Create Entry sheet icon &#61664; Click Service sel icon &#61664; Press enter &#61664; Select items &#61664; Click on Adopt services icon &#61664; Enter the actual quantities &#61664; Save.
    15 Release SES(ML81) Logistics &#61664; Materials Management &#61664; Purchasing &#61664; Purchase Order &#61664; Follow On Functions &#61664; Service Entry Sheet&#61664; Maintain &#61664; Select the Purchase order No. &#61664; Press Enter &#61664; Double Click on Service Entry Sheet No. &#61664; Go Back &#61664; Click on Accept icon (green colour) &#61664; Enter appropriate release code as per authority &#61664; Save.
    16 Logistic Invoice verification
    (MR1M) Logistics &#61664; Materials Management &#61664; Purchasing&#61664; Purchase Order &#61664; Display &#61664; Purchase Order&#61664; Follow On Functions &#61664;Log .Inv Ver.&#61664;Enter Doc date, Gross inv amount,Press enetr . Check the tax code for TDS/WCT W.tax base (if applicable.If w.tax base amount is not mentioned the system will take Gross inv amount by default for calculating works contract tax) ),terms of payment & W tax code will get defaulted from vendor master, &#61664;Click on header &#61664; Enter PO number in Allocation ,House bank and Payment method as C ( Cheque) &#61664;Go Back &#61664;Click on item list &#61664;Check the green signal and then save.
    17 Goods Issue(MB1A) Logistics &#61664; Materials Management &#61664;Inventory management&#61664;Goods movement &#61664;Goods Issue&#61664;Click on ‘To Reservation’ and enter Resservation no,if GI to be done wrt to reservation.Otherwise enter movement type,plant,sloc&#61664;press enter&#61664;Enter MESC no,Qty,Cost centre or ORDER as the case may be and SAVE.
    L8 Goods Receipt
    (MB01) Logistics &#61664; Materials Management &#61664; Purchasing&#61664; Purchase Order &#61664;Display&#61664;Purchase Order &#61664; Follow On Functions &#61664;Goods receipt&#61664;Bill of lading or delivery challan no&#61664;click on ‘copy+details’,Enter quantity to be received&#61664;Save.
    19 Electricity and other Statutory payments
    (ME21) Create PO with Vendor known, order type FO, Item Category ‘B’ and A/C ***.Cat ‘K’.&#61664;Press enter&#61664;Enter validity start and end date&#61664;Enter&#61664;Enter short text, overall limit & expected value&#61664;Enter&#61664;Enter G/L A/C, Cost Centre&#61664;Enter&#61664;Save&#61664;Enter tax code&#61664;Enter&#61664;Note the FO order no.
    For this order neither Service Entry nor Goods receipt is required. An Invoice can be directly processed in the system for making payment.
    Carryout Logistics Invoice verification in reference to the purchase order. Though the cost center defaults from the purchase order, the same can be changed during the invoice verification.
    20 LIV for FO order
    (MR1M) Logistics &#61664; Materials Management &#61664; Purchasing&#61664; Purchase Order &#61664; Display &#61664;Purchase Order&#61664; Follow On Functions &#61664;Log .Inv Ver.&#61664;
    Enter Document Date, Reference, & Amount to
    be paid. Press enter .Check the tax code for TDS/WCT.Click on header . Enter the PO number in Allocation/House bank and payment method. Go back.
    Click on Item list &#61664; Select the invoice item by ticking in the check
    box on the left &#61664; Click on Account Assignment &#61664; In the account assignment page &#61664; enter the amount you have entered earlier in the amount field (The amount can be distributed amongst various cost centres) &#61664; Go back &#61664; Indicator turns green &#61664; Save
    21 Travel & Ticketting Create standard PO type NB with item category ‘D’ and A/C ***. Cat ‘K’.Enter each bill as line item.While entering the G/L A/C and Cost centre , enter ‘INDAIRLINES’ or ‘JETAIRWAYS’ in the ‘ORDER’ so that corporation can avail of bulk discount.
    22 Outline Agreement Creation w.r.t. RFQ
    (ME31K) Logistics &#61664;Materials Management &#61664;Purchasing&#61664;Outline Agreement&#61664;Contract&#61664;Create
    Click on Reference to RFQ &#61664;Give the individual RFQ number against which the contract is to be created &#61664;Press enter &#61664;Give the validity start ,end dates and the target value of the contract. Press Enter&#61664;Select the material line item and click on ‘ Copy +Details’ .In case the account assignment is not given befor give the relevant account assingnment category K/F/P and then click on ‘Copy Details’ &#61664;Press Enter &#61664;If the ssignment is not given give the required account assignment now . If it is to be maintained same for all the services click on Auto repeat AA&#61664;Give the Jurisdiction code as IN00 . Check whether all the services have been copied from the RFQ along with the rates by selecting the material line item and then going to services screen (HammerSpanner) &#61664;Save the contract . note the number
    23 Create PO w.r.t. Contract
    (ME21) Logistics &#61664; Materials Management &#61664; Purchasing&#61664; Purchase Order Create &#61664; Vendor known&#61664; Click on Reference to Contract &#61664; Give the Contract number in Outline agreentment field &#61664;Press Enter &#61664;Select The material line item and click on Copy +Details &#61664;Press enter &#61664;Say No when asked “Do you want to create an outline”&#61664;Change the short text as per the requirement and then click on Service Sel icon &#61664;Press enter to select the services from the contract .Select the required services and then click on Services(Adopt Services icon). The quantities of the various line item are defaulted as 1 . Change the quantities as per the requirement. Press enter . Save the PO and note the number .
    24 PO for one time vendor Create standard PO with vendor code ‘900000’. Give correct vendor details. Save and release the PO. For one time vendor IV to be done and not LIV.
    25 IV for one time vendor Logistics&#61664; Materials Management &#61664; Purchasing &#61664; Purchase order Display&#61664;Purchase Order Select Purchase Order &#61664;Follow on Functions &#61664;Invoice verification&#61664;Enter all details of bills&#61664;Enter &#61664;Cancel&#61664;Enter Amount ,Payment method,Payment method supplement&#61664;Enter&#61664;Simulate &#61664;Save.
    26 Cancel PO(ME22) Log&#61664;MM&#61664;Purchasing&#61664;Purchase order&#61664;change&#61664;Enter PO no.&#61664;enter&#61664;Select the items to be cancelled&#61664;Click on delete.
    27 Close PO
    (ME22) Log&#61664;MM&#61664;Purchasing&#61664;Purchase order&#61664;change&#61664;Enter PO no.&#61664;enter&#61664;click on Header&#61664;Details&#61664;Tick on complete Delivery&#61664;Save
    28 Print PO
    (ME9F) Logistics &#61664; Materials management &#61664; Purchasing &#61664; Purchase Order &#61664;Messages&#61664;print/transmit&#61664;Enter PO no.&#61664;Execute&#61664;Tick in the check box&#61664;Click on output&#61664;Output device ‘LOCL’&#61664;tick on print immediately
    29 Reprinting of PO Log&#61664;MM&#61664;Purchasing&#61664;Purchase order&#61664;change&#61664;Enter PO no.&#61664;enter&#61664;click on Header&#61664;Messages&#61664; create new message by writing ‘NEU’&#61664;press enter&#61664;Save&#61664;enter printer name&#61664;tick on print immediately & release after output&#61664;Enter.
    30 PO History
    (ME23) Log&#61664;MM&#61664;Purchasing&#61664;Purchase order&#61664;Display&#61664;Enter PO no.&#61664;Press Enter&#61664;(Incase of metrials select the material line item . For services Go back to material screen &#61664;Select line item & click on PO history(Graph symbol)
    31 LD Deductions Log&#61664;MM&#61664;Invoice verification&#61664; Invoice verification&#61664;Click on ‘Enter credit memo’&#61664;Enter document date,vendor code,company code 1000,currency&#61664;Click on ‘Memo’ icon&#61664;Enter reason for LD&#61664;Click on enter&#61664;Enter the amount,payment method supplement&#61664;press enter&#61664;Click on Edit&#61664;New item&#61664;G/L Account&#61664;Enter G/L A/C ‘480070’,click on ‘Credit Posting’&#61664;Press Enter&#61664;Fill in the same amount & Business area&#61664;Enter&#61664;Save.
    32 Release of Retention Money After the final Invoice verification, Find out all the Invoicing documents from the PO history.
    Log&#61664;MM&#61664;Purchasing&#61664;Purchase order&#61664;Display&#61664;Enter PO no.&#61664;Press Enter&#61664;(Incase of metrials select the material line item . For services Go back to material screen &#61664;Select line item & click on PO history(Graph symbol)
    Double click on the LIV documents&#61664;click on ‘Follow on Documents’&#61664;Double click on the retention money document&#61664;Document&#61664;Display->Change&#61664;Change the base line date (6 months from the final bill) and remove payment block ‘H’&#61664;Save.
    By this procedure the payment shall fall due 6 months after the final bill or on the ‘Base line date’
    33 Down payment Request Accounting&#61664;Financial Accounting&#61664;Accounts payable&#61664;Posting&#61664;Down payment&#61664;Request&#61664;Enter Document date, document type KA, company code 1000,posting date, currency. vendor code, Trg .SP G/L Ind. ‘A’ &#61664;Press Enter&#61664;Enter the amount of advance, Business area, Due on date, PO no against which the advance is being paid, item no 10 in the next field, Enter PO no preceded by ‘*’ in the allocation field, Enter relevant text in the text field, Enter the relevant W.tax code(from ‘D’ series)&#61664;Press Enter&#61664;Accept warning, if any&#61664;Click on more data from menu&#61664;Enter house bank &#61664;Save
    34 Check Vendor Line items for above Accounting&#61664; Financial Accounting&#61664;Accounts payable&#61664;Account&#61664;Display Line items&#61664;Enter Vendor code&#61664;Tick open items with special G/L indicators button, Go to selection criteria, Enter business area&#61664;Enter&#61664;Note the displayed Vendor line items for Down payment request in open items
    35 Clearing Down Payment Accounting&#61664;Financial Accounting&#61664;Accounts payable&#61664;Posting&#61664;Down payment&#61664;Clearing&#61664;Enter Document date, posting date, company code, currency, Vendor code, Relevant Invoice document no against which the document is to be recovered, fiscal year, Enter PO no preceded by * in the Allocation field, Enter relevant text in the text field&#61664;Enter&#61664;Message ‘Correct the line marked line items appears, Double click the line item, Enter the relevant text, payment method supplement&#61664;Save. For checking the Vendor line item for Down payment clearing, follow the same menu path as in Sr no. 31
    36 Enter Credit Memo Logistics&#61664;Material Mgmt &#61664;Invoice verification&#61664; Enter Credit memo&#61664;Fill in the details: Date - “ Today’s Date”, Document Type - “ KA”, Company code - “1000”, Currency - “ INR”, Vendor code - “fill in vendor code” Do not enter P.O No. Press Enter&#61664; Fill in the amount to be deducted with “ withholding Tax code” as “Z0”, Payment method as “C”, payment method supplement as applicable Invoice ref No “ Eight digit No as noted from invoice document” and Necessary text in “allocation”. Press Enter&#61664; In this screen, use path Edit&#61664; New item&#61664; GL Account(480070 for LD and 480000 for misc income), In the pop-up box press Radio button as “Credit posting” Fill in necessary GL Account as mentioned below Press enter &#61664; In this screen Give the same amount and fill in the “Business Area” where credit is to be given {In case of Credit, to be given for multiple business area/ GL account repeat} Press Enter&#61664;Click on simulate (check the entries are Proper i.e. diff is zero.) &#61664;Save&#61664; Note and record Credit document No
    You can revert back with a bit more elaboration of your scenario.
    Regards,
    Sushama

  • Email attachment name in sender mail adapter to the receiver file adapter

    HI ,
    Ths is regarding email to file scenario. I am trying to create file (in rceiver file adapter) with the same name as the email attachment that i read from mail sender adapter. I want ro use adapter module for this. I could find from blogs that there is module - GetAttachmentName - available that i can use for this in sender mail adapter.
    Can you please let me know what whetehr i neeed to mention any module key and parameters for this.
    I assume , i need to do following steps :Please confirm.
    1. i can use this module - after payload swap module and before standard mail adapter module in sender mail adapter
    2. select ASMA option in advanced tab in sender mail adapter
    3. In receiver file adapter select ASMA option in advanced tab in sender mail adapter
    4. Also select file name option in ASMA in sender mail adapter
    Thanks,
    Vamsi

    Hi Vamsi,
    your scenario is also described here: Re: sender mail adapter - attachment name
    If you use the Module getAttachmentName, which is described here,
    http://wiki.sdn.sap.com/wiki/display/XI/AdapterModulePI7.0GetAttachmentName
    your scenario should work as you described it.
    You just need to make sure that the Attachment Name that you read in the first place, is mapped to the Filename Attribute of the
    Fileadapter (http://sap.com/xi/XI/System/File/FileName).
    regards,
    Daniel

Maybe you are looking for

  • On screen keyboard doesn't record properly

    I've been using Soundtrack but decided I wanted to make my own music and not just use loops./ I bought the Apple Certified training book and am working through the lessons. I'm already all the way up to lesson 2 and things aren't working the way the

  • Badi ----FDM_COLL_SEND_ITEMS

    Hi friends, I have got this Badi for performing Implementation with the below requirement for one of my Object . Can any one tell me what needs to be done to get this functionality. You use this Business Add-In (BAdI) in the component SAP Collections

  • Images not showing up in Winhelp4 but do in Webhelp

    I have a problem where my images don't show up in Winhelp4 format but do show up correctly in webhelp format. I simply change the Primary Output in the project between the two formats and compile the help. From the same source one works (Webhelp) and

  • Forms 6i and Reports 10g

    Hello together, You can see at the subject that I want to combine Forms 6i and Reports 10g. Why? 6i does not support html interpretation and unicode. So what do you think about the kombination with old (Forms) 6i and new 10g (Reports)? How does the R

  • Customizing error message

    Hello. IMS 5.2 p2, Solaris 9. I have been reading http://docs.sun.com/source/816-6009-10/mta.htm and I changed the language for error messages, but is possible to change the subject and the error reason? An example: Subject: Delivery Notification: De