Time Scenarios unclear

Hi BW Practitioners,
I need to clarify some doubts on Time Scenarios. Really hope you can help me a little or I may never understand BW.
1. Assuming we have Material [Mat] and Material Group [Mat Gp]. If  Parent Attribute is Material Group, and Child Characteristic is Material, what is the Child Attribute and what is the Parent Characteristic?
2. Are the Time Scenarios the solution or the problem situation? Eg. Scenario 1: 'Today is yesterday' says with material group as characteristic in the same dimension table as material, a change in Mat->Mat Gp assignment from values BBB->X  to BBB->Y results in all history data appearing as 'today', as if no change was made. So, is this a good thing or is this the problem? Is it bad to use mat and mat gp in the same dimension? Is it bad thing if a change in mat gp assignment is applied to all historic data, which results in reports able to show what is the correct value / assignment for mat gp (assuming the change was to correct the data)? Had to ask because the docu described scenario1 and then gave a solution to use mat gp as the navigational attribute of mat in the mat master data table. Is scenario 2 the solution to scenario 1?  
kr,
Ernesta

Hello Siggi,
I am very glad to receive a response from you.
Hope you don't mind, but I am really confused. I was reading the Multidimensional modeling doc. Its really comprehensive but I am confused still. Are there known typos in bw330 on the time scenarios topic?
The bw330 calls it Scenarios A-D. The doc calls it Scenarios 1-4.
I tried to map the explanations to bw330.
BW330
Modeling Doc
Scenario A: At time of Sales Order     |        Scenario 1: Today is yesterday
Scenario B: At Time of Data Request      |    Yesterday is today
Scenario C: At Any point in Time        |     Today / Yesterday
Scenario D: Comparing Existing & Unchanged Values    |     Yesterday & Today.
I like to verfiy Scenario B & Scenario 2.
For scenario B, there are 2 solutions, B1 and B2.
B1: The material says the modeling method should be using time-indep nav attr for material number. Also, the diagram shows to use P-Master Data table for Material.
The Doc says for this case, to model material group as time-dep nav attr of material. So, which is correct? Fyi, Doc is authored in year 2000. BW330 is version year 2003. I think the Doc is correct. But no one can confirm for me.
Further, Scenario B, solution B2, BW330 says model as time-independent external hierarchy of material. Doc says model the dependent attribute of  multi-dimensional model as a node attribute of an external hierarchy of your characteristic where the entire hierarchy or even the structure is time dependent. I  think Scenario B solution 2 should be using time-Dependent rather than independent as stated in Doc. Can you confirm my understanding?
For Scenario C : today / yesterday, should the master data table to model be Q or Y table?
Looking forward to getting advice from SAP experts.
best regards,
Ernesta
Message was edited by: Ernesta

