Technical name of user fields

Bonjour,
I am writing a workflow which aim is to send a notification to user when he or she is added in opportunity team. I can rebuilt the email address but when names are in two pieces it does not work. So the best solution is th retrieve the email address from the user object thanks to JoinFieldValue.
User is not an object available for workflow, I found the right name of the user identifier (UserId) but I cannot get the one for the email address.
Does any one of you have this information ?
Thanks in advance
FI

Try with User value('<EMailAddr>'). Hope it will works. good luck.
Cheers
Subbu

Similar Messages

  • Deriving Planning Folder Technical Name From User-Exit

    Dear Colleagues,
    For those of you who know ABAP, do you know if it is possible to determine the technical name of a planning folder from within a user-exit (i.e. planning function that has been executed from within a planning folder)?
    Customer states: They would like to use a Planning Folder, and invoke a planning function of type user-exit (i.e. via button in folder), which will execute an ABAP that has a case statement for conditional execution of steps, based upon the technical name of the planning folder that invoked the call.
    Thank you in advance for any guidance or feedback you may be able to offer.
    -M

    Hi Michael,
    Write this code in the exit function
    FIELD-SYMBOLS: <fsl_class> TYPE REF TO cl_upb_pm_applc.
      DATA:          name(50),
                     plan_folder TYPE upb_y_ps_name.
      name = '(SAPLUPB_PM)gr_applc'.
      ASSIGN (name) TO <fsl_class>.
      IF sy-subrc = 0.
        CALL METHOD <fsl_class>->get_active_pm
          RECEIVING
            r_pm = plan_folder.
      ENDIF.
    Glad I could be of help to the mastero.
    Let me know if it worked.
    thanks

  • Technical Names appearing in the report output

    Hi Experts,
    I am in support and got a strange case. When one of the users runs the report in web, he sees technical names of the fields instead of their description. On the contrary, when I run the report, everything comes fine. I don't know where the problem could lie. If you can help me, that would be really great.

    Hi Shobhit,
    Please check that if the objects are Translated to the language User is using.
    When you try to run the report, you might be using English as default language and everything is there in English only.And when user tries to run the report, most possibly use's login Language must be different.
    You can crosscheck this by using the users language while logging in to Analyser,
    If this is the case (Translation) even you will see the Technical names.
    For Translation Help :
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30a65c3a-2ad5-2910-a4be-88412392cfe5]
    Hope this helps.
    Best Regards,
    Pratap Sone

  • How to know the technical name of psa

    hi BW gurus,
    I need to delete data from psa i need to increase the free space.  so how to know the technical name of psa.  and how to delete the data from psa.
    Thanks in advance

    Shahid,
    Agree with Tarun on this...
    Check the PSA technical name from the delete PSA option on the PSA screen of the AWB...the PSA name would be /bic/b000*...
    Shahid...also chek the table RSTSODS in SE11.
    U can find the PSA technical name in the field ODSNAME_TECH..
    Just enter the name of the PSA in the ODSNAME field..the PSA name would be
    your infosource followed by some extension.
    Deleting the data from the PSA:
    Shahid,
    this can be achieved via a program and also via the standard procedure of going to the PSA in the AWB and choosing the option delete the PSA data...
    Here select the requests which are older than any number of days or before any date..
    Hope this helps...
    Regs.
    Nick.
    Message was edited by:
            Nick

  • Field description in chart legend instead of technical name (BW query)?

    I am building a report from a BW query. The report has a grouping field and a bar chart in the group footer. When I execute the report the legend shows the technical name of the key figures even though I checked the "Show description" field in the "options".
    I can change the labels in "preview" mode (provided I can guess the real names), but just like in the field explorer I would prefer to always have the text instead of the nonsense technical name.
    Is this possible?

    hello all,
    you can use a 2 chart workaround for this.
    1) the first chart is the Group chart you already have...just disable the legend
    2) now create an Advanced chart using the description field as the On Change Of
    3) set the Order of chart to correspond with the technical field that the group is based on
    4) preview the chart and right click on the x axis area and format the axis so nothing is showing
    5) do the same for the y axis
    6) keep right clicking on all of the chart objects and changing them to transparent
    sounds annoying, is annoying, but it works.
    cheers,
    jamie

  • How can i get value when the field name is user's defined

    Hi,
    I have a one java method:
    public ResultSet countUserDb(String id) {
    ResultSet rs = null;
    con = dbcon.connect();
    String queryString = ("select count as count from
    db_allocation where user_id='"+id+"'");
    Statement stmt = con.createStatement();
    rs = stmt.executeQuery(queryString);
    When i call it in a jsp file.
    ResultSet counter =db.countUserDb(request.getParameter("id"));
    if(counter.next())
    int x=rs.getInt("count");
    Tomcat said incorrect column name.How can i get the result set when the field name is user's defined.
    Best regards
    Ricky

    You should give the user defined name in the ResultSet.getXXX method to retrieve the column value.
    Example
    SQL:
    Select ename as employeename from emp;
    You should say :
    ResultSet.getString("employeename"); to get the value.
    Alternatively you can retrieve it using column number:
    ResultSet.getString(1);
    Chandar

  • How can i get the value when the field name is user defined

    Hi,
    I have a one java method:
    public ResultSet countUserDb(String id) {
    ResultSet rs = null;
    con = dbcon.connect();
    String queryString = ("select count(*) as count from
    db_allocation where user_id='"+id+"'");
    Statement stmt = con.createStatement();
    rs = stmt.executeQuery(queryString);
    When i call it in a jsp file.
    ResultSet counter =db.countUserDb(request.getParameter("id"));
    if(counter.next())
    int x=rs.getInt("count");
    Tomcat said incorrect column name.How can i get the result set when the field name is user's defined.
    Best regards
    Ricky

    Hi Ricky
    To access pseudo columns you can specify an alias or use the index on the column (e.g. getInt(1)).
    Chris
    NB: you should use bind variables instead of concatenating the id to the SQL statement.

  • "Users " Form Name from "User Definied Field Definition" does not showing

    Hi everyone!
    I start to implement the new SAP Connector on OIM 9.1.0 and one of steps is configure the lookup Lookup.SAP.HRMS.AttributeMapping.
    I need to add more fields beyond those already exists, and in accord to Documentation, I need to create the UDF of these fields, but when I search of "Users" form name form "User Definied Field Definition" option, I receive the follow response:
    "Query Failed: No Record For this Query"
    Thinking about it, I think that necessary create one User Form, but...this form isn't a standard form?
    What I do in scenarios like this?

    Can you share your environment details. Are you trying it out in a newly installed OIM ?_
    Yes, it's a newer fresh installation of OIM 9.10. We use the old version (9.03) in production environment and would like to upgrade to 9.10. This issue occur in a fresh installation in Development Environment.
    The one possible reason for this may be due an improper upgrade to 910X. I actually faced this issue while I was installing/upgrading my OIM. I did the process all over again and it was just perfect. I am not sure that this might be an issue with you or not. But there is simply no othe reason for the Users from not showing uo in the "User Definied Field Definition"._
    If you have taken a fresh backup of the schema just after installation, then import that backup dump and see if you are able to view the Users form. If in case you are not able to view it then your installation / upgrade is corrupt._
    No, we don´t have a fresh dump of environment. We just follow the documentation and all the steps was done without problem. The SAP connector import the fields from the reconciliation using flat IDOC file, just only the standard fields. We need to add newer fields and attributes and after, we face this problem.

  • How do we make the field's technical name appear in the selection screen

    Hi everyone,
    When we go into the manage of a target for diplaying the content of the object say active data table of ODS, I can only see the technical name of custom objects( infoobjects) like /bic/zcust but the technical name of the business content Infoobject ( like /bi0/material) is not seen instead I only see the description, How can I see the Technical name in the Selection screen of the data browser
    Thank you in advance

    Hi BR,
    I have already tried that. but I cant see the tech name for the Content Infoobject there. And I have also tried User specific settings from the settings Menu.
    If any more options available. PLz tell me
    Thank you

  • I have to give the technical names to abaper for following fields to be pri

    I have to give the technical names to abaper for following fields to be printed in the GRN print out
    what r the table & field names for following
    Buyer's name
      Project Number / Cost Center
      Suppliers Delivery Note Number
      Quantity Remaining (per Material)
    like this way it is to be add in GRN print out

    this details u can get in MKPF and Mseg tables
    Go to se16
    put the table name and put the material document number
    u will get the entries
    dobul click on the entrie
    and find the data u need and the field name
    for ex Suppliers Delivery Note Number
    Reference field name XBLNR
    hope this helps
    Reward if usefull

  • Can we see all the Technical names and field/common names in one screen

    Hi SAP Gurus,
    Can any one plz. clearify the querry of 'all the technical names, field names, common names, table names in one screen? if so, how?
    Thanks inadvance
    Regards
    Namrata

    Hi,
    For a particular screen,if u want to see all the technical data,
    Go to system->status->screen->double click on the screen->flow logic.
    Regards,
    Manoj.

  • Technical names Deactivation in User menu

    Dear Gurus,
    The Internal requirement is - Users should not be able to see Technical Name of Transaction codes.
    Ex : When user is assigned to Transaction Codes like SU01
    When user logs in he should have to see only description " User Maintenace" not
    like SU01 - User Maintenance .
    SU01 should not be visible to end user ?
    how can i deactivate the Technical Names in the menu system wide, if we have solution user wide it is pretty good.
    Thanks in Advance
    Regards
    PRS

    Hello,
    in transaction SMOD enter 'SUSR0001' as enhancement.
    In the frame 'Object components' mark 'Components' and press the 'Display' button.
    In the frame 'Function module exits' double click on the function module 'EXIT_SAPLSUSF_001'.
    Now you'r in the function builder and should see the coding of the function module.
    Should look like this:
    FUNCTION EXIT_SAPLSUSF_001.
    *"*"Lokale Schnittstelle:
      INCLUDE ZXUSRU01.
    ENDFUNCTION.
    Double click on the word 'ZXUSRU01'.
    The system should ask you: 'Include ZXUSRU01 does not exist. Create Object?'
    Answer with 'Yes'.
    If you are registered as a developer you should see the editor where you can enter code.
    Regards, Michael

  • PS/cj20n User Fields name

    Dear ABAPERS,
    PS/CJ20N has a tab in activitie(s) called "User fields". In the User fields tab, there is a field key called Regin and estimate identification, in this there is an estimate No. text box which shows the structure AFVGD-USR00).Will anyone pls. tell me the table and field name of estimate no. text box.
    Thanks And Regards,
    Muhammad Sohail

    Firstly,
    Region and Estimate Identification are names defined by your organization, the standard names for those fields are Field1 Field2 etc...
    Secondly, the table you are looking for is AFVU.
    pk
    Repetitive answer because of the current caching problems in SCN
    Edited by: kishan P on May 20, 2009 11:45 AM

  • CRM Fields Technical names

    Hi All,
    I am very new to CRM.
    I want to know some fields technical names in CRM.
    Company Number -?
    Description of Work -?
    RFP, Proposal, Award, Contract Start dates - ?
    Codename - ?
    Competitors - ?
    External Partners (organizations) - ?
    Customer - ?
    Technical Manager (partner function) - ?
    Fee Range - ?
    POW - ?
    Prime - ?
    PoP - ?
    Allocated Value - ?
    M&S Costs - ?
    Contract Type (Primary) - ?
    IDIQ info (master vehicle #, name) - ?
    End Customer - ?
    Win Strategy Note Type - ?
    Capture Manager - ?
    Program Manager - ?
    Proposal Manager - ?
    Lead Group/BU Manager Name - ?
    Support Group(s)/BU Manager Name - ?
    Target Fee Rate - ?
    Thanks in Advance.
    Mani.

    Hello Mani,
    Well, if the technical name begins with a 'Z' (Eg ZZEEWB) it's added through the EEWB.
    Above the technical field name you'll find the table/structure field name. If you open that structure/table you'll find the description of that field (all EEWB fields have a structured technical field name with a sequence number that does not reveal many about the actual content of that field) in SE11 together with the value tables that are linked to that field.
    Or, if you only want to know the customer (Z) fields that were added through EEWB just open EEWB and take a look at all customer extensions. In the log of the EEWB you'll also find all that information (technical field name, value/check table, ...)
    If it are Z fields on transaction level (eg sales order) the values are stored in CRMD_CUSTOMER_H (header) CRMD_CUSTOMER_I (item). For some transactions (like opportunity -> BAD_OPPORT_H) other tables might be used also.
    If the Z fields are on Business partner level the values are stored in the BUT000 table.
    What more information do you need?
    Regards,
    Joost

  • Display Technical Names for al users

    Hi
    My requirement is: Every user should able to see SAP Technical Names after he/she login. What is the global parameter we need setup and where? Normally individual user can setup by selecting Extras -> Settings --> Technical Names On
    Thank you,
    Mohan

    Hi,
    those settings are stored in table AGR_DATEU where ID = 'BROWSER_OPT' and UNAME is user name. I don't know about any global parameter. There are two FMs PRGN_SET_BROWSER_OPTIONS_USER and PRGN_GET_BROWSER_OPTIONS_USER which you can use to write a report which will set this parameter to all users.
    Cheers

Maybe you are looking for

  • My Nokia C3-01 turned itself off and will not turn...

    I use my phone for an alarm in the morning, that was the last time I knew it was on. I put the phone in my bag when leaving for work, got it out once on the train to find no power at all. I have taken the battery out for a while which didn't seem to

  • Combo Box Clearing

    The combo box on my form has a list of valid values. When the form loads the combo is in a state where no value is selected. Once I have selected a value in the combo and added a record I want to clear the combo box for the next item to be added. The

  • Snapshot report showing wrong instance on grid control!!!

    Hi On one of the cluster environments, Even though I run snapshot report on instance 2, report shows instance 1. This i happening on one set of cluster environment. Other cluster instances are working fine. Let me know if you have seen such behavior

  • Insert Table Error

    I upgraded to 8.0.2 today and now I can't insert tables. I reverted to version 8 and tested, then 8.0.1, and then to 8.0.2. Still broken. The error says: "While executing objectTag, the following JavaScript error(s) occurred: At line 26 of file "Maci

  • Discrepancy on iPad regarding iBooks Author requirements

    Did anyone else notice that when searching for iBooks Author at the Apps Store using an iPad, the requirements for Author are shown as OSX 10.6.6 or later. Yet when you try to download with an iMac running OSX 10.6.8 you get the error saying for Lion