Error when selecting a user

Hi everyone:
We have implemented SAP NetWeaver 7.0, and we defined "ABAP System" as Data Source.
We've come across a strange error while selecting some particular users (clicking on user) in Netweaver under User Management -> Identity Management > Selecting a User (clicking on user)
"java.lang.NoSuchMethodError: com.sap.tc.webdynpro.services.sal.url.api.WDURLGenerator.isSecureURL(Ljava/lang/String;)Z"
So far, this error has happened only when selecting a user that has the E-Mail field defined in the ABAP side. If we delete the E-Mail address from de ABAP account and then select the user in the Java Identity Management, the error disappears and the user account is perfectly shown.
Any suggestions guys??
Regards,
Pablo Vaquero

Hi Ravi,
Thank for your reply.
That indeed is the issue!... Since we have defined "ABAP System" as the Data Source, the E-Mail field can only be mantained on the ABAP side. But, as I've said on my previous post, when we fill this field in the ABAP side for any particular user and then want to see this change in user details on the UME side, when clicking on that particular user we get the error mentioned above.
Regards,
Pablo

Similar Messages

  • Error when selecting volume

    Hello,
    I just restarted my Maxtor external hard disk (which I use for time machine) because my Mac did not recognize it anymore.
    Now it does but I get an error when selecting the volume for Time Machine. The error says:
    "The file '.0011246f8842' can not be saved in the map 'Time Machine-reservekopieen'."
    Does anybody have a clue what I need to do to get my Time Machine working again?
    Thanks!
    BB

    Bauke Boezeman wrote:
    Hello,
    I just restarted my Maxtor external hard disk (which I use for time machine) because my Mac did not recognize it anymore.
    Now it does but I get an error when selecting the volume for Time Machine. The error says:
    "The file '.0011246f8842' can not be saved in the map 'Time Machine-reservekopieen'."
    Hi, and welcome to the forums.
    I'm not sure if that's the same message, but it sounds like a common permissions problem.
    Try this: Open the Terminal app (in your Applications/Utilities folder).
    In Terminal, the prompt looks like this: user-xxxxxx:~ <your name>$
    (where <your name> is your short user name). It's followed by a non-blinking block cursor (unless it's been changed via Terminal > Preferences).
    At the prompt, type the following exactly as shown, substituting the name of your TM drive exactly, including any spaces, between the quotes:
    sudo chmod 644 /volumes/"TM drive name"/.0011246f8842
    Press Return. You'll get some warnings and a request for your Administrator's password. Type it in (it won't be displayed) and press Return again.
    Then try a +Back Up Now.+

  • Error when creating a user - IAM-3010183 : An error occurred while checking if a user already exists with the Common Name generated.

    Error when creating a user - IAM-3010183 : An error occurred while checking if a user already exists with the Common Name generated.

    in OIM 11g R2
    Message was edited by: 2b3c0737-074f-48d0-a760-e24e3ed9a37c

  • Syntax error when creating a user-defined table type in SQL Server 2012

    Why am I getting a syntax error when creating a user-defined table type in SQL Server 2014?
    CREATE TYPE ReportsTableType AS TABLE 
    ( reportId INT
    , questionId INT
    , questionOrder INT );
    Results:
    Msg 156, Level 15, State 1, Line 1
    Incorrect syntax near the keyword 'AS'.

    Hope these posts could help, 
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/37a45a9a-ed8c-4655-be93-f6e6d5ef44be/getting-incorrect-syntax-while-creating-a-table-type-in-sql-server-2008-r2?forum=transactsql
    Regards, Dineshkumar,
    Please Mark as Answer if my post answers your question and
    Vote as Helpful if it helps you

  • Error when select posting level in document type

    Hi,
    Did anyone have an experience to face the Abab run time error when select "posting level" in document type?
    The Error is : GETWA_NOT_ASSIGNED
    Short text
    Field symbol has not yet been assigned.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "CL_UC_ITKEY_FACTORY===========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.

    If you searched the notes, as Dan proposed (and didn't find anything relevant), and the answer to the Greg's question is positive, then I would suggest regeneration data basis and ConsArea due to data model inconsistency.
    If it doesn't not help - open customer message to SAP.
    Edited by: Eugene Khusainov on Jan 26, 2010 10:26 AM

  • Error when selecting the Report Center tab of the Issues web DB

    I started a DB from the Issues web DB template. Everything worked fine when I shutdown last night, but this morning I started receiving the following error when selecting the Report Center tab.
    You must specify an object for the BrowseTo to open. I have noticed that the ReportCenterDefault form no longer displays. How do I correct this?

    Hi Ben
    Wyer,
    Have you resolved
    your problem yet, and does the suggestion help you? If you still have any concern on the thread, feel free to follow up.
    Best Regards,
    Bruce Song [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • ORA-1722 ERROR WHEN SELECTING MFG_LOOKUPS TABLE

    제품 : AOL
    작성날짜 : 2003-04-07
    ORA-1722 ERROR WHEN SELECTING MFG_LOOKUPS TABLE.
    ================================================
    PURPOSE
    Problem Description
    sqlplus 에서 mfg_lookups table을 select할때,
    ORA-1722 Invalid number 에러발생
    Workaround
    Solution Description
    =======================================================
    CREATE OR REPLACE VIEW mfg_lookups(
    lookup_type,
    lookup_code,
    meaning,
    description,
    enabled_flag,
    start_date_active,
    end_date_active,
    created_by,
    creation_date,
    last_update_date,
    last_updated_by,
    last_update_login
    AS
    SELECT lv.lookup_type,
    TO_NUMBER(lv.lookup_code) lookup_code, <==== Wrong code!!!
    lv.meaning,
    lv.description,
    lv.enabled_flag,
    lv.start_date_active,
    lv.end_date_active,
    lv.created_by,
    lv.creation_date,
    lv.last_update_date,
    lv.last_updated_by,
    lv.last_update_login
    FROM fnd_lookup_values lv
    WHERE lv.LANGUAGE = USERENV('LANG') AND
    lv.view_application_id = 700 AND
    lv.security_group_id =
    fnd_global.lookup_security_group(lv.lookup_type,
    lv.view_application_id)
    =================================================================
    MFG_LOOKUPS 은 view로 fnd_lookup_values의 lookup_code값을 가지고 오는
    방식이나, to_number로 변환하게 되어 있어 숫자가 아닌 문자의 경우
    이와 같은 에러를 발생한다.
    이번 경우, 고객이 새로 등록한 Lookup code였고, code값을 숫자의 format으로
    다시 등록하니 해결됨.
    Reference Documents
    -------------------

    Yes but this is a regular operation and the INSERT is the only opportunity.
    BTW, look at what else I have just found:
    INSERT INTO Local_Table (a, b)SELECT col1, col2 FROM DUAL INNER JOIN Table1@remote ON (1=1) LEFT JOIN Table2@remote ON (...)
    OK.

  • VDI 3.1 EA - Internal Error when assigning a user to a pool

    Hello:
    I'm hoping somebody can help point me in the right place to troubleshoot this. I'm using OpenLDAP and I've changed my LDAP filters so I can search for the users but when I select the user and click on the 'OK' button, it pukes out with an Internal Server Error and a stack trace that some Java exception threw.
    I don't know what the problem is or what direction to even start looking...
    -K

    I figured out what my problem was. I needed to set my group filters for ldap. As soon as I set all of my group filters it stopped crashing on me. It's interesting that it crashed but basically if I had followed the direction it would have worked the first time. I stopped after I set the user filters.
    I would post all of the filters I set but since they are specific to my LDAP setup they wouldn't do anybody else any good.
    But understanding LDAP filters in general and then reading this page completely should keep others out of trouble.
    http://wikis.sun.com/display/VDI3dot1/How+to+Edit+the+LDAP+Filters+and+Attributes
    Thanks anyway!

  • Error when editing Portal User Profiles

    Hi there,
    I got this error message when editing Portal User Profiles
    Error: The specified user does not exist. (WWC-41406).
    I can select users from OID, but can't edit them.
    Note: these users are imported from AD and placed in a different OU other than users container in OID.
    But, If I create a user in the same OU from Portal Administration page, then I can select and edit that user's Portal Profile.
    So what's the difference between imported users and the user created from Portal?
    Please advise.
    Thanks,
    Geoff

    REPORTSDEV was an invalid user so we dropped this user and started over and now it works.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by GREGG SAKSEFSKI ([email protected]):
    I'm tring to edit user REPORTSDEV.
    So I'm on the "Administer" tab and enter "REPORSDEV" in the User box and press <EDIT> button.
    After a couple minuates I receive the error below:
    Error: Unexpected error encountered in wwsec_api.id_sso (User-Defined Exception) (WWC-41417)
    The system failed to retrieve the necessary HTTP request to the Login Server to validate this user. (WWC-41447)
    Any ideas???<HR></BLOCKQUOTE>
    null

  • Error when selecting system during scheduling of background job in RAR

    Hi,
    I am getting an error when I attempt to schedule a background in RAR. It happens when I go to the multiple system selection option. I select a system and click copy. An error example below appears in the logs even when I dont go ahead and schedule the job. The job still runs and returns results when scheduled. However these errors in the logs concern me. Anybody else experience this?
    Aug 4, 2010 4:12:32 PM com.virsa.cc.common.util.ExceptionUtil logError
    SEVERE: NodeElement(.BatchRiskAnalysisSelection.RoleAnalysisInput.RoleAnalysisSystems): unknown attribute Sign
    com.sap.tc.webdynpro.progmodel.context.ContextException: NodeElement(.BatchRiskAnalysisSelection.RoleAnalysisInput.RoleAnalysisSystems): unknown attribute Sign
         at com.sap.tc.webdynpro.progmodel.context.NodeElement.wdGetAttributeInfo(NodeElement.java:374)
         at com.sap.tc.webdynpro.progmodel.context.NodeElement.setAttributeValue(NodeElement.java:877)
         at com.virsa.cc.common.GUIElement.copyAttributes(GUIElement.java:696)
         at com.virsa.cc.common.GUIElement.copyNodeTree(GUIElement.java:792)
         at com.virsa.cc.common.GUIElement.copyNodeTree(GUIElement.java:777)
         at com.virsa.cc.common.ui.MultipleSelectionView.onActionCopy(MultipleSelectionView.java:187)
         at com.virsa.cc.common.ui.wdp.InternalMultipleSelectionView.wdInvokeEventHandler(InternalMultipleSelectionView.java:259)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
    Regards,
    Niamh

    Hi
    Did you check the connector whether the background system is connecting or not.
    Goto RAR-Configuration>connectors> select the connector of the background system and then press on test connection.
    Regards
    Hari

  • Error when selecting values in column prompt

    Hi,
    I have one report in OBIEE with large filter on it, it was giving error initially, but i modified filter, i'm getting results in results tab now, but when i'm selecting values in coloumn prompt, i'm getting error.
    Error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14023] None of the fact sources for Business Unit.BU Business Unit Code are compatible with the detail filter.
    Query is going through three dimension tables and one fact table. But in BMM layer, each dimension table is joined to 4 fact tables.
    I'm not able to resolve this error.
    Please give me any suggestions to solve this error.
    Thanks in advance.

    Hi All,
    FYI...
    This is a bug in the application.
    SR Update: There is a known issue of ODBC throwing the 26002 error when any SQL with a length of greater than 64KB characters is encountered. This has been filed as BUG 8251994.

  • Error when selecting Activity Guide item from BPM Workspace

    Hi,
    I've installed 11.1.1.6 SOA/BPM onto my local machine.
    I've deployed an Activity Guide example. This loads fine when i create an instance, the GUI loads and i can see the process progress on the left hand side.
    I have created my own test app and deployed it. I can see an instance in the Activity Guide List; however when selecting it the GUI doesn't load and i get an ADF error thrown.
    I can view the task from the Task List and open the GUI just fine. It only seems to be when selecting it from the Activity Guide List that i experience the problem.
    The error i can see in the logs is this:
    Caused by: java.rmi.RemoteException: EJB Exception: ; nested exception is:
         java.lang.NullPointerException
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:205)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at oracle.bpel.services.workflow.activityguide.query.ejb.AGQueryService_kcuma2_EOImpl_1036_WLStub.getAGDisplayInfoDetailsById(Unknown Source)
         at oracle.bpel.services.workflow.activityguide.query.client.AGQueryServiceRemoteClient.getAGDisplayInfoDetailsById(AGQueryServiceRemoteClient.java:101)
         ... 112 more
    Any ideas?
    Kind Regards

    I've had the same issue with activity guides in 11.1.1.6 the last couple of days and thought I had been doing something wrong. Wish I'd seen your post sooner.
    Guessing it's a bug - know there's a patch set out - perhaps it's fixed in that.

  • Error when selecting batch during prod order creation

    Hi Gurus,
    When selecting batch for production orders components, an error prompted 'Invalid batch, does not match the selection criteria in batch determinat.'
    After checking, it is because the classification is not maintained. So I need to re-create in MSC2N.
    The question is, how/where should I change back the configurations on checking the batch classification during prod ord?
    Thank you.

    Kumar,
    Please let me know how many Component items are there in the BOM? Out of which how many are Phantom assembly?
    It looks like when the BOM is copied to the order it is crossing 9999 items.
    I would suggest you to use an intermediate order/material to reduce this number.
    I think there was an OSS notes for this to extend the number of character length for BOM items numbering (POSNR).
    Hope this helps...Reward your points,
    Regards,
    Prasobh

  • BSP ASSIGNMENT ERROR WHEN SELECT A TAB IN TABSTRIP

    Hi all,
    I have a dump when select one of the four tabs, in which three working fine.
    Plese see the below dump and help as soon as possible.
    Runtime Errors         MOVE_TO_LIT_NOTALLOWED                          
    Exception              CX_SY_DYN_CALL_ILLEGAL_TYPE                     
           Occurred on     09/18/2006 at 20:51:05                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "CL_BSP_MODEL==================CP " had to be 
    terminated because one of the                                         
    statements could not be executed.                                      
    This is probably due to an error in the ABAP program.                  
    Error analysis                                                                               
    An exception occurred. This exception is dealt with in more detail below       
    . The exception, which is assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', 
    was neither                                                                   
    caught nor passed along using a RAISING clause, in the procedure               
    "IF_BSP_MODEL_UTIL~CONVERT_FROM_STRING" "(METHOD)"                            
    Since the caller of the procedure could not have expected this exception       
    to occur, the running program was terminated.                                 
    The reason for the exception is:                                               
    You attempted to overwrite the field "<L_FIELD>", although it is a             
    constant (i.e. a numeric literal or a string literal). This is not             
    allowed.                                                                       
    The following objects are protected:                                           
    - Character or numeric literals                                                
    - Constants (CONSTANTS)                                                        
    - Function module and method parameters with the type IMPORTING                
      REFERENCE                                                                    
    - Untyped field symbols that have not yet had a field assigned to them         
      using ASSIGN                                                                 
    - TABLES parameters, if the actual parameter is protected against              
      changes                                                                      
    - USING reference paraemters and CHANGING parameters in FORMs if the           
      actual parameter is protected against changes                                
    - Field symbols, if the field assigned to them using ASSIGN is protected       
      against changes (for example, key components of a SORTED or HASHED           
      TABLE)                                                                       
    - External write access to an attribute with the READ-ONLY attribute           
    I have the below error in webpage.
    500 SAP Internal Server Error
    Error message: Assignment error: A constant was meant to be overwritten. ( type of termination: RABAX_STATE
    if anybody have solution to this please help me.
    Thanks in advance.
    Saravanan.V

    Hi,
      Go through the sample bsp application <b>SBSPEXT_HTMLB-> TabStrip.bsp</b> and check where you are going wrong.
       Post the code to point out where you are going wrong.
    Regards,
    Azaz Ali.

  • Error when selection flights in ECC 6 (Name element)

    Good Day
    I hope someone will be able to assist with my problem.
    We have implemented ECC 6, EHP 6.
    When creating a travel plan on ESS we do sometimes and only certain users do get the following error - "Error during creating of name element for booking"
    Could this be a certification error - the reason asking is when I create for the same employee on my laptop I do not get the error.
    Any assistance will be appreciated
    Regards
    Jaco Nel

    hi to every one
    facing that error when
    ERROR 2009-02-24 13:32:48
    CJS-00084  SQL statement or script failed.<br>DIAGNOSIS: Error message: ORA-01092: ORACLE instance terminated. Disconnection forced
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    .<br>SOLUTION: See ora_sql_results.log and the Oracle documentation for detail
    and then i check the ora_eql_results.log then i found
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    DOC>######################################################################
    DOC>######################################################################
    DOC>     The following statement will cause an "ORA-01722: invalid number"
    DOC>     error and terminate the SQLPLUS session if the user is not SYS.
    DOC>     Disconnect and reconnect with AS SYSDBA.
    DOC>######################################################################
    DOC>###

Maybe you are looking for

  • Needs  help to retrive the last row in a  select query without using rownum

    Hi , i need to retrive the last row from the select sub query without using rownum. is there any other way to retrive the last row other than the below query. is that the ROWNUM=1 will always retrive the 1 row of the select query ? select from* *(sel

  • How to tranfer my doc to mackair book

    how do i transfer my documents, from my desktop  imack , to my 11" mackair book

  • Doubts in upgrading 3.5 to BI 7

    Hi, we are going to upgrade from 3.5 to bi 7.0.Please answer for my questions. 1. in Bi 7 Data flow is different datasources - (infopackage) -> PSA -(DTP) -> data target. what happens the existing data flow in 3.5 otherwise we have to create from scr

  • PSE 11 Activation Fails After Camera Raw Update - 12-14-12

    I updated Camera Raw today (12-14-12) through the Adobe Software Updater.  Now when I start PSE 11, I get a message that the software has exceeded its activation limit. I chatted with "Ankish" who kindly reset the activation.  It worked while I was o

  • APPS.ECX_INBOUND  not found?

    Hi All I am trying to do POInboundXMLGateway Example as given in the tutorial in BPEL 10.1.3.1. When I deploy the process and run it , I get this exception APPS.ECX_INBOUND not found. I have checked this on Vision Instance in Administrator Workflow T