ESP scenario question!?

Hi all,
I have the following scenario in mind, can someone tell me if ESP can support this scenario and which elements do I need to use in order to accomplish my scenario…
I want to use an input-stream to receive a lot of twitter messages which I want to analyse based on tag and type of message e.g. #complain, #angry, #sad and even #happy, #good etc.
I want to group all the message based on this type and after I have received for example 50 messages, I want to trigger a BPM process from ESP by using the Webservice Output Adapter.
I know how to use the input-stream and the Webservice Output Adapter. But how can I support the steps in between? I’ve used a Splitter to search the twittertext on keywords and define the path for further actions.
The first step after the splitter is that the message will be received by a Window. The next thing that I want achieve is to store the messages within the window up till a count of 50. After that, all the messages within the window must be send to a Webservice Output Adapter for further actions (BPM process will be started).
In the next scenario, I have used a CSV Output Adapter instead of the Webservice. What happens when I test my ESP process? All the message will be send one by one to the CSV file instead of bundled by 50 .
Any help is welcome
Header 1
declare
  parameter integer threshold := 5;
end;
CREATE INPUT STREAM TwitterInputStream SCHEMA (
  tweetDate string,
  tweetTime string,
  tweetId string,
  tweetUser string,
  tweetText string );
CREATE OUTPUT SPLITTER TwitterInputSplitter
AS WHEN lower ( TwitterInputStream.tweetText ) LIKE '%magnetron%' AND ( lower ( TwitterInputStream.tweetText ) LIKE '%klacht%' OR lower (
TwitterInputStream.tweetText ) LIKE '%failure%' OR lower ( TwitterInputStream.tweetText ) LIKE '%boos%' ) THEN MagnetronBadHashTag
WHEN lower ( TwitterInputStream.tweetText ) LIKE '%magnetron%' AND ( lower ( TwitterInputStream.tweetText ) LIKE '%happy%'
OR lower ( TwitterInputStream.tweetText ) LIKE '%good%'
OR lower ( TwitterInputStream.tweetText ) LIKE '%tevreden%')
THEN MagnetronGoodHashTag
SELECT * FROM TwitterInputStream ;
CREATE OUTPUT WINDOW Window1 PRIMARY KEY DEDUCED KEEP EVERY threshold ROWS AS SELECT 'Klacht' tweetType , * FROM MagnetronBadHashTag GROUP BY
MagnetronBadHashTag.tweetId ;
ATTACH OUTPUT ADAPTER File_Hadoop_CSV_Output1 TYPE toolkit_file_csv_output TO Window1 PROPERTIES dir = 'C:/Users/Gerritsen/Desktop' ,
  file = 'ESP_OUTPUT.csv' ;

Hi,
I guess you want the output in a bundle of 50 rows and not individual rows...
If that is so then the way to do is, it needs a bit of tweaking
1. Create a join as join produces rows in bundles. You can create a join by joining with some kind of trigger after every 50 rows.  If there is a window with 50 rows try to join it with a trigger stream and it should produce 50 rows in a bundle.
2. Create a splash stream and make sure you read 50 rows from the input window and send it out in one read in a continous output statement. SPLASH combines continous output and makes them as one bundle.
http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01612.0514/doc/html/san1311804098405.html
Using itereators read window data and keep sending it to the output using output statement.
The mulitple outputs get combined to one bundle of data.
Thanks,
Geetha.

