ABAP MAPBOX Issue/question

Iu2019m working on the CRM/Outlook integration and appear to be having a problem with implementing the ABAP MapBox component.  Based on the documentation Iu2019ve found for the ABAP version there isnu2019t much to do.  The configuration below has been implemented and it doesnu2019t like MAPBOX as the Program ID u2013 I got this bit of configuration from the GroupWare Adapter Customizing and User Guide.
Do I need to follow the instructions on note #1066515 which states I should contact SAP prior?
Any help would be greatly appreciated.
/Greg
System Version:
SAP CRM ABAP 6.0
CRM 2007
RFC Destination Info:
RFC Dest: MAPBOX
Connection Type: T
Activation Type: Registered Server Program
Program ID: MAPBOX
SM59 Connection Test:
Logon     Connection Error
Error Details     Error when opening an RFC connection
Error Details     ERROR: program MAPBOX not registered
Error Details     LOCATION: SAP-Gateway on host intvcrmd / sapgw61
Error Details     DETAIL: TP MAPBOX not registered
Error Details     COMPONENT: SAP-Gateway
Error Details     COUNTER: 1070
Error Details     MODULE: gwr3cpic.c
Error Details     LINE: 1778
Error Details     RETURN CODE: 679
Error Details     SUBRC: 0
Error Details     RELEASE: 700
Error Details     TIME: Wed Oct  8 17:09:40 2008
Error Details     VERSION: 2
Table: ISPCFG                                                                               
PARNAME                SITETYPE PARVAL PARVAL2
CRM_MAPBOX                      X                                                                  
MAPBOX_RFC_DESTINATION          MAPBOX                                                             
TRACE                  GWA_01   X

Also, please look at the folloing best practice documentation. Here the program name stated is something else. It is MAPBOXSMB23.
http://help.sap.com/bestpractices/BBLibrary/documentation/D58_BB_ConfigGuide_EN_UK.doc#_Toc77575395

