How to get the approval limit of a user

Hi,
  Is there any table to get the value of approval limit of a user?
Other than using the FM "BBP_BW_GET_APPR_LIMIT"are there any ways to get the approval limit of a particular user provided his username is given?

Hi Sowmya,
You can use the FM 'BBP_READ_ATTRIBUTES'
Pass the username in IV_USER
IV_SCENARIO will have the value BBP
and the value for IV_ATTR_SINGLE can be taken from the table T77OMATTR.
You can also go thorugh the following link for getting help to call this FM:
https://www.sdn.sap.com/irj/scn/wiki?path=/display/srm/codeSample2-Reporttodisplayuserattributes
Thanks,
Pradeep

Similar Messages

  • How to get the approver from a wf notification in case there are multiple approvers ?

    I created an ad hoc role to store mutliple approvers for a wf notification.
    My question is how to get the user_name of the first responder so I can stamp the record I need to update with it.
    I''m assuming it would be using wf_notifications.GetAttrText but I don't know what that attribute name would be.
    Please help.

    Hello,
    I think you can try with script to capture the duplicate booking on presave action. Just try to give a shot to this solution:
    http://aleemsheikh.wordpress.com/2011/08/08/warn-users-of-double-booking-in-sharepoint-calendar-in-real-time/
    http://social.msdn.microsoft.com/Forums/en-US/9a10a110-a18b-4b5b-a15f-b563322ca0a6/how-to-prevent-duplicate-calendar-list-items-sharepoint-2010
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • JTable problem : how to get the last value entered by user + event lost

    Hi all,
    I have 2 problems with Jtable class.
    1 => To get the last value entered by user in a cell,
    it seems that we must change the selected cell.
    That is to say we can only have the previous cell's value.
    Is there a simple way to get the current value of any cell ?
    2 => To resolve the problem i store the values of each cell in a vector and i intercept keyboard event (!)
    BUT, when i do a double click with the mouse on the Jtable, i loose keyboard events. Then, i can't intercept them.
    Is it a bug of swing or am i following a wrong way ?
    Thanks by anticipation for your help.

    You have to fire the "TableCellUpdatedEvent"
    and override the getCellEditorValue in TableCellEditor to return the current value

  • How to get the approver from a basic approval

    Hi you all,
    I am building a custom process which requires a basic approval. When an approver approves or rejects the basic approval in the TODO tab, I need to be able to access the approver's mskey during the process that follows the approval. I have attached a screenshot of where I require the approver's mskey.
    Please let me know if you can be of any help!
    Thanks!
    Anu

    Hi Jai,
    I tried to get the approvers from MX_APPROVERS, but when I write to the log, I see that the attribute is undefined.
    Here is a snapshot of the destination tab:
    Please let me know your thoughts. Right now, the script just approves the attestation and inserts a comment into the link audit table.
    Anu

  • How to get the real name of a user from WFSYST-AGENT

    Hi,
    I am retrieving the WFSYST-AGENT value (which correspond to the US<user_id> of the agent responsible of a task) in a container variable in my workflow.
    I would like to get the real name of the user represented by WFSYST-AGENT. How should I do that ?
    Thanks in advance for your help.
    Thibault

    Hi,
    Take the user name and write a select for database table USER_ADDR fetching fields NAME_FIRST and NAME_LAST by passing BNAME = username.
    Regards,
    Jayesh

  • How to  get the log on details of users in the given period

    Hi Frndz..
    I need logon information of portal users, means in a given period i need the information of each user when they loged in and how much time they are in portal and if it is possible whcih application they accessed.
    Am trying to get this from Portal Activity Reports but am not gettinig as per my requirment, n it seems to be not possible to customize as per our requirment.
    Thanks in Advance
    Regards
    Rajesh

    hi
    You can also directly query the following Portal database tables,for information on users:
    WCR_USERSTAT: Holds information about the number of users who logged on to the portal.
    WCR_USERFIRSTLOGON: Holds information about the first logon of each user and how many pages and iViews the user viewed
    WCR_USERPAGEUSAGE: Holds information about which users viewed which pages and iViews.
    Thanks
    Bharathi.ch

  • Reg: How to get the trip activity values in user exit.

    HI Experts,
    I have scenario like I need calculate the trip advance amount for an employee.
    Based on the employee travel days and employee’s activity type.
    Activity types means:  types of employee trips like
    1. Domestic
    2. International
    Here my problem is not getting trip activity values into my user exit.
    I am getting the all selection values in trip header except this TRIP ACTIVITY values.
    Please give me idea how I can read this trip activity value in to my user exit.
    I have written the below code for user exit.
    CHECK SY-TCODE EQ 'PR01'.
    MOVE TRIP_HEADER TO IT_PTRV_HEAD.
    APPEND IT_PTRV_HEAD.
    CHECK SY-TCODE EQ 'PR01'.
    MOVE TRIP_HEADER TO IT_PTRV_HEAD.
    APPEND IT_PTRV_HEAD.
    Thanks & Regards
    Sameera

    Hi,
    Try to use Enhancement  FITR0003.
    REWARD IF USEFUL

  • How to get the hr,sh and ix user 's script in 10.2.0.1 ?

    I cannot find the script in %oracle_home%/demo,
    can you tell me how to get it?
    Thanks in advance.

    In 10gR2, it is no longer a [simple] script. It is now (at least for the Enterprise Edition) a transportable tablespace import/attach.
    Unfortunately the docco doesn't seem to be updated to reflect the new mode of installation - and DBCA doesn't seem to allow adding it after the fact. (Reminds me ... there aughta be a docco bug on this ... I've been meaning to check, so I'll go check after I save this response ...)
    One way - create a new instance with the schemas, do a simple export, scrap the new instance, import.
    Message was edited by:
    forbrich
    Doh ... according to Metalink note 310955.1, the samples are part of the Companion CD. Separate download and install from the Companion CD should make it available as part of DBCA.

  • How to get the last value edited by users from JTable?

    Hi.
    I have a JDialog that includes an editable JTable. This table is used to set up field caption and font for a report program. I found only when cursor is moved to another cell, the value in current cell being edited will be transferred to Table Model. So if the user don�t move cursor to another cell after editing the value of a cell but click OK button directly, Table Model cannot get the last value edited by the user, I wonder if there is a way to fire JTable to transfer the value being edited to Table model.
    By the way, I found if the TableCellEditor is using JCheckBox or JComboBox instead of JTextField, there is no this problem.
    Thank you for any reply.

    I guess you can make use of the following methods on your table model to inform it make it getValueAt bcos table data has changed.
    fireTableCellUpdated
    Notifies all listeners that the value of the cell at [row, column] has been updated.
    fireTableChanged
    Forwards the given notification event to all TableModelListeners that registered themselves as listeners for this table model.
    fireTableDataChanged
    Notifies all listeners that all cell values in the table's rows may have changed. The number of rows may also have changed and the JTable should redraw the table from scratch. The structure of the table (as in the order of the columns) is assumed to be the same.
    But when to call these methods??
    -- When OK button is pressed, do this as the first thing!!
    OR
    -- Call this on every key event!!
    regds,
    CA

  • LabVIEW 8.0:: How to get the group name of a user logged to a NI Security Domain?

    Hello all,
    I am using LabVIEW 8.0 PDS.
    I created a new local domain called "MyDomain" in the "NI Domain Account Manager" . I added a new User called "MyUser" and a new group called "Maintenance". I set "MyUser" to be a member of the "Maintenance" group. Then, I configured LabVIEW to invoke the login dialog at start-up in order to log "MyUser" with the correct password.
    I would like to get the group name of the current user logged programmatically in a VI. I tried with the VI Server >> Application >> Security properties and methods and also with the properties and methods of the NI Security Class but it seems to be not so simple as I believed at start.
    I do not find any informations or KB on this (all the documents I found deal with LV DSC or TestStand).
     The final goal is to be able to manage a list of user for my application. Each user is a member of a group ("Administrator", "Operator", "Maintenance") and depending on the group, the user can or cannot access to some parts of the application.
    Thanks for your help.
    Matthieu
    Eurilogic

    Re,
    Here is a screenshot of this functions...
    If you really own LV DSC 8.2 the best thing to do is to reinstall it.
    Regards, 
    Message Edité par Richard K. le 04-02-2007 04:00 AM
    Richard Keromen
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Découvrez, en vidéo, les innovations technologiques réalisées en éco-conception
    Attachments:
    security.jpg ‏3841 KB

  • How to get the group name of a user

    Hi,
    I am using an openldap for user authentification. How can i retreive the groups name of a user ? I read that i must use the GroupManagerControl class.
    What is the way to specify the openldap authenticator using the above class ?
    Thanks for help.

    Re,
    Here is a screenshot of this functions...
    If you really own LV DSC 8.2 the best thing to do is to reinstall it.
    Regards, 
    Message Edité par Richard K. le 04-02-2007 04:00 AM
    Richard Keromen
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Découvrez, en vidéo, les innovations technologiques réalisées en éco-conception
    Attachments:
    security.jpg ‏3841 KB

  • WDA Application: how to get the pdfsource xstring updated by user?

    Hi, gurus
    we use adobe interactive form in our WDA application to provide user interface for input, then we want to get the pdfsource back into our context again, and later we use a extraction tool to grab the xml data out of the string.
    the problem is that , once the form is displayed on the client side , any user input done to the form will not update the pdf source defined in the context.
    could you please tell me is it possible to get the updated pdf source back in the context?
    thanks .
    Jun

    Hi Jun,
    it is great news. But for me it doesn't work. Which SP do you have (SP10 patch1, SP11)? I have SP10, no patch.
    My best solution, but it doesn't work, is:
    1. I have an adobe form with ZCI layout (this form I created in SP10). I inserted webdynpro script in SFP. On form I have webDynpro native Submit button.
    2. My interactiveForm in WDA has properties:
    <i>dataSource</i>: node in context under which is attribute of type structure (type of my import parameter from interface of my adobe fom). I tryed use empty node of my context or to leave this property empty but then in server round trip I got error: Access via 'NULL' object reference not possible.
    displayType: native
    enabled: true
    pdfSource: attribute of type xstring
    readOnly: false
    templateSource: empty
    onSubmit: my_action
    If I press Submit button in form then server round trip is processed. But my_action isn't called. Method WDDOMODIFYVIEW is only called and in pdf source is pdf file which I prefilled (no new values in xml data).
    Please describe properties of context node which you use for the property dataSource.
    As you mentioned "the static context binding is soooo...unflexible".
    Thanks
    Michal

  • How to get the approver comments in a contianer element:asynchronus task

    Hi All,
    I am using a text editor to capture approver/rejection comments with asynchronus task. As I am using asynchronus task I am not able to send it back to workflow contianer.  Could you please suggest a solution to get back the comments in workflow container.
    Thanks
    Sreedhar

    Hi ,
    Thanks for you reply.
    I have used fm SAP_WAPI_WRITE_CONTAINER to update the container by passing the values to parameters  WORKITEM_ID and SIMPLE_CONTAINER.

  • How to get the home page for a user using  Pl/sql code ?

    Hi,
    I have a pl/sql procedure which runs after a form submission on a dynamic page. At end of completion of the procedure I want to send user to his/her home page. I am trying to write at the end of procedure to redirect the user to the home page. How do I do that ? What is way to redirect to a page using pl/sql and how do I know the user home page url ?
    thanks,
    Mainak

    Hi,
    Try <portalschema>.wwv_redirect.url('<portalschema>.home');
    Please replace portalschema with the name of your portal schema.
    Thanks,
    Sharmila

  • How to get the terminal name of http user?

    Hi Gurus,
    I use function TH_USER_LIST to get all online users. But for http users I can only get their IP address, but no terminal name.
    I searched the forum and tried the function RFC_IP_TO_HOST. However, when I input IP address it didn't return the terminal name.
    The http users are running BW queries in Internet Explorer. FYI.
    Any help is much appreciated!
    Regards,
    Frank

    Hello
    This code works:
      DATA: BEGIN OF SERVER_LIST OCCURS 0.
              INCLUDE STRUCTURE MSXXLIST.
      DATA: END OF SERVER_LIST.
      DATA: BEGIN OF USER_LIST OCCURS 0.
              INCLUDE STRUCTURE UINFO.
      DATA: END OF USER_LIST.
      DATA: BEGIN OF USER_LIST1 OCCURS 0.
              INCLUDE STRUCTURE UINFO.
      DATA: END OF USER_LIST1.
      DATA: USER_TERM LIKE RFCDISPLAY-RFCHOST.
      CALL FUNCTION 'TH_SERVER_LIST'
           TABLES
                LIST   = SERVER_LIST
           EXCEPTIONS
                OTHERS = 1.
      LOOP AT SERVER_LIST.
        CALL FUNCTION 'TH_USER_LIST'
             DESTINATION SERVER_LIST-NAME
             TABLES    LIST = USER_LIST1.
        APPEND LINES OF USER_LIST1 TO USER_LIST.
        REFRESH USER_LIST1.
      ENDLOOP.
      LOOP AT USER_LIST WHERE GUIVERSION IS INITIAL.
        IF NOT USER_LIST-TERM IS INITIAL.
          MOVE USER_LIST-TERM TO USER_TERM.
          CALL FUNCTION 'RFC_IP_TO_HOST'
               EXPORTING RFCIP = USER_TERM
               IMPORTING RFCHOST = USER_TERM.
          IF SY-SUBRC = 0.
            MOVE USER_TERM TO USER_LIST-TERM.
            MODIFY USER_LIST.
          ENDIF.
        ENDIF.
      ENDLOOP.

