Date Difference in SAP Webi

Hi experts,
I have two columns, one is expiration Date and other is Curr Day-Final.
expiration Date is of Date type and Curr Day-Final is of String type. I want to subtarct the two dates and want to display the number of Days in another variable.
Please advise how to achieve the desired results.

Hi Abhi,
Create the following Variables...
1) Date Diff = DaysBetween([ETA DATE];[Receipt Date])
2) Mod = Mod([Date Diff];7)
3) Round Weeks =(([Date Diff] - [Mod]) / 7) * 2
4) Day_Name = DayName([Receipt Name])
5) Final = If [Day_Name] = "Monday" And [Mod] = 1 Then 0
ElseIf [Day_Name] = "Monday" And [Mod] = 2 Then 1
ElseIf [Day_Name] = "Monday" And [Mod] = 3 Then 2
ElseIf [Day_Name] = "Monday" And [Mod] = 4 Then 2
ElseIf [Day_Name] = "Monday" And [Mod] = 5 Then 2
ElseIf [Day_Name] = "Monday" And [Mod] = 6 Then 2
ElseIf [Day_Name] = "Tuesday" And [Mod] = 1 Then 0
ElseIf [Day_Name] = "Tuesday" And [Mod] = 2 Then 0
ElseIf [Day_Name] = "Tuesday" And [Mod] = 3 Then 1
ElseIf [Day_Name] = "Tuesday" And [Mod] = 4 Then 2
ElseIf [Day_Name] = "Tuesday" And [Mod] = 5 Then 2
ElseIf [Day_Name] = "Tuesday" And [Mod] = 6 Then 2
ElseIf [Day_Name] = "Wednesday" And [Mod] = 1 Then 0
ElseIf [Day_Name] = "Wednesday" And [Mod] = 2 Then 0
ElseIf [Day_Name] = "Wednesday" And [Mod] = 3 Then 0
ElseIf [Day_Name] = "Wednesday" And [Mod] = 4 Then 1
ElseIf [Day_Name] = "Wednesday" And [Mod] = 5 Then 2
ElseIf [Day_Name] = "Wednesday" And [Mod] = 6 Then 2
ElseIf [Day_Name] = "Thursday" And [Mod] = 1 Then 0
ElseIf [Day_Name] = "Thursday" And [Mod] = 2 Then 0
ElseIf [Day_Name] = "Thursday" And [Mod] = 3 Then 0
ElseIf [Day_Name] = "Thursday" And [Mod] = 4 Then 0
ElseIf [Day_Name] = "Thursday" And [Mod] = 5 Then 1
ElseIf [Day_Name] = "Thursday" And [Mod] = 6 Then 2
ElseIf [Day_Name] = "Friday" And [Mod] = 1 Then 0
ElseIf [Day_Name] = "Friday" And [Mod] = 2 Then 0
ElseIf [Day_Name] = "Friday" And [Mod] = 3 Then 0
ElseIf [Day_Name] = "Friday" And [Mod] = 4 Then 0
ElseIf [Day_Name] = "Friday" And [Mod] = 5 Then 0
ElseIf [Day_Name] = "Friday" And [Mod] = 6 Then 1
ElseIf [Day_Name] = "Saturday" And [Mod] = 1 Then 1
ElseIf [Day_Name] = "Saturday" And [Mod] = 2 Then 1
ElseIf [Day_Name] = "Saturday" And [Mod] = 3 Then 1
ElseIf [Day_Name] = "Saturday" And [Mod] = 4 Then 1
ElseIf [Day_Name] = "Saturday" And [Mod] = 5 Then 1
ElseIf [Day_Name] = "Saturday" And [Mod] = 6 Then 1
ElseIf [Day_Name] = "Sunday" And [Mod] = 1 Then 1
ElseIf [Day_Name] = "Sunday" And [Mod] = 2 Then 2
ElseIf [Day_Name] = "Sunday" And [Mod] = 3 Then 2
ElseIf [Day_Name] = "Sunday" And [Mod] = 4 Then 2
ElseIf [Day_Name] = "Sunday" And [Mod] = 5 Then 2
ElseIf [Day_Name] = "Sunday" And [Mod] = 6 Then 2
6) Total_Days = [Date Diff] - [Round_Weeks] - [Final]   // which in-turn will give you 4 as result.
Regards,
G Sujitha