Similar Messages

  • BAdI........How are they used in the real time scenario.

    Im a rookie in ABAP development and i was wondering that how we use the BAdI enhancement technique in the real time scenarios. Like do we get create them or we have few already built BAdI's which we work on? Can any body please explain how this works.

    Hi Ramana,
    Business add-ins are enhancements to the standard version of the system.
    Business Add-In is a new SAP enhancement technique based on ABAP Objects.
    They can be inserted into the SAP system based on specific user requirements.
    Each Business Add-In has:
    • at least one Business Add-In definition
    • a Business Add-In interface
    • a Business Add-In class that implements the interface
    In order to enhance a program, a Business Add-In must first be defined
    Subsequently two classes are automatically generated:
    • An interface with ‘IF_EX_’ inserted between the first and second characters of the BADI name.
    • An adapter class with ‘CL_EX_’ inserted between the first and second characters of the BADI name.
    The Application developer creates an interface for this Add-In.
    There are multiple ways of searching for BADI.
    • Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE
    • Finding BADI Using SQL Trace (TCODE-ST05).
    • Finding BADI Using Repository Information System (TCODE- SE84).
    1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for ‘CL_EXITHANDLER=>GET_INSTANCE’.
    Make sure the radio button “In main program” is checked. A list of all the programs with call to the BADI’s will be listed.
    The export parameter ‘EXIT_NAME’ for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter ‘INSTANCE’ will have the interface assigned to it. Double click on the method to enter the source code.Definition of Instance would give you the Interface name.
    2. Start transaction ST05 (Performance Analysis).
    Set flag field "Buffer trace"
    Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)
    Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.
    Push the button "Deactivate Trace".
    Push the button "Display Trace".
    The popup screen "Set Restrictions for Displaying Trace" appears.
    Now, filter the trace on Objects:
    • V_EXT_IMP
    • V_EXT_ACT
    Push button "Multiple selections" button behind field Objects
    Fill: V_EXT_IMP and V_EXT_ACT
    All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.
    So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA
    3. Go to “Maintain Transaction” (TCODE- SE93).
    Enter the Transaction VD02 for which you want to find BADI.
    Click on the Display push buttons.
    Get the Package Name. (Package VS in this case)
    Go to TCode: SE84->Enhancements->Business Add-inns->Definition
    Enter the Package Name and Execute.
    Here you get a list of all the Enhancement BADI’s for the given package MB.
    Have a look at http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    How to develop BADI
    Reward if useful.
    Thanks
    Aneesh.

  • Real time scenario for AXIS framework in SOAP adapter

    Hello,
    Can anybody please suggest some real time scenario where AXIS framework can be used
    and what are the advanteges and disadvantages of using AXIS framework
    regards,
    Loveena

    Hi !
    have a look on these links
    Using the Axis Framework in the SOAP Adapter
    http://help.sap.com/saphelp_NW04/helpdata/en/45/a4f8bbdfdc0d36e10000000a114a6b/content.htm
    http://help.sap.com/saphelp_nwpi71/helpdata/en/69/a6fb3fea9df028e10000000a1550b0/frameset.htm
    Have a look at this Pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b092777b-ee47-2a10-17b3-c5f59380957f
    Thanks !
    Abhishek

  • Real time scenarios...

    hello ther ....i am simi .. iam new to sdn...i have my interview in sem bps..in a couple of days time..iam through with the theoritical bit ...my concerns are related to the questions that may arise about project scenarios....would be much obliged if someone could help me thru by providing some real time planning scenarios ....or may be some help with the tech specs,,.....thanx....favour will be returned....
    regards,
    simi..

    I have mentioned couple of real time scenario I know.
    [1] Down payment :
    When PO gets created and vendor asks for some portion of PO as an advance payment, accounts payable department creates down payment request for the purchase order using F-47 and enters PO number in it.automatic payment program pays for the down payment request made.
    <b>When automatic payment program makes payment, PO gets updated with Down payment amount, and purchasing department gets visibility against that PO and knows that certain amopunt has been paid as an advance payment.</b>
    When Goods is received and invoice is entered using MIRO for that PO accounts payable department gets notification that down payment exists towards  PO.
    and they clear down payment made for the PO againt the invoice.
    [2] AR/AP netting :
    Some times in business some customers are also vendors.
    SAP has given the functionality to set the Customer as a vendor scenario.
    it requires two settings in customer-vendor master record.
    For customer who is also vendor, cendor master record is created , in control tab customer number is entered in vendor master, same time in customer master record in control tab vendor number is entered for that customer.
    Check clear agaist customer-vendor in both master record.
    when payment is made to this vendor/customer another master record gets updated automatically.
    Assign points if helpful

  • Need SD,MM  real time scenarios

    hi everyone, Plz help me with SD real time scenarios with examples..
    regards,
    prashanth

    Business scenario that has to be mapped by you (SD consultant) -
    Company / client is a TV manufacturing company which sells TVs and provides TV repair sevices.
    1.  Sales orders for both (TV selling & services) must be done in one sales document type
    2. Delivery type must be set up ONLY for TV selling (as services do not need any delivery of goods!)
    3. For easy identification - bills should have different number ranges. For selling TV bill # must range from 1 to 1000, and for TV services from 90001 to 90099
    4. TV selling must be delivery related bill, TV service must be order related bill
    How shall you configure this in SAP SD? What are the important questions you will ask the client, for more information?
    Once you have attempted this we can go a step further (in to more functionalities)
    Edited by: Typewriter on Aug 14, 2011 2:35 PM

  • Documentation of SAP HR- Real time scenario

    Hi,
    Please can anyone give me some documentation on how the functioning happens in SAP HR real time scenario.
    The real time implementation for Organizational management, Payroll, time Management and personal administration.
    It would be great if the document be sent to .
    Thank you !

    This is a Crystal Reports forum. Please close the existing thread an post your question here:
    SAP ERP Human Capital Management (SAP ERP HCM)
    I would recommend to explain in more detail the business need behind your quesiton in the new posting.
    Regards,
    Stratos

  • SAP HR Real time Scenarios

    Hi,
    Can somebody give me a few examples of real time scenarios/challenging issues in SAP HR implementation? Can be anything in Personnel Administration, Org.Management, Time management, Benefits. Any help will be appreciated.
    Thanks,
    Prapar

    This is a Crystal Reports forum. Please close the existing thread an post your question here:
    SAP ERP Human Capital Management (SAP ERP HCM)
    I would recommend to explain in more detail the business need behind your quesiton in the new posting.
    Regards,
    Stratos

  • XI real time scenarios practice

    Hello XI gurus,
    Are there any XI exercises available to prepare myself for real time scenarios?
    I understand that SAP training material includes exercises. But other that material (for people who do not have that material), are any other options available?
    If I can get XI system access, what are the basic topics/areas that I need to practice to survive the first few months as XI developer?
    Thank you very much.
    Manu

    Hey
    Following are the links to weblogs which will help to develop the <b>basic scenarios</b>.
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces - Controlling access to Sensitive Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14 - The same filename from a sender to a receiver file adapter - SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine - Payload Based Message Search in XI30 using Trex Engine /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i - XI : Configuring CCMS Monitoring for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter - XI: HTML e-mails from the receiver mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated - XI : FAQ's Provided by SAP
    Regards,
    Sushil Hadge

  • ALE IDOC's Real Time Scenarios

    Hi Friends,
    Can anyone get me some real time scenarios in ALE IDoc's.
    Please help me out .
    Thank You.
    Patil

    HI Patil
       You can try out any of the following
    Transfering Master Data like
    1.  Material Master
    2.  Customer Master
    3.  Vendor Master
                   etc..
    For this You need to Activate the Change Pointer through IMG SALE...for the repective MESSAGE TYPE say Material Master MATMAS
    After That creat Material (MM01)
    After that go to SE38 Run the Report programm <b>RBDCPMIG</b> to created Master IDOC and Communication IDOC...And if All Your ALE Settings are correct .. it will transfer the IDOC to Other Client....or R/3
    YOu can also try
    Creation of purchase Order what has been explained in above reply..
    You can also try out this scenario instructed in this Quick refrance Guide.....
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CABFAALEQS/CABFAALEQS.pdf
    You can also check out this very useful link for newbie
    <b>http://www.allsaplinks.com/idoc_sample.html</b>
    Note:Do Reward Points if found useful...
    Cheers:)
    Mithlesh

  • How to design Master datas?? Whats is Time Scenarios???Explain..

    How to design Master datas?? Whats is Time Scenarios???
    Can anybody explain about Time Scenarios???

    Hi..
    to tell it is huge ..
    but a slice of it 
    Design          – Create design documents
    Prod.          – Make the product
    Quality          – Confirm quality of product
    Sales          - Market the product
    Purchase                    – Procure the items
    Accounts                       To control the cost of Mfg
    These steps should be understood as a general approach. To what extent they must be carried out depends
    on the actual situation and the experience of the project members involved.
    After deciding on the business process being dealt with, the basic steps to implementing a BI based solution
    are:
    1. Focus on the structure of information
    Develop a complete understanding of the underlying business processes. Create an Entity Relationship
    Model (ERM) of the business process
    The ERM as a function of the information
    2. Focus on analytical needs - Overcome model complexity
    Create a valid data model. Translate the ERM to the Multi-Dimensional Model (MDM) / Star schema
    The MDM as a function of the analytical processing
    3. Build the solution as a part of an integrated data warehouse
    The Star schema on the BI stage are the InfoCubes. Translate the MDM / Star schema to one or more
    InfoCube.
    coming to time ..
    How real-world changes are dealt with, i.e. how the different time aspects are handled is the most
    important topic with data warehouses.
    The attributes of a characteristic that will reside in its master data table are determined in the modeling
    phase. Each attribute can be defined individually as being time dependent:
    There is one ‘time dependent’ check box for each attribute in the ‘attribute’ tab page section.
    Time dependency of an attribute allows you to keep track on the changes over time of the relation of the
    characteristic and the time dependent attribute values.
    In terms of technical implementation, two master data tables exist if we have both non-time dependent
    and time dependent attributes.
    One master data table stores all relations to non-time dependent attributes (name of the table:
    /BIC/P<InfoObject name>) and
    One table stores relations to time dependent attributes (name of the table: /BIC/Q<InfoObject
    name>).
    The time dependent attributes master data table has additional DATETO and DATEFROM system
    attributes. In queries the different constellations are addressed using the key date ( Query properties).
    The validity attributes are not available for navigation.
    The text table, or better the description attributes, may be defined as time dependent.
    SID tables with respect to master data:
    The SID table is always generated if an InfoObject is not defined as ‘attribute only’ (tab page general).
    This table is used if the access to an Infocube or DataStore Object uses a navigational attribute or if the
    access is via a characteristic without attributes. Name of the table: /BIC/S<InfoObject name>
    The non-time dependent attribute SID table of a characteristic for access via non-time dependent
    attributes. Name of the table: /BIC/X<InfoObject name>
    The time dependent attribute SID table of a characteristic for access via time dependent attributes.
    Name of the table: /BIC/Y<InfoObject name>
    with regards,
    hari kv

  • How to Login to Web Dynpro developer studio in real time scenario.

    Hi,
    1. How to Login to Web Dynpro developer studio in real time scenario.
    Do we have login pad and User id to enter developer studio.
    Is the user id for login maintained in UME of J2EE engine.
    2. How to stop and start j2ee engine in real time. Is it same SAP Management console is used like in Demo version.
    3. If I use central server, Do I have to install GUI like SAP R/3 GUI to Develop, test and deploy my application.
    Cheers,
    Sam

    Hi,
    What do you mean with real time scenario? Do you talk about runtime?
    NetWeaver Developer Studio (NWDS) is only for design time and you install it on the local PC/laptop of the developer. The 'connection' between NWDS and engine is specified in the preferences (Window->Preferences->SAP J2EE engine) of NWDS. The development track is in 'real life' (e.g. if the engine is a remote one) connected with support from SLD (System Landscape Directory) which is a tool for managing the NWDI (NetWeaver Development Infrastructure). In normal case, there are so-called 'development configurations' that can be imported into NWDS (Window->Preferences->Java Development Infrastructure).
    For starting and stopping the engine, there are several possibilities: SAP MMC, view in NWDS or console.
    If you've a central server, you connect your NWDS to this central server and then you can deploy to this central server.
    Regards,
      Jan

  • How to Logon to Web Dynpro developer studio in real time scenario.

    Hi,
         1. How to Login to Web Dynpro developer studio in real time scenario.
             Do we have login pad and User id to enter developer studio.
             Is the user id for login maintained in UME of J2EE engine.
         2.  How to stop and start j2ee engine in real time. Is it same SAP Management console  is used like in Demo version.
         3. If I use central server, Do I have to install GUI like SAP R/3 GUI to test and deploy my application.
    Cheers,
    Sam

    Hi,
    What do you mean with real time scenario? Do you talk about runtime?
    NetWeaver Developer Studio (NWDS) is only for design time and you install it on the local PC/laptop of the developer. The 'connection' between NWDS and engine is specified in the preferences (Window->Preferences->SAP J2EE engine) of NWDS. The development track is in 'real life' (e.g. if the engine is a remote one) connected with support from SLD (System Landscape Directory) which is a tool for managing the NWDI (NetWeaver Development Infrastructure). In normal case, there are so-called 'development configurations' that can be imported into NWDS (Window->Preferences->Java Development Infrastructure).
    For starting and stopping the engine, there are several possibilities: SAP MMC, view in NWDS or console.
    If you've a central server, you connect your NWDS to this central server and then you can deploy to this central server.
    Regards,
      Jan

  • Regarding REAL time scenarios

    can any one give me real time scenario . or real need of the following scenarios...
    1. webservice to RFC
    2.HTTP to RFc
    3.file TO RFC
    4.file TO database
    looking forward for your help..

    Hi,
    Real time scenario depends on requirement and client environment, some times same requirement will to with different ways, ie. source and target channels will be change.
    1. webservice to RFC
        Here source is web service (SOAP) and target is R3 system, this scenario will be configure when sender can provider web service else it is not possible.  At receiver end generally will upload data through IDOC, if we want sync communication will go for RFC
    2.HTTP to RFc
       This requirement is same as above but without webservice
    3.file TO RFC
      This requirement will come when source data is flat file or xml file and receiver is R3 above we discussed
    4.file TO database
    This requirement will come when source data is flat file or xml file and receiver is external data base like orcale, Msaccess etc databases
    Find below links will help you for configuration
    RFC-Webservice:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/336365d3-0401-0010-9884-a651295aeaa9
    Invoke Webservices using SAPXI
    Testing XI exposed Web-Services
    http://frprjsp2.prj.fr:8000/sap/bc/srt/rfc/sap/ZPM_CREDIT_CHECK_WSD3?wsdl
    http://help.sap.com/saphelp_nw04/helpdata/en/d8/3bfc3f8fc2c542e10000000a1550b0/content.htm
    RFC -> XI -> WebService - A Complete Walkthrough (Part 1)
    RFC -> XI -> WebService - A Complete Walkthrough (Part 1)
    RFC -> XI -> WebService - A Complete Walkthrough (Part 2)
    RFC -> XI -> WebService - A Complete Walkthrough (Part 2)
    File 2 RFC:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/file-rfc-file%28without+bpm%29
    RFC Scenario
    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
    File to JDBC
    FILE to JDBC Adapter using SAP XI 3.0

  • Send me real time scenarios

    Hi Experts,
    Please send me real time scenarios and u r facing any rela time tickets please send me to my mail id
    deleted
    Thanks & Regards
    G.Narayana

    Almost a duplicate of this thread: hi..everyone..plz share realtime unix shellscript commands
    and just as badly requested.
    Read: Re: 2. How do I ask a question on the forums?
    +Locking this thread+

  • Real time scenarios to send the IDOC

    Hi experts,
          I need the real time scenarios to send the IDOC to EDI and receding the data into IDOC from EDI.
    please give the full details where can i get and please send all the procedure step by step with real time scenarios its most helpful to me.
    Thanks
    Natala.

    Hi ,
    Check the following links also..
    Re: IDOC to File Scenario
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/877c0d53-0801-0010-3bb0-e38d5ecd352c
    sekhar

Maybe you are looking for

  • A simple BPEL process

    Hi all, I'm working on Petri Nets verification and I'm new to BPEL but I need a simple BPEL process to proceed and I'm running out of time. The needed function in BPEL is a one that takes x and y and returns z=y/x. Your help is highly appreciated. Th

  • Infotype 0008

    Hi,      While Hiring an Employee,the Basic salary was entered as 10,000/- instead of 11,000/-.It was noticed after two Months,Now what is the procedure to give that Employee the remaining 1,000/- salary for Jan,Feb&11,000/- from March? Regards, Chik

  • Is it possible to download a free trial mac os?

    I want to know how to develop apps for Iphone. And to be able to do that you must have a mac or something right?. I wonder if apple provides a free trial of mac os? if yes, where can I find it? Thanks

  • Correct Choice of the QUARTER Bridge Type

    Hello, We have to measure 80x SG (strain gauge) channels with 20x NI-9237 modules in 3x cDAQ-9188 chassis. The CEng guy wants to use a passive SG for temperature compensation in all channels (although not needed because we use self compensating SGs i

  • French translation program with grammar and spell check?

    Does anyone know of any really good translation programs where you can write a document in english and the program will translate it to french? The program would also need to have spell and grammar checks.  Thanks