Maybe you are looking for

  • Custo do Item na definicao do lote

    Prezados Colegas, Voces saberiam me informar como atribuir um valor ao custo unitario na janela de definaçao dos lotes? Estava querendo que o valor do custo unitario na janela de definiçao dos lotes fosse o mesmo que o preço unitario da linha do rece

  • Windows clients unable to access File Sharing since upgrading to Mavericks Server

    This summer, I have been tasked to upgrade all the Macs on campus to Mavericks.  Including upgrading to Server 3.1.2.  Previously, we had an Xserve that ran 10.6.8 Server and two Mac mini servers that ran 10.8 Servers.  We have a new Mac mini to repl

  • Changing the  item categories of Sales order in web IC

    Hi experts, We are working on CRM 5.0 with Web IC We have a scenario where we need to change the item categories of some of the items in sales order. But in a standard sales order I cant see the item categories of line items in WebIC. Now the issue a

  • Upgrades to 31.0 times out during install

    Hi, We are trying to update our clients to vers 31.0, the update seems to timeout during install. This appears to be related to the proxy server, is it possible to get a whitelist of sites to be added? Thanks, Joe

  • Form values in subsequent layers of VC based UI wizard are not refreshed

    Hello experts, i am just about to develop a wizard based UI for an custom ess application with the VC and now i face a strange phenomenon. I got two layers each containing a form. Both forms have a dropdown list with the same contents. The logic is,