Similar Messages

  • Difference between SAP web AS and ITS

    Hi everyone,
    Can anyone tell me the difference between SAP web AS
    and ITS.

    Hi Aditya, please let me know if the following helps.
    What exactly is the SAP Web Application Server?
    The SAP Web Application Server is the reliable, open standard-based application server from SAP. It supports both J2EE and ABAP, and serves as the underlying infrastructure for all new and upcoming SAP solutions, like SAP R/3 Enterprise, SAP Portal, SAP Exchange Infrastructure, and all other SAP components. The SAP Web Application Server is not a new product, it is the natural evolution of proven SAP application server technology formerly known as SAP Basis. It provides the platform to develop, execute, and operate Web applications and Web services as well as traditional SAP GUI based applications
    Does the SAP Web Application Server replace the SAP Internet Transaction Server (SAP ITS)?
    No, the SAP Internet Transaction Server (SAP ITS) will continue to be supported in the future and is integrated into Web Application Server from version 6.40 on. This is because the SAP ITS will in future display Dynpro-based SAP applications to the Web, either using the HTML-GUI or with HTML-template based IACs. This integration reduces the additional hardware for an external ITS. All SAP ITS based applications and the administration will work as before.
    Flow Logic technology will also not be supported by the SAP Web Application Server. ITS Flow Logic is an approach to Web application development that is now completely covered by the new "Business Server Pages" technology and others. New applications based on ITS Flow Logic are no longer developed by SAP. Existing applications based on ITS Flow Logic will continue to be supported. SAP recommends customers use the Business Server Pages for new projects or projects in an early stage of development instead of ITS Flow Logic.
    If the above didnt help, please let me know, I can try to resaerch more links and let me know..
    Thanks
    Subbu

  • Data storage on a SAP WEB AS cluster environment

    Hi,
    We are using the SAP WEB AS 7.0 and I'm facing a problem with a single sign on (SSO) in a clustered environment.
    The SSO works like this:
    1. On an application outside of our WEB AS (Customer Application) a user logs on and an object called Token is send to a servlet on our application on the WEB AS (Internal Application). This Token is saved within the servlet context and contains data of the user.
    2. If the user then decides to call our Internal Application, he clicks a link on the Customer Application and a second Token is send to our Internal Application. A new session in our Internal Application will be created and a search in the servlet context for the first Token for this user starts. If the first Token is found, the data from the second token will be matched with the first token.
    This works fine in a single node environment. But in a clustered environment the Token objects will be spread among all server nodes because each server node holds its own servlet context. And there is my question: <b>How can I store the first Token object, so that I can reach the data within other session from every other server node?</b>
    Sticky sessions are not an option, because this SSO works asynchronous and we have a session for the first Token and another session for the second Token. There are up to 800 concurrent users and the time difference between the first and the second token can be milliseconds. So I’m afraid storage in the database would not work either. 
    I hope someone can help me with that.
    Nora

    Hi Nora,
    When you persist the information you need in the database, you don't have a problem with multiple server nodes. Simply create a CMP EJB ("Container Managed Persistence") that holds everything you need for your single sign on. You just have to keep in mind hat you need something that does a cleanup for the data you stored in the database...
    As far as I know, there is no way to deal with this issue without using a persistency layer.
    Best regards,
    Frank

  • Cannot see data in SAP.Web.UI.Controls.Table

    Hi,I have created a portal project and dragged a sap table into the design area. then i call a webservice and bind the resulting dataset to the table. the dataset seems to bind, since i can see there are the right number of pages in the table, but i cannot see any of the data. all the rows are blank. am i treating the ascx file correctly? i deploy and browse to test it.
    this is the code in the aspx:
    <%@ Register TagPrefix="sap" Namespace="SAP.Web.UI.Controls" Assembly="SAP.Web, Version=1.2.0.0, Culture=neutral, PublicKeyToken=50436dca5c7f7d23" %>
    <%@ Control language="vb" Codebehind="PortalComponent1.ascx.vb" AutoEventWireup="false" Inherits="pdkdemo2.PortalComponent1"  targetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
    <!%@ PortalComponent name="PortalComponent1" %>
    <LINK href="C:\Program Files\SAP\SAP Portal Development Kit for .NET 1.0\Controls\ur\ur_design.css"
         type="text/css" rel="stylesheet">
    <body class="prtlBody">
         <sap:Table id="Table1" runat="server">
              <sap:Caption Text="Table" ID="Caption2"></sap:Caption>
              <sap:TableRow ID="Table1_ItemTemplate">
                   <sap:TableCell ID="TableCell4" Title="Column1">
                        <sap:TextView ID="TextView4"></sap:TextView>
                   </sap:TableCell>
                   <sap:TableCell ID="TableCell5" Title="Column2">
                        <sap:TextView ID="TextView5"></sap:TextView>
                   </sap:TableCell>
                   <sap:TableCell ID="TableCell6" Title="Column3">
                        <sap:TextView ID="TextView6"></sap:TextView>
                   </sap:TableCell>
              </sap:TableRow>
         </sap:Table>
    </body>
    and this is the code behind:
    Imports System
    Imports System.Collections
    Imports System.ComponentModel
    Imports System.Data
    Imports System.Drawing
    Imports System.Web
    Imports System.Web.UI
    Imports SAP.Portal.Web.UI
    Imports SAP.UI
    Imports SAP.Web.UI.Controls
    Public class PortalComponent1
        Inherits SAP.Portal.Web.UI.PortalComponent
        Protected WithEvents Table1 As SAP.Web.UI.Controls.Table
        Protected WithEvents Caption1 As SAP.Web.UI.Controls.Caption
        Protected WithEvents Table1_ItemTemplate As SAP.Web.UI.Controls.TableRow
        Protected WithEvents TableCell1 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView1 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell2 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView2 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell3 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents Caption2 As SAP.Web.UI.Controls.Caption
        Protected WithEvents TableCell4 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView4 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell5 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView5 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell6 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView6 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TextView3 As SAP.Web.UI.Controls.TextView
        Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim proxy As New secblrnd.Service1
            Dim ds As DataSet
            ds = proxy.GetData("U020_EQUIP", "ALL", "NO", 0, "MOODLET1", "MOODLET1")
            Table1.DataSource = ds
            Table1.DataBind()
        End Sub
    #Region "Web Form Designer generated code"
        Protected Overrides Sub OnInit(ByVal e As EventArgs)
            ' CODEGEN: This call is required by the ASP.NET Web Form Designer.
            InitializeComponent()
            MyBase.OnInit(e)
        End Sub
        ' Required method for Designer support - do not modify
        ' the contents of this method with the code editor.
        Private Sub InitializeComponent()
        End Sub
    #End Region
    End class
    any assistance would be highly appreciated.

    Hi,
    The problem is that the SAP table doesn't support this kind of "dynamic binding" at the moment. The SAP table can contain any one of several controls in each cell, and these controls have several possible properties to bind to. So currently you have to "tell" the table what you want to bind to.
    You have several options:
    1. The easiest option, if you can create a typed dataset in design-time, according to what your webservice returns, then do that... and then put an instance of it on your portal component, and bind your table to that typed dataset (using the designer property grid). This should create a default ItemTemplate with all textViews in the cells, and the texts will be bound to the columns.
    2. Write code in ItemCreated Event handler of the table. This event will be raised for each row in the DS. There you can tell the cells to get the data from the content. Remember that you'd have to create the cells according to the number of columns and set the content of each cell to be what control you want (like TextView) and then fill the properties of that control.
    3. If you know the Data structure, but don't want to or can't create a typed DataSet - First define the columns using the designer (right click the table, select "edit columns"). Then in the event handler (from "2") just set the property "text" of each TextView which is in the content of each cell (use the Cell's property "TableCellContent" to get to the TextView control)
    4. Don't use databinding and create the table contents completely manually (See here -
    How to modify cells in a table?)
    One last thing, here's a link to some more explanations about DataBinding in SAP controls:
    https://media.sdn.sap.com/html/submitted_docs/PDK_for_dotNET_10/Programming%20with%20PDK%20for%20.NET/SAP%20NetWeaver%20.NET%20Controls/Data%20Binding/Complex%20Data%20Binding.htm
    If you choose a solution and need more help, just ask. 
    Regards,
    Ofer

  • Accessing sap tables data and display in webi

    Hi all,
    i installed business objects edge series.
    i want to access SAP tables data and display in webi for adhoc reporting.
    Is there any process to achieve this.

    Hi
    currently (April 2010) you have the following options:
    1. You load your R/3 data into an SAP BW and use universes based on BEx queries to create WebI reports
    2. You can use SAP rapid marts. They contain Data integrator mappings (you need an installation of the DI for this) to extract and load your SAP R/3 data into a relational database. Additionally they provide universes (based on a relational schema) hich ill allo you to build WebI reports.
    3. You can use the R/3 connector for the Data Federator (You need a DF installation for this). Please note that the R/3 connector is not yet a product rather just a PROTOTYPE. Take a look here: SAP BusinessObjects Web Intelligence Reporting for SAP ERP [original link is broken]
    4. You can try to access the underlying database directly using the appropriate DB drivers. Please note that this is NOT RECOMMENDED. This way you cannot leverage security defined on the R/3 side in your WebI reports and you will not be able to access all data as available in R/3 since some of them are stored encoded/compressed in the underlying tables.
    5. Instead of WebI you can use Crystal Reports and the R/3 drivers (eg. SAP Tables, Functions, Cluster) provided when installing the integration kit for SAP.
    Regards,
    Stratos

  • How to download data in excel from web report in sap ?

    how to download data in excel from web report made  in sap abap?
    through tcode smw0.

    for exemple using
    MS_EXCEL_OLE_STANDARD_DAT

  • Capturing data back to SAP from web application

    I have to call a java application from SAPGUI.For that I can use the methods in the class CL_GUI_HTML_VIEWER.
    In that Java application the user will be ordering the products and quantity.I have to capture this data back to SAP and update the order in SAP. How to capture the data from the called java application back to SAP ?

    Hi Gincy,
    if you just need to call the web applications and then parse the result (i.e. you do not need to display the output) you can user the CL_HTTP_CLIENT class.
    There is a sample program in the SAP Help at http://help.sap.com/saphelp_nw04/helpdata/en/1f/93163f9959a808e10000000a114084/frameset.htm
    Cheers
    Graham Robbo

  • Data Services - Error Consuming Web Service from SAP CE

    Hello all,
    I developed a very quick sample real-time job in Data Services just to test the web services and connectivity between BoBJ DS and SAP CE.  The real-time job doesn't do anything fancy, just converts characters from lower case to upper case.  In SAP CE I am attempting to use the web service navigator to test the WSDL (http://localhost:28080/DataServices/servlet/webservices?ver=2.0&wsdlxml).  SAP CE correctly connects to the WSDL and gives me a selection list where I can drill down to Real-Time Services -> my real time job.  I put in some test data and execute the web service and I get the following error:
    Invalid transport binding settingsDocument is not well-formed: Expected End-tag 'MAIN', received:a, on position: 0 (:main:, row:1, col:0)
    The strange thing is that the HTTP response message shows that the service actually executed, because the data has been converted to upper case as it was supposed to.  Also, if I go into the Data Services Management Console it shows the service was executed with no errors.  The strange thing is that I notice something wrong when I look at the response message vs. the source message:
    Source:
    <?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:MAIN xmlns:pns="private">
          <pns:RECORD>
            <pns:NAME>Test Name</pns:NAME>
            <pns:NUMBER>Test1234</pns:NUMBER>
            <pns:ADDRESS>123 Testing Lane</pns:ADDRESS>
            <pns:CITY>Santa Clara</pns:CITY>
            <pns:STATE>CA</pns:STATE>
            <pns:POSTAL>95057</pns:POSTAL>
          </pns:RECORD>
        </pns:MAIN>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Target:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><MAIN xmlns="private" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Documents%20and%20Settings\TEMP\Desktop\Schema.xsd">
    <RECORD><NAME>TEST NAME</NAME>
    <NUMBER>TEST1234</NUMBER>
    <ADDRESS>123 TESTING LANE</ADDRESS>
    <CITY>SANTA CLARA</CITY>
    <STATE>CA</STATE>
    <POSTAL>95057</POSTAL>
    </RECORD>
    </aw:MAIN></soapenv:Body></soapenv:Envelope>
    If you notice in the target message the closing <MAIN> tag is preceded by "aw".  I'm not sure what this means, and I'm not sure where it's coming from, but I think it could have something to do with the error because it doesn't match the opening tag. 
    I'm not sure if this is something that is set in Data Services?  I've checked around quite a bit but I am stumped!  Can anyone help?

    what is the version of dataServices you are using ? there was a bug that was fixed related to this issue, if you are on 12.1 (DS XI 3.1) then use the latest 12.1 Fix Pack 12.1.1.7
    if you are on 12.2 (DS XI 3.2) then use the latest SP and FP 12.2.2.1

  • Difference Between SAP Connectors and SAP Web Services Framework

    Hello,
    I would like to know the main difference between the SAP Connectors protocol (that uses SOAP) and the SAP Web Services Framework starting with NetWeaver.
    Thank you,
    Pedro Carrilho

    Hi Pedro,
    I guess you are talking about Business Connectors and XI.
    If that is the case, the differences are:
    SAP XI belongs to SAP Netweaver Technology, whereas BC is an Integration tool provided by Webmethods.
    SAP XI is based on a model called "Hub & Spoke" and Business Connectors are "point to point". So by using XI, what happens is that you do not redesign Solutions once again.
    With XI you save the entire integration knowledge of a collaborative process centrally in SAP XI: Objects at design time in the Integration Repository and objects at configuration time in the Integration Directory. In this way, SAP Exchange Infrastructure follows the principle of shared collaboration knowledge: You no longer need to search for information about a collaborative process in each of the systems involved, but can call this information centrally instead. This procedure considerably reduces the costs for the development and maintenance of the shared applications.
    Also SAP XI comes with pre-configured solutions bundled along with it, so you can straight-away use the solution instead of redesigning.
    Also i believe SAP XI is integrated as a required solution for some new mySAP solution like SRM, there are some scenarios within SRM requires SAP XI to be used and we cannot use BC's there.
    But incase if you do not have multiple systems connected and communication is between just 2 systems, BC should be sufficient, instead of investing on XI.
    But i guess slowly SAP will be stopping its support for BC, as SAP XI can do everything that BC does and even much more.
    Also go through these threads...
    Re: Business connector
    XI vs Connectors (Like JCo and .NET)
    I hope this is what you were looking for...
    Regards,
    Abhy

  • JCO difference between SAP J2ee 620 and Webas 640 for Internet Sales

    Does anyone have some information on how Internet Sales manages JCO calls to R/3 or CRM on WebAS 640?
    Till J2EE 620 the sapjco.jar file directory had to be in classpath along with the relevant dlls in WinNt directory.
    WebAs 640 Java installation doesn't mandate any such steps.
    How does this work? The jar probably is in the cluster/server/bin/ext folder but what about the native libraries? How are they loaded.
    I am having problems making RFC calls to R/3 from a web application deployed on SAP WebAS 640.
    This is not the internet sales application but a general J2EE application and I was wondering if i could use the same approach as used by Internet Sales to load the native libraries.
    Any help would be appreciated.
    Bharat.

    Vivek,
        We have the WebAs 640 Java system running on a AIX server. I placed the following folder under classpath
    /usr/sap/<SAPSID>/JC**/j2ee/cluster/server/bin/ext/com.sap.mw.jco/sapjrfc.jar
    The error thrown is
    JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'
    JCO.nativeInit(): Could not initialize dynamic link library sapjcorfc [Can't find library sapjcorfc  (libsapjcorfc.a or .so) in sun.boot.library.path or java.library.path
    sun.boot.library.path=/usr/java14_64/jre/bin
    java.library.path=/usr/java14_64/jre/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/RID/JC15/j2ee/os_libs:/usr/sap/RID/SYS/exe/run:/home/db2_mgr/sqllib/lib:/home/db2_mgr/sqllib/lib:/usr/lib:/usr/sap/RID/JC15/j2ee/os_libs:/usr/sap/RID/JC15/j2ee/os_libs:/usr/lib:/lib:/usr/sap/RID/SYS/exe/run:/home/db2_mgr/sqllib/lib:/home/db2_mgr/sqllib/lib]. java.library.path [/usr/java14_64/jre/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/RID/JC15/j2ee/os_libs:/usr/sap/RID/SYS/exe/run:/home/db2_mgr/sqllib/lib:/home/db2_mgr/sqllib/lib:/usr/lib:/usr/sap/RID/JC15/j2ee/os_libs:/usr/sap/RID/JC15/j2ee/os_libs:/usr/lib:/lib:/usr/sap/RID/SYS/exe/run:/home/db2_mgr/sqllib/lib:/home/db2_mgr/sqllib/lib]
    The problem is a search on libsapjcorfc.* only return dll files and no .so or .a files.
    Wondering how ISA loads the native libraries on AIX!
    Thx,
    Bharat.

  • SAP COPA Delivery and billing date difference

    Dear gurus,
    I am new to COPA and going on a COPA project.
    Here is one question that I have been searching answer for.
    At the month end reconciliation of FI COPA data, there could be a situtaion where the SD delivery takes place this month but the billing for the same happens next month. under this circumstance,
    1. how would a busness like to see the data?
    2. Is there a way to reconcile the data where there is such date difference to get the correct report?
    regards
    Roy

    Hi Roy
    This is often a problem and causes FI/COPA to be out of synch....
    However, please note that, this situation can also be a genuine one due to legal restrictions.. In some countries, you can not recognize revenue till customer gives you Proof of Delivery (POD)... In such cases, the PGI cost hits P&L in Month X and revenue hits P&L in Month X+1
    To avoid this situation, you have 2 options....Both are tried and tested approaches
    1. Use Exit RV60AFZB and write ABAP code saying that billing month cant be different than PGI month... This approach can be used if you are not bound by the legal restrictions I said above
    2. Another approach is to use accrual keys in your SD pricing procedure.. (Ask your SD guy to do this)
    a. At PGI: The accounting entry would be
    Stock issued, but not Billed a/c ........... Dr (This is also a balance sheet account)
    Stock /ac ............................................Cr (This is a Balance sheet acount)
    b. During Billing, the entry would be
    Customer .................................. Dr
    Revenue ....................................Cr
    COGS ..........................................Dr
    Stock issued, but not Billed a/c.....Cr
    This way, COGS and Revenue are both accounted in same month
    BR,Ajay M

  • XML IDOC data (hosted on a web server)   &  handling multiple WSDLs

    Hi ALL,
    1)how to design an Interface for picking up an XML IDOC data (hosted on a web server) which will be uploaded to SAP or converted to a file
    this is what the customer has given me ..can any one explain me this and help me how to more forward
    2).This Interface must use UDDI concept because we are going to use multiple BAPIs /RFCs as WSDLs
    what is this mean can any send me some document on this
    3).Use web-service navigator concept as we will be handling multiple WSDLs
    i worked on 1. to define a place holder in WebAS for holding the
    wsdls.
    2. publish the wsdls in WebAS UDDI Repostory
    but i have never used web-service navigator concept as we will be handling multiple WSDLs what is the difference ..send me some step by step docs ..
    thanks very much
    RK..

    1.I am not clear with the requirement too. THere is no big deal in sending XML to IDOC or File. Based on your requirement you have to import IDOC structure or ify ou are using file, create a structure for the file.
    If u are asking about sendin the XML directly without mapping, even you can do that without MM and even IM.
    Please be more elaborate and if you are not clear with what client said, paraphrase them or ask again. Its not good to start work unless we are very clear with the requirement.
    you can say to my understanding i feel this, now pI will send data like this. Is it correct?
    2. More information on UDDI
    http://en.wikipedia.org/wiki/UDDI
    I dont think you need to worry much about this now with many features provided in ESR especially
    3. http://<Host>:<port>/wsnavigator/
    The webservices going out of PI are published here.
    provide host and port are host and port details of ext system.
    Once you enter link in your browser, it shows the available webservices hosted there.
    All you need is to click on the required wsdl and test it.
    It is as good as sending your data from PI to other system.
    It is similar to Altova XML spy but the difference here is you enter the values directly here but in XML spy we send XML .

  • Advantages of sap gui over sap web

    hi experts,
    currently we are using sap gui. but we experiencing some slowing especially on peak working hours where users are making use of many transactions. I know that this is normal on those cases. My question is, if we are going for sap web. will it be more faster? efficient to use than the sap gui? this will be in terms of exporting reports and transactions. We havent tried the sap web yet. But we assume that, if we have it on web, it will be faster since only the data will be loaded and no more application gui.
    Please suggest.
    Thank you in advance

    Hi,
    I don't think it will give best result from performance point of view.
    In your case, it's problem with huge load during peak hours, not with GUI you are using. Slowness during peak hours can be reduced by tunning your system from memory and resource point of view. SAP GUI and SAP WEB do not make big difference in terms of performance and response.
    There are more disadvantages than advantages. SAP WEB needs more network capacity and graphics do not look good.
    Hope it helps.
    Thanks,
    Siva Kumar

  • Difference between SAP BI 7.0 and SAP Business objects

    Dear All,
        I would like to know what is the difference between SAP BI 7.0 and SAP Business objects.What Advantage will we have if we implement sap business objects rather then SAP BI 7.0.WOur management wants to implement

    Hi,
    Strategies for better reports, queries, Web reporting, formatting, dashboards, cockpits, planning, and performance management
    advantages of BO
    Crystal Reports XI is the latest version of the report writer from Business Objects. Local reports guru David McAmis takes the new version for a spin.
    Most developers might know Crystal Reports from versions included in Studio, Visual Studio.NET, and other popular developer IDEu2019s such as BEA Workshop, C# Builder, Delphi 2005, JBuilder, WebSphere.
    In this latest installment both report and application developers have something to be excited about as there are a host of new features for report design and integration. Hereu2019s a run-down of what you can expect in this release.
    What's New in Xcelsius version 4.5
    Xcelsius now provides the following new components:
    Candlestick and OHLC Chart components
    The open-high-low-close and candlestick charts are primarily used to display stock data. Each marker corresponds to the four values, which are represented as lines attached to the marker on the OHLC chart and as colors on the candlestick chart. Open displays the opening price of the stock. High displays the highest price the stock achieved on that day. Low displays the lowest price the of the stock on that day. Close displays the closing price of the stock.
    For more advantages go through the below link
    http://www.crimson-consulting.com/marketing/experience/knowledge/white_papers/cognos_tco.pdf
    For BI go throug hthe below link
    http://www.elegantjbi.com/Why-Business-Intelligence-better/business-intelligence-advantage.htm
    Regards,
    Marasa.

  • Difference between SAP MDM & IBM MDM

    Hi,
    Can any one tell me what is the difference between SAP MDM & IBM MDM,  What are advantages of SAP MDM over IBM MDM.
    Pl. give reply
    the good answers will be get good points.
    Thnks in advance.
    praful.

    HI
    SAP Master Data Management
    SAP Master Data Management (SAP MDM) enables master data on customers, partners and products to be consolidated and harmonized across the enterprise, making it available to all staff and business partners. A key component of SAP NetWeaver, SAP MDM ensures data integrity across all IT systems.
    The SAP NetWeaver Master Data Management (SAP NetWeaver MDM) component of SAP NetWeaver creates the preconditions for enterprise services and business process management. The functionality represents customers, products, employees, vendors, and user-defined data objects in unified form. With SAP NetWeaver MDM, customers can manage master data and supplemental content, such as texts, PDF documents, high-resolution images, or diagrams in a central business information warehouse.
    SAP Master Data Management (SAP MDM) is a component of SAP's NetWeaver product group and is used as a platform to consolidate, cleanse and synchronise a single version of the truth for master data within a heterogeneous application landscape. It has the ability to distribute internally and externally to SAP and non-SAP applications. SAP MDM is a key enabler of SAP Enterprise Service-Oriented Architecture. Standard system architecture would consist of a single central MDM server connected to client systems through SAP Exchange Infrastructure using XML documents, although connectivity without SAP XI can also be achieved. There are five standard implementation scenarios:
    Content Consolidation - centralized cleansing, de-duplication and consolidation, enabling key mapping and consolidated group reporting in SAP BI. No re-distribution of cleansed data.
    Master Data Harmonization - as for Content Consolidation, plus re-distribution of cleansed, consolidated master data.
    Central Master Data Management - as for Master Data Harmonization, but all master data is maintained in the central MDM system. No maintenance of master data occurs in the connected client systems.
    Rich Product Content Management - Catalogue management and publishing. Uses elements of Content Consolidation to centrally store rich content (images, PDF files, video, sound etc.) together with standard content in order to produce product catalogues (web or print). Has standard adapters to export content to DTP packages.
    Global Data Synchronization - provides consistent trade item information exchange with retailers through data hubs  Some features (for example, workflow) require custom development out of the box to provide screens for end users to use.
    http://www11.sap.com/platform/netweaver/components/mdm/index.epx
    IBM MDM
    n IBM's view, MDM is a set of disciplines, technologies, and solutions used to create and maintain consistent, complete, contextual, and accurate business data for all stakeholders (users, applications, data warehouses, processes, enterprises, trading partners, and so on). It's a holistic framework for managing structured and unstructured data that's aligned with business processes and managed throughout the information life cycle.
    As Felix already given this link go through this link u will get more details.
    http://www.db2mag.com/story/showArticle.jhtml?articleID=167100925
    And also check these links for more knowledge
    Microsoft MDM
    http://www.microsoft.com/sharepoint/mdm/default.mspx
    Microsoft MDM Roadmap
    http://www.stratature.com/portals/0/MSMDMRoadmap.pdf
    http://msdn2.microsoft.com/en-us/library/bb410798.aspx#mdmhubarch_topic1
    I think it may help u
    Regards
    Hari

Maybe you are looking for

  • Profit center not flowing in line item 2

    Hi Experts, We have activated document splitting and kept the field Business Area (BA), Profit center (PCTR) and Segment mandatory and only business area and segment as zero balancing field. While doing F-02 for an entry of Expense a/c..... Dr, Bank

  • Questions about web gallery in iWeb - advise please

    I have succesfully republished my old iWeb with iWeb 08, but would like to have some advice before I experiment further. The iWeb Help says I can add a web gallery to iWeb using either "insert>web gallery", or a Web Widget. Can anyone explain the dif

  • My mac running slow if installed " Steam"

    I have this problem when i install "steam" on my mac. Now i dont have "steam" and my mac is fast. Someone has this problem? is there any conflict? When i install "steam" i cant open safari, i have lags, i cant open my finder etc. I cant click anywher

  • Yahoo email account synchronisation on mac mini

    Hi I have been struggling to get my yahoo email account on my mac mini I can get the email on my iPad it did work on my mac mini. But now it does not... any ideas.?.. Thanks

  • Lightroom 5 Adjusting book sizes in blurb? Only showing 8x10 option.

    I'm currently working in Lightroom 5, and would like to select a different book size. Please advise on how to adjust the current 8x10 size to 7x7. Thanks, Carlos.