Documentation on Designing tips - for different scenarios

Hi Gurus:
Is there any good doc's for 'Designing tips - for different scenarios' like using Line Item Dimensions, aggregates, copying ODS to ODS, cube modelling, cache....
The common scenarios we come across in real life..Of course I understand it varies from client to client
Would really appreciate any help..
Many thanks

hi,
there are docs in sdn forum may help, explore in business intelligence section, also service.sap.com/bi
efficient infoprovider modeling
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/79f6d190-0201-0010-ec8b-810a969028ec
aggregate
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3f66ba90-0201-0010-ac8d-b61d8fd9abe9
cache
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/31b6b490-0201-0010-e4b6-a1523327025e
hope this helps.

Similar Messages

  • Design Concern for XI Scenario!

    Hi All,
    Do you have any design solutions for following scenarios with respect to BPM,Adapaters and sync/async flow:
    1. JSP -
    > XI---->DB
    2. JSP<--->SAPR/3<->XI<--->DB
    3. DB-->XI->JSP
    4. JSP<->XI<--->DB
    Appreciated your  time! Will get you reward!
    Thanks,
    PILearner.

    I want to add more scenarios like
    oracle -
    xi--.NET--
    R/3
    and more hetrogeneous environment
    Does any one know simple case studies or how to guides for hetrogenity in XI

  • Need pdf file links for different scenarios

    Hi folks,
    I am new to PI.Please can any body provide me pdf file links for different scenarios like   File to File, File to JDBC,JDBC to File,File to RFC, RFC to File, File to IDOC, IDOC to File, Http to RFC, Web services to RFC, File to Mail,ABAP to ABAP proxy and  Java Proxies to JDBC.
    Thanks in advance.
    SAP XI/PI Moderator ****************
    Very Simple. Search SDN.
    Thread Locked.
    SAP XI/PI Moderator ****************
    Edited by: Aashish Sinha on Feb 21, 2012 1:36 PM

    hi chandra, do you have the pdf file for fi-ca configuration

  • How can i set different number of iterations for different scenario profiles that we add to "AutoPilot" in load testing of OATS

    Hi,
    I have few set of load test scenarios, I would like to add each of these test scenarios to "AutoPilot" and run each different scenario profile at different number of iterations.
    As in Oracle Load Testing the "Set Up AutoPilot" tab I see  a section like this "Iterations played by each user: ", which says run these many iterations for every virtual user of all profile added under "Submitted Profile Scenario". So is there any thing like that to set different iterations for every scenario profile added in Autopilot.
    Thanks in advance

    It's not a built-in feature to override a page's styles on a tab-by-tab or site-by-site basis, but perhaps someone has created an add-on for this?
    It also is possible to create style rules for particular sites and to apply them using either a userContent.css file or the Stylish extension. The Greasemonkey extension allows you to use JavaScript on a site-by-site basis, which provides further opportunity for customization. But these would take time and lots of testing to develop and perfect (and perfection might not be possible)...
    Regarding size, does the zoom feature help solve that part? In case you aren't familiar with the keyboard and mouse shortcuts for quickly changing the zoom level on a page, this article might be useful: [[Font size and zoom - increase the size of web pages]].

  • Please suggest me a suitable design pattern for the scenario below

    Hello,
    I have around three to four methods in a class. And their invocation is mutually exclusive that only one of them can be called depending upon the scenario. usually to acheive this, what we do is, write if and else loops and depending upon the scenario, we call the method correspondingly. i thought of avoiding this if else loops and would like to know whether there is any possibility for achieving the same without if else loops? if yes how do we do this? is there any design pattern available?
    Thanks, Aravinth

    Hi,
    In java we have something is called reflection; reflection is very powerful API. I would suggest the below to start with
    public class Foo {
         public static final String METHOD_ONE="methodOne";
         public static final String METHOD_TWO="methodTwo";
         public void methodOne() {
              System.out.println("method one is being invoked..");
         public void methodTwo() {
              System.out.println("method two is being invoked..");
         public void methodInvoker(String scenario) throws Exception {
              Class clazz =this.getClass();     
              Method method =clazz.getMethod(scenario, new Class[]{} );
              method.invoke(this, new Object[]{});
         public static void main(String args[] ) throws Exception  {
              Foo foo = new Foo();
              foo.methodInvoker(Foo.METHOD_ONE);
              foo.methodInvoker(Foo.METHOD_TWO);
         }I hope this could help
    Regards,
    Alan Mehio

  • Need a Effective Design Pattern for Different Validation methods ???

    Hi All,
    I am having different validation methods with separate functions. I like to know the Best and Effective Design Pattern to do this.
    for example
    validateUserId()
    validatePassword()
    validateAuthentication()
    validateSession()
    validateConnection()
    .... etc......
    Can anybody help me to solve this?
    Thanks,
    J.Kathir

    Hi there - is this the kind of thing you wanted?.
    This structure has served me well. There is quite a lot to it and lots you need to infer but you should be able to work it out!
    It works for EJB & swing etc (I believe)..
    It doesn't use exceptions to return validation messages.
    It doesn't use lots of little objects. The code is very explicit & pretty simple.
    public class PersonValidator
    Person myData;
    public PersonValidator() {
    //personId will be 0 and we are in nsert mode
    myData = new Person();
    public PersonValidator(long personId) {
    //personId will have a value and we are in update mode
    myData = PersonDb.getPerson(personId);
    // =================================Single field validation
    // =================================For swing apps to call - not over network.
    // =================================Use validateData method
    public String validateDateOfBirth(String dataOfBirthStr) {
    String msg = "";
    msg = validateDateStr(dataOfBirthStr);
    if (!msg.equals("")) return msg;
    public String validateSurname(String surname) {
    String msg = "";
    if (surname.equals("")) return "surname must be entered";
    //=============================================Cross Validation
    public List crossValidateAndSave(boolean saveData) {
    String msg = "";
    List valerrs = new ArrayList();
    if (surname.equals("Collins") && dateOfBirth.compareTo("???")) {
    List.add("Candidate is lying about their age. Please enter a realistic Date of birth");
    if (valerrs.size() == 0) {
    if (saveData()) {
    personDb.saveData(myData);
    // =========================To validate across the netwrok this lets you
    // pass all the data in 1 go & receive multiple messages in reply.
    // AN EJB can delegate to this code or this code could be in the EJB.
    // @param stopAtFirstMessage flag allow efficiency if app ccan't handle multiple validation
    // erros at a time.
    // @param saveData flag allows validation without saving - allows for confirm message.
    // @param EditPersonGuiData - What the user types in. Numeric data & dates can be
    // in Strings. Using struts this could be the formBean.
    public List validateData(EditPersonGuiData inputData, boolean stopAtFirstMessage, boolean saveData) {
    String msg = "";
    List valerrs = new ArrayList();
    msg = validateDateOfBirth(inputData.dateOfBirth);
    if (!msg.equals("")) valerrs.add(msg);
    if (stopAtFirstMessage) return valerrs;
    valerrs = crossValidateAndSave()
    return valerrs;
    }

  • Account postings for different scenarios

    Hi
    How accounts are posted in
    *Normal Billing*
    *Inter Company Billing*
    *Credit memo*
    *Debit memo*
    *and Intercompany stock transfer order.*
    Thanks in advance,
    Thanks,
    KP

    Hi,
    Please find the below link which mentioned accounting enteries for all possible scenario's .
    http://e-mory.blogspot.com/2007/05/sd-accounting-entries.html
    Hope this will help you !!1
    Regards,
    Krishna O
    Edited by: Krishna O on Jun 17, 2010 3:49 PM
    Edited by: Krishna O on Jun 17, 2010 3:51 PM

  • Translate not working for Budget rate for different scenarios

    I have created 2 new scenarios and the custom4 exchange rates is only working for [None] but not for BUDR, BUDRPY, or CONR.
    I can't see anything obvious within the translate rule that affects these new scenarios.
    '     =========================
    '      (25) Translation
    '     =========================
    Sub Translate()
         Dim strYear,aC2,aC3,aC4,aC5,aC6,opinp,curr,svt16,op,fxinp
         strYear = HS.Year.Member()
              aC2 = HS.Custom2.List("MVMT_EQ","[Base]")
              aC3 = HS.Custom2.List("MVMT_IFA","[Base]")
              'aC4 = HS.Custom2.List("MVMT_IFA_DEPN","[Base]")
              aC5 = HS.Custom2.List("MVMT_MASTER","[Base]")
              aC6 = HS.Custom2.List("MVMT_INVEST","[Base]")
              opinp = ".C2#OPBAL_INP.C4#[None]"
              curr = ".C4#[None]"
              svt16 =     ".C2#MVT1600.C4#[None]"
              op = ".C2#OPBAL.C4#[None]"
              fxinp = ".C2#FXINPUT.C4#[None]"
    HS.Trans "C4#BUDR", "", "A#BUDR", ""                                             
    HS.Trans "C4#BUDRPY", "", "A#BUDRPY", ""                                        
    HS.Trans "C4#CONR", "", "A#CONR", ""
    Both these new scenarios are setup the same as our main Actual scenario as YTD for data input.
    We do expand on the translation rule for specific C2 balances for just the Actual scenario for the various balance sheet sections like Equity, Investments to apply specific exch rates for OPE and movements but this should not affect these new scenarios I would not have thought.
    Grateful for any assistance.
    Thanks
    LG
    I found another rule that could be where my problem stems from: - halfway down it refers to Budget and Forecast scenarios and my new scenarios are Cashflow and Strategy so do I have to add them here??
    Sub copyC4None()
         'Debug
         If Debug = True then
              Writetxt("Debug," & HS.Entity.Member() & ",CopyC4None sub-routine started")
         End If
         'Copy all data for conversion to Budget rates
         dim strReviewStatus,strScenario,strYear,strPeriod,strEntityDefCurrency,strEntity,strView,strDataUnit,myDataUnit,lNumItems,i,lAccount,lICP,lCustom1,lCustom2
         dim lCustom3,lCustom4,dData,strCustom4,lC4Dest,strAccC4Top,sAccount
         strScenario=HS.Scenario.Member()
         strPeriod=HS.Period.Member()
         strYear=HS.Year.Member()
         strEntity=HS.Entity.Member()
         strReviewStatus = HS.ReviewStatus("")
    ' Copy Entity Currency to Entity Currency and Entity Curr Adj to Entity Curr Adj on the alternate translation members
              'strDataUnit = "C4#[None].V#<Entity Curr Total>"
              Select Case lcase(Left(strScenario, 6))
              Case "budget", "forecast", "budget_final"
                   strDataUnit = "W#YTD.C4#[None]" ' changed by sarav on 29-05-2008 from W#Periodic to W#YTD
              Case Else
                   'strDataUnit = "C4#[None].V#<Entity Curr Total>"
                   strDataUnit = "C4#[None]"
              End Select
              SET MyDataUnit = HS.OpenDataUnit(strDataUnit)
    lNumItems = MyDataUnit.GetNumItems
              IF strScenario <> "" THEN
    For i = 0 To lNumItems - 1
         Call MyDataUnit.GetItemIDs2(i, lAccount, lICP, lCustom1, lCustom2, lCustom3, lCustom4, dData)
                             sAccount = HS.Account.MemberFromID(lAccount)
                             sAccountUD1 = Left(HS.Account.UD1(sAccount),2)
                             strAccC4Top = HS.Account.C4Top(sAccount)
                             If strAccC4Top = "TotalCustom4" And sAccountUD1 = "TB" Then
                                  For Each strCustom4 In HS.Custom4.List("EXCHANGE", "[Base]")
                   If strCustom4 <> "[None]" Then
                   lC4Dest = HS.Custom4.IDFromMember(strCustom4)
              Call HS.SetData(0, lAccount, lICP, lCustom1, lCustom2, lCustom3, lC4Dest, dData, False)
              End If
              Next
                             End If
                        'End If
    Next
              END IF
    Edited by: jamdom on Aug 3, 2011 11:42 PM

    I have worked it out - the first issue was the scenarios in the Select Case were not all stated nor were they 6 characters in length
    Select Case lcase(Left(strScenario, 6))
    Case "budget", "forecast", "budget_final"
    now Case "Budget", "Foreca", "Cashfl", "Strate", "Actual"
    The second issue was the account list in UD1 - I had to amend the member list to include these new accounts, then in the metadata tag the UD1 for these codes then amend the sAccountUD1 to include this new list
    sAccount = HS.Account.MemberFromID(lAccount)
    sAccountUD1 = Left(HS.Account.UD1(sAccount),2)
    strAccC4Top = HS.Account.C4Top(sAccount)
    If strAccC4Top = "TotalCustom4" And sAccountUD1 = "TB" Then
    now If strAccC4Top = "TotalCustom4" And sAccountUD1 = "TB" or sAccountUD1 = "CF" Then
    and it works!! Yeh!!
    LG

  • Any Design Tips For My New Site

    Hi All -  I am quite new to web development.  Can you check out my website and let me know of any feedback you have?
    [ link removed by moderator - self-promotion is not permitted ]
    I initially spent a decent amount of time, too much time, pondering and trying to select a nice theme.  Once I realized it, I thought I should just go with the default 2012 theme and focus on simplicity.  The result is a much cleaner site.  I figure that later, some day, I can actually have a pro design make the appropriate changes.
    Thanks in advance!

    Eric Klinger wrote:
    Obviously since this is my first time running my own existence on the net, I am wondering if there are any security issues I should look out for.  Are typical Linux security features like mod_security or fail2ban recommended for Mac servers on the net?
    I don't generally run those tools, though AFAIK ports of those packages do exist. 
    Keep and monitor your logs.  Make and keep multiple remote backups, particularly of your core data and database contents, and possibly also your log files.   Don't allow your server to have delete access to your stash of off-server backup files; access is write-only, and preferably backup files are then relocated out of the staging area by remote scripts.  Keep some depth to your backups, and to your archived logs.  Know what normal traffic in the server logs looks like, so that you can know what trouble looks like.   Keep your software patches current.  Keep whatever content management systems and other installed software you're running current, too.  If you're running content management systems, get onto the security notification lists for those packages.  Keep as few IP ports active as possible and either use certificates or — if you must use passwords — avoid picking any of the ten thousand most common passwords.  No telnet and no ftp.  If you have passwords or sensitive data, encrypt it.
    If you're inclined for a little reading, Apple and NSA have security manuals; not the most current versions, but might be worth a look.

  • How to Design ODS for a scenario

    Hi All,
    I need to load a flat file into an ODS. It has got separate fields for the ID and text of a characteristic(Key Field) and then I have few keyfigures/ DataFields and a navigational attribute in the ODS. The format looks like as follows:
    Pnt_ID Pnt_Txt Matl_type Jan        Feb            Mar           APr            May              Jun             Jul
                                          Min Max    Min Max     Min Max    Min Max    Min Max    Min Max    Min Max
    How do I design the ODS in such a secnario?
    Please suggest a solution.
    Regards,
    Harika.

    Hi,
           According to me in DSO use
    2 characteristic in Key fields
    Pnt_ID, Calmonth
    2 keyfigure in data field
    Max amount , Min Amount
    and then load Print_txt in print_ID using text upoad.
    Hope this will solve your issue.
    any problem then ask me.
    regards,

  • YTD and MTD for different scenarios

    Hello,
    i'm looking for a possibility to upload actual figures as YTD value and Forecast figures as MTD value.
    The point is that i don't want to have another dimension to defferentiate between two ways of data input (we have already 12 dimensions :-( )
    Does anyone have any idea how to solve my problem.
    any suggestions are highly appreciated.
    Many thanks,
    Ilias

    There are a number of ways this could be done, but it will depend on what the users/requesters want to forecast against. For example (simple example), it could be added to an "account" dimension, but if they want to see MTD and YTD against balances then that will not work.

  • Need Message Type Creation Steps for Different Scenarios

    Hi Friends,
    I have done following steps for Outbound IDoc [Extended IDoc]
    1. Create custom Message Type                           WE81
    2. Create custom Segments               WE31
    3. Create IDoc Extension               WE30
    4. Create IDoc Type [Basic+Extu2019n]          WE30
    5. Link Custom IDoc with Message Type          WE82
    6. Activate CP for Custom Message Type                     BD50
    7. Activate Change Pointers globally Flag on     BD61
    8. Maintain custom message type in CDM                     BD64
    9. Define partner profile for custom msgtype                    WE20
    After completion of the above steps.
    I am unable to do the following steps.
    10. Checking the IDoc Creation                          BD10
              or
    11. Execute CP IDoc generation Program     RBDMIDOC
    Here  these steps I am unable to find Message Type.
    If we create message type thru BD53 [std idoc] it will come.
    but my situation is for extended IDoc I need to create message type.
    If any one worked on this situation Help me out.
    Regards,
    Mutyapu4u.
    Edited by: naveen mutyapu on Jun 24, 2008 2:51 PM

    Hi,
    Check the link below:
    http://www.****************/Tutorials/ALE/ALEMainPage.htm
    Hope this helps..
    Regards,
    Sharath

  • Scaling front panel objects for different screen sizes

    Hi,
    Can anybody help me of designing Vi for different screen sizes. I have designed a VI for a monitor of small size and lower resolution but when I open the same Vi on a different monitor,objects are not aligned properly. The properties which I have changed are
    Window appearence->Default
    Window Size -> Panel size 0,0   & Tick marked options of Maintain propotions for different monitors and scale all objects 
    Window Run Time position-> Maximum
    Regards
    Imran
    Solved!
    Go to Solution.

    Imran,
    I can't solve your problem entirely.  However when I have to write a program that will be deployed on a variety of monitor sizes, I tend to set the size of the Front Panel to suit the smallest monitor, and then remove the ability of the user to resize it.
    Also, set it to run in the centred position.
    See attachments.
    Many Thanks,
    Dan
    Dan
    CLD
    Attachments:
    Customize Window Appearance.JPG ‏44 KB
    VI Properties.JPG ‏29 KB

  • How to design EDW for source systems from different Time-Zones

    How to design EDW for source systems from different Time-Zones?
    Suppose IT landscape has a global BW in New York, and source systems in americas, europe and asia, then how the time-zones effect on time related things like delta selections on date or timestamp etc.

    As you said BW is global in NY, your source system must be global too. People from various locations can connect to same source system and thus timestamps for delta is always maintained as 1 single time. We have same scenario in our project. Our R/3 system is used by users in US and Europe. So we run deltas twice in day to make sure we got deltas from both locations.
    If scenarios was such that all locations connect to separate R/3 system, then obviously you have multiple queues. That is unique delta queue for each source system so deltas will be pulled as per data in respective queues.
    Abhijit

  • Need documentation for XI Scenarios

    Hi All,
    This is Revathi, I am learning XI. It would be great if anybody could send the documentation(Screen shots, navigation) for the following scenarios to [email protected]
    1. FILE TO FILE
    2. FILE TO JDBC.
    3. HTTP TO JDBC.
    4. HTTP TO SAP-R/3
    5. FILE TO SAP
    6. SAP TO JDBC
    7.USING SOAP ADAPTER UPDATE THE TABLE IN SAP-DB BY IMPORTING RFC FUNCTION MODULE'S.
    8. SAP TO FILE.
      And also I need documentation as well as scenarios for BPM.
    Please kindly do the needful.
    Thanks & Regards
    Revathi

    Hi,
    Here the list
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions - XI Faq
    /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
    /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
    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] [original link is broken] [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /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] [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
    XI Software Logistics  - Transportation
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping - File to Multiple IDocs
    /people/sap.user72/blog/2005/05/02/useful-sap-notes-for-xi - Important SAP XI Notes
    /people/shabarish.vijayakumar/blog/2005/08/03/xpath-to-show-the-path-multiple-receivers - XPath to show the path
    /people/sravya.talanki2/blog/2005/10/27/idoc146s-not-reaching-xi133-not-posted-in-the-receiver-sap-systems133 - Idoc’s not reaching XI…. Not posted in the receiver SAP
    /people/siva.maranani/blog/2005/09/16/xi-how-to-on-jdbc-receiver-response - XI: How-to on JDBC receiver response
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2162- [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] Choose the Right Adapter to integrate with SAP systems
    /people/sravya.talanki2/blog/2005/08/23/sender-xi-ftp-adapter-with-regular-path-expression-150-abap - Sender XI FTP Adapter with Regular Path Expression – ABAP
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change - IDOC bundling
    /people/sravya.talanki2/blog/2005/12/02/sxicache--ripped-off - SXI_CACHE - Ripped Off
    /people/sap.india5/blog/2005/12/06/xi-ccms-alert-monitoring-overview-and-features - CCMS Alert Monitoring
    Thanks,
    Prateek

Maybe you are looking for

  • I use Go Daddy mail for work, and I can no longer receive mail to Apple Mail, no matter what I try. Help?

    My work uses Go Daddy for our mail server at work. Up until 2 weeks ago, it was connected to Apple Mail using IMAP just fine. Then I stopped being able to receive mail to Apple mail or my phone. Completely. I've tried deleting the account and re inst

  • Intel mac mini wont boot after system restore

    Hi, I ran the system restore on my intel mac mini using the genuine leopard cd that came with it. Now it wont boot. When you press power the light comes on but it does not chime and there is not video output to any monitor. Anyone know what could be

  • Know how there's two timers (left, right)? the right one doesn't run

    Normally there are two timers next to the current song status: 1) how much time since the beginning of the song, and 2) how much time until the end. For some reason, the second one doesn't work and all it displays is the total length of the current s

  • Must be able to search FOLDERS

    I did my ranting elsewhere but I organize jobs by FOLDERS. A new job comes in I give it a job number/name (1476 Gourmet Express). Consequently, at some point in time I may want to search all Gourmet Express folders to consolidate elements for viewing

  • What is going on with Acrobat???

    What is going on with Acrobat???  When I try to combine images that are all the same size, they go awry and randomly change size after the pdf is created. My portfolio pdfs look like a kindergartner created them!