Similar Messages

  • ABAP Mapbox Troubleshooting Guide

    currently, I do have the situation, that no new activities are transferred to groupware (lotus). I am using ABAP Mapbox in CRM Release 5.0. Update messages on older activities do work!
    regarding the troubleshooting guide by mr. stephenson in this forum, I do have the following questions:
    1.) How can I figure out, whether a xml-message (iCal or vCard) has been generated by the Mapbox. I do have the BDoc-Id (out of smw01) but i dont find entries in CRMD_MBA_GUISTOR. This table contains 1,2 million entries which makes it hard to find the specific message, since that table doesnot contain a timestamp.
    I turned on Trace in ISPCFG and I see in GWA_01 out trace, that my message (with tRFC-ID) seems to be processed, but I dont know, how? Meaning, I dont get an error or a info, if there was nothing to do,...
    2.) How can I restart the "Abap Mapbox" or bring it to an consistent starting state?
    3.) what is the relation between the tables? Any documentation available
    CRMD_MBA_GUISTOR.
    CRMD_MBA_MSGSTOR.
    CMWD_MBF_PAIR.

    current investigation results:
    1.) since the bdic-id generation seems to be sequential, the table CRMD_MBA_GUISTOR can be sorted by mbkey. if your message doesn't apperar in the end, no message is generated. Attention: don't how update behaves, so make sure you cteate new activities.
    as mentioned before, the ISP trace is less usefull
    2.) and 3.) still open
    ABAP Mapbox logging
    It might be usefull, to turn on "logging". This can be done in table ISPCFG:
    a.) Find the row CRM_MAPBOX and set PARVAL2=X.
    b.) run your test
    c.) run transaction SLG1, you might filter on your user.
    The output of logging indicates basic processing info. For my issue it didn't help, maybe for yours. I figured out, that a strange/ wrong "Ansprechpartner" Relation was missing on the activity. Therefore no email could be found and therefore no message has been generated.

  • ABAP-HR INTERVIEW QUESTIONS

    Hi All
         I want ABAP-HR interview questions,I am attending my first abap-hr interview on thursday,
         So i want what type of question i can expect from the interviewer.
       If any one plz send to my mail.
    Thanks in advance

    Hi Chris
    Keep up the comments as you are the only one that seems to willing to call out folks on the board.
    Just yesterday I saw a question saying something of the effect " I am a consultant and the client is asking me to prepare configuration material on garnishment and taxes please help"
    I almost did a "Chris" response but decided to hold tight and just say nothing though part of me wishes I have the clients email address so they could be aware of what a joker they are paying to help them.
    Jarret

  • ABAP Mapbox CRM 7.0 for a Multiple Backend Scenario

    Dear SDN community members,
      In our project we have one CRM system connected to three ERPs. For this reason we try to use the ABAP MAPBOX functionality for the customizing and master data mapping. In the process of the initial download of CUSTOMER_MAIN object we take the following error :No table entry found: 'CUST_REL'/'CRTCLNT100', Service that caused the error: SMW3_OUTBOUNDADP_CALLADAPTERS. As we have read on the CRM 7.0 the ABAP MAPBOX is part of the ABAP stack of CRM and for this reason we do not create RFC connection for the MAPBOX. Is this correct ?
      Does anyone have any idea about the problem above ? Also is there any technical documentation for the customizing steps that are needed for the scenario of multiple backend systems ?
      Thanks in advance,
         John Syrigos

    Hi John, our project is facing the same requirement, multiple ECC 5.0/6.0 back ends. Were you successful in the integration and MapBox activation and can you give me any lessons learned in your experience?
    thanks
    Glenn
    Edited by: glstover on Apr 18, 2011 7:59 PM

  • SAP ABAP Certification Sample Questions

    Hi
    Can anyone help me in SAP ABAP certification sample questions?
    Before giving the exam i wanted to just check mu knowlegde..
    Do not ask for sample question on SDN.
    Read and respect forum rules.
    Edited by: Zubin Shah on Jun 1, 2010 6:08 PM

    Hi
    If can answer most of these then you will have no problem with the cert exam: Security interview questions - some fun to tickle your brain.

  • ABAP performance issues and improvements

    Hi All,
    Pl. give me the ABAP performance issue and improvement points.
    Regards,
    Hema

    Performance tuning for Data Selection Statement
    For all entries
    The for all entries creates a where clause, where all the entries in the driver table are combined with OR. If the number of
    entries in the driver table is larger than rsdb/max_blocking_factor, several similar SQL statements are executed to limit the
    length of the WHERE clause.
    The plus
    Large amount of data
    Mixing processing and reading of data
    Fast internal reprocessing of data
    Fast
    The Minus
    Difficult to program/understand
    Memory could be critical (use FREE or PACKAGE size)
    Some steps that might make FOR ALL ENTRIES more efficient:
    Removing duplicates from the the driver table
    Sorting the driver table
          If possible, convert the data in the driver table to ranges so a BETWEEN statement is used instead of and OR statement:
          FOR ALL ENTRIES IN i_tab
            WHERE mykey >= i_tab-low and
                  mykey <= i_tab-high.
    Nested selects
    The plus:
    Small amount of data
    Mixing processing and reading of data
    Easy to code - and understand
    The minus:
    Large amount of data
    when mixed processing isn’t needed
    Performance killer no. 1
    Select using JOINS
    The plus
    Very large amount of data
    Similar to Nested selects - when the accesses are planned by the programmer
    In some cases the fastest
    Not so memory critical
    The minus
    Very difficult to program/understand
    Mixing processing and reading of data not possible
    Use the selection criteria
    SELECT * FROM SBOOK.                   
      CHECK: SBOOK-CARRID = 'LH' AND       
                      SBOOK-CONNID = '0400'.        
    ENDSELECT.                             
    SELECT * FROM SBOOK                     
      WHERE CARRID = 'LH' AND               
            CONNID = '0400'.                
    ENDSELECT.                              
    Use the aggregated functions
    C4A = '000'.              
    SELECT * FROM T100        
      WHERE SPRSL = 'D' AND   
            ARBGB = '00'.     
      CHECK: T100-MSGNR > C4A.
      C4A = T100-MSGNR.       
    ENDSELECT.                
    SELECT MAX( MSGNR ) FROM T100 INTO C4A 
    WHERE SPRSL = 'D' AND                
           ARBGB = '00'.                  
    Select with view
    SELECT * FROM DD01L                    
      WHERE DOMNAME LIKE 'CHAR%'           
            AND AS4LOCAL = 'A'.            
      SELECT SINGLE * FROM DD01T           
        WHERE   DOMNAME    = DD01L-DOMNAME 
            AND AS4LOCAL   = 'A'           
            AND AS4VERS    = DD01L-AS4VERS 
            AND DDLANGUAGE = SY-LANGU.     
    ENDSELECT.                             
    SELECT * FROM DD01V                    
    WHERE DOMNAME LIKE 'CHAR%'           
           AND DDLANGUAGE = SY-LANGU.     
    ENDSELECT.                             
    Select with index support
    SELECT * FROM T100            
    WHERE     ARBGB = '00'      
           AND MSGNR = '999'.    
    ENDSELECT.                    
    SELECT * FROM T002.             
      SELECT * FROM T100            
        WHERE     SPRSL = T002-SPRAS
              AND ARBGB = '00'      
              AND MSGNR = '999'.    
      ENDSELECT.                    
    ENDSELECT.                      
    Select … Into table
    REFRESH X006.                 
    SELECT * FROM T006 INTO X006. 
      APPEND X006.                
    ENDSELECT
    SELECT * FROM T006 INTO TABLE X006.
    Select with selection list
    SELECT * FROM DD01L              
      WHERE DOMNAME LIKE 'CHAR%'     
            AND AS4LOCAL = 'A'.      
    ENDSELECT
    SELECT DOMNAME FROM DD01L    
    INTO DD01L-DOMNAME         
    WHERE DOMNAME LIKE 'CHAR%' 
           AND AS4LOCAL = 'A'.  
    ENDSELECT
    Key access to multiple lines
    LOOP AT TAB.          
    CHECK TAB-K = KVAL. 
    ENDLOOP.              
    LOOP AT TAB WHERE K = KVAL.     
    ENDLOOP.                        
    Copying internal tables
    REFRESH TAB_DEST.              
    LOOP AT TAB_SRC INTO TAB_DEST. 
      APPEND TAB_DEST.             
    ENDLOOP.                       
    TAB_DEST[] = TAB_SRC[].
    Modifying a set of lines
    LOOP AT TAB.             
      IF TAB-FLAG IS INITIAL.
        TAB-FLAG = 'X'.      
      ENDIF.                 
      MODIFY TAB.            
    ENDLOOP.                 
    TAB-FLAG = 'X'.                  
    MODIFY TAB TRANSPORTING FLAG     
               WHERE FLAG IS INITIAL.
    Deleting a sequence of lines
    DO 101 TIMES.               
      DELETE TAB_DEST INDEX 450.
    ENDDO.                      
    DELETE TAB_DEST FROM 450 TO 550.
    Linear search vs. binary
    READ TABLE TAB WITH KEY K = 'X'.
    READ TABLE TAB WITH KEY K = 'X' BINARY SEARCH.
    Comparison of internal tables
    DESCRIBE TABLE: TAB1 LINES L1,      
                    TAB2 LINES L2.      
    IF L1 <> L2.                        
      TAB_DIFFERENT = 'X'.              
    ELSE.                               
      TAB_DIFFERENT = SPACE.            
      LOOP AT TAB1.                     
        READ TABLE TAB2 INDEX SY-TABIX. 
        IF TAB1 <> TAB2.                
          TAB_DIFFERENT = 'X'. EXIT.    
        ENDIF.                          
      ENDLOOP.                          
    ENDIF.                              
    IF TAB_DIFFERENT = SPACE.           
    ENDIF.                              
    IF TAB1[] = TAB2[].  
    ENDIF.               
    Modify selected components
    LOOP AT TAB.           
    TAB-DATE = SY-DATUM. 
    MODIFY TAB.          
    ENDLOOP.               
    WA-DATE = SY-DATUM.                    
    LOOP AT TAB.                           
    MODIFY TAB FROM WA TRANSPORTING DATE.
    ENDLOOP.                               
    Appending two internal tables
    LOOP AT TAB_SRC.              
      APPEND TAB_SRC TO TAB_DEST. 
    ENDLOOP
    APPEND LINES OF TAB_SRC TO TAB_DEST.
    Deleting a set of lines
    LOOP AT TAB_DEST WHERE K = KVAL. 
      DELETE TAB_DEST.               
    ENDLOOP
    DELETE TAB_DEST WHERE K = KVAL.
    Tools available in SAP to pin-point a performance problem
          The runtime analysis (SE30)
          SQL Trace (ST05)
          Tips and Tricks tool
          The performance database
    Optimizing the load of the database
    Using table buffering
    Using buffered tables improves the performance considerably. Note that in some cases a stament can not be used with a buffered table, so when using these staments the buffer will be bypassed. These staments are:
    Select DISTINCT
    ORDER BY / GROUP BY / HAVING clause
    Any WHERE clasuse that contains a subquery or IS NULL expression
    JOIN s
    A SELECT... FOR UPDATE
    If you wnat to explicitly bypass the bufer, use the BYPASS BUFFER addition to the SELECT clause.
    Use the ABAP SORT Clause Instead of ORDER BY
    The ORDER BY clause is executed on the database server while the ABAP SORT statement is executed on the application server. The datbase server will usually be the bottleneck, so sometimes it is better to move thje sort from the datsbase server to the application server.
    If you are not sorting by the primary key ( E.g. using the ORDER BY PRIMARY key statement) but are sorting by another key, it could be better to use the ABAP SORT stament to sort the data in an internal table. Note however that for very large result sets it might not be a feasible solution and you would want to let the datbase server sort it.
    Avoid ther SELECT DISTINCT Statement
    As with the ORDER BY clause it could be better to avoid using SELECT DISTINCT, if some of the fields are not part of an index. Instead use ABAP SORT + DELETE ADJACENT DUPLICATES on an internal table, to delete duplciate rows.

  • WiSM Design and Testing Issues / Questions / Queries etc......

    Hi all. Heres hoping you can help........
    I hope you can grasp the following description of the test network I have. I admit a diagram would have been better but it's hard to send a whiteboard over the web : )
    I am currently in the process of designing and testing out a wireless solution and am having a few issues / queries. I have a 6509 with a Wireless Services Module (WiSM) installed in slot 3, one Cisco 1240 AP on a remote LAN and a DHCP server on a remote LAN (not the same as the AP)
    I am using LAG on controller 1 with port channel 1 and native VLAN 20.
    VLAN 20 is 10.1.1.0 / 24
    The management interface has IP address of 10.1.1.10
    The AP-manager interface has IP address of 10.1.1.11
    VLAN 11 is 128.88.1.0 / 24
    The service port has IP address of 128.88.1.10
    The Cisco 1240 AP on the remote LAN is picking up a IP address via DHCP (from a remote DHCP server) OK and can route to both the aforementioned VLANs 20 and 11.
    Issue/Question 1
    I can ping the management interface locally on the 6509 and also remotely from the AP so all looks OK there however I cannot ping the AP-manager locally or remotely.
    Is this expected behaviour? I would expect that if I can ping one I should be able to ping the other or is the AP-manager interface not routed and only used in some way to create the LWAPP tunnel>
    Issue/Question 2
    As previously stated the AP is picking up and IP address but it is not being passed the Option 43 parameter from the DHCP server (not yet ruled out the DHCP server as the cause of this). Due to this I have amended the DNS entry of the management interface (10.1.1.10) to CISCO-LWAPP-CONTROLLER as a last resort. With a console on the AP I can see that the AP tries to join by the "%LWAPP-5-CHANGED: LWAPP changed state to JOIN" output but then get;
    LWAPP_CLIENT_ERROR_DEBUG: spamHandleJoinTimer: Did not recieve the Join response
    LWAPP_CLIENT_ERROR_DEBUG: No more AP manager IP addresses remain.
    Is this related to the fact that I cannot see the AP-Manager interface on the network?
    Issue/Question 3
    I have chosen to hard code the IP address of the Service port rather than leave it to DHCP. I am more comfortable having static addresses for management. However, there is no option for a default gateway for the service port.... If I try to get round this by applying a static route via the CLI on the WiSM controller to point traffic out via 128.88.1.1 on VLAN 11 this seemingly overrides all routing on the controller and causes my management interface (10.1.1.10) to fall off the network. Is the routing table applied "en masse" to the Controller? If so this surely means that to use the Service Port you have to be on the local LAN segement?!?!
    Thanks for reading my ramble and heres hoping you can shed some light on my "niggles" !

    Hi
    I am having exactly the same problem.
    Getting the same error message "No more AP manager IP addresses remain."
    I'm deploying 200 AP's that will connect to 2x WiSM (4 controllers) in 2 seperate C6k Chassis
    (Controller 1a & 1b = wism 1, 2a & 2b = wism 2)
    I have had 1 out of the first 5 AP's physically connected, come online and register with Controller 2b (btw: this was not the master controller, it should not have registed with 2b). All others fail with the same error message as above.
    I have all Management and AP-Manager interfaces in the same vlan/subnet as my AP's.
    I place a console cable onto the failed APs and see the AP cycle though the motions of trying to find the controllers, download new software code from a random controller, then it reboots, gets DHCP assigned, then get the "No more AP manager ip addresses remain" and then issues a "Reload requested by LWAPP CLIENT.
    Then the AP does the whole cycle all over again.
    Not sure why the AP's don't register with the controllers when they are all in the same vlan.
    I have a couple of extra questions.
    1. what address do you bind to the dns entry cisco-lwapp-controller.localdomain, is it the management address or AP-Manager address ?
    I have bound it to the Management address for WiSM 1a.
    Also I have 4x controllers (2x WiSMs, 2 controllers per WiSM). Do I just bind controller 1a's address or do I have to put 4x DNS entries into my DNS server for all my controllers?
    2. DHCP option 43, Do I place all 4x management ip addresses in the option or do I put in the AP-Manager Ip address?
    I followed this guide but was still a little unsure http://www.cisco.com/en/US/products/hw/wireless/ps430/prod_technical_reference09186a00804fc3dc.html#wp125304
    2. This final question is more around Dynamic Interfaces for my 4 controllers once I get the AP's resisted,
    Do I have to set up a dynamic interface ip address on every controller?
    e.g.
    Ssid = data, VLAN=10, VLAN10=10.0.0.0/24, I will bind AP's 1-8 to VLan group 10.
    Do I have to setup 1 dynamic interfaces per controller in the 10.0.0.0 subnet, taking up 4 addresses ?
    And if I only have to set up 1 or 2 dynamic interface, how does this work if the controller fails?
    Cheers

  • Consume WSDL in ABAP proxy : Issue with name space

    Hi,
    I was trying to consume a WSDL in ABAP and I have created ABAP proxy using wizard in SE80 and also did the LPCONFIG.
    While calling the proxy methods it is throughing the "authrization failed" error because of the following issue.I have successfully executed same WSDL from some third party tools with out error.only difference I have observed in SOAP request is, Third party tools passing all name spaces at envelope level but in ABAP proxy it is not passing all name spaces at envelope level.
    1. SOAP genarated from WSDL in  third party tool.
    <<b>soap:Envelope</b> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="<b>http://schemas.xxxxx.com</b> ">
      <soap:Body>
        <tns:<b>GetKMContent</b>>
          <tns:request>
            <tns:clientID>1</tns:clientID>
            <tns:employeeID>307478</tns:employeeID>   
            <tns:languageCountryCode>en-US</tns:languageCountryCode>
            <tns:wscVariables>
              <tns:empcountry>US</tns:empcountry>         
            </tns:wscVariables>
          </tns:request>
        </tns:GetKMContent>
      </soap:Body>
    </soap:Envelope>
    SOAP genarated from WSDL in  ABAP proxy.
    <<b>soap-env:Envelope</b> xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Header>
    <n0:Trace xmlns:n0="http://www.sap.com/webas/630/soap/features/runtime/tracing/">
    <TraceLevel xmlns="http://www.sap.com/webas/630/soap/features/runtime/tracing/">Full</TraceLevel>
    </n0:Trace></soap-env:Header>
    <soap-env:Body>
        <nr1:<b>GetKMContent</b> xmlns:nr1="<b>http://schemas.xxxxx.com</b> ">
             <nr1:request>
               <nr1:clientID>1</nr1:clientID>
               <nr1:employeeID>307478</nr1:employeeID>
               <nr1:languageCountryCode>en-US</nr1:languageCountryCode>
               <nr1:wscVariables>
               <nr1:empcountry>US</nr1:empcountry>
               </nr1:wscVariables>
            </nr1:request>
         </nr1:GetKMContent>
      </soap-env:Body>
    </soap-env:Envelope>
    I was trying to use the SOAP genarated in ABAP proxy in thrid party tool and end up with same "authrization failed " error. If I move the name space  <b>nr1</b> from <<u>nr1:GetKMContent xmlns:nr1="http://schemas.xxxxx.com "></u>  <b>GetKMContent</b> node to <b>soap-env:Envelope</b> <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:nr1="http://schemas.xxxxx.com "> then it is working fine.
    Question :Is there any way in ABAP proxy to pass name space at soap-env:Envelope level or is there any way to change the SOAP request once it is genarated from ABAP Proxy?. Is there any API to change SOAP information?
    Thanks,

    Hi Kavitha,
    I am also facing the same issue.
    Could you please share the solution if you have solved this.
    Thanks,
    Arun

  • Reinstallation SAP ABAP Netweaver issue message server not connected

    hi ,
    i am trying to reinstall SAP ABAP Netweaver but getting error in step 24 of 27. i am getting the following error.
    WARNING 2010-07-20 08:52:08.078 iaxxcmsclient.cpp:93
    CIaMsgClient::CIaMsgClient(localhost, 3900)
    Connect to message server (localhost/3900) failed: NIECONN_REFUSED.
    INFO 2010-07-20 08:52:08.078
    CJSlibModule::writeInfo_impl()
    State of instance NSP/DVEBMGS00 changed from ABAP: UNKNOWN to ABAP: UNKNOWN.
    WARNING 2010-07-20 08:52:37.171 iaxxcmsclient.cpp:93
    CIaMsgClient::CIaMsgClient(localhost, 3900)
    Connect to message server (localhost/3900) failed: NIECONN_REFUSED.
    WARNING 2010-07-20 08:53:07.156 iaxxcmsclient.cpp:93
    CIaMsgClient::CIaMsgClient(localhost, 3900)
    Connect to message server (localhost/3900) failed: NIECONN_REFUSED.
    WARNING 2010-07-20 08:53:36.125 iaxxcmsclient.cpp:93
    CIaMsgClient::CIaMsgClient(localhost, 3900)
    Connect to message server (localhost/3900) failed: NIECONN_REFUSED.
    Please do tell me how to resolve this issue.
    thanks,
    tanmaya

    Hi Tanmaya,
    Question: How to find whether the port is blocked or not?
    (A) You can check the message server port in txn SMMS or dev_ms trace in ST11 to verify if the port is correctly set. If it is and you cannot connect to the message server then you will need to find out which program/service is occupying port 3900. So please follow the steps below:-
    (A1) On Unix there is a program called LSOF available which shows ALL programs that occupies all ports. SAP Note [164937|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_cst/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d313634393337%7d] shows were you can get this program.
    (A2) On Windows the equilivent of LSOF is Process Explorer from the Sysinternals Suite. This is available on the MS website [here|http://technet.microsoft.com/en-us/sysinternals/bb842062.aspx]. You can use this to filter by port.
    So using these programs you will be able to see which programs occupy all ports on your server and either remove or disable them.
    P.S. You can use SAP Note [421359|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_cst/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d343231333539%7d] to bind any port to any service on Unix including "protected" ports !!!
    Hope this helps
    Michael

  • BI Java and BI ABAP -RSPLAN issue

    Hi All
    We are working with BI system ,using BI 7.0 Java and BI ABAP as separate systems on same host.
    Already run the template intaller for BI Java and ABAP integration.
    But facing some issue ,when going ot BI ABAP and RSPLAN and clicking the Start Mideller
    it is opening a browser as http://host:8000/sap/public/myssocntl?sap-client-XXX
    Since this is not correct and it should open BI Java portal instead of ABAP stack page.
    Instead this should open a Url like this http://host:5XX00/webdynpro/dispatcher/sap.com/biplanworkbench1/Modeler?
    I check on BI ABAP system under SAP Reference IMG -> SAP Customizing Implementation Guide-> SAP NetWeaver _> Business Intelligence-> BI Integrated Planning -> Settings for Starting the Planning Modeler.
    There the default Url is BEx Portal Server and the url is        
    http://host:5XX00/webdynpro/dispatcher/sap.com/biplanworkbench1/Modeler
    Can anybody let me know why this is going to ABAP server instead it should go to Java.
    Regards
    Ajay
    Edited by: Ajay Sandal on Mar 10, 2009 2:31 PM

    Hi Ajay ..
    Good news that ur issue is resolved ..
    I have somewhat similar issue .. Hopu u can put some light ..
    I have Bi 7.o with Add on java  ,
    In RSPLAN from ABAP system , modular page is not coming . if i click on start moduler button in RSPLAN ..portal page is coming up and i have to give logging details .
    Please suggest .
    Thanks

  • Jabber for Windows - Outlook Meeting integration issue/questions

    Hi,
    A couple of questions if anyone else has experienced or can answer:
    1. When you turn on Jabber it appears in the trace file to create a transitionlist of meetings in your calendar for the next four hours. Eg if meeting 8-9 it will show 8:00 BUSY
            9:00 FREE
    and this works ok. This transitionlist also seems to update each time a status change occurs from what I have observed.
    The problem we seem to have is if I open Jabber at 7.45am and have a meeting 8 - 9 then it shows "In a meeting", then if I create a meeting at 9.15am for 10am-10.30am, the meeting status does not change as it seems to operate of the four hour transitionlist. I have the setting in the CUPS server for exchange sync to happen every twenty minutes, but this does not seem to update.
    I'm be focussing on the wrong area but basically not all calendar appt's update status in Jabber, especially the one's created within the four hour pperiod.
    2. To have the presence status of a person in an Outlook email address field, do you need 2010 or does it work with prior versions, we currently operate 2003. I have configured the SIP component in AD, but no status or click to call facility from Outlook.
    Thanks in advance
    Mal

    Hi Mal,
    Thanks for your post. Issue (1) sounds like a configuration issue in your setup. Please open a TAC case for further assistance.
    Regarding (2), Jabber for windows does noot support Office 2003. List of supported MS Office applications is listed in Jabber for Windows administration guide.
    http://www.cisco.com/en/US/docs/voice_ip_comm/jabber/Windows/9_0_1/b_jabber_win_icg_chapter_01000.html#reference_AC2F9334FEC54DA98861EB52944C6F08
    Thanks,
    Maqsood

  • MacBook Pro 13" Screen Issue Question

    Hey guys
    I have this strange area on my MacBook Pro screen that is noticalby brighter than the rest of the screen. I've tried using the screen capture function, but the patch doesn't show up on that images generated. Here's a photo i took with my iPhone
    xtjied.jpg
    It's the area near the centre of the photo where the issue is present. It is easier to see on the photo if you move away from the screen, so you're further away, then it stands out more. However i can see it clearly when using the MBP on my lap or on a table.
    My MacBook is still in warranty, so my questions are:
    A) Should i take my machine to the Apple Store to show them the issue?
    B) What are they store likely to do, will they replace the screen, replace the machine or simply turn me away and tell me the issue doesn't warrant action?
    Even though it might seem like a small issue, once i see it whilst working my vision is drawn to it, so i lose focus on the rest of my screen.
    Thanks in advnace
    Tom

    Thanks for you response, I just want to check you're seeing the same error i am, i know the photo looks like there's a large area with a different brightness, but that's just because of the way I was positioned when taking the photo.
    Here's a better photo to illustrate the issue i'm having
    http://i.imgur.com/mDogr.jpg
    It's the small area just off centre that is a different colour to the rest of the image.
    http://i.imgur.com/UF8c9.jpg
    it kind of looks like a thumb print, but it's not
    Would you still expect them to replace/repair my machine?
    Thanks again

  • Several issues questions with 865PE neo2 FIS2R

    ok first off thanks to the people here, the sticky's are great and very informative.
    although i do find the info outdated in that they all refer to old bios's. other than that this is a fantastic forum
    ok so on with the questions.
    im using a Silicon Image IDE U133 RAID controller (PCI CARD), , the ide hard drive(s) do NOT have to be in raid its just like a Promise card but its made by someone else.
    ANYTIME i have ANY type of hard drive hooked up to that, the motherboard takes nearly 5 minutes to boot to the active hard drive. even if i select boot menu and then the RAID hard drives the SATA drives i mean.
    my active hard drives are 2 Maxtor 160gig SATA drives in RAID0 mode.
    if i have NO hard drives hooked to the controller card the system boots directly to the active boot hard drive. without dealy.
    IF i have an ide hard drive set to boot off the SIL card, it takes just as long. which seems like ages.
    anyone know of issues with this mobo and certain IDE hard drive controllers. (PCI)
    i too am having blank sreen issues with my 9700 pro video card.  but mine is nearly 2 out of 5 times i boot i have no video, and many times i am forced to reach around the pc case and unplug the power cord for a few minutes, in order to get the system to boot WITH video.
    another issue that i have and this is the WORST.
    nearly 90% of the time, the motherboard will NOT i repeat will NOT boot from a floppy or cdrom, all i get is the message on screen, if i am using a bootable floppy, like "Starting windows 98" or "Starting Windows ME"  these are DOS boot disks made with windows XP.
    i then get only a blinking curser. and nothing else.
    OR
    i get a blinking cursor and then i must wait 5-10 minutes before anything else happens. and even then usually the cdrom or floppy wont complete the booting process.
    this happens regardless of if i have anything hooked to that IDE controller card.
    i am now using the LATEST bios offered for this mobo and nothing has changed in fact ,,well according to the readme i was expecting to see some changes within the bios but i seee none. maybe i read the read me wrong. (say that 5 times fast)
    i can NOT run the ram performance mode in anything other than slow. which is making me very angry.
    i have infineon ram not sure what model but i will report back when i find out.
    but i do recall sandra reporting it as supporting 2.5cas and other setting that appear to be FAST or TURBO and yet i cant use those in the bios otherwise my system reboots in windows or i get memory speed errors during post.
    overall im VERY pleased with this mobo but am discouraged at the way its treating me.
    i have a PentIV 3.0ghz HT which is a NON production model, it is a sample model with the multiplyer unlocked.  i can go with a lower multiplyer but NOT a higher one, so i assume its unlocked but the CPU itself is limited to 15x multiplyer.
    i have tried tons of configurations and can run very stable at 3.45ghz but i MUST make the dram 333 mhz  not 400. then raise the FSB to around 225 or 230.  but i still get serious power offs when doing any heavy work on the pc.
    i have CPU voltages at 1.575 yet  sandra reports it as 1.55
    DRAM voltage at 2.7  ( i am using DDR400)
    and AGP at 1.7
    with this CPU what is a GOOD voltage to use.
    is it ok to go higher than 2.7 with DDR400 ?
    and AGP  everything i have read said that 1.8v will fry the 9700 pro.  is this true ?
    sorry im asking alot of questions but if you can help me with any of them i would REALLY appreciate it, and i would pass along any info i learn.!

    Well as Far as your PCI IDE Controller Questions are concerned, I would not know as I have never Used one , And with the Available Promise controller, you should Try using this instead......As Far as your Memory Voltage, You can Raise the Voltage above 2.7 Volts, But unless you are Really Overclocking the PBS or FSB as some call it, then 2.7 Volts is the "Norm" For this Board, But if you do NOT have High Performance RAM you should check with the Manufacturer, before you Go any Higher than 2.7 V, as far as the AGP Voltage is concerned, 1.6 Volts is the MAX that you should Have it set to with any of the new NVIDIA-FX or ATI-PRO, or XT Series Cards, Because as you know, the Cards that are 8X AGP Speed only Require .8Volts to begin with, and the ABP Voltage is Further Reduced by the Cards onboard Electronics, And if you have one of the High Performance Cards, well as you know, these get 90% of their Operating Power from the 4 Pin Molex PSU Connector. Any higher AGP Voltage then 1.6 Volts will only increase the Temps. of Both the Motherboards Chipset, and the VPU itself.................Sean REILLY875

  • Home Hub 3 Port Forwarding Issue - Question to BT

    Question to BT
    Hello i have recently joined BT Infinity and have hit the issue of the Port Forwarding not working. My HH3 is on the following version of software. Will this version automatically upgrade to the latest version of firmware and will this fix my port forwarding issue?
    As i work in IT (Cisco Network Eng) i need to be able to access several devices/services at home and this is a real pain for me. If you think that this could drag on as some posts have indicated could you please let me know and i will either get a draytek or throw in a cisco 1841.
    Thank you
    Dean.
    Current firmware:
    V100R001C01B031SP09_L_B
    Last updated:
    Unknown

    requiem wrote:
    Question to BT
    Hello i have recently joined BT Infinity and have hit the issue of the Port Forwarding not working. My HH3 is on the following version of software. Will this version automatically upgrade to the latest version of firmware and will this fix my port forwarding issue?.........
    Thank you
    Dean.
    Current firmware:
    V100R001C01B031SP09_L_B
    Last updated:
    Unknown
    Hi Dean
    By the look of it you've got the type B version of the HH3 with current firmware.
    From http://bt.custhelp.com/app/answers/detail/a_id/13073
    The latest versions of the firmware are:
    BT Home Hub 3 – Software version 4.7.5.1.83.8.57.1.3 (Type A) or V100R001C01B031SP09_L_B
    Please Click On any Text in Blue as that automatically links to information.
    PC (NDEGR)

  • ABAP Dump issue while accessing Gateway

    Hi
    We have recently upgraded our Gateway server to SP03. Eversince after service generation while accessing the XML/Metadata from the consumption page we get an HTTP error with Dump. Has anyone faced this problem before.
      <?xml version="1.0" encoding="utf-8" ?>
    - <error xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance">
      <code>HTTP/500/E/Internal Server Error</code>
      <message>Call of service /sap/opu/sdata/sap/Z14335_RFC_BP_1/ terminated because of an error. The following error text was processed in system AC1 : Syntax error in program /IWCOR/CL_REST_HTTP_HANDLER===CP .The error occurred on the application server njsapnet3. The termination type was: RABAX_STATE.If the termination type is RABAX_STATE, you will find more information on the cause of termination in system AC1 in transaction ST22. If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server njsapnet3 in transaction SM21. If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process in transaction ST11 on the application server njsapnet3. You may also need to analyze the trace files of other work processes. If you do not yet have a user ID, contact your system adminmistrator.</message>
      </error>

    Hi All,
    I am also facing the same issue.
    When i am executing query/read operation my service it will works properly and getting data also,but when i am trying get X-CSRF token it throws error(ABAP Dump) .Can you please help me out this issue.
    Based on the Tx: ST11..getting below log.
    A  ABAP Program /IWCOR/CL_REST_HTTP_HANDLER===CP        .
    A  Source /IWCOR/CL_REST_HTTP_HANDLER===CCIMP      Line 40.
    A  Error Code ASSERTION_FAILED.
    A  Module abassert.c.
    A  Function ab_aabAssertionFailedRabax Line 1880.
    A  ** RABAX: level LEV_RX_STDERR completed.
    A  ** RABAX: level LEV_RX_RFC_ERROR entered.
    A  ** RABAX: level LEV_RX_RFC_ERROR completed.
    A  ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A  ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A  ** RABAX: level LEV_RX_IMC_ERROR entered.
    A  ** RABAX: level LEV_RX_IMC_ERROR completed.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A  ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A  ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A  ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A  ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A  ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A  ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A  ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A  ** RABAX: level LEV_RX_END entered.
    A  ** RABAX: level LEV_RX_END completed.
    N
    N Thu Jan 03 15:00:58 2013
    N  *** ERROR => System ID and client from ticket are not the same than mine. [ssoxxkrn.c   1065]
    N  {root-id=0050569E07B31ED295B108EAC1527575}_{conn-id=0050569E07B31ED295B108EABC707575}_1
    N  *** ERROR => Neither was ticket issued by myself nor can I find issuer in TWPSSO2ACL (see note 1055856). [ssoxxkrn.c   1071]
    N  {root-id=0050569E07B31ED295B108EAC1527575}_{conn-id=0050569E07B31ED295B108EABC707575}_1
    i am getting based on Tx:ST22
    Category          
    ABAP Programming Error
    Runtime Errors    
    ASSERTION_FAILED
    ABAP Program      
    /IWCOR/CL_REST_HTTP_HANDLER===CP
    Application Component  OPU-FND-CCL
    Note: I am using SAP NW-GW-SP04
    Thanks,
    Syam

Maybe you are looking for

  • IMessage how many iPhones can you use with the same iMessage account

    i have both a phone number in Ecuador and one in the USA when i visit and i want people that write me on my ecuadorian account will be able to write me on my USA phone number too. i assume that since you can push i message to otehr devices you could

  • Main method not found and how to put event handlers in an inner class

    How would I put all the event handling methods in an inner class and I have another class that just that is just a main function, but when i try to run the project, it says main is not found. Here are the two classes, first one sets up everything and

  • Acknowlegment of PO sent through E mail & report for the same

    Hi SAP Experts, We have started sending PO through E Mails.Now our client have requirement that they should receive acknowledgement from vendor about the receipt of PO & also should able to generate report vendor wise about the receipts of PO.Current

  • Premiere Pro project becomes "broken" when rendering or exporting.

    Hey, everybody. First off I am by no means an expert or anything when it comes to using PR. This is my first time using Premiere Pro. I opened up a new project using all of the default settings. My project consists of audio of some keyboards and synt

  • ISight on MacPro used by MacBook Pro?

    Anyone knows if it would be possible for a MacBook Pro to access the iSight camera on a MacPro via a wireless network and what software you would use on the MacBook Pro to access the camera? It would just be the coolest way ever to check on the baby