How to validate SMP Users against Gateway using OData

Hello Experts ,
Could you please let me know the procedure for validating SMP users via gateway . Do we need to create any OData service for validating SMP Users . If we need to do so, where do we provide SMP Connection details to get user related information while generating OData service .
Else Do we need to follow any other approach for validating SMP Users .
Appreciate your help.
Thanks,
Uday.

Hello Experts ,
Could you please let me know the procedure for validating SMP users via gateway . Do we need to create any OData service for validating SMP Users . If we need to do so, where do we provide SMP Connection details to get user related information while generating OData service .
Else Do we need to follow any other approach for validating SMP Users .
Appreciate your help.
Thanks,
Uday.

Similar Messages

  • How to Validate a User on the click of a button in Oracle APEX

    Hi,
    How to Validate a User on the click of a button in Oracle APEX.
    say for e.g: I want to allow only a specific user to go beyond after clicking on a button and restrict all the other Users. Any ideas please.
    Thanks in Advance,
    Af

    Well , the actual idea was to hide the button for specific users and show the button only for some specific users... is this possible...?
    @ AndyH: yeah, what you have suggested also fits well for my requirement... Could you please let me know how can i achieve it...
    Regards,
    Af

  • How to validate an text field item using javascript for numbers only.

    hi,
    how to validate an text field item using javascript for numbers only.please help me on this urgent
    please mail me solun if posible on [email protected]

    Hi,
    Page HTML header
    <script>
    function onlyNum(evt) {
      // Usage: onKeyPress="return onlyNum(event)"
      evt = (evt) ? evt : window.event;
      var charCode = (evt.which) ? evt.which : evt.keyCode;
      if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        var status = 'This field accepts numbers only!';
        alert(status);
        return false;
      var status = '';
      return true;
    </script>Item HTML Form Element Attributes
    onKeyPress="return onlyNum(event)"Br,Jari

  • How can I authenticate users against a WAS system from third-party app?

    We are looking at developing a third-party standalone web application e.g. in Rails (but it could be on any framework for that matter).
    How would we go about authenticating users against a SAP WAS backend? Are there some standard web services for this? What other means are there for authentication?
    Kind Regards,
    Martin

    From the comment in SUSR_LOGIN_CHECK_RFC you just need to pass user name and it will return if user can still log on. Only your system will know credentials for this user so an attacker won't be able to use this service for cracking passwords.
    This FM is in the same function group as:
    CREATE_RFC_REENTRANCE_TICKET
    SUSR_CHECK_LOGON_DATA
    SUSR_DELETE_OWN_PASSWORD
    SUSR_GENERATE_PASSWORD
    SUSR_GET_ADMIN_USER_LOGIN_INFO
    SUSR_GET_X509CERT_MAPPING_LIST
    SUSR_LOGIN_CHECK_RFC
    SUSR_USER_CHANGE_PASSWORD_RFC
    SUSR_USER_EXTID_DEL
    SUSR_USER_EXTID_GET
    SUSR_USER_EXTID_GET_ALL
    SUSR_USER_EXTID_LOOKUP
    SUSR_USER_EXTID_RENAME
    SUSR_USER_EXTID_SET
    SUSR_USER_EXTID_SET_ALL
    SUSR_USER_FROM_CERTIFICATE_RFC
    SUSR_USER_SETEXTID
    You would need to ensure that only the service exposing the "login check" can be called, and not the FM's in the group.
    BTW: SAP Java WAS can provide SAML 2.0 assersions (technically a component shipped with IdM, but you don't have to use the rst of the IdM if you don't want to..). If your applications are all web enabled ones (WDA?) then that is an option to consider, which is also strategically supported.
    SSO2 Logon tickets are not really a strategy anymore... and installing a double-stack system on all ECC sytems just to have SAML is not strategic either.. 
    I have heard several wishes for SAML authentication for SAPGui, but not seen anything official yet in that direction.
    Cheers,
    Julius

  • How to Validate the user entred value

    Hi All
    I am new to APEX... :)
    Can any one send me the URL or material where i can go through and create sample applicaiton having the following functionalities
    1) Create a form for the user to enter the data
    2) Create users and give access
    3) Validate the user entered values (Validation of a e-mail filed or Phone no)
    Thanks & Regards
    Hari

    Hari,
    You should start on our Getting Started page (http://www.oracle.com/technology/products/database/application_express/html/getting_started.html). I would suggest you do the OBE. It will show you how to create an application, add validations (that is what will make a user enter data in your email and phone fields) and create users. It uses APEX Authentication which means that any developer within the workspace can access and run the application and that you can also create end-users from within your workspace that will only be able to run your applications (not access the development environment).
    It will definitely answer your questions -
    -- Sharon

  • How to find whether user exits are  used in the query or not??

    Hi ,
    I have to make the list of queris in which user exits are used.
    Please any body help me how to find the queries in which user exits are used.
    Thanks
    Maruthi

    Hi Maruthi,
    Using table RSZGLOBV you can find out the queries that have customer exit variables.
    Set filter VRPROCTP (processing type) = 3 means customer exit.
    and the field COMPID will give you the Query name.
    Best Wishes,
    Mayank

  • How to validate a user login attempt to your computer's IP address ?

    I Need validate Oracle users with your ip address
    example
    usrerdb 192.168.0.1
    userdbx 192.168.0.2
    For some users may only have one active secion
    Anybody know how do ?

    Really a user connects to the db which is the owner of the application, the user will need to validate it with the web server ip address
    exemple
    web server <=> connect login db <=> userdb = 192.168.x.x <=> login valid db
    192.168.x.x
    This user only can connect from your ipadress, defined in a table, procedure or function
    Regards
    Edited by: user13717863 on Jan 12, 2011 5:53 PM

  • In Reply to : How to validate org.jdom.Document object using xsd: dvohra09

    Hi All
    I am creating org.jdom.Document object using constructor Document() and adding children using setRootElement(), setChildren() and addContent() methods. The children are objects of org.jdom.Element. If i want to validate the org.jdom.Document using xsd what i have to do. Thanks in anticipation.

    I tried the below code and it is always giving the
    Parsing fatal error : The markup in the document preceding the root element must be well-formed.
    But it is possible to validate the same Document object as right document after writing it onto xml file using XMLOutputter and parsing it using DOMParser
    Thanks in anticipation
    org.jdom.Document document;
    String documentString=document.toString();
    StringReader stringReader=new
    StringReader(documentString);
    SAXBuilder saxBuilder =new
    SAXBuilder("org.apache.xerces.parsers.SAXParser",true);
    saxBuilder.setFeature("http://xml.org/sax/features/vali
    ation",  true);
    saxBuilder.setFeature("http://apache.org/xml/features/v
    lidation/schema",  true);
    saxBuilder.setFeature("http://apache.org/xml/features/v
    lidation/schema-full-checking", true);
    //Set a error handler with
    setErrorHandler(org.xml.sax.ErrorHandler errorHandler)
    saxBuilder.build(stringReader);

  • How to validate text field against PICK_DATE_FORMAT_MASK format ?

    Hi Folks,
    At application level i've defined a substitution variable PICK_DATE_FORMAT_MASK which stores a date format for all date fields.
    On actual page, I have an editable field (Date Picker (use application format mask)) which stores date value.
    I would like to add a validation to that field, which would validate value entered by user (if he decide not to use date picker!) - validation if entered value is in PICK_DATE_FORMAT_MASK format mask.
    For example:
    if PICK_DATE_FORMAT_MASK = 'DD/MM/YYYY'
    and on my page if user enters: 01-JAN-2009 then validation error should be raised => "Entered date is in incorrect format!"
    Any idea?
    Thanks,
    Tomas

    Hi,
    You don't need to manually test the date against the format - SQL will do that for you and generate errors if it can't make a date from the string using the format supplied.
    For example:
    DECLARE
    vDATE DATE;
    vLEN NUMBER;
    vDATELEN NUMBER;
    BEGIN
    vLEN := LENGTH(:PICK_DATE_FORMAT_MASK);
    vDATELEN := LENGTH(:P1_DATE);
    IF vLEN &lt;&gt; vDATELEN THEN
      RETURN 'Invalid date - use ' || :PICK_DATE_FORMAT_MASK || ' formatted dates only!';
    ELSE
      vDATE := TO_DATE(:P1_DATE, :PICK_DATE_FORMAT_MASK);
      RETURN NULL;
    END IF;
    EXCEPTION WHEN OTHERS THEN
    RETURN 'Invalid date - use ' || :PICK_DATE_FORMAT_MASK || ' formatted dates only!';
    END;This would be for a validation that returns an error message - a NULL return value indicates success - you can change this as required. Note that I am also checking the lengths of the date and the format string as, in some instances, 2-digit years will be accepted even if a 4-digit year is specified in the format string.
    Andy

  • How to validate a user input for where clause?

    I have a situation to validate a where clause which is input by the user.
    Because the query will be run against huge tables and we need to notify the user if they input the clause is not valid.
    I use the below query to try:
    Select 'A' from blablabla where user_input_where_clause and 1=0;
    however, it can not capture the error when the user input:
    'name=123' while the right condition should be name='123'.
    Can you pls advise ?

    In this particular case, Oracle will not even try to run the SQL statement because of the syntax error. IF the WHERE condition supplied does not make sense, Oracle will not execute the statement, so it does not matter if the query accesses huge tables.
    SQL> Select 'A' from blablabla where 'name=123' and 1=0 ;
    Select 'A' from blablabla where 'name=123' and 1=0
    ERROR at line 1:
    ORA-00920: invalid relational operator
    SQL>IF you have a restriction as to what type/value can user specify for the where condition (asuming it would make sense to SQL engine), you would have to do it before submitting to the database.
    Note, however, that user could specify any condition they like, having potentially damaging effects.

  • How to create multiple users in solaris using script

    hi
    how i can create multiple users (2000 users) using shell script with a common password .
    useradd is creating one user at a time.
    thanks

    I m new to solaris and scripting also.
    how i can write a script for this .

  • How to find related User commands when Use MSS PCR scenarios

    Hi
    We are using  MSS PCR Senarios with Web dynpro Business package.
    How to  know which command is fired when click on buttons PCR web dynpro screens like "Sumbit" "Resubmit" buttons.
    is there any document which tells about the all the standard buttons and its corresponding user commands in R/3 to handle in BADI.
    I have gone through the ISR cook book but not find much information
    Thanks in Advance
    Gopal

    Yes - it is a bit frightening... Had other Macs before this MacBook (Pro), and never experienced such a problem. Don't know - of course I look into the Preference settings from time to time, and maybe I have changed that setting on the other computers... it never occurred to me...
    What an annoyance such a simple decision to make the auto-shutdown after one hour a default can be! Probably, Apple reconsiders :-D I'd rather prefer an auto-lock of the account (instead of an auto-log off)... but I believe it has been expressed often enough that, in this particular case, the - pardon me - Windows-solution (to offer a simple lock of the account, the Windows-L-key combination, IIRC) is much more practical... to copy that behaviour under Mac OS X, You'd have to go through lengths...
    Anyway! Pondind, thank You very much!!! Solved a kind of embarassing, but huge problem of mine!
    Best,
    Björn

  • How to add external user in sharepoint using infopath web part

    hi,
    what i am trying to achieve is,
    1. Create an infopath web part which will take email id of external user as input(ex: [email protected]).
    2. Take an email id of that user into infopath form and add that to sharepoint group.
    3. Now that newly added user must be able to login in to sharepoint using his email id.
    How could i achieve this? 
    If redirect me to example or screen shots then it will be better to understand.

    Out of the box you can not use email address and passwords to authenticate, for this you would need to create a custom authentication mechanism
    http://code.msdn.microsoft.com/office/Claims-Walkthrough-51beedc5
    or just google it:
    https://www.google.be/search?hl=en&q=sharepoint+custom+authentication+provider&btnG=Search&meta=&aq=f&aqi=g10&aql=&oq=&gs_rfai=
    Once this is implemented, you need to create custom code in you form, to call this new API and register the user, but 2nd step depends on how you do first.
    Follow me on Twitter <<<
    levalencia Blog <<<

  • How to find all users in hyperion using ListUsers java file...

    hi..
    please can anyone let me know that how i can use the ListUsers.java file to list all users having account.
    i have created class file from above and try to run it in follwoing way...
    java ListUsers username passwd ipadd port(i use 6795 which reportsitory port)
    but it gives me error like ..
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sqribe/rm/ReportMartException
    can any one plese let me is thr anything i am doing wrong.. i m sure that class in java file is same as the one i am using..
    thanks in advance.

    hey u will ge getting dataset after execution of the excute command i will try to explain it
    PreparedStatementUtil preparedstatementutil = new PreparedStatementUtil();
    preparedstatementutil.setStatement(dataProvider, "select usr.usr_email from usr usr where usr.USR_Login=?");
    preparedstatementutil.setString(1, "TEST1");
    preparedstatementutil.execute();
    tcDataSet tcdataset = preparedstatementutil.getDataSet();
    UserEmailAddr = tcdataset.getString("usr_email");
    here you are getting the email address from the dataset after executing the execute statement.
    hope this helps you
    Regards
    VM

  • How to submit "active users" standard report using shell scripting

    Hi All,
    Greetings.
    I want to submit the "Active Users" standard report in Sysadmin responsibility using a shell script.
    I also want to pass a parameter named email to this..
    can anyone help me do this?
    Thanks in Advance,
    Bhaskar

    Hi Bhaskar,
    You can achieve this by shell scripting either by scripting via CONCSUB utility (invoked from OS) or you can use the FND_SUBMIT package (through PL/SQL package), and in the script itself you can create the outputs or any hardcode messages to a file, and then mail the output to your desired mail address.
    If you use mail or mailx command using the OS utility then you can even send mail to external users which should not necessarily be a registered EBS users.
    Google, Forum Search and metalink will provide you loads of articles on how to use CONCSUB and FND_SUBMIT packages.
    Thanks &
    Best Regards,

Maybe you are looking for