GL is Empty in Service PR

Hi,
We're creating a PR with account assignment F & Item Category D and material Group X (no material master is used) from CRM.
In ME52N, i dont see a GL account assignment
GL is supposed to be retrieved automatically ("account assignment" tab) from the system's settings.
However - no GL is being picked in the PR.
It's a strange situation, since all the settings look fine.
The settings in OMQW are fine
In OBYC - Maintained GL account for GBB VBR again valuation class XXXX.
OME9 - OK.
in OMWD - OK
If i input any value in gross field under service tab of ME52N , pop up comes asking GL account, where it should have determined based on valuation class of material group.
Please advice.
Thanks

Hi Rajat,
Check the General ledger account field status in OME9 for AAC 'K'. It might be suppressed and make it as mandatory or optional.
Regards,
Mukthar

Similar Messages

  • Creating empty J2EE service  procedure not clear

    Hi,
    I'm trying to create a new empty J2EE service according to the link:
    http://help.sap.com/saphelp_webas630/helpdata/en/14/8e633e0084e946e10000000a114084/frameset.htm
    The problem I am having is that the instructions are not complete, in the sense they don't start with something like (what I used to create a service by hit and trial):
    Step 1: Create a new Project (File->New->Project->Developement Component.
    Step 2: Choose Local Development->MyComponent. Hit next.
    Step 3: Choose a name for the project (eg: servicename), a domain (eg: Services) and type (eg: J2EE Server component->Service and hit next.
    Step N: Create a jar file by...
    Unless I can create jar/sda file correctly, I can't follow the steps in the deploy tool section to create the service.
    Any help would be much appreciated.
    Sanjeev

    Hello Rodney,
    If you want to deploy a service you should use Server Components tab in order to build the service archive (http://help.sap.com/saphelp_webas630/helpdata/en/7e/e27334077d1043a5287cf1512ffc45/frameset.htm)
    By the way did you notice the recommendations in the documentation about building custom services:
    The SAP J2EE Engine does not support on-line deployment of interfaces and services due to its structural specifics.
    There is a note about it as well - 822542.
    Best Regards
    Vyara

  • Deploying Empty j2ee service problem

    Hi.
    I developed a empty j2ee service according to this link:
    http://help.sap.com/saphelp_webas630/helpdata/en/0c/86b46fae4039428760a11890d2a14a/frameset.htm
    I exported the jar file from Netweaver Dev studio. Now I am following the step in the following link to deploy it :
    http://help.sap.com/saphelp_webas630/helpdata/en/0c/86b46fae4039428760a11890d2a14a/frameset.htm
    I am having problems though. When I try to a add the generated service jar file to the Assembler ear file a error message is displayed:
    "Could not load archive
    It doesn't contain XML file....
    Can't find xml file in jar file"
    Any help appreciated...

    Hello Rodney,
    If you want to deploy a service you should use Server Components tab in order to build the service archive (http://help.sap.com/saphelp_webas630/helpdata/en/7e/e27334077d1043a5287cf1512ffc45/frameset.htm)
    By the way did you notice the recommendations in the documentation about building custom services:
    The SAP J2EE Engine does not support on-line deployment of interfaces and services due to its structural specifics.
    There is a note about it as well - 822542.
    Best Regards
    Vyara

  • Question bout da empty repair service boxes...

    DHL lost my box, so i did not get it, n now i need to do a lost claim n it asks me for the CLAIM AMOUNT, but i did not pay for the box or nething cuz i hav a warranty on my 20Gb iPod...so i dont kno wut to put in for the CLAIM AMOUNT part of it...if neone, at all knows nething about my situtation, plz help me...
    thanx ya'll

    Your parents ought to sue the educational system in Chicago. The AppleCare warranty does not cover lost or stolen products. DHL wants to help you out, and you blow them off. I pray for the future of the US.
    The word is "anyone".

  • Dump during creation of service entry sheet (ML81N)

    Dump during creation of service entry sheet (ML81N)
    Hi,
    ML81N>Select PO>Enter>goto entry sheet create (empty page)>service entry sheet displayed with internal no. assigned >click tab "service selection">Input PO No.--> enter (here we get Dump ABAP RUNTIME ERROR "TABLE_INVALID_INDEX").
    This is happening only for some POs. What can be the problem?. Is this has something to do with SAP database ???
    - rahul

    Hi,
    it could have the cause that the note 1113220 was missing from your system or that data are inconsistent in your PO.
    If you implemented 1113220 and you still get the dump, please check in transaction ST22 the run time error long text to the dump:
    Parts:
    - How to correct the error?
    - Information on where terminated
    - Source Code Extract -> if you set a breakpoint before the line where the error occured, you could debug the process.
    - Active Calls/Events: if you have an own program displayed here, please check first your program wether it has caused the issue.
    If these do not help to find out the problem cause, please open a SAP ticket and include all of the relevant information regarding the dump.
    Regards,
    Edit

  • Web Service Inside Web Service

    hi there,
    I've been trying to create a web service that is a combination of already existing web services. The code compiles and deploys ok but when i restart apache the http://localhost:8080/axis/servlet/AxisServlet page is empty. the service implementation code is-
    package mu;
    //Standard libraries
    import javax.xml.rpc.Service;
    import javax.xml.rpc.Stub;
    import java.util.Vector;
    // Our glue code
    import services.webservice.hgu.WebService;
    import services.webservice.hgu.WebServiceService;
    import services.webservice.hgu.WebServiceServiceLocator;
    import hgu.WSDLGenerated.SubmissionQuery.GeneExpressedQueryShortDetails;
    import hgu.WSDLGenerated.SubmissionQuery.ComponentExpressQueryShortDetails;
    public class Mu_Impl implements Mu{
         public String[] getMouseAbstractNodes(String timedNodes[]){
              String abstractNodes[] = null;
              try{
                   WebServiceService mouseService = new WebServiceServiceLocator();
                   WebService mousePort = mouseService.getma();
                   abstractNodes = mousePort.getAbstractNodes(timedNodes);
              }catch(Exception e){}
              return abstractNodes;
    Any ideas why this is fruitless?
    -cheers, Ian

    Hi Daniel,
    As per the latest documentation :
    http://docs.oracle.com/cd/E12844_01/doc/bip.1013/e12187/T421739T434255.htm#3503342
    There is not such XML element to call a webservice method.
    Nevertheless you can still do this either:
    - Create a store procedure in DB and within this proc call the webservice method, then you can call this procedure/function within your SQL statement in your data template.
    - Or create a java servlet and from within this call your webservice and finally in your data template call the URL that invokes the webservice using the URL element.
    Just some ideas to get around what you want.
    regards
    Jorge
    p.s. If this answers your question then please grant the points and close the thread

  • Telling ML Server where service data location is (again).

    Hello,
    I've seen this a couple of times and think it's a bug. Maybe somebody knows how to resolve this properly. Mini Server with 10.8.2 and OS X Server v2.2 running, all services configured. Service data is moved via Server->Settings->Service Data to another volume.
    The customer moves the physical location of the server, probably forgets to attach the external drive containing the service data on boot. Server starts with other (local) settings rather than what was configured and run already successfully with service data located on external drive.
    After stopping all services, setting the service data location to the external drive fails with "Existing Service Data - The volume “Data” already contains service data in /Library/Server. Please delete or move the data and try again, or choose a different volume.".
    Yes, we want to use the service data of the external volume. This is desired. How to resolve this?
    Alex

    Hi,
    ran several times into the same problem. Our service data was moved to an external RAID 1 volume and there it should be. For whatsoever reason the volume containing /Library/server was disconnected and upon automatic reconnection (or restart) the server could not find the service data again and therefore the osx server set the default location of service data to boot volume/Library/Server... I thought I was about to go mad... How to point the server to correct service data manually. It seemed there was no option to do this in ML OS X server. So being almost hopeless, I renamed the original service data folder on RAID 1 volume to /Library/Server_old. In the menawhile i noticed that although Finder showed correctly mounted RAID 1 volume with the initial name ("Pool") in fact in /Volumes there were /Volumes/Pool and /Volumes/Pool1 which pointed to the RAID server. Ridiculous. The OSX mounted the RAID 1 volume incorrectly or the server tried to save some sort of service data BEFORE the server data RAID 1 volume was at least mounted correctly and thus created a directory named /Volmes/Pool that fooled the server completely and corrupted it as it could not found any correct service data on /Volumes/Pool... Googling around showed that the problematic service might be Messages "_jabber". So In Server.app turn off every service available and quit. In disc tool eject the external volume containing real service data. Then in terminal delete recursively the undesired "ghost" folder ( /Volumes/Pool in my case). Pay attention not to delete the real volume containing the service data! Then again mount the external volume with the service data. Check in terminal that it was mounted correctly in /Volumes. In the meanitme act quickly. I needed to delete the gost folder several times until there was not any ghost folder anymore before mounting the true service data external volume. It is difficult to completely shut down all the server services that access service data although the Server.app shows everything offline. Then launch server.app again move the almost empty default service location to the real external Volume already mounted correctly. Now comes the brute part. On the external volume delete in terminal recursively the /Library/Server and rename the backup /Library/Sever_old to back to /Library/Server. I prayed it would work at that point. And upon restart it did work. Good luck!

  • Error message SE508 while create Service Entry Sheet (ML81N)

    Hi,
    In client production system we are facing problem of getting error message SE508: Error in account coding allocation just after we click "adopt services"tab while creating service entry sheet (with respect to PO)Tcode ML81N.Please analyse the problem and give us solution as why it is happening? Please look at error screen shot with steps followed (in attachment) for your reference.
    ML81N>Select PO>Enter>goto entry sheet create (empty page)>service entry sheet displayed with internal no. assigned >click tab "service selection">Input PO No.> click "adopt services"> here we get error message "SE508":ERROR IN ACCOUNT CODING ALLOCATION
    Regards
    Rahul Shukla

    Hi,
    I would suggest you to check the note 1087090 first.                                                                               
    Further I would like to recommend you to deactivate the exit EXIT_SAPLMLSK_001 in case it is active in               
    your system. 
    If the note 1087090 doesn't apply, please check the services data in the tables ESKL and ESLL. If PO services data have been deleted in the corresponding PO item, please check all of the deletion indicators in ESKL and ESLL. There must be an inconsistency. For example: the field 'LOEKZ' has been set in the table ESKL for the PO item, but it does not reflect in the table ESLL.                                                                               
    In table ESLL, there is no logical or physical deletion but the            
    services in the table ESKL has been marked (i.e logically deleted) -> this could be the reason for the error message SE508.  For this case please open a SAP ticket to get help with the correction of the inconsistency.
    Regards,
    Edit

  • Web Services SDK secLDAP

    We are converting from the Enterprise SDK to the Web Services SDK and I am having problem with the following snippet of code.  We use something similar to force an LDAP update in the enterprise SDK
                    GetOptions opts = new GetOptions();
                    opts.IncludeSecurity = false;
                    //build and run the query to get the LDAP refresh time
                    string query = "query://{SELECT TOP 1 * FROM CI_SYSTEMOBJECTS WHERE SI_NAME = 'secLDAP'}";
                    ResponseHolder boResponseHolder = boBIPlatform.Get(query, opts);
                    if (boResponseHolder != null && boResponseHolder.InfoObjects != null && boResponseHolder.InfoObjects.InfoObject != null)
                        BusinessObjects.DSWS.BIPlatform.Auth.secLDAP test = boResponseHolder.InfoObjects.InfoObject[0] as BusinessObjects.DSWS.BIPlatform.Auth.secLDAP;
                        //set LDAP refresh time to now
                        boResponseHolder.InfoObjects.InfoObject[0].UpdateTime = DateTime.Now;
                        boBIPlatform.Update(boResponseHolder.InfoObjects);
    I have 2 problems with it:
    1)   BusinessObjects.DSWS.BIPlatform.Auth.secLDAP test = boResponseHolder.InfoObjects.InfoObject[0] as BusinessObjects.DSWS.BIPlatform.Auth.secLDAP;
    results in "test" being null even though InfoObject[0] is there.  It shows as Desktop.GenericInfoObject when debugging.  what is wrong with how I am getting the object and casting?
    2)  boBIPlatform.Update throws an exception:
    An XSD Exception occurred. Import file parsing exception occurred : 'The prefix "io" for element "io:InfoObjects" is not bound.' (FWM 04009) (WBP 42029)

    Hello, Bob;
    I tested this this morning on my Business Objects Enterprise XI R3.1 system and had no errors. LDAP updated.
    Here is my code in case you can see any differences:
    Imports BusinessObjects.DSWS
    Imports BusinessObjects.DSWS.BIPlatform
    Imports BusinessObjects.DSWS.BIPlatform.Constants
    Imports BusinessObjects.DSWS.BIPlatform.Desktop
    Imports BusinessObjects.DSWS.BIPlatform.GetOptions
    Imports BusinessObjects.DSWS.ReportEngine
    Imports BusinessObjects.DSWS.Session
    Imports System
    Imports System.Data
    Imports System.Configuration
    Imports System.Web
    Imports System.Web.Security
    Imports System.Web.UI
    Imports System.Web.UI.WebControls
    Imports System.Web.UI.WebControls.WebParts
    Imports System.Web.UI.HtmlControls
    Partial Class _Default
        Inherits System.Web.UI.Page
        ' Modify the variables here to reflect the environment
        ' CMS-specific parameters
        Private CMS_USER As String = "Admin1"
        Private CMS_USER_PASSWORD As String = "uid" 'String.Empty
        Private CMS_CLUSTER_NAME As String = "sap-v5hyxcb8pbf" 'String.Empty
        Private CMS_AUTHENTICATION As String = String.Empty
        ' Web Services URLs
        Private WS_BASE_URL As String = "http://localhost:8080/dswsbobje/services/"
        'NOTE:  The following variables are case sensitive
        '       Lower case for Axis 1.1 (BOE XI R2)
        Private WS_URL_SESSION As String = WS_BASE_URL + "session"
        Private WS_URL_REPORTENGINE As String = WS_BASE_URL + "reportengine"
        Private WS_URL_BIPLATFORM As String = WS_BASE_URL + "biplatform"
        ' Name of the report to be viewed
        Private REPORT_NAME As String = "Test2_StoredProc.rpt"
        'Database Logon properties
        Private USER_NAME As String = "user"
        Private USER_PASSWORD As String = "password"
        Private bipService As BIPlatform
        Private boRepEng As ReportEngine
        Private wSession As Session
        Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
            ConfigureCrystalReports()
        End Sub
        Private Sub ConfigureCrystalReports()
            ' The following sample code demonstrates how to view a report using the Web Services BIPlatform and \
            ' Report Engine services.
            ' Just running the following code will enable you to view a simple report with no additional options.
            ' Include the commented blocks of code to view reports with different viewing options:
            ' - View a report in PDF format
            ' - View a report with database logon information
            ' - View a report with discrete parameters
            ' Note: You may have to change some parts of the code to make the special viewing options work.
            Logon()
            ViewReport()
        End Sub
        Private Sub Logon()
            Dim wSession As BusinessObjects.DSWS.Session.Session
            Try
                Dim boConnection As BusinessObjects.DSWS.Connection = New BusinessObjects.DSWS.Connection(WS_URL_SESSION)
                ' login to BusinessObjects Enterprise using web services
                Console.WriteLine("Logging into web service..." + WS_URL_SESSION)
                Dim credential As New EnterpriseCredential
                credential.Login = CMS_USER
                credential.Password = CMS_USER_PASSWORD
                credential.Domain = CMS_CLUSTER_NAME
                credential.AuthType = CMS_AUTHENTICATION
                wSession = New BusinessObjects.DSWS.Session.Session(boConnection)
                wSession.Login(credential)
                Console.WriteLine("Logged into web service.")
                boConnection.URL = WS_URL_BIPLATFORM
                bipService = New BIPlatform(boConnection, wSession.ConnectionState)
                boConnection.URL = WS_URL_REPORTENGINE
                boRepEng = New ReportEngine(boConnection, wSession.ConnectionState)
                Session("Platform") = bipService
                Session("ReportEngine") = boRepEng
            Catch ex As DSWSException
                Console.Error.WriteLine(ex)
                Console.Error.WriteLine(ex.CauseDetail)
                Throw
            End Try
        End Sub
        Private Sub ViewReport()
            Try
                'Get PageInfo
                Dim boGetOptions As New GetOptions
                boGetOptions = New GetOptions
                boGetOptions.IncludeSecurity = True
                'Dim query As String = "path://InfoObjects/Root Folder/**/" + REPORT_NAME
                Dim query As String = "query://{Select TOP 1 * FROM CI_SYSTEMOBJECTS WHERE SI_NAME = 'secLDAP'}"
                Dim reportRH As ResponseHolder = bipService.Get(query, boGetOptions)
                Dim boReports As InfoObjects = reportRH.InfoObjects
                If (Nothing Is boReports) Then
                    Return
                End If
                Dim repID As String = boReports.InfoObject(0).CUID
                Response.Write("RepID " + repID.ToString)
                Dim testLDAP As BusinessObjects.DSWS.BIPlatform.Auth.secLDAP
                testLDAP = boReports.InfoObject(0)
                Response.Write("   CUID: " + testLDAP.CUID.ToString)
                testLDAP.UpdateTime = DateTime.Now
                bipService.Update(reportRH.InfoObjects)
                Response.Write("<BR> LDAP updated <BR>")
            Catch ex As DSWSException
                Console.Error.WriteLine(ex)
                Console.Error.WriteLine(ex.CauseDetail)
                Throw
            Finally
                If Not wSession Is Nothing Then
                    wSession.Logout()
                End If
                Console.Write("Press the [ENTER] key to terminate program.")
            End Try
        End Sub
    End Class
    Where do you have your BusinessObjects.DSWS .dlls?
    If you right click on "BusinessObjects.DSWS.dll" and go to Properties and the version tab, what is the full File version?
    I am having someone test this with version 3.0 today as I do not have that version setup.
    Elaine
    Edited by: Ludek Uher on Mar 20, 2009 12:29 PM

  • Cant find the services in SIAC1

    Hi All,
    In the process of Upgrading our standalone ITS to Integrated ITS.  We have activated some services, but later we found that their templates are not copied properly.  But when we went to SIAC1 for converting the templates of those services, we are not able to find those services there.  What could be the reason, and how can we convert them now.
    Thanks & Regards,
    Ravi

    I think you may be looking for SIAC_UPLOAD.
    =================================================================
    How to use SIAC_UPLOAD to get stand alone ITS content into an integrated ITS service.
    Make sure an empty Z Service and theme folder have been created.
    Run transaction SE38
    Enter Program SIAC_UPLOAD and execute
    Service Tab:
    u2022     Enter the name of the destination service in integrated ITS.
    u2022     Select Allow Overwriting
    Objects of Theme tab (last tab):
    u2022     Enter the name of the destination service in integrated ITS.
    u2022     Enter the theme
    u2022     Select Templates (Language Independent)
    u2022     Click Execute.
    u2022     In the Browse for Folder window enter the path to the Stand Alone ITS theme directory.
    u2022     Click OK
    Hope that helps,
    Doug

  • Problem when trying to publish Query through BeX in Portal as iView

    Hi ,
    We are trying to publish BW 3.5 query in EP 6.0.
    when we are trying to publish the query as iView in portal, it gives the error message 'System Error'. The J2EE Error Log contains the following error :
    #1.5#001321FC0EDF001D0000000100000AF800042349427FEAFD#1164697462095#com.sap.security.core.server.jaas##com.sap.security.core.server.jaas#J2EE_GUEST#2##BID#AMARNATH_RR                     #6AA3FE0EADF14B2593F0019B1DB52607#SAPEngine_Application_Thread[impl:3]_17##0#0#Error##Java###Authentication stack: [].
    [EXCEPTION]
    #2#evaluate_assertion_ticket#javax.security.auth.callback.UnsupportedCallbackException:  Unsupported callback!
         at com.sap.engine.services.rfcengine.security.impl.RFCCallbackHandlerImpl.handle(RFCCallbackHandlerImpl.java:49)
         at javax.security.auth.login.LoginContext$5.run(LoginContext.java:812)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext$SecureCallbackHandler.handle(LoginContext.java:808)
         at com.sap.security.core.server.jaas.EvaluateAssertionTicketLoginModule.removeSSOHeader(EvaluateAssertionTicketLoginModule.java:736)
         at com.sap.security.core.server.jaas.EvaluateAssertionTicketLoginModule.login(EvaluateAssertionTicketLoginModule.java:390)
         at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:69)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:154)
         at com.sap.engine.system.SystemLoginModule.login(SystemLoginModule.java:90)
         at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
         at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:60)
         at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal(RFCJCOServer.java:113)
         at com.sap.engine.services.rfcengine.RFCJCOServer$ApplicationRunnable.run(RFCJCOServer.java:171)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#001321FC0EDF00140000000600000AF800042349427FF32E#1164697462095#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal()####BID#AMARNATH_RR                     #6AA3FE0EADF14B2593F0019B1DB52607#Thread[JCO.ServerThread-8,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error##Plain###java.lang.RuntimeException: com.sap.engine.services.rfcengine.RFCException: Incoming call is not authorized#
    #1.5#001321FC0EDF00140000000700000AF800042349427FF40A#1164697462111#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal()####BID#AMARNATH_RR                     #6AA3FE0EADF14B2593F0019B1DB52607#Thread[JCO.ServerThread-8,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error##Plain###java.lang.RuntimeException: com.sap.engine.services.rfcengine.RFCException: Incoming call is not authorized
         at com.sap.engine.services.rfcengine.RFCJCOServer$ApplicationRunnable.run(RFCJCOServer.java:188)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Landscape:We have both BW 3.5 and EP 6.0, SP 16 on the same instance in
    same physical machine. EP 6.0 works on J2EE engine as an add-in installtion.
    Steps we followed for the integration of EP with BW:
    1)Create RFC Destination in J2EE Engine:
    Parameters:
    Program ID: xyz
    Gateway host: abc.ad.company.com
    Gateway service: sapgw00
    Application server host:abc.ad.company.com
    System number: 00
    Client: BID
    Language: EN
    User: sapjsf
    Password: ********
    2)Maintain RFC Destination for SAP EP 6.0
    Parameters:
    RFC destination: SAP_EP
    Connection type: T for TCP/IP connection
    Description: SAP EP RFC Destination
    Technical Settings:
    - Type of activation: Registered server program
    - Program ID: xyz
    - Gateway host: abc.ad.company.com
    - Gateway service: sapgw00
    Logon/Security:
    - Send SAP Logon Ticket: Activated
    Special Options:
    Unicode
    3)Maintain Portal Server Settings for SAP EP 6.0 in table RSPOR_T_PORTAL
    in BW 3.5
    RFC destination: SAP_EP
    System name: BIDEV
    Default: Checked
    Portal URL prefix: http://abc.ad.company.com:50000
    RM prefix for BW metadata: <empty>
    KM service URL: <empty>
    P.S.:We have maintained one more dummy entry as per the SAP Note 815044
    in the table RSPOR_T_PORTAL.
    4)Maintain Single Sign-On in SAP BW
    In transaction RZ10, We have maintained following settings:
    login/create_sso2_ticket=2
    login/accept_sso2_ticket=1
    5)Export BW Certificate to SAP BW and
    6)Import BW Certificate to SAP EP 6.0
    We have followed the above mentioned two steps.
    7)Create BW System in SAP EP 6.0
    Parameters:
    Log on methods: SAPLOGONTICKET
    We have created the BW system and the Connection test in WAS Connection
    is working fine.
    8)Configure User Management in SAP EP 6.0
    This step is not maintained as our scenario does not demand it.
    9)Export Portal Certificate to SAP EP 6.0 and
    10)Import Portal Certificate to SAP BW
    This step is also maintained as per Performance Assistant guidelines in
    SPRO.
    The user that we are trying to log into BeX Web Query Analyzer is
    Amarnath_rr who has 'SAP ALL' rights and the same user in EP is assigned'Super Admin' as well as 'Content Admin' role.
    Can anyone throw any light on wat the error might be??

    Ricky,
    a couple of clarifications :
    1. Does the report execute independently on the web - when you execute in Query view over IE or through a web template
    2. Check if SSO is properly configured - you can check if SSO is enabled by using TCode STRUST in BW. - the status of PSE should be Green.
    Arun
    Assign points if useful

  • Success story: NVIDIA 8600M GT graphics card defect repaired at no cost

    This is the story of Apple servicing my MacBook Pro with the NVIDIA graphics card defect.
    I had the NVIDIA 8600M GT graphics card defect in my 2 year old MacBook Pro. The symptoms were pinkish images, scrambled and chopped images, and finally leading to no video, all within a matter of 3 days. I called AppleCare using the old number I remembered from my 100mhz Mac days: 1-800-SOS-APPLE. I was greeted by a real person within 3 minutes. She explained that my 90-day complimentary phone service had expired some 600 days ago.
    After I mentioned the specific Apple Knowledge base article that described the defect (TS2377), and that it was covered up to three years out of warranty, she transferred me to a MacBook Pro specialist. Sheri ran me through several standard resets and reboots. She then suggested that it be taken into an Apple store for a genius to look at. When I explained that the nearest Apple Store was an hour away, she arranged for a mail-in service.
    After the call had ended, I received a simple email with her phone number so that I could contact her if I needed to. Another automated email contained my repair case number and a link to check the status online. The online status center is very easy to use. It displayed three steps: Sending the empty box, service in progress and return. FedEx tracking numbers were included with working links.
    The next day an empty box arrived, completely with graphical IKEA like packaging instructions and form fitting foam for my MacBook Pro. I knew when the FedEx truck came around, so I had my computer ready by my side. As soon as FedEx showed up, I explained that the empty box was for the computer and Marcos helped me apply the pre-paid return label and taped the box expertly with tape from his truck. I also placed in the box a copy of the Apple Knoweldge base article and pictures I had taken of the issue.
    Apple had included a small stack of super adhesive pre-cut tape square, but Macros was already taping it before I figured out what they were. The return label was also pre-paid with overnight service.
    The next day I logged into the online support status at Apple.com and checked my status. The tracking number showed it had arrived in Houston, and the three steps had been updated to "Repairs completed" and "Return in progress."
    The return FedEx tracking number was displayed later in the evening, and it showed that it was guaranteed to arrive by 10:30AM the next day. Speedy service! Sure enough, the next day I had my computer back in my hands, all data perfect and intact. I was very worried since I was not able to make a back up before sending it in, and Apple does not guarantee data safety. Apple had replaced the logic board, valued at $700 on iFixit (http://www.ifixit.com/MacBook-Parts/MacBook-Pro-15-Inch-Core-2-Duo-2-2-GHz-Logic -Board/IF185-073).
    The funny thing is, for the past 5 years, I have always cloned my drive or used time machine, but for the past two months I had cleared the backups to make up extra room on my externals. You really never know when disaster will strike!
    Learned:
    - Apple Customer Care is top notch, speedy and their status site is very easy to use
    - FedEx service was very helpful
    - If you have a NVIDIA graphics card, Mac or PC, check if your model is affected. Just today Sony announced that NVIDIA cards with defects will now be covered for 4 years out of warranty. (http://news.cnet.com/8301-13924_3-10307592-64.html)
    - Back up your stuff NOW. Use a flash drive or email files to yourself for a cheap fix.
    Roland

    ha
    got the same problem with my mbp (dec 2007)
    also no video within 5 hours .... also no external video.
    lucky i had screen sharing on so i could check the system profiler via an other mac.
    It couldn't find the 6800M GT anymore...
    did another backup and went to the local apple store
    took a print out of Apple Knowledge base article that described the defect (TS2377)
    and they replaced the logicboard+gpu for free within 10 days ...
    everything is ok now except for my maxmsp copy which thinks it runs on an other machine and complains about a missing licence ....

  • Boot camp side wont recognize apple wireless keyboard

    I have a base 2013 imac 21.5 inch.
    Had windows partition for a couple months now. Suddenly it doesnt reeckognize my apple wireless keyboard. Mac side reckognzes it but windows doesnt.

    After browsing some Windows fora, I went to look at the Log On tab of the Bluetooth Support Service Properties (Services page in the Computer Management utility). The hypothesis was that that service was being denied access to some resource. I ended up just fiddling, but to my amazement it fixed the problem.
    Here's the essence of my fiddling:
    + I tried stopping and restarting the service logging on as a Local System account - no luck.
    + Then I tried with my Administrator account - no luck.
    + So I wanted to restore the original account - "NT Authority\SYSTEM" - but woe unto me, I didn't know the password! (apparently no one does for this super-account.) But if you leave the password fields empty, the service starts - oof!
    And now, all of a sudden, my keyboard has started working.
    So I would suggest that in a similar situation, one should:
    + stop the Bluetooth Support Service,
    + make sure the log-on account is NT Authority\SYSTEM,
    + clear the password fields, and
    + restart the service.
    May the Force be with you.

  • SQL Server 2005 performance decreases with DB size while SQL Server 2012 is fine

    Hi,
    We have a C# windows service running that polls some files and inserts/updates some fields in database.
    The service was tested on a local dev machine with SQL Server 2012 running and performance was quite decent with any number of records. Later on the service was moved to a test stage environment where SQL Server 2005 is installed. At that point database
    was still empty and service was running just fine but later on, after some 500k records were written, performance problems came to light. After some more tests we've founds out that, basically, database operation performance in SQL Server 2005 decreases with
    a direct correlation with the database size. Here are some testing results:
    Run#
    1
    2
    3
    4
    5
    DB size (records)
    520k
    620k
    720k
    820k
    920k
    SQL Server 2005
    TotalRunTime
    25:25.1
    32:25.4
    38:27.3
    42:50.5
    43:51.8
    Get1
    00:18.3
    00:18.9
    00:20.1
    00:20.1
    00:19.3
    Get2
    01:13.4
    01:17.9
    01:21.0
    01:21.2
    01:17.5
    Get3
    01:19.5
    01:24.6
    01:28.4
    01:29.3
    01:24.8
    Count1
    00:19.9
    00:18.7
    00:17.9
    00:18.7
    00:19.1
    Count2
    00:44.5
    00:45.7
    00:45.9
    00:47.0
    00:46.0
    Count3
    00:21.7
    00:21.7
    00:21.7
    00:22.3
    00:22.3
    Count4
    00:23.6
    00:23.9
    00:23.9
    00:24.9
    00:24.5
    Process1
    03:10.6
    03:15.4
    03:14.7
    03:21.5
    03:19.6
    Process2
    17:08.7
    23:35.7
    28:53.8
    32:58.3
    34:46.9
    Count5
    00:02.3
    00:02.3
    00:02.3
    00:02.3
    00:02.1
    Count6
    00:01.6
    00:01.6
    00:01.6
    00:01.7
    00:01.7
    Count7
    00:01.9
    00:01.9
    00:01.7
    00:02.0
    00:02.0
    Process3
    00:02.0
    00:01.8
    00:01.8
    00:01.8
    00:01.8
    SQL Server 2012
    TotalRunTime
    12:51.6
    13:38.7
    13:20.4
    13:38.0
    12:38.8
    Get1
    00:21.6
    00:21.7
    00:20.7
    00:22.7
    00:21.4
    Get2
    01:38.3
    01:37.2
    01:31.6
    01:39.2
    01:37.3
    Get3
    01:41.7
    01:42.1
    01:35.9
    01:44.5
    01:41.7
    Count1
    00:20.3
    00:19.9
    00:19.9
    00:21.5
    00:17.3
    Count2
    01:04.5
    01:04.8
    01:05.3
    01:10.0
    01:01.0
    Count3
    00:24.5
    00:24.1
    00:23.7
    00:26.0
    00:21.7
    Count4
    00:26.3
    00:24.6
    00:25.1
    00:27.5
    00:23.7
    Process1
    03:52.3
    03:57.7
    03:59.4
    04:21.2
    03:41.4
    Process2
    03:05.4
    03:06.2
    02:53.2
    03:10.3
    03:06.5
    Count5
    00:02.8
    00:02.7
    00:02.6
    00:02.8
    00:02.7
    Count6
    00:02.3
    00:03.0
    00:02.8
    00:03.4
    00:02.4
    Count7
    00:02.5
    00:02.9
    00:02.8
    00:03.4
    00:02.5
    Process3
    00:21.7
    00:21.0
    00:20.4
    00:22.8
    00:21.5
    One more thing is that it's not Process2 table that constantly grows in size but is Process1 table, that gets almost 100k records each run.
    After that SQL Server 2005 has also been installed on a dev machine just to test things and we got exactly the same results. Both SQL Server 2005 and 2012 instances are installed using default settings with no changes at all. The same goes for databases
    created for the service.
    So the question is - why are there such huge differences between performance of SQL Server 2005 and 2012? Maybe there are some settings that are set by default in SQL Server 2012 database that need to be set manually in 2005?
    What else can I try to test? The main problem is that production SQL Server will be updated god-knows-when and we can't just wait for that.
    Any suggestions/advices are more than welcome.

    ...One more thing is that it's not Process2 table that constantly grows in size but is
    Process1 table, that gets almost 100k records each run....
    Hi,
    It is not clear to me what is that you are doing, but now we have a better understanding on ONE of your tables an it is obviously you will get worse result as the data become bigger. Actually your table look like a automatic build table by ORM like Entity
    Framework, and it's DDL probably do not much your needs. For example if your select query is using a filter on the other column that [setID] then you have no index and the server probably have to scan the entire table in order to find the records that you
    need.
    Forum is a suitable place to seek advice about a specific system (as I mentioned before we are not familiar with your system), and it is more suitable for general questions. For example the fact that you have no index except the index on the column [setID]
    can indicate a problem. Ultimately to optimize the system will need to investigate it more thoroughly (as it is no longer appropriate forum ... but we're not there yet). Another point is that now we can see that you are using [timestamp] column, an this
    implies that your are using this column as a filter for selecting the data. If so, then maybe a better DDL will be to use clustered index on this column and if needed a nonclustered index on the [setID] if it is needed at all...
    what is obviously is that next is to check if this DDL fit
    your specific needs (as i mentioned before).
    Next step is to understand what action do you do with this table. (1) what is your query which become slowly in a bigger data set. (2) Are you using ORM (object relational mapping, like Entity Framework
    code first), and if so then which one.
    [Personal Site] [Blog] [Facebook]

  • Missing sender information in message from BPM send step

    Hi All,
    I am testing a scenario uses Integration Process. This Integration process sends out a async message from deadline branch, but this message has empty sender service.
    Am I missing something in configuration? Please let me know how can i configure it.
    Regards,

    Hi,
    I chk my RD, ID and Receiver agreement and everything seems to be good.
    My Integration process bellow,
    1-Receive Step
    2-Send Step(with ACK)
    3-Deadline Brach(includes a Tranformation step and then it sends out a async message).
    This message that sends the tranformation step, is missing the sender service information.
    Is important that you know, that this tranformation step, have an empty message as source message.
    I fill the target message with constant values and then send it with a send step.
    I have tested the IM and it worked fine.
    Regards,

Maybe you are looking for