Getting the Alias for AssignedTo field from VSO

In my code, I am retrieving Bug information from VSO. I need the domain 'Alias' for the [System.AssignedTo] field. If I do a GetAliasesForDisplayName(), I will get multiple aliases if there are more than one same display name. What is the best
way to get this information?

Hi PrarthanaK,
Since this thread is more related to Visual Studio Online, I will move it to the right forum for a better response. Thanks for your understanding.
Best regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

Similar Messages

  • Getting the 'Description' of a field from an Access DB

    Hi,
    How can we get rhe contents of the 'Description' of a field in an Access DB?

    For instance,
    DatabaseMetaData dbmd = con.getMetaData();
    ResultSet rs=dbmd.getColumns(null,null,"%","%");
    You should read JDK API about DatabaseMetaData.getColumns to know more about what in that rs object:)

  • Is there any way to get the file for your site from Creative Cloud?

    I lost the file for my Muse site and was wondering if there was any way to get the file from the server or from somewhere in Creative Cloud.
    Thanks.

    Are you Mac or Windows?

  • How to get the keys for a field in the dropdown list?

    The dropdown list of payment terms on an account is unfortunately very big, containing al lot of different values, in our system and therefore very confusing for the user working with Web UI version 5.2 to pick the right one. The keys (code like e.i Z077 or ZO23) are not stated in the list available for user. Is there any way in the system to flag if the different fields should show boths the keys(codes) and the description of the values in the field as Payment terms, etc.
    In the ERP SAP Gui it is possible to activate if you want the keys should be shown in all drop down list.
    If this is not possible for all the fields at one time, what can be a solution to have the keys in the drop down lists, any suggestion will be very valuable for us.
    Kindly regards
    Camilla

    HI Joost
    No it is not that simple, that is not a solution for us. The fields are maintained i our backend system and replicated to CRM, and these fields descriptions are also printed at Order confirmations and invoices, and we do not want the keys that do not give any meaning  to be visible to customers.
    BR
    Camilla

  • How to get the values for the Authorization Object Fields....

    Hi Everyone,
    I'm pretty new to the SAP Security and have been working on the Basis sides...I created a new role in PFCG and added a few transactions (ME13) and clicked on the Authorizations tab. In there, the authorization tree is in yellow and red. After providing the Org Values, only the yellow lights remain (apart from the green one ofcourse). Now how do we get the values for the different auth obj fields that are in yellow... say for example
    Conditions                                                   COND
    Maintain Condition: Auth. for Use/Appl./Cond.Type/Table      V_KOND_VEA
    Activity                       03                                                                        ACTVT
    Application                                                                                KAPPL
    Condition table                                                                                KOTABNR
    Condition Type                                                                                KSCHL
    Usage of the condition table                                                                 KVEWE
    Here the values for V_KOND_VEA fields e.g. KAPPL, KOTABNR etc are missing.
    My question is how do we get these values in regard to the requirement provided by the client...is it the functional guys who provide these values or else how is a security person supposed to know it...
    All the help in this regard is sincerely appreciated along with the awarding of points...

    Hey thanks Alex and Catastrophe for the quick response...
    I'll be sitting with the functional team and reviewing the roles created.
    Thanks for all the help once more
    Regards,
    Akash.

  • I am batch processing in PS 2014 (watermark and saving as jpeg from ps file). I get the message for some but not all 'this file needs to be saved as a copy with this option'. And then I have to save it manually. Does anyone know why this happens? (It is j

    I am batch processing in PS 2014 (watermark and saving as jpeg from ps file). I get the message for some but not all 'this file needs to be saved as a copy with this option'. And then I have to save it manually. Does anyone know why this happens? (It is just a plain photoshop file, a watermark is added, then save as jpeg - the jpeg is saved to a different folder than the original photoshop file.)  It happens for about 10 of 30/40  files approximately . Thank you, Kathryn

    I believe I have figured it out - I need to flatten the image, even though there are no layers except for layer 0, first.

  • How to get the value for the LIT_Withheld field in the city tax form?

    I am trying to get the value for the LIT_Withheld field on the city tax form , PAYUSEET.. This is not a database column but is generated based on some conditions.. Appreciate the help. Thanks, Suguna

    Hi Abhmanyu,
    Thanks for your response.
    Search Help Name : ZZ_MG_MARITAL_VH
    Selection Method  : T502T
    Search help parameters are SPRSL, FAMST, FTEXT,
    Can u provide me a sample code to fetch the value of corresponding text.
    Thanks,
    Hari

  • How do I get the refund for a bumper that I bought from a retail store .

    I bought an Iphone 4 bumper from an Apple Retail Store and I would like to know what do I need to do to be able to get a refund. Do I go to the store with a receipt and get the refund for it or are they going to give refunds automatically. And what happens if I don't have a receipt for it, would I be able to print my bank statement and get whatever number they need from there?

    bcoday wrote:
    I went to the local Apple store yesterday, receipt in hand, but was told by the employee that Apple was going to be handling these online. I had just driven about 30 miles so I asked the guy to just honor the refund. I was there, I had a receipt, he knew they were supposed to honor refund. He wasn't budging but before I could get seriously insistent, I received an important phone call.
    I was/am not happy at all.
    After all that, and not calling ahead of time, you stopped your "serious insistence" to take a call and then just gave up? Couldn't you have continued your discussion with the apple person and returned your personal phone call?

  • How to get the alias name of an attribute of a VO from its column name?

    How can I programmatically get the alias name of an attribute of a VO given its column name?
    Often alias and column names are not same when the VO is created (and I don't require them to be the same)

    Hello John.
    I will be more precise. When the VO based on a table comes out from the wizard, it produces xml entries like the following one:
      <ViewAttribute
        Name="ColumnName"
        AliasName="COLUMN_NAME"/>There the column of the table on the DB really is COLUMN_NAME. The wizard mangles that name producing ColumnName as Name property.
    This is ok. I don't want to change this default behaviour.
    What I need is to programmatically get the value of that attribute given its AliasName property value:
    String f(ViewObject vo, String AliasName) {
    return (String)vo.getCurrentRow().getAttributeFromAliasName(aliasName); // getAttributeFromAliasName does not exist
    // instead of return (String)vo.getCurrentRow().getAttribute(Name);
    That is, usually getAttribute expects what in the xml is the Name property. However, I want a sort of getAttribute() expecting the AliasName.
    I hope it's clear.

  • I recently purchased an Apple TV box & the App for Apple TV from the Apple store. Now how do I get it to work? I am a card-carrying technological imbecile.

    I recently purchased an Apple TV box & the App for Apple TV from the Apple store. Now how do I get it to work? I am a card-carrying technological imbecile.

    If I'm understanding correctly, you have an Apple TV 2 (the small, black box version of the Apple TV), and downloaded the Remote App from the iTunes Store for your iPod Touch/iPhone/iPad, correct?  If so...
    For the AppleTV setup, hook it up to your television and, if applicable, your Surround Sound system.  To do this, you'll use an HDMI cable (not included, available here) to hook the AppleTV to your Television.  The cable only fits one way, and should slide effortlessly into place.  If, and only if, you intend to use your surround sound system with the AppleTV, you will also need what's called a TOSLINK Optical Cable (also not included, available here).  This cable goes from the AppleTV to a port labelled Optical In or Digital In on the back of your surround receiver (consult the manual that came with your surround sound system for additonal help).
    From here on, we'll focus on hooking up the AppleTV, then how to setup the Remote App from Apple on your iOS device.
    The AppleTV needs a network connection in order to function correctly.  A wired connection is recommended, but Wi-Fi is built-in to the AppleTV if a wired connection isn't available.  With the AppleTV plugged into your television, follow the on-screen instructions for setup.  To connect the AppleTV to your Wi-Fi network, you'll need to know the name of the network you want to connect to, as well as any password needed to connect to it.  When the AppleTV has a network connection, it'll load the latest selection of TV Shows, Movies and Music for display on the main menu - that's the easiest way to tell everything's working.
    For the Remote App, all you need to do is download the free application to a compatible iOS device (Any iOS device running iOS 3.1.2 or higher).  Once downloaded, go to the computer hosting your iTunes library, and turn on Home Sharing.  Finally, start the Remote App on your iOS device (be it iPhone, iPad, or iPod Touch), login with the same information you setup Home Sharing with, and away you go!  The Remote App is entirely optional, since the AppleTV can be controlled by the included remote control, but it's a nice touch nonetheless.
    I hope this answered your question, or at least helped put you on the path to success.  If you need something clarified, please don't hesitate to ask here.

  • Hello! I havent received any code after paying for it! Money's been withdrawn from my bank account and all I have now is a transaction code. How can I get the code for Photoshop?

    I havent received any code after paying for it! Money's been withdrawn from my bank account and all I have now is a transaction code. How can I get the code for Photoshop?

    You'll need to call Adobe customer support on the telephone.  There's little we fellow users can do to help you.
    -Noel

  • Hi , i didnt get the email for my secuity question , am trying from 2 weeks , please help , thanx

    hi
    i didnt get the answer for the security question

    I spoke with Apple Support this morning and they believe anything MobileMe related is due to the conversion over to iCloud that's taking place.
    As for other email clients, check with your host to see if settings have changed on their end. I use inmotionhosting.com and over the weekend the updated their outgoing requirements so that a password authentication is now needed.
    Hope that helps get some on the right path to resolving their issues!

  • How to get the values of Select-options from the screen.

    The value of parameter can be obtained by function module 'DYNP_VALUES_READ' but How to get the values of Select-options from the screen? I want the F4 help values of select-options B depending on the values in Select-option A.So I want to read the Select-option A's value.

    Hi,
    Refer this following code..this will solve your problem...
    "Following code reads value entered in s_po select options and willprovide search
    "help for s_item depending upon s_po value.
    REPORT TEST.
    TABLES : ekpo.
    DATA: BEGIN OF itab OCCURS 0,
    ebelp LIKE ekpo-ebelp,
    END OF itab.
    SELECT-OPTIONS   s_po FOR ekpo-ebeln.
    SELECT-OPTIONS s_item FOR ekpo-ebelp.
    INITIALIZATION.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_item-low.
      DATA:
      dyn_field TYPE dynpread,
      temp_fields TYPE TABLE OF dynpread,
      zlv_dynpro TYPE syst-repid.
      zlv_dynpro = syst-repid.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname     = zlv_dynpro
          dynumb     = syst-dynnr
          request    = 'A'
        TABLES
          dynpfields = temp_fields
        EXCEPTIONS
          OTHERS     = 0.
      LOOP AT temp_fields INTO dyn_field.
        IF dyn_field-fieldname EQ 'S_PO-LOW'.
            SELECT * INTO CORRESPONDING fields OF TABLE itab FROM ekpo
            WHERE ebeln EQ dyn_field-fieldvalue.
            EXIT.
        ENDIF.
      ENDLOOP.

  • Is it possible to get the position of a charcter from a string ?

    Hi !
    Is it possible to get the position of a charcter from a string ?
    Example:
    @VAR contains the following text "ABCDEFGHIJKLM"
    I'am seaching for FGH, it start on pos. 6 en ends on pos 8.
    How can I get these numbers 6 and 8 ?
    So, I can use them in the MID(text,start,len) function.
    Thanks!

    Hi Sooraj,
    I'll explain more in detail:
    From a web-service I get a variable called @Spec.
    This variable contains the following:
    "MOTORTYPE[CR]D-QW1234[LF]PART[CR]1234-FRD-X[LF]"
    or
    "MOTORTYPE[CR]ABC[LF]PART[CR]E-435[LF]"
    I need the values behind MOTORTYPE[CR] and behind PART[CR]
    But you’ll see that the positions of these values are different each time.
    If there is a way to get the (start) position of "MOTORTYPE[CR]" or "PART[CR]" and the (end) position of the first "[LF]" behind that,
    then I could use the MID() function to get the correct values.
    The values will be displayed in a table view (between other fields).
    An ABAP-call/function won’t work . . . how should I invoke this within a table column/field object ? (system action ?)

  • R/3 job and get the details of variants like (from and to)

    Hi,
    How to find R/3 job and get the details of variants like (from and to) for that job.
    the job is extraction job and running for 4 hours in R/3 once atfer this job completes BW job will start executing. Now i have to analyse R/3 job that how many years of data it is extracting (from, to) and other useful information why it is taking time for 4 hours.
    Please let me know what transaction i have to use and how to check this information in R/3 side.
    Thanks,

    Hi........
    Go to SM37 >> select the job >> Click on Job log.........Check there whether u r getting any Clue or not...........Is this load is through PSA..........? if so check the records of the First data packet...........then the Last data packet............from there u can get some idea..................
    Also u can check the data in the Extractor.......is it a full load?.............Go to RSA3 >> Execute..........there check the data........
    Is it a LO datasource ? if so................Go to LBWE >> Click on maintenance link for your datasource........>> Here in the Right pane u can see the Structute associated with that Datasource ...........If u remove MC from those structure name............u will get the table name..............In those tables also u can check the data...............there should be some data field.............from where u can get some idea.........
    If ur Extractor is extracting data using some Function Module.............then open the datasource using RSA2.............there double click on the Exrtractor..............u will get the function module.................u can try to analyze the function module............
    For Variants..................select the job >> click on Step in the top >> then Go to in the top >> Variant..............but I don't think this will help u............this will tell u that this Extraction job is part of which chain or IP......
    Regards,
    Debjani..........

Maybe you are looking for

  • Mail icon Bounces but doesn't open

    when I try to open my mail the mail icon bounces once in the dock and then nothing happens. I have auto update so i'm running the latest software. I can retrieve my mail from a website but I can't see my contacts or anything. No other application see

  • Please help me in tuning the query....

    SELECT   /*+ LEADING (WCL_EXPO) */          MAX (a.clm_id) clm, a.clm_nbr, b.expo_nbr, b.entps_covg_cd_id,          'open' status, a.uw_cmpy_map_id, a.rt_st_id, a.src_sys_id, suit_nbr     FROM wcl_clm a,          wcl_expo b,          (SELECT DISTINCT

  • Table_name(1)

    Can anyone plz tell me what is the significance of "(1)" in below query where as phr is a table name I have two environment both the environment(sybase & Oracle) gives result for the below query, I was working on converting sybase code to oracle. Adv

  • Drawing dotted lines

    Hey I've already figured out how to draw dotted lines so that's not the questions the thing is I only need to draw some lines as dotted, some as dashed and all others just normal.. I figured I could make radiobox to select which line.. then I save th

  • Password protecting my wireless network.

    i have a wireless network at home and i need to password protect it. can someone help out with this. i have a belkin 802.11 g thanx