Similar Messages

  • Receiver RFC synchronouse scenario question:

    Dear All,
    I have a doubt in Receiver RFC sync scenario. for example file to XI to RFC.
    Question: when ever Response RFC is triggered in R/3 Side. How the data reaches XI.
    By just creating Synch Communication channel for the RFC in XI, will  the data to come to XI for RFC respose.
    How when a Respose RFC is Triggered in R/3 Server, how the data points or reaches XI port?
    How the Auto Triggered RFC Respose data points to XI and Comes to XI in a Synchronous RFC Receiver scenario.
    PS: I am not from ABAP background. if any code has to be written in R/3 side for making the response RFC point to XI, please provide a generalized code also if possible.
    Please Advice,
    Prakash.

    RFC destination,port at XI would help to get response data
    No need to write any code,because RFC provide sync communication.
    use links RFC Scenario using BPM --Starter Kit
    https://weblogs.sdn.sap.com/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken]
    Exposing BAPI as Web Services through SAP XI
    RFC Scenario using BPM --Starter Kit
    The specified item was not found.
    The specified item was not found.
    HTTP to RFC - A Starter Kit

  • SRM, ROS and SUS scenario question

    Hello Experts,
    We are in the process of implementing MDM, ROS, EBP and SUS scenario in our present project. I went through the documentation. I have couple of questions.
    1. Do we need to have seperate clients for ROS and SUS. What is the best practise.
    2. Since we have SUS, once I transfer BP from ROS to EBP, check the portal vendor box, I would like to know how the registration code will be sent to supplier. Do we need to create the userid in EBP or with the receipt of registration code supplier will be able to create his first initial userid? Also how we can implement this with CUA and EP as part of landscape?
    3. Also since we have MDM, how the new BP information can be migrated or mapped in MDM and how new BP can be sent to backend system? I understand there is BP monitor to check and approve the changes, but how the new BP will be transferred? Do we need to develop new XI message for this? if Yes, from where that can be managed? from EBP or MDM?.
    I searched through help.sap.com for any documentation but no success.
    Thanks in advance
    Vijay.

    Hi,
    1.Refer the foll thread:
    Re: Supplier Registration without SUS or XI?
    2.For supplier registration,SUS is not mandatory.You need to configure ROS for this scenario.The extrenal vendors will register in ROS and then be replicated to R/3.
    You can use EBP only for Supplier registration.
    SUS,ROS and Bidding engine make up the SRM server 5.5/EBP component of SRM 5.0.
    Pls refer the foll link for the complete process:
    http://www50.sap.com/businessmaps/8F152C1AE8F1426FA3B442F905815F54.htm
    For detailed settings/config  of supplier registration,refer the foll threads:
    Re: Not able to transfer suppliers from ROS to EBP
    problems with ROS_PRESCREEN application for screen suppliers and manage bp
    Re: SUPPLIER DIRECTORY (ROS) link not appearing in EBP in "SCREEN SUPPLIERS"
    Supplier Directory
    Re: Supplier Self registration
    Re: SRM Supplier registration config
    Re: External Web Service setting for Supplier Registration ROS to EBP
    Re: Problems when transferring supplier from ROS to EBP...
    3.Not worked on MDM so cant help you on this.
    BR,
    Disha.
    Do  reward points for useful answer

  • Synch scenario question

    Hello,
    I have following scenario.
    SOAP (Request) -
    >   XI  -
    > RFC(Receiver)
    SAOP (response) <----- XI <--
    RFC
    The above is synch. scenario.
    This scenario is used by several clients. Now my question is as follows.
    When a specific client request comes through, I do not want to map specific feilds in the mapping.
    How would I do this?
    I appreciate your help.
    Thank you,
    Balaji

    Hey,
         In this case if you have client value is one of the fields then it becomes very easy for you.
    you just need to compare the client field with the client number for which you want to by pass the values.
    for example,
      if there is say employee number, and you want to send it only for client 400, 500 and 600. then
    your mapping for the field employee number will include an if condition like this.
    if-->client(field) equals 400 or client(field) equals 500 or client(field) equals 600 then employee number.
    use ifwithouelse function provided by XI.
    in case you have many clients and graphical mapping becomes tedious you can also write a user defined function.

  • GRMG Scenario Question

    Hi, all
    I have confousion about GRMG Scenario I am using XI30, and create 5 different GRMG Scenario, first I download GRMG File and customized and update Scenario using GRMG tcode
    Now its look like this and all Scenario are green-check-sign:
    Name                Type of GRMG                                             RFC
    =========================================================
    XI_SLD1            System Landscape Directory Heartbeat          XI_GRMG_SLD
    XI_RWB1           XI Runtime Workbench Heartbeat                   XI_GRMG_RWB
    XI_AF1               XI J2EE Adapter Engine [hostname]               XI_GRMG_AF
    XI_DIR1              XI Directory Heartbeat                                   XI_GRMG_DIR
    XI_REP              XI Repository Heartbeat                                 XI_GRMG_REP
    My question is what is the utilization of thease Scenario ?
    Where may I found out in RZ20 for these Scenario ?
    How may I link to thase Scenario ? for Alerts
    Please Advised
    Thanks in Advanced

    Hi, I have another question
    When I goto RZ20 and click "Extras" then Activated maintaintance funcation" then documents said "CCMS monitor sets screen, copy the template SAP Exchange Infrastructure to the new monitor set.
    OK then
    Goto SAP "CCMS Monitor Template" then click "Exchange Infrastructure" then click "Copy to" then its open one window
    from monitor set:   SAP CCMS Monitor Templates
    Monitor: Exchange Infrastructure
    To Monitor Set:  (when i click dropdown menu list its show lot of monitor set) which monitor sould I select in there?
    Monitor: (and what sould i put in this line ?)
    Please tell me step by step will be appriciated
    thanks

  • Obfuscation scenario question

    Hi all!
    Obfuscating a class or jar using an obfuscator like yguard is simple. You just have
    to declare a mainclass and mainmethod as an unobfuscated entry point so that
    every thing else gets obfuscated and you can still run your program or applet.
    My question is about the following scenario:
    - separate applications (one class each)
    - one library
    I'd like to obfuscate both my applications and the library classes. For that it
    is necessary that the Classes/Methods in my library which are directly
    referenced by any application class remain unobfuscated.
    Do you know an obfuscation tool which does that automatically?
    My current obfuscator yguard does not support that and I don't want
    to write dozens of class/method mappings myself.
    Thank you for any help!

    Obfuscation is useless. Technically: yes.
    But many people get bored reading method names like a aa aaa aaaa and are irritated by terms like structural analysis.
    However, I'm not here to start an discussion about obfuscation in general, I am just looking for a tool which tells me which library classes and methods are used by a bunch of application classes.

  • Two SA520 VLAN Scenario Question

    I had a scenario based question and was wondering if it can be solved.
    - Two SA520's
    - Two Internet connections per SA520 (4 separate Internet connections total)
    - Two VLANs per SA520 (4 VLANs total)
    - Each VLAN is bound to a WAN port for Internet (keeps each VLAN on a different Internet connection)
    For this scenario let:
    VLAN A & B be on the first SA520.
    VLAN C & D be on the second SA520.
    VLAN A & B come in as a trunk to the first SA520.
    VLAN C & D come in as a trunk to the second SA520.
    Is it possible to route between all VLANs?
    Edited: 01/12/10 10:10
    Added VLAN Trunk Info.

    No, the VPN policies do not handle that.  They only will handle the traffic from one SA500 to the other SA500.  Internally, the VLAN's are routed to each just by adding the VLAN to the router.  If you have something else, that is not directly connected to the router, you could add a static route or use RIP to discover another subnet.

  • ERecruitment (EHP4) distributed scenario  - Questions status changes

    I am creating questions in draft mode and then changing back the status to released after it is complete.
    I then want to create the questionnaires and use them in the process template.
    Issue:
    Even though I can change the status of the questions from "Draft" to "Released", when I close the "Create Questions screen and come back, the status automatically reverts back to "Draft".
    Periodic Services are running every 5 minutes.
    Due to the issue with the status change, I cannot create a questionnaire and release them to be used elsewhere.
    Any thoughts on where else to look?
    Thanks, Sunil

    Hello sunil,
    I could reproduce this error in one of the sandboxes I can access.
    The reason for this system behavouir seems to be an inconsistency in configuration of SES search. When you save the questionaire in status released the UI shows a success message but you should find an error message in TCode SLG1 like:
    - Exit WRITE_CPOINTER_SES of exit area AT does not exist or
    - Enhancement'Write Change Pointer for SES Search (in COM_SE_CPO' (area 'Follow-Up Processing (Background)') is not assigned to category 'Evaluable Information'
    The error is not shown in the UI as someone put the following code in there:
    METHOD save_quesnr_status.
      TRY.
          CALL METHOD cl_hrrcf_qa_bl=>change_template_status
            EXPORTING
              p_template_id = is_quesnr_object-objid
              p_new_status  = iv_status_new.
        CATCH cx_root.
      ENDTRY.
    ENDMETHOD.
    On a system wehre I did the SES config myself questionaires can be released correctly. Please apply the sap note 1098046 step by step (esp. number 2 and 3 are important for this special issue, including the note mentioned there). After doing this on the sandbox releasing questionaires works fine.
    Best regards
    Roman

  • IDOC-XI-XML Scenario Questions

    Hi everyone,
    I am actually trying to configure a scenario starting from SAP and finishing creating a XML file.
    R/3 IDOC -> XI -> XML file
    The XI is receiving IDOCs from SAP correctly, but when it try to send to third party system, the monitor engine (SXMB_MONI) are showing the following error: HTTP_RESP_STATUS_CODE_NOT_OK.
    I am currently using the File Adapter, please take a look at the config for the communication channel:
    Adapter Type: File
    http://sap.com/xi/XI/System
    SAP BASIS 6.4
    Transport Protocol: File Protocol(FTP)
    Message Protocol: File
    Adapter Engine: Integration Server
    Target Directory: /  (root)
    File Name Scheme: mptest_xi_output.dat
    File Construction: Create
    Overwrite File: X
    File type: Binary
    Adapter Status: Active
    Regards,
    Gabriel Santana

    If you have enough authorization, then click on the last button which is change button.
    Otherwise, open two windows of SAP and try to do the above step and when you get the authorization error, go to the second window and enter transaction /nSU53. Send that info to your security team.
    Once you have authorization you should be fine.
    One other thing, in which client you are doing this ?
    Do not use DDIC user to change it.
    regards
    Shravan

  • File to SOAP scenario question???

    Hi,experts
    let's take source system is A,target system is B.
    I have a File to soap scenario using BPM,the scenario is send file request(from A) to PI,PI will be communicating target system(B) with soap(syn).After that, PI receives the soap response and send the response data to A.
    Now the requirement is, we need to archive the file request msg(before sending to B) to a folder and archive the response msg(response from B) to a folder as well.how could it be achived?
    any help will be much appreciated!
    Thanks

    Hello Rajesh_V2009 ,
    I am trying to implement exactly the same pi scenario, but having some problems :
    File -> file adapter -> ccBPM -> soap receiver adapter -> web service request -> web service response -> ccBPM -> output file adapter.
    The web service that I call works file from wsnavigator. I have created all the design and configuration objects
    needed for the scenario.
    I place a file with following contents:
    <?xml version="1.0" encoding="utf-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <pns:GetSetNameWS xmlns:pns="urn:file2soap2fileWSVi">
    <pns:name1>ajeet</pns:name1>
    <pns:name2>phadnis</pns:name2>
    </pns:GetSetNameWS>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    When I look at the process monitor I get this:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!-- Receiver Determination
    -->
    - <SAP:Error SOAP:mustUnderstand="" xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
    <SAP:Category>XIServer</SAP:Category>
    <SAP:Code area="RCVR_DETERMINATION">CX_RD_PLSRV</SAP:Code>
    <SAP:P1>Problem while determining receivers using interface mapping: No operation with XML root tag http://schemas.xmlsoap.org/soap/envelope/.Envelope exists.</SAP:P1>
    <SAP:P2 />
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText />
    <SAP:Stack>Error when determining the receiver: Problem while determining receivers using interface mapping: No operation with XML root tag http://schemas.xmlsoap.org/soap/envelope/.Envelope exists. Problem while determining receivers using interface mapping: No operation with XML root tag http://schemas.xmlsoap.org/soap/envelope/.Envelope exists. No operation with XML root tag http://schemas.xmlsoap.org/soap/envelope/.Envelope exists.</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    I have no clue about this error. Can you help me with this ?
    If yes I can send you more details, if you liked 
    Hoping to get help from you,
    Cheers,
    Ajeet Phadnis

  • BPM Scenario question

    Hi
    i created a bpm scenario according to the blog "RFC Scenario using BPM --Starter Kit" by Arpit Seth. I get the file into XI successfully, but after this first step nothing else happens. In the SXMB_MONI i have only one successful message that read my file.
    How can i debug the reason of this problem?
    thx in advance
    Michael

    i haven't a SXMB_MONI_BPM. But i checked SXMB_MONI again and found 2 error messages from BPM belonging to the resend tests from the PE trace.
    The Response message contains following error:
    <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: failed to parse BAPI response due to: com.sap.aii.af.rfc.util.bapi.BapiException: Parameter with name RETURN not found.</SAP:AdditionalText>
    <SAP:ApplicationFaultMessage namespace="" />
    Is this a BAPI problem?

  • B2B Addon - BPM Scenario Question

    We have SAP  PO 7.4 single stack working on B2B Scenarios. We will be using AS2 Adapter to send and receive ANSI X12 messages like POs inbound, Order acks Outbound, PO changes inbound etc. We installed B2B Add on ESR Content and has some sample scenarios in  B2B Mapping Kit.
    Scenario 1: When order received from Customer (850)  we need to send Functional Acks ( Both Positive and Negative ) based on the status of success / failure of IDOC Posting. How do we achive this scenario without BPM. What is SAP recommended solution ( RDS approach) for this scenario considering its ANSI X12 850 to IDOC Orders scenario. I'm thinking of using exit in IDOC Posting fucntional module to trigger Proxy to PI which wil lbe sent to Customer after Mapping.
    Along with Funtional ack ECC should send ORDRSP IDOC to PI to ANSI X12 855 as well.
    Scenario 2: in another scenario, If send Order 850 to Vendor wil lthey typically send 855 as a response ? Since Its Orders IDOC outbound, how to make this as synchronous to receive 855 and update ECC with ORDRSP IDOC  without BPM?
    I would like to develope these scenarios avoiding BPM if possible. Since we are not implementing RDS solution,  we will be developing mapping inhouse. what is the SAP standard recommended approach if you used RDS ?
    Thank you

    Hello,
    If I am not wrong you are talking about below scenarios
    These scenarios need not wait for each other( independent of each other)
    In case of outbound EDI interfaces, EDI 997 (if partner is capable of sending one) will be helpful in updating the status of the Outbound IDoc.
    In Inbound EDI scenarios, 997 is generated at adapter level as s0on as message reaches PI successfully, 997 is sent back to partners if requested.
    To understand more on acknowledgements please have a look at below blog
    Functional Acknowledgement (Inbound and Outbound FA 997)- for Beginners
    (P.S.-  ACK 855 is an interface on its own (needs mapping from EDI to SAP (Idoc, rfc, file..))
    Regards,
    Pooja

  • AS2 Adapter EDI scenario - question

    I am working on a EDI scenario, involving AS2 adapter.
    Could anyone tell me any steps to be done on ABAP engine.
    reg

    Hi Naveen,
    follow the below steps:
    1) First deploye the Std seeburger mapping provided by see burger on XI
    2) If you are using the AS2 adapter then you have to install the AS2 server on XI server.
    3) Once you install the std seeburger on SAP XI server you will see the AS2,X400,OFTPS,VAN adapter on XI ID.
    5) You need to call the std mapping in the adapter module which does the conversion from EDI to XML and XML to EDI.
    steps in IR and ID.
    In IR:
    You need to use the Standard XSD provided by Seeburger for different mesages like EDFACT ORDERS D96A etc in IR and other steps are similar which we do for the normal scenarios.
    In ID:
    This is the scenario for AS2
    Seeburger has provided std mapping which need to be deployed on Xi server and will be used in XI adapter module tab for EDI-XML and XML-EDi conversion.
    Example of mapping:
    See_E2X_INVOIC_UN_D96A
    See_E2X_INVOIC_UN_D99A
    See_E2X_ORDERS_UN_D96A
    See_E2X_OSTRPT_EAN_D96A.
    1) After deploying mapping program.
    We need to give the AS2ID in the party identifier tab,AS2ID that is entered here will be used for identifying the sender and receiver of the document.
    1)The value of the Agency field must be Seeburger.
    2)The value of the Schema field must be AS2ID.
    Every partner is assigned the WAN no which is provided by the WAN service provider. That WAn no we need to configure in the party identifier tab
    Configuration in adapter:
    Under the party identifiere tab
    Agency will be seeburger
    Scheme=AS2ID
    Name = WAN network no of the partner who is sending the file
    Sender AS2 adapter configuration:
    Few changes in the module parameter tab.
    localejbs/CallBicXIRaBean bic
    CallSapAdapter 0
    Module configuration:
    bic= destSourceMsg = MainDocument
    bic= destTargetMsg = MainDocument
    bic= mappingName= See_E2X_EDIFACT_ORDERS_UN_D93A which does the conversion of EDI-XML.
    Receiver AS2 adapter configuration:
    When the adapter is used in a receiver channel, it obtains a message from the Integration Engine and sends it to a business partner. In this case, the following steps are required:
    1. Define the channel as a Receiver channel on the Parameters tab
    2. The last step ensures the module sequence is complete:
    Make sure the module ModuleProcessorExitBean does exist in the module sequence:
    Module Name=localejbs/ModuleProcessorExitBean
    Type=L
    Module Key=Exit
    • with the following module parameter:
    Module Key=Exit
    Parameter Name=JNDIName
    Parameter Value=deployedAdapters/SeeXIAS2/shareable/SeeXIAS2
    You can refer my thread reply:
    Re: Pls.. Help Needed.. Seeburger Mapping Names..!!
    Re: Seeburger AS2 adapter...
    Re: AS2 Module tab.. Mapping Names for modified Standard Msg types ? ? BIC ??
    AS2 adpater-- Configuration details for both SND and RCV.
    AS2 Sender Adapter -- Need few details.
    EDI-SEEberger-XI-IDOc-R/3
    flow of the data from EDi to SAp r/3 using seeburger:
    1) Data will be coming thorugh WAN or mailbox.
    2) If its coming through WAN then every WAN provider will give the partner which is sending the data a partner number for indentification.
    3) In your AS2 channel you need to configure the party and for that party you need to give the WAN number which is proivded for that partner. So it will run that configuration whenever that partner send the data.
    4) In the adapter you have to give the mapping program name which does the conversion of EDI-XML and XML-EDI.
    5) Once you XML is generated then it will be used in MM
    6) At the receiver if its IDOC adapter then IDOC adapter will post the IDOC to R3 system.
    Thnx
    Chirag

  • SCENARIO QUESTIONS!!!

    Hello SAPians,
    I am looking for my first project in SAP SD, I am sure in the interview they will ask me to explain different scenarios I came across in my previous project, which unfortunately I didn't? So guyz please share your experience if possible, from Implementation/pricing/consignment/credit management/exclusions/customer master data/so on and so forth!!!
    Would appreciate your help and advice,you can email me at [email protected]
    Regards
    Afroze.

    Dear Mohammed,
    Some of the scenarios are:
    Duplicate customer purchase order
    Default First Date is not Today
    Auto proposed all the dates when creating Sales Order
    Define Material used at which Sales and Distri. Process
    Assign a Cost Center manually in a SO (VBAK-KOSTL)
    Transfer of Requirements
    Define Tax Determination Rules
    Taxation Explain with an example
    Return material From customer
    SAP SD: Scheduling Agreement Vs Contract
    Sales BOM Implementation
    How to Know that Sales BOM is working or not?
    Sales Order Mass Change
    Release strategy for Sales order
    How to do rebate processing
    Rebate Process with Ref. to SO
    Consignment Sales Process in SAP
    Issue free goods to selected Customers
    Supressing Fields in Sale Order
    Some Light on Batch Determination
    Diff. between Item Proposal and Material Determination
    Steps for SD Variant Configuration
    Process Flow for 3rd Party Sales
    Configure Intercompany Stock Transport Order
    Number Ranges In Sales Order
    What is Debit note and Credit note
    Regards,
    Rakesh

  • File XI File scenario - questions

    Hi,
    does anyone have experience with a scenario that XI will be the integration for
    backend system -> XI -> ~ 300 work station and comunication is done via files.?  what can be cons & pros?
    Also can XI zip files before sending it?
    thanks,
            Udi

    Hi,
    you can send then from XI to an FTP folders
    which will be set at the shops (so many ftps in this case)
    or there might be one central ftp somewhere
    but the shops will have to connect to this ftp and take the files
    >>>do i have to use here pck prehaps?
    no need for PCK in this case
    you can also use SFTP if you need to secure FTP connections
    Regards,
    michal

Maybe you are looking for

  • Problem with cfhttp in a loop

    Hi, I am reading an xml file that contains emails with attachments (one email per item/node, but may contain multiple attachments).  I am trying to save the attachments to our server.  So I'm looping over the multiple attachments of a single email an

  • Problem in reversing the released Process order.

    Hi PP Gurus, When I'm trying to reverse the Process order release in change process order COR2 system is not allowing me as the menu option is Gray. When I released processed order Control recipe is generated and due to some problem in PI sheet I dis

  • Youtube video playback is jumpy.

    Youtube was working fine for me a few days ago. Now, when I play videos they are jumpy and shaky. The audio is fine. I have already tried a software update, flash update, and rebooting. What can I do to fix it?

  • How do I "call" a skype user using skype name

    Completely new to SKYPE -- how does one call another skype user using the party's skype user name 

  • Query hierarchy question (NW04s)

    I assigned a hierarchy to 0GL_ACCOUNT and restrict on certain nodes just below the root. How do I prevent these nodes from being expanded in query?