Requirement  for Idoc-- File

I am Doing Idoc----->File  mean R/3 -
> Legasy.(at Receiver side save File as idoc no)
I want save the file name    with number of Idoc(Receiver side).

Follow the steps that is for dynamic file name ... using udf  in message mapping in IR and adapter specific mesage attributes in ID
In the UDF,
1. for file name == tGIve the name of the IDOC
File propery--- Give the Source /IDOC field name which contains the IDOC number
when performing mapping map    Source field (Field that contains IDOC number)->UDF--> Target/File root node..

Similar Messages

  • Configurations required for IDOC to File

    Can any body suggest me the configuration required for integrating remote R/3 system with the XI Server.
    I want to know the following.
    1) How and where to configure R/3 with the XI server.
    2) What are the configurations required for Outbound and Inbound IDocs in R/3 and XI Servers.

    Hi Rajeshwar,
    take a look over here:
    https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/weblogs/topic/16
    you'll find at least 5 weblogs that show the idoc configuration
    Regards,
    michal
    XI FAQ - http://www.bcc.com.pl/netweaver/sapxifaq

  • Why is a sender communication channel not required for IDOC and PROXY ?

    Hello,
    In case of IDOCs, metadata will be available in PI for the IDOCs used both at inbound and outbound.
    Why is a sender communication channel is not required in case of IDOC and PROXY outbound scenarios (i.e. IDOC to File or PROXY to file ..)  when a receiver channel is required for scenarios like file to IDOC or file to PROXY.
    Though this might be a regular question, I am not able to find a proper reason.
    Please let me know the reason for the above request.
    Thanks & Regards.

    You will create RFC destination in ECC , it will have details about PI system details, when ever you send IDoc, ECC will use Port and RFC destination to connect PI Integratiion engine to deliver data to PI.
    But when receiver side you will create RFC destination in PI with ECC details, but to call RFC destination and Port we need medium that was the reason we create IDoc communication channel.
    Even the same case for Proxy also, but HTTP deastination establish the conection between ECC and PI, but receiver side you have to create XI channel with PI integratioin engine adress to post data.
    Regards,
    Raj

  • Requirements for IDOC

    Hi friends,
                    Could you please tell me the details required for doign a IDOC scenario.
                     I want the details seperately when IDOC is a sender and also when IDOC is a receiver.
    Note: High reward points for the reply

    HI
    IDoc (for intermediate document) is a standard data structure for electronic data interchange (EDI) between application programs written for the popular SAP business system or between an SAP application and an external program. IDocs serve as the vehicle for data transfer in SAP's Application Link Enabling (ALE) system. IDocs are used for asynchronous transactions: each IDoc generated exists as a self-contained text file that can then be transmitted to the requesting workstation without connecting to the central database. Another SAP mechanism, the Business Application Programming Interface (BAPI) is used for synchronous transactions.
    A large enterprise's networked computing environment is likely to connect many geographically distributed computers to the main database. These computers are likely to use different hardware and/or operating system platforms. An IDoc encapsulates data so that it can be exchanged between different systems without conversion from one format to another.
    IDoc types define different categories of data, such as purchase orders or invoices, which may then be broken down into more specific categories called message types. Greater specificity means that an IDoc type is capable of storing only the data required for a particular transaction, which increases efficiency and decreases resource demands.
    An IDoc can be generated at any point in a transaction process. For example, during a shipping transaction process, an IDoc may be generated that includes the data fields required to print a shipping manifest. After a user performs an SAP transaction, one or more IDocs are generated in the sending database and passed to the ALE communication layer. The communication layer performs a Remote Function Call (RFC), using the port definition and RFC destination specified by the customer model. The IDoc is transmitted to the receiver, which may be an R/3, R/2, or some external system.
    Idoc creation
    IDOC Programming
    There are two processes in IDOC processing one is INBOUND PROCESS( IDOC coming to the system and its handling at various stages) and the other is OUTBOUND PROCESS( IDOC is send to other system . Separate ABAP programs are written for these 2 processes and different configuration settings are required for each one .Depending upon the trigeering mechanism different programming approaches are used.OUTBOUND PROGRAMS handle the IDOC creation and INBOUND PROGRAMS handle the inbound IDOC and the data trasfer from the IDOC to the database tables.
    The basic structure of all outbound programs is same. The CONTROL
    record which is of TYPE EDIDC has to be filled. It contains important fields like
    IDOCTP IDOC type
    MESTYP Message Type
    RCVPRN Recieving Partner (Destination)
    RCVPRT Partner Type (it is LS i.e Logical System)
    The DATA RECORD internal table which is of TYPE EDIDD has to be filled
    in the same order as there are segments in the IDOC definition.
    It has 2 important fields which are to be filled ,these are
    SEGNAM Name of the segment
    SEGDATA Data in the segment and can be upto 1000 bytes.This field
    is corresponds to each data segment in the IDOC.
    e.g.
    DATA INT_EDIDD LIKE EDIDD OCCURS 0 WITH HEADER LINE.
    DATA W_SEGDATA LIKE zsegment "custom segment zsegment
    INT_EDIDD-SEGNAM = 'ZSEGMENT'
    W_SEGDATA-field1 = value "taken from some table
    W_SEGDATA-field2 = value "taken from some table
    INT_EDIDD-SEGDATA = W_SEGDATA
    APPEND INT_EDIDD
    This will fill the data record corresponding to the segment ZSEGMENT . For all
    segments the sam steps will be repeated until all the data corresponding to all the
    segments in the idoc is filled in the internal table of type EDIDD.
    There is only one control record and can be multile data records in the idoc
    structure.
    Which data is to be extracted from the tables to be filled in EDIDD type internal table is determined in standalone programs from the objects which are specified in the selection screen and from the object key passed to the function module in case of message control and is taken from BDCP table in case of change pointers using function modules "CHANGE_POINTERS_READ"
    In case of stand alone programs and function modules based on change pointers method the function module "MASTER_IDOC_DISTRIBUTE" is used to send the IDOC to ALE layer for distribution ,in case of message control it is handled automatically by the RSNASTED program invoked by the message control.
    You can get the all description from below tcodes
    WE60-> Documentation for IDoc types
    WE09-> Search for IDocs by Content
    BD87-> Status Monitor for ALE Messages
    WE63 -- information about Standard IDOC in R/3
    WE64 - Details about process codes
    WE82, WE30, WE31 -- IDOC Types.
    SAP R/3
    R/3 to XI
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (We21)
    a) First Select Transactional RFC and then click create button
    b) Enter the destination port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Create Partner Profile (WE20)
    a) Create New
    b) Create the Partner no. name as same the logical system name of the destination system.
    c) Select Partner type LS
    d) Enter details for Type: US/USER, Agent, and Lang.
    e) Click on the + button to select the message type.
    f) Select Partner no. and LS which ever create above.
    g) Select Message type
    h) Select Process code related to the Message type.
    I) save.
    XI to R/3
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (IDX1) ( Create port to get IDOC Meta data from sender system)
    a) Select create new button
    b) Enter the port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Load Meta Data for IDOC (IDX2) (To maintain IDOC Metadata, it is needed by XI because XI needs to construct IDOC-XML from IDOC. It is not needed by any sap system).
    a) Create new
    b) IDOC Message Type
    c) Enter port created in IDX1.
    Details ABT IDOC??????
    1)Use WE60 transaction.
    2)you need list of basic type idocs then use t.code WE60.
    To display IDOC list in particular time intervel use we02 or we05.
    where u can find the outbound and inbound processing idoc's.
    use t.code 'wedi' to get more information on idoc's.
    3)You can use the WE60 for Idoc Documentation
    & we can use WE30 for Idocs list
    Refer the below links for furtehr assistance
    ALE/ IDOC
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.allsaplinks.com/idoc_sample.html
    cheers

  • How to make a category required for all files created within a folder

    I've defined a category. It has attributes which have been flagged as required.
    When I view the properies of a particular workspace (library), the category is shown as available to the workspace. However, the category is not shown as required. And the "required" checkbox is not clickable.
    So .. how, from the OCS DHTML applet, do I make a particular category a required category for all files in a folder?

    Perhaps the Category Attribute is not marked as "configurable" when it was created. You can check this by "switching into Admin Mode" and drilling down the Categories using "Manage Categories" link. Check if the category attribute is marked as configurable or not.
    Ravikiran

  • Pass word required for public files?

    I just published a link to acrobat.com so that anyone in the
    public could view the file. When it opened it required a password
    and user name. I thought the idea of anyone being able to view
    which I have selected would be so that it would open directly.
    Thank you.

    What type of file is it and what permissions did you set on
    the file? There shouldn't be a password required to view files like
    PDFs, but you may be required to login for some files that cannot
    be viewed and only downloaded (ZIP files for instance).

  • Allowed naming convention on SAP Server for IDoc files???

    Hello everybody,
    When I send any outbound IDoc, it saves a copy of that IDoc on the server in text format. I want to know what are the different file name conventions I can use? Can the file be automatically named with the information below?
    Date + Time + Purchase Order # + EDI Transaction Code + .txt ? Where do you program/configure for  the names of the IDoc files used in IDoc communication?
    Please refer me to some documentation or other files/threads if needed..
    Thanks,
    Charles.

    Check with below links :
    ftp://ftp.software.ibm.com/software/ts/cw/adapters/WSAdapterForSAP/Guides/sap6021.pdf
    http://www.erpgenie.com/sapgenie/docs/advanced_guide_to_edi_configuration.doc
    http://www.erpgenie.com/sapedi/operations.htm
    I have done but i used datetimemessagetype.txt.
    you can setup these things in FILE Transaction,here we can use logical file,logical path,physical file,physical path,IDOC FM will use FILE_GET_NAME to get dynamic file.
    you can search in SDN like File transaction or FILE_GET_NAME.
    Thanks
    Seshu

  • Please advise a novice computer artist on system requirements for large files in PS ?

    I am researching my next computer.
    I am an artist currently using CS2 to rework my paintings into prints.
    http://s719.photobucket.com/albums/ww198/blueridernz/Rachel%20Thompson%20Portfolio/?albumv iew=slideshow
    The paintings have been scanned at a high resolution and are 500MB.
    The image files I work with are large but the process simple, I am extracting and collaging.
    Nothing too technical here.
    As I will be printing large, 9' x 4', the end result file could be 2GB which I understand is the limit for PSD files.
    I am not gaming or editing video files, just working with large images.
    From what I have read I believe I need
    i7 Core
    12 GB RAM set of 3
    GeForce GTX 460
    Any advice truly appreciated,
    Rachel.

    The graphics card is perhaps a bit of overkill, if you really just paint and touchup in PS. A less power hungry and cheaper model would do just fine. The rest should do just fine, but keep in mind that all this is not going to do much good if you don't get a 64bit operating system and possibly also upgrade to CS5 to make use of all these resources. You might not even be able to install CS2 under Windows 7...
    Mylenium

  • Requirement for iDoc to Mail Package

    Hi All,
    Can somebody please help in iDoc to Mail Package interface.
    I have a requirement in which I need to attach the iDoc structure to the Content of Email Package
    I need to take the iDoc structure with the values from the source side(for e.g ORDERS05 structure with all the values) and add it to the content of the Mail Package on the target side. The reason for this requirement is that I need to dynamically generate the Attachment name i.e. pick-up the values from the iDoc and then concat it with the hard-code wording
    e.g CofA_<DOCNUM> <SNDPRT><RCVPRT>.xml and also the email address, subject and To is coming from iDoc field.
    I haven't find any blog regarding iDoc to Email Package.
    Thanks,
    Iqbal

    HI Francis Antony,
    Thanks for sending me the blog.
    Can you please help me in my requirement.
    I have a requirement in which I have to do the following
    Requirement
    The file name of the XML is CofA_<Serial Number>_<Material desc>.xml
    both the Serial Number and Material description are coming from iDoc.
    SERIAL_NUMBER = QALITY02/IDOC/E1EDLIN/E1CCI01/E1MEA01/SERIAL_NUMBER
    Material Desc = QALITY02/IDOC/E1EDLIN/E1CCI01/E1MEA01/TEXT
    iDoc also contains
    Email Subject : Currently under development
    Email Body: Currently under development
    and also I need to attached the iDoc Structure as it is and send it as an attachment to the email which is also present in the iDoc.
    I wrote one XSLT Code which select the entire iDoc Structure and send it as an attachment but I need to select the email subject, body from the iDoc which I don't know how to pick up and also not sure if it is possible to display the email body along with the attachment through XSLT.
    XSLT Code
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:stylesheet version="1.0" xmlns:ns0="http://www.w3.org/1999/XSL/Transform">
       <ns0:template match="*">
          <ns1:Mail xmlns:ns1="http://sap.com/xi/XI/Mail/30">
             <Subject>Need to pick up from iDoc</Subject>
             <From>abc</From>
             <To>Need to pick up from iDoc</To>
             <Content_Type>application/xml;name="CofA_<Serial Number (Need to pick up from iDoc)>_<Material Desc(Need to pick up from iDoc).xml"</Content_Type>
             <Content_Disposition>attachment;filename="CofA_<Serial Number (Need to pick up from iDoc)>_<Material Desc(Need to pick up from iDoc).xml"</Content_Disposition>
             <Content>
                    Need to pick up from iDoc
                <ns0:copy-of select="/"/>
             </Content>
          </ns1:Mail>
       </ns0:template>
    </ns0:stylesheet>
    This code will select the entire structure and email it to the fixed address as an attachment but not displaying the Email body.
    Can you please help me in solving this issue.
    Thanks,

  • DMS Setting required for GOS file transfer.???

    Hi
    I  attaching file in Purchase requestion document using  GOS in ERP6.0, now i would like to transfer attachment to shopping cart of SRM7.0. How to transfer the document from ERP to SRM system.
    Need to change any customizing or Standard BAPI or BADIs. Pls advice.
    Any setting for DMS need to be done.?
    Regards
    Ckumar
    Edited by: princeck on Nov 12, 2010 5:32 AM

    Thanks
    Understood that GOS file transfer cannot be done using standard in DMS

  • Basic help required for multiple files to be opened from Bridge to PS

    Hi
    I am attempting to shave off a few hours from my workflow and because I'm new to Bridge I'm unsure how to do this. I'm pretty sure anyone out there with a small working knowledge of Bridge or CS3 could help me.
    I am attempting to open three instances of the same RAW file into CS3 from Bridge. The three instances, although the same image, need to go through CameraRaw and change the exposure. One normally exposed, one +2 exposure and one -2 exposure. As you may have worked out I am attempting a pseudo-hdr effect with the one RAW file.
    How do I, with just one click, open the file three times, change the exposure each time, and then save the differently exposed files as tiffs?
    If it's ImageProcessor that I need to use then I'll admit I can't quite work out the rules for doing this!
    Any help gratefully received.

    Have a look at this thread.....
    http://forums.adobe.com/thread/623234?tstart=30

  • Golden Gate for flat file

    hi,
    I have tried with GoldenGate for Oracle/ non-Oracle databases. Now, I am trying for flat file.
    What i have done so far:
    1. I have downloaded Oracle "GoldenGate Application Adapters 11.1.1.0.0 for JMS and Flat File Media Pack"
    2. Kept it on the same machine where Database and GG manager process exists. Port for GG mgr process 7809, flat file 7816
    3. Following doc GG flat file administrators guide Page 9 --> configuration
    4. Extract process on GG manager process_
    edit params FFE711*
    extract ffe711
    userid ggs@bidb, password ggs12345
    discardfile E:\GoldenGate11gMediaPack\V26071-01\dirrpt\EXTFF.dsc, purge
    rmthost 10.180.182.77, mgrport 7816
    rmtfile E:\GoldenGate11gMediaPack\V26071-01\dirdat\ffremote, purge, megabytes 5
    add extract FFE711, EXTTRAILSOURCE ./dirdat/oo*
    add rmttrail ./dirdat/pp, extract FFE711, megabytes 20*
    start extract  FFE711*
    view report ffe711*
    Oracle GoldenGate Capture for Oracle
    Version 11.1.1.1 OGGCORE_11.1.1_PLATFORMS_110421.2040
    Windows (optimized), Oracle 11g on Apr 22 2011 03:28:23
    Copyright (C) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
    Starting at 2011-11-07 18:24:19
    Operating System Version:
    Microsoft Windows XP Professional, on x86
    Version 5.1 (Build 2600: Service Pack 2)
    Process id: 4628
    Description:
    ** Running with the following parameters **
    extract ffe711
    userid ggs@bidb, password ********
    discardfile E:\GoldenGate11gMediaPack\V26071-01\dirrpt\EXTFF.dsc, purge
    rmthost 10.180.182.77, mgrport 7816
    rmtfile E:\GoldenGate11gMediaPack\V26071-01\dirdat\ffremote, purge, megabytes 5
    CACHEMGR virtual memory values (may have been adjusted)
    CACHEBUFFERSIZE: 64K
    CACHESIZE: 1G
    CACHEBUFFERSIZE (soft max): 4M
    CACHEPAGEOUTSIZE (normal): 4M
    PROCESS VM AVAIL FROM OS (min): 1.77G
    CACHESIZEMAX (strict force to disk): 1.57G
    Database Version:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for 32-bit Windows: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    Database Language and Character Set:
    NLS_LANG environment variable specified has invalid format, default value will b
    e used.
    NLS_LANG environment variable not set, using default value AMERICAN_AMERICA.US7A
    SCII.
    NLS_LANGUAGE = "AMERICAN"
    NLS_TERRITORY = "AMERICA"
    NLS_CHARACTERSET = "AL32UTF8"
    Warning: your NLS_LANG setting does not match database server language setting.
    Please refer to user manual for more information.
    2011-11-07 18:24:25 INFO OGG-01226 Socket buffer size set to 27985 (flush s
    ize 27985).
    2011-11-07 18:24:25 INFO OGG-01052 No recovery is required for target file
    E:\GoldenGate11gMediaPack\V26071-01\dirdat\ffremote, at RBA 0 (file not opened).
    2011-11-07 18:24:25 INFO OGG-01478 Output file E:\GoldenGate11gMediaPack\V2
    6071-01\dirdat\ffremote is using format RELEASE 10.4/11.1.
    ** Run Time Messages **
    5. on Flat file GGSCI prompt-->_*
    edit params FFR711*
    extract ffr711
    CUSEREXIT E:\GoldenGate11gMediaPack\GGFlatFile\V22262-01\flatfilewriter.dll CUSEREXIT passthru includeupdatebefores, params "E:\GoldenGate11gMediaPack\GGFlatFile\V22262-01\sample-dirprm\ffwriter.properties"
    SOURCEDEFS E:\GoldenGate11gMediaPack\V26071-01\dirdef\vikstkFF.def
    table ggs.vikstk;
    add extract ffr711, exttrailsource ./dirdat/pp*
    start extract ffr711*
    view report ffr711*
    Oracle GoldenGate Capture
    Version 11.1.1.0.0 Build 078
    Windows (optimized), Generic on Jul 28 2010 19:05:07
    Copyright (C) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
    Starting at 2011-11-07 18:21:31
    Operating System Version:
    Microsoft Windows XP Professional, on x86
    Version 5.1 (Build 2600: Service Pack 2)
    Process id: 5008
    Description:
    ** Running with the following parameters **
    extract ffr711
    CUSEREXIT E:\GoldenGate11gMediaPack\GGFlatFile\V22262-01\flatfilewriter.dll CUSE
    REXIT passthru includeupdatebefores, params "E:\GoldenGate11gMediaPack\GGFlatFil
    e\V22262-01\sample-dirprm\ffwriter.properties"
    E:\GoldenGate11gMediaPack\GGFlatFile\V22262-01\ggs_Windows_x86_Generic_32bit_v11
    _1_1_0_0_078\extract.exe running with user exit library E:\GoldenGate11gMediaPac
    k\GGFlatFile\V22262-01\flatfilewriter.dll, compatiblity level (2) is current.
    SOURCEDEFS E:\GoldenGate11gMediaPack\V26071-01\dirdef\vikstkFF.def
    table ggs.vikstk;
    CACHEMGR virtual memory values (may have been adjusted)
    CACHEBUFFERSIZE: 64K
    CACHESIZE: 1G
    CACHEBUFFERSIZE (soft max): 4M
    CACHEPAGEOUTSIZE (normal): 4M
    PROCESS VM AVAIL FROM OS (min): 1.87G
    CACHESIZEMAX (strict force to disk): 1.64G
    Started Oracle GoldenGate for Flat File
    Version 11.1.1.0.0
    ** Run Time Messages **
    Problem I am facing_
    I am not sure where to find the generated flat file,
    even the reports are showing there is no data at manager process
    I am expecting replicat instead of extract at Flatfile FFR711.prm
    I have done this much what to do give me some pointers.....
    Thanks,
    Vikas

    Ok, I haven't run your example, but here are some suggestions.
    Vikas Panwar wrote:
    extract ffe711
    userid ggs@bidb, password ggs12345
    discardfile E:\GoldenGate11gMediaPack\V26071-01\dirrpt\EXTFF.dsc, purge
    rmthost 10.180.182.77, mgrport 7816
    rmtfile E:\GoldenGate11gMediaPack\V26071-01\dirdat\ffremote, purge, megabytes 5
    ggsci> add extract FFE711, EXTTRAILSOURCE ./dirdat/oo
    ggsci> add rmttrail ./dirdat/pp, extract FFE711, megabytes 20
    ggsci> start extract  FFE711
    You of course need data captured from somewhere to test with. You could capture changes directly from a database and write those to a trail, and use that as a source for the flat-file writer; or, if you have existing trail data, you can just use that (I often test with old trails, with known data).
    In your example, you are using a data pump that is doing nothing more than pumping trails to a remote host. That's fine, if that's what you want to do. (It's actually quite common in real implementations.) But if you want to actually capture changes from the database, then change "add extract ... extTrailSource" to be "add extract ... tranlog". I'll assume you want to use the simple data pump to send trail data to the remote host. And I will assume that some other database capture process is creating the trail dirdat/oo
    Also... with your pump "FFE711", you can create either a local or remote trial, that's fine. But don't use a rmtfile (or extfile). You should create a trail, either a "rmttrail" or "exttrail". The flat-file adapter will read that (binary) trail, and generate text files. Trails automatically roll-over, the "extfile/rmtfile" do not (but they do have the same internal GG binary log format). (You can use a 'maxfiles' to force them to rollover, but that's beside the point.)
    Also, <ul>
    <li> don't forget your "table" statements... or else no data will be processed!! You can wildcard tables, but not schemata.
    <li> there is no reason that anything would be discarded in a pump.
    <li> although a matter of choice, I don't see why people use absolute paths for reports and discard files. Full paths to data and def files make sense if they are on the SAN/NAS, but then I'd use symlinks from dirdat to the storage directory (on Unix/Linux)
    <li> both windows and unix can use forward "/" slashes. Makes examples platform-independent (another reason for relative paths)
    <li> your trails really should be much larger than 5MB for better performance (e.g,. 100MB)
    <li> you probably should use a source-defs file, intead of a dblogin for metadata. Trail data is by its very nature historical, and using "userid...password" in the prm file inherently gets metadata from "right now". The file-writer doesn't handle DDL changes automatically.
    </ul>
    So you should have something more like:
    Vikas Panwar wrote:
    extract ffe711
    sourcedefs dirdef/vikstkFF.def
    rmthost 10.180.182.77, mgrport 7816
    rmttrail dirdat/ff, purge, megabytes 100
    table myschema.*;
    table myschema2.*;
    table ggs.*;For the file-writer pump:
    +5. on Flat file GGSCI prompt+
    extract ffr711
    CUSEREXIT flatfilewriter.dll CUSEREXIT passthru includeupdatebefores, params dirprm\ffwriter.properties
    SOURCEDEFS dirdef/vikstkFF.def
    table myschema.*;
    table ggs.*;
    ggsci> add extract ffr711, exttrailsource ./dirdat/pp
    ggsci> start extract ffr711
    Again, use relative paths when possible (the flatfilewriter.dll is expected to be found in the GG install directory). Put the ffwriter.properties file into dirprm, just as a best-practice. In this file, ffwriter.properties, is where you define your output directory and output files. Again, make sure you have a "table" statement in there for each schema in your trails.
    Problem I am facing_
    I am not sure where to find the generated flat file,
    even the reports are showing there is no data at manager process
    I am expecting replicat instead of extract at Flatfile FFR711.prm
    I have done this much what to do give me some pointers.....The generated files are defined in the ffwriter.properties file. Search for "rootdir" property, e.g.,
    goldengate.flatfilewriter.writers=csvwriter
    csvwriter.files.formatstring=output_%d_%010n
    csvwriter.files.data.rootdir=dirout
    csvwriter.files.control.ext=_data.control
    csvwriter.files.control.rootdir=dirout
    ...The main problem you have is: (1) use rmttrail, not rmtfile, and (2) don't forget the "table" statement, even in a pump.
    Also, for the flat-file adapter, it does run in just a "extract" data pump; no "replicat" is ever used. The replicats inherently are tied to a target database; the file-writer doesn't have any database functionality.
    Hope it helps,
    -m

  • FIrewall for Windows File Share for windows 2008

    Hi All,
    Recently we upgraded one of our application file server from Windows 2000 to Windows 2008. We use this server for file sharing. We used to read files and write files to this server. Post upgrade one week every thing went fine all of a sudden we started seeing
    issues like the application servers stopped communicated to this server. 
    We worked with our firewall team and enabled port 445 post this the application servers started communicating to the file server. Our Application servers are on Windows 2003 server.
    Can someone please help me understand what is the port that needs to be enabled for accessing the file shares. My firewall team confirmed there were no firewalls rules between the Application server and File server. 

    Hi,
    Based on my research, firewall ports required for SMB file sharing are port 445 and 139.
    More information for you:
    SMB: File and printer sharing ports should be open
    https://technet.microsoft.com/en-us/library/ff633412(v=ws.10).aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Workflow for Idoc errors

    Hi,
    I am new to workflow, I got a requirement for idoc error handling in workflow.
    If the idocs fail a notification needs to be sent to an appropriate personnel. If it fails due to configuration or technical issue then the notification needs to go to the tech personnel ( A distribution list ) . If it is a data error then notification needs to go to functional personnel ( distribution list ).
    Here i have created a WF using Object IDOCAPPL. Please let me know how i can handle this condition and want some document on orginization structure.
    I have refered to documents in Saptechinical and Sdn.Plz let me have some other ideas and documents.
    thanks
    Arun.

    You can create a custom rule and inside that you can have your own condition and populate the users accordingly.
    Distribution list..you can create in SBWP itself.

  • Applet for multiple file upload

    Hi All
    I have a requirement for multiple file upload where user can select multiple files as well as folders.
    Would appreciate any pointers.
    Thanks.

    Google "java file upload"

Maybe you are looking for

  • Component video switcher for HD

    I would like to add Apple TV to my home theater setup, but I have only one component input. The monitor is an HD Pioneer Elite plasma, so I am looking for a switcher that can handle HD signals. Does one exist? Thanks, Ken

  • View coppies of pictures in multiple folders

    I have alot of different folders for pictures on my PC for different purposes and some of the folders contain the same pictures as other folders. For example... I have a folder named "Job Related" and another named "To Print". At times I will copy so

  • Selection Of checkbox in the JTree

    Hi all, I have a very small problem in JTree. The JTree is with checkbox.When ever I select on the node the simultaneous chechbox is selected. But some time with the same operation the checkbox is not selected. Here,I attache the part of code which i

  • The installation process has encountered an error while installing shared technologies.  Please restart and try again.

    Tech people at the company can't fix.  Laptop is fine.  Staples.com is source of download of Adobe Primier 12, they say to contact Adobe.

  • Is Flash Builder 4.5 FDCC Compliant?

    There used to be a page on Adobe.com/government that listed programs that were FDCC compliant.  We are in the process of ordering this but can't find this information anywhere now.  Does anyone know if it is. Thanks