Add infotype in dropdown in PA20

Hi,
User is missing an infotype from dropdown list in PA20. The infotype definitely exists. I checked the table V_T588B but was unable to check if this infotype was available for the particular user group.But I am pretty sure that this IT is available for this UG.
My question is: how do you add an infotype to the dropdown list?
Will appreciate your help.
Thanks,
Monika.

Hi,
Please check SU3 T.Code in your user's ID. In this T.code there is one tab called parameters under this you should maintain your UGR (User Group), MOL (Country Grouping). After you maintain this values check in PA20/PA30.
Based on the UGR, infotypes will maintain under Infotype menus.
Thanks & Regards
Rajesh

Similar Messages

  • ADD ITEMS TO DROPDOWN BOX FROM A TEXT FIELD(USER ENTERS THE ITEM) AND BOUND VALUE ALSO

    I WANT TO ADD ITEMS  THE DROPDOWN BOX FROM THE TEXT FIELD(ITEM NAME) WHERE USER ENTER'S THE ITEM DESCRIPTION
    AND BOUND VALUE ALSO SHOULD BE ADDED TO THE SAME ITEM.
    SAME WAY REMOVE ITEMS FROM DROPDOWN BOX
    PLEASE GIVE SAMPLE FORM OR JAVASCRIPT FOR THE ABOVE SCENARIO.....
    INDEED HELPFUL FOR MY PROJECT PLEASE SEND ATTACHED PDF FORM

    Hi Praveen,
    Your form is not shared so I have not been able to access it.  But I have updated mine.  There are now two approaches, one that follows on from the above method and updates each drop down list in each row.  The second updates a separate dataset that the drop down list is bound to.  This second approach requires the remerge() method which can cause problems if your code has updates some form properties like a borders color as these will be reset, but the code is simplier and you will only have one list to maintain.  The add button click code is;
    var particulars = xfa.datasets.resolveNode("particulars");
    if (particulars === null)
        particulars = xfa.datasets.createNode("dataGroup","particulars");
        xfa.datasets.nodes.append(particulars);    
    var particular = xfa.datasets.createNode("dataValue","particular");
    particular.value = ItemName.rawValue;
    var boundValue = xfa.datasets.createNode("dataValue","id");
    boundValue.value = BoundValue.rawValue;
    particular.nodes.append(boundValue);
    boundValue.contains = "metaData";
    // find sorted position to insert
    for (var i = 0; i < particulars.nodes.length; i++)
        p = particulars.nodes.item(i);
        if (p.value > particular.value)
          particulars.nodes.insert(particular, p);       
                 break;
    // add to end if greater than all existing items
    if (particular.parent === null)
        particulars.nodes.append(particular);
    // clear source fields
    ItemName.rawValue = null;
    BoundValue.rawValue = null;
    // remerge form data to pick up new item
    xfa.form.remerge();
    And the binding looks like;
    I have updated my sample to include both methods, https://workspaces.acrobat.com/?d=OwysfJa-Q3HhPtFlgRb62g
    Regards
    Bruce

  • How to add Gap between dropdown List Items - ComboBox in MFC VC++

    How to add Gap between dropdown List Items - ComboBox in MFC VC++

    Did you tried SetItemHeight() inside your App .
    Thanks
    Rupesh Shukla

  • Add values in Dropdown list

    Hi,
    My reqiurement is to add values in Dropdown list which is standard one. Already threre some values are there, like
    hourly,daily,wekly.
    Now I need to add montly value to the above dropdown list.How this can be done.
    Suggest me.
    Thanks,
    Brahmaji

    Hi,
    Expand the Attribute Period_type and double click on its GET_V method.
    You will find following code line :
    lr_ddlb->set_selection_table( me->job_wizard ).
    Double click on the Set_selection_table method to open the method code.
    You will find a LOOP.. ENDLOOP there. Here,to remove the values, comment out this LOOP- ENDLOOP.
    and  add following lines
             ls_ddlb-key   = 'Y'.
            ls_ddlb-value = 'Yearly'.
            APPEND ls_ddlb TO me->ddlb.
    Thats All .
    Hope it Helps.
    Regards,
    Suchita

  • Add infotypes in transactioncode SWEHR1, 2 and 3

    I would like to add infotype 0041 in transactioncode SWEHR1, but where can I find which Obj.type I should use.
    BR  //  Peter B

    Hi Peter,
    Please use BO DATESPECS for infotype 41.
    Regards,
    Lim...

  • Add Infotype 0045(Loans) to Personal Profile

    Hi All,
    I am currently on EHP6 and i am trying to add Infotype 0045 to personal profile application but i am facing issues.
    I have followed the steps with few exceptions from the below link:
    Adding any Info Type IN ESS in EHP5/6 through WebDynpro Configuration
    I have added the infotypes in HRPAD and V_T7XSSPERSUBTYP.
    I have created all the required configuration(FORM_UIBB, LIST_UIBB and OVP_COMPONENTS).
    I have created proper wiring as well and implemented the Default start date BADI as well.
    I have already make it to work for few other Infotypes.
    I am not sure why is it not working for IT0045.
    Please let me know in case you have any views on this.
    Regards,
    Mayank

    Hi,
    i have already checked all the settings and they all look fine.
    However, to be on the safer side i have also EDITED the same configurations and wiring to make it work for other infotype, and it works correctly for others.
    The problem is something specific to IT0045.
    Regards,
    Mayank

  • ESS to add Infotype 0022 (Education infotype)

    Hi All,
    I am SAP HR consultant, Don't know ESS portal work,
    here my client as asked to add infotype 0022 to ESS potal under Personal data link.
    Please give me detail step by step procedure to add Education infotype to ESS portal under Personal Data link.
    Thanks for your help and support in advance.
    Thanks
    Srilatha

    Try this
    Personnel Personal Data  ESS settings for specific services ESSPM Information (ESS): Determine subtypes
    srilatha there is another forum for ESS in SDN SAP ERP HCM Employee Self-Service
    Check this thread once
    https://forums.sdn.sap.com/click.jspa?searchID=24480494&messageID=6971882
    Edited by: Sikindar on Apr 6, 2009 9:39 AM

  • Add button in transaction transaction PA20 for Infotype 0002

    Hi All,
    Hope all are doing good progress in their works... I had one question.
    Has anyone added a button in the transaction PA20 for the Infotype 0002. I need to add a button in this screen so that the User can navigate from this screen in PA20 to the transaction CV04n.
    Helpful answers will definetly be rewarded..
    Thanks,
    Susanth Kumar.

    Hi,
    Package name PBAS.
    Check in SMOD with F4 help and give pakage name.
    We can find the exits. But for your requirement we need to have a screen exit or menu exit.
    FM exit-
    HRPBAS01-User Exit for HR Master Data-EXIT_SAPLRPIN_001.
    User exit-
    PBAS0002-PA: Enhancements for Personnel Administration - Menu-EXIT_SAPMP50A_001.
    Reward if helpful.
    Best Wishes,
    Chandralekha

  • Add element in dropdown list dynamically

    Hi All,
    I am facing a problem in adding item in a dropdown list dynamically.
    When i get dropdown list through IgetElementById get null.
    var list = document.getElementById("targetgroupname");
    here list comes as null. Now I've to fill this list. I am using below code -
    for(var j=0;j< com.length;j++){
    iist.options[j]= new Option(com[j],com[j]);
    But it is not working. My list is not getting filled with these values.
    I doubt due to var list -> null it does not allow to add element.
    But I am not getting any clue, how to initialize it.
    Please suggest, I am new to javascript.
    Thanks & Regards,
    Sneha.

    Hi,
    Thanks for the reply, yes the select box has that id - targetgroupname.
    actually there are 2 dropdown lists, Based on the selection of first dropdown list another list shd be filled.
    So I've written a script at "onchange" of first dropdown list. It works fine when a value gets changed at first dropdown list.
    In some cases I've to display a preselected value at first list ( which comes from previous page as parameter), in that cases there will be no onchange on first list, so I've called the script function manually after creating the first list,like below :
    <SCRIPT> checkSource();</SCRIPT>
    and in this case it does not work & I get a null when i try to read the 2nd list.
    But I am not sure why it is happening.. may be it is not loaded /created on page when i am calling it.
    If yes, what shd I do ?
    Thanks for your time.
    Regards,
    Sneha

  • Unable to add items to dropdown list using javascript

    Hi,
    I'm trying to add additional items to a dropdown list at runtime using javascript.
    I'm doing this by invoking the addItem method on the dropdown list field during its initialize event.
    However when I run the generated pdf in Acrobat Pro, I get the following error in the console -
    GeneralError: Operation failed.
    XFAObject.addItem:3:XFA:form1[0]:#subform[0]:field0[0]:initialize
    Method: 'addItem' cannot be called because doing so would violate this document's permissions settings.
    The pdf form has no signatures or any other stuff in it.
    What additional permissions do I need to add and how ?
    You can view the pdf here -
    https://dl.dropboxusercontent.com/u/8022836/xfa3_test.pdf
    Thanks,
    Joel

    Is there a reason to use the code you did? It looks like the problem is with the variable's permissions when going through the template.
    This code works just fine in that same event:
    this.addItem("new item");
    As does:
    var f = xfa.resolveNode("form1.#subform1[0].field0");
    f.additem("new item");

  • How to Add values to dropdown list in runtime

    Hi All
    I wanted to add the items to the dropdown list in the plugin.
    The SDK Example WriteFishPrice shows the items are hard coded in the .fr file.
    i am looking for a similar concept, but not adding the items in the .fr file, i wanted to add the items in the .cpp or .h files and add the items to the dropdownlist.
    DECLARE_PMID(kWidgetIDSpace, kWFPDropDownListWidgetID, kWFPPrefix + 2)
    The declaration is done in WFPID.h file
    #define kWFPDropDownItem_1Key kWFPStringPrefix "kWFPDropDownItem_1Key"
    defining the string is done in WFPID.h
    I wanted to add the items in the same header file, is there any way that i can add the items in the header files instead of adding in .fr file
    Please guide me
    Thank you
    -Srinivas

    Hope this will help you a bit with both threads ; )<br />I'm not sure what you are trying to accomplish with defining the strings in an header or cpp file and not in the fr file(s). Usually you sort of predefine strings in the main fr file and then give a "final" translation definition for each string in the corrosponding language file. If you don't need or want to translate you can define string constants almost wherever you like and add them at runtime e.g. during dialog initialization. In this case you'd have to make each string not to be translateable with PMString.SetTranslatable(kFalse).<br />If you want to add items to a listbox or text edit during runtime you just have to get the interfaces and call their methods. Below is a small example taken from a dialog with a dropdown listbox, a text edit field and a button widget. In the DialogObserver I implemented the Update function to the following functionality:<br />- when the button (Insert Button) is pressed the content of the edit field is read and inserted into the listbox<br />- when something in the listbox is selected, the selection is shown/inserted into the text field<br /><br />void VSPDialogObserver::Update<br />(<br />     const ClassID& theChange,<br />     ISubject* theSubject,<br />     const PMIID& protocol,<br />     void* changedBy<br />)<br />{<br />     // Call the base class Update function so that default behavior will still occur (OK and Cancel buttons, etc.).<br />     CDialogObserver::Update(theChange, theSubject, protocol, changedBy);<br /><br />     do<br />     {<br />          InterfacePtr<IControlView> controlView(theSubject, UseDefaultIID());<br />          ASSERT(controlView);<br />          if(!controlView) <br />               break;<br />          <br />          InterfacePtr<IDialogController> dialogCtrl(this, UseDefaultIID());<br />          if (!dialogCtrl)<br />               break;<br /><br />          InterfacePtr<IPanelControlData> panelControlData(this, UseDefaultIID());<br />          if (!panelControlData)<br />               break;<br /><br />          //get currently selected/active widget<br />          WidgetID theSelectedWidget = controlView->GetWidgetID();<br />          <br /><br />          // is it the drop down list?<br />          if (theSelectedWidget== kVSPDropDownWidgetID) <br />          {<br />               TRACE("ListBoxAction");<br />               //insert selected string into edit field<br />               PMString strSelection =     dialogCtrl->GetTextControlData(kVSPDropDownWidgetID);<br />               strSelection.SetTranslatable(kFalse);<br />               dialogCtrl->SetTextControlData(kVSPTopEditBoxWidgetID, strSelection);<br />               break;<br />          }<br /><br />          // ist it the text edit field?<br />          if (theSelectedWidget == kVSPInsertButtonWidgetID && theChange == kTrueStateMessage)<br />          {<br />               TRACE("Insert Button pressed");<br />               IControlView* listView = panelControlData->FindWidget(kVSPDropDownWidgetID);<br />               InterfacePtr<IStringListControlData> listControlData(listView, UseDefaultIID());<br /><br />               //Insert the string into listbox<br />               PMString strText = dialogCtrl->GetTextControlData(kVSPTopEditBoxWidgetID);<br /><br />                        // obviously there can't be a translation for text entered by user<br />               strText.SetTranslatable(kFalse);<br />               listControlData->AddString(strText,kVSPTopEditBoxWidgetID);<br />          <br />               //"clear" the text edit field<br />               dialogCtrl->SetTextControlData(kVSPTopEditBoxWidgetID, "");<br />               break;<br />          }<br />     } while (kFalse);<br />}

  • How to add infotype to a role

    Hello friends
    I am tring to create a link for Infotype 376 on ESS benefits page. I understand i need to add this Infotype to the ESS role in R/3 through PFCG.
    Is this the correct way? If yes, please let me know how do I add the IT to the role?
    If not, please let me know the correct procedure.
    thanks a lot
    pomila

    hi
    In case of business package or content related to any thing to R/3 every authorization has to be at backend and authentication to be in portal.In this case you add the infotype at backend and migrate the role ESS to portal but infotype system (BW)has to be single sign on with portal or user mapped and user must have authorization there.hope this helps you please do not forget to give points
    with regards
    subrato kundu

  • Add Infotypes to PPOME, PPOCE, PPOSE

    Hi every body!!
    do you how can i add a new Infotype in the Organization and Staffing view??
    i think the tabs are infotypes,  is it true??, i need to change an infotype and put otherone
    can you help me!!!

    In ECC 6.0     carry out the folowing steps.
    Create a new Infotype using transaction PPCI
    Add tab to transaction PPOME/PPOSE & PPOSW using the following IMG Path:
    Personnel Management --> Organisation Management --> Hierarchyu2026 --> Integrate New Infotype --> Add Infotypeu2026.
    Add new infotype table T777I
    Cheers - hopefully this helps.

  • How to add infotype 0105 in PA70?

    Hi Experts,
    I wanted to add the communication infotype in the fast entry.
    I have tried to add the infotype in Table 588Q and T 588R.
    Still I am not able to do that. Can anyone plz guide me how to do that?
    Thank You in advance.
    Manjiri

    Hi Manjiri,
    When you enter 0105 to infotype area and press create/change/delete you can use the PA70 transaction for 0105 infotype. No need to add it to the list.
    Regards,
    Dilek

  • Add Infotype 77 on ESS Screen

    Hi,
    I am supposed to create the Infotype 77 screeen in WD Java and add it under ESS Personal Info. I do have knowledge in Webdynpro Java but am not updated on FPM. Can some one let me know step by step procedure to accomplish this.
    Also I believe there are some RFC's in backend which can be used...
    HRXSS_PER_P0077_CA                   ESS PersInfo: Access infotype 0077 CA
    HRXSS_PER_EDIT_P0077_CA           Select the given record for edit
    HRXSS_PER_MODIFY_P0077_CA      Modify selected record with given record
    HRXSS_PER_NEW_P0077_CA           Create new record of given infotype/subtype
    HRXSS_PER_READ_P0077_CA          read all records of an infotype relevant for ESS Pers Info
    will they all be required to develop each WD FPM screen??
    regards
    Justin K

    Hi,
    1st would be
    You can develope this application by two ways ....i.e
    Webdynpro Java and
    Webdynpro ABAP
    If you are doing form Webdynpro ABAP then you need to from SE80 ...then form there you need to create Webdynpro application
    Then similary it would create the FM for the same ......
    in that FM you need to give the following RFC's
    HRXSS_PER_P0077_CA ESS PersInfo: Access infotype 0077 CA
    HRXSS_PER_EDIT_P0077_CA Select the given record for edit
    HRXSS_PER_MODIFY_P0077_CA Modify selected record with given record
    HRXSS_PER_NEW_P0077_CA Create new record of given infotype/subtype
    HRXSS_PER_READ_P0077_CA read all records of an infotype relevant for ESS Pers Info
    Then it will work fine
    for more information on ABAP Web Dy Pro you can get it in following ways
    http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm

Maybe you are looking for

  • Importing to AE files - goes to wrong folder

    I looked in the AE FAQ, didn't see the answer to my question, so here goes. I am using AE with editing video, meaning I only use AE for some basic things. This is one of those times where my lack of knowledge is driving me mad. When I went to import

  • Cannot close attachment in mail

    I received an invoice PDF. I opened it. Now when I open email, I only see the PDF not my accounts let alone my email. How do I close THE PDF? Pinch gesture closes entire email program app, when I open email app there is THE PDF again.

  • File status remains "new version available"

    Hello everyone, We are a writing team of two people and some time ago a third person joined us. We are working with RoboHelp HTML 9 and use Robosource Control to share our project. This third person has been given access to the Robosource Control pro

  • Application name for Spaces

    Can somebody tell me where the "Spaces" feature retrieves the name of an application from? That is, does it just take the name of the application bundle, or the executable inside the bundle, or something else? And does it store this in a cache somewh

  • What size when exporting files?

    Im unclear about which choice to make when I'm exporting images (shot RAW)in Lightroom for 1. back up purposes 2. when I'm exporting images to DVD and taking it to a printer Do I pick JPEG and if so what size resolution? Or do I go with DNG? thanks d