Pa30 to view only a selected infotype and still use search help prem

Is it possible to use PA30 to have non-hr users see a custom infotype but none of the other standard infotypes?  I would like for the non-hr users to be able to use the Search Help PREM to find records for the custom infotype.
Is this type of inquiry better served by creating a custom program?

These type of requirements are served at the security level but instead going into so much complexity, it is a better idea to write a custom report for the requirement.
Regards,
Amit
Reward all helpful replies.

Similar Messages

  • Selection screen parameter validation using search help/check table

    Hi experts,
    I have a select-option that is tied to a search help and check table (type tq80-qmart). Is there a way to automatically validate the field based on what comes up in the F4 search help? What I mean is, when the user hits F4 on the parameter, the list pops up with several records that the user can choose. When the program is executed, I want the program to show an error if the value is NOT in that F4 list.
    I know this can be done in AT SELECTION SCREEN event with a select, but I was wondering if there was a way ABAP does it automatically. Any help will be greatly appreciated.
    Thanks,
    Juan

    Hello Juan,
    SAP does have a standard way of allowing the the user to select from the list via LISTBOX.
    But list box is restricted to parameters only, you cannot attach list boxes to select-options.
    I think the best place to do this validation would be th AT SELECTION-SCREEN event & from your original post it seems you know what code to write

  • Iphone 4 went into recovery mode when trying to restore, only option available now is to "restore and update" however this will not work, how can you restore from a backup once in recovery mode and only option is "restore and upgrade"? Please help!

    iPhone 4 went into recovery mode when trying to restore it. Now the only option iTunes allows is for "restore & upgrade", it is not offer an option to restore from a backup, says that must first do the upgrade, when attempting to do the upgrade the iPhone won't accept it.
    How can I restore from a back up in recovery mode when the only option is "restore and upgrade"?
    Please help.

    You don't you must restore your phone first and then you will have the option to restore from your backup.
    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • Cannot view quicktime window normal size and still see controls!

    Help!
    I cannot view quicktime window normal size and still see control butttons (pause, play etc.)
    I search this forum and found another previous similar question, but the answer. (To use control+0, which would make it half-size.), is not what I need.
    What I need is to have a nice fuller size view, (not the narrow little half-size), but any way i find of doing that hides the controls below the bottom of my screen!
    I cannot resize it from any side, except the bottom r. corner, which is hidden with these desireable fuller options.

    Update: this was my mistake - I had neglected to configure all the view containers in the WebDynproCO window, which was generated by adding the GP interface to the component.  All is well.

  • PLEASE HELP when I upgraded to the new firefox my old one got deleted which had all my stuff and my mac is only 10.4.11 and wont work please help!!!

    PLEASE HELP when I upgraded to the new firefox my old one got deleted which had all my stuff and my mac is only 10.4.11 and wont work please help!!!

    Need to Resume download to complete the ongoing Process.
    Last Resort, put the iPhone in DFU mode (Google How to do that). Connect in iTunes. Follow on-screen prompts to Restore. All Data would be lost, if not backed up earlier.
    To save the photographs you may have to use third party software. Google is your friend.

  • Selecting multiple values from a search help

    Hi Experts
    Anyone knows if it is possible to select multiple values from a search help?
    Thanks
    Gaurav

    Hi,
    You cannot select mutiple values from search help as it is linked to inputfield and hence it will accept single value only. But at the same time, you may able to pass row of values to different inputfields.
    Refer http://help.sap.com/saphelp_dm40/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/content.htm
    Thanks,
    Chandra

  • Populate and display internal table results using search help exit...

    I have copied F4IF_SHLP_EXIT_EXAMPLE and made changes. I want this search help exit to populate and display contents related to 'FIELD1' when the user enters a specific value for it in the search help screen, meaning when the user restricts the search by that value.  For field2, field3, field4, field5, field6, field7, and field8 I am using a custom view.
    Following is the code:
    TYPES:  BEGIN OF t_search,
                   field2 TYPE field2,
                   field3 TYPE field3,
                   field4 TYPE field4,
                   field5 TYPE field5,
                   field6 TYPE field6,
                   field7 TYPE field7,
                   field8 TYPE field8,
                   field1 TYPE field1,
                END OF t_search.
      DATA: it_itab TYPE TABLE OF t_search,
            wa TYPE t_search,
         wa_selopt TYPE ddshselopt,
            wa_fielddescr TYPE dfies.
    ranges: r_field1 for std_table1-field1
    STEP SELECT    (Select values)
        FREE: r_field1.
    **Get the value entered for FIELD1 in search help
        LOOP AT shlp-selopt INTO wa_selopt.
          CASE wa_selopt-shlpfield.
            WHEN 'FIELD1'.
              r_field1-sign = wa_selopt-sign.
              r_field1-option = wa_selopt-option.
              r_field1-low = wa_selopt-low.
              r_field1-high = wa_selopt-high.
              APPEND r_field1.
              CLEAR: r_field1.
          ENDCASE.
        ENDLOOP.
    **Select 'ID' and 'FIELD1' from table into lt_itab
        SELECT id field1
              INTO TABLE lt_itab
                FROM std_table1
                  WHERE field1 IN r_field1.
        IF sy-subrc = 0.
    **Now, based on the particular IDs from lt_itab, I need to select other values
    from other tables which also have 'ID' as the key.
           SELECT std_table2~field2
                std_table2~field3
                std_table3~field4
                std_table3~field5
                std_table3~field6
                std_table4~field7
                std_table4~field8
                std_table1~field1
              INTO CORRESPONDING FIELDS OF TABLE it_itab
              FROM std_table2
                         INNER JOIN std_table3 ON
                                std_table3mandt = std_table2mandt AND
                                std_table3id = std_table2id
                         INNER JOIN std_table4 ON
                                std_table4mandt = std_table2mandt AND
                                std_table4id = std_table2id
                         INNER JOIN std_table1 ON
                                std_table1mandt = std_table2mandt AND                                           std_table1id = std_table2id
              WHERE
                    std_table1~field1 IN r_field1.
    'id' is common in all the std_tables --> std_table1, std_table2, std_table3, std_table4.
    STEP DISP     (Display values)
    **Then I need to gather all the results in my internal table it_itab and display
    in search help results for the value of FIELD1 entered by the user in the search help.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
          EXPORTING
            parameter   = 'FIELD1'
            fieldname   = 'FIELD1'                          
          TABLES
            shlp_tab    = shlp_tab                                   
            record_tab  = record_tab
            source_tab  = it_itab
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
    I am not getting all the data in my internal table and wanted to know if there is anyting wrong in my select statement.
    Any guidance will be appreciated and awarded appropriate points.
    Thanks.

    the webdynpro fieldname and the search help input parameter name were made same.

  • Can I stream a movie from my Macbook to my Apple TV on one display, and still use my Macbook for other things?

    I have a Macbook Pro and an Apple TV. What I'd like to do is stream a movie from my CinemaNow Account to my television by using my Apple TV and my Macbook. I know that I can do this my using the mirroring feature, however then I can no longer use my Macbook for anything else because my TV will only display what is on the screen of my Macbook. Now with this is mind, what then is the point of having multiple displays through the use of my Apple TV, if only one display can be used at a time unless they both show the same image? Or is there a way for me to be able to stream the movie to my TV and still use my Macbook for other purposes (multi-tasking)? 

    To enable a second display over AirPlay, you first need to be connected to the same network as your Apple TV. Next, open System Preferences > Displays, and select your Apple TV from the “AirPlay Display” drop-down menu.
    Once you do this, your display may flash as the second display connection is acquired, and the Apple TV takes over as the second display. If the displays are mirrored, then you can correct this by opening the “Arrangement” tab in System Preferences > Displays, and ensuring that the “Mirror Displays” checkbox is unchecked.
    In this same “Arrangement” tab, you can move the displays around in the pane to ensure that they're positioned correctly, relative to your physical space (usually side-by-side, or top-down). The primary display here is denoted here by the Menu bar on the display. The arrangement helps with being able to drag windows from one display to the next: if your secondary display is arranged to be to the right of your primary one, for example, you can drag things to it through the right side of your primarcy screen.

  • PA30, Maximum rows 50, Search help PREM

    Hello,
    Do you know maybe what could be a problem with transaction PA30
    when I'm using search help for finding persons I will get only 50 rows on
    the list and the message DH803 :
    'There are more than 50 possible inputs"
    when I was analysing program it's hard coded for 50th but maybe there is a way to set (increase) this value in configuration?
    Thank you in advance Bogumila

    even if (T77S0) RECFA:HIHIT is set to 500, the search help results in PA30 are reduced to 50. where can I temporarily extend that value to e.g. 200?
    your input is highly appreciated.
    rgds
    Lorenz

  • Only Using Search Help Value When Entry Value

    Hi Experts,
    I'm using search help at my screen field for entry value. But I dont want to entry value with using hand/finger/manuel.
    I want to use only search help at my field.
    Is this possible?
    Best regards.

    Thanks All for answers.
    I mixed your solution and I find new way for my issue.
    I did like this.
    I added Input/Output Field at screen and I did input properties false.
    And I added button near the I/O Field.
    I wrote at PAI - User_Command for button on click.
    May there is different way but so my solution.
    My draft code below.
        WHEN '&BTN_PREPARE'.
       DATA : BEGIN OF ITAB OCCURS 0,
          KTANIM TYPE CHAR9,
          IPTPKOD LIKE ZKZN_004-IPTPKOD,
          KYPTYPEID LIKE ZKZN_004-KYPTYPEID,
          FIILOLS LIKE ZKZN_004-FIILOLS,
    END OF ITAB.
          CLEAR : ITAB.
          REFRESH : ITAB.
          SELECT IPTPKOD KYPTYPEID FIILOLS
          INTO CORRESPONDING FIELDS OF TABLE ITAB
          FROM ZKZN_004
          WHERE SILINDI = ''.
          LOOP AT ITAB.
            CONCATENATE ITAB-IPTPKOD ITAB-KYPTYPEID
            INTO ITAB-KTANIM SEPARATED BY SPACE.
            CONCATENATE ITAB-KTANIM ITAB-FIILOLS
            INTO ITAB-KTANIM.
            MODIFY ITAB.
          ENDLOOP.
          DATA : DFIES LIKE DFIES OCCURS 0 WITH HEADER LINE,
                 DDSHRETVAL LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE,
                 DSELC LIKE DSELC OCCURS 0 WITH HEADER LINE.
          CLEAR   : DFIES, DDSHRETVAL, DSELC.
          REFRESH : DFIES, DDSHRETVAL, DSELC.
          CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
            EXPORTING
              RETFIELD        = 'KTANIM'
              VALUE_ORG       = 'S'
            TABLES
              VALUE_TAB      = ITAB
              FIELD_TAB         = DFIES
              RETURN_TAB      = DDSHRETVAL
              DYNPFLD_MAPPING = DSELC.
          BREAK MELIHM.
          READ TABLE DDSHRETVAL INDEX 1.
          IF SY-SUBRC = 0.
            ZKZN_DATA01_S01-IPRJSCR01 = DDSHRETVAL-FIELDVAL.
          ENDIF.

  • Can time capsule be connected wirelessly and still use ethernet ports for other devices?

    can time capsule be connected wirelessly and still use ethernet ports for other devices? we have it connected wirelessly but devices connected to the ethernet ports are not working.

    Not as an additional router.. the TC will be plugged into the main router via ethernet (or ethernet equivalent)..
    Then the TC is setup in bridge mode. It will simply act as a Switch and HDD.
    The wireless can be setup in a number of ways.
    From your convenience point of view use it in roaming network mode..
    you simply give the TC the same Wireless Name as the existing routers SSID.
    Same security setting and password. WPA2 Personal = WPA2 AES which is the best.
    But they both use different wireless channels.. normally if you leave the TC on auto it will work fine, but I prefer to control the network.. so set the main router to say 1 and the TC to 11.
    You can also use a completely different wireless name etc.. that is up to you. It is still a single flat network and the only thing that is important is only having one router.

  • Hi, I activated my CS6 in 2012 under my student licence and still using it. I've heard that you can't run CS6 on multiple computers. How do I transfer it from one computer to another as I am switching computers?

    Hi, I activated my CS6 in 2012 under my student licence and still using it. I've heard that you can't run CS6 on multiple computers. How do I transfer it from one computer to another as I am switching computers?

    Hi,
    first, I'm not Adobe's "slave" as you might to accuse me. Most of the posters here are users like me.
    I only can repeat that what I found in Adobe's help sites, as I wrote above. You are free to figure out the "real" truth and - the best would be - you may contact Adobe directly, here are - I'm sure you know them -  the links I would use: http://helpx.adobe.com/support.html  and http://helpx.adobe.com/contact.html.
    Hans-Günter

  • Can I keep photos on external hard drive and still use iPhoto?

    I have virtually no space left on my eMac's 80GB hard drive. For a long time, I have kept my sizable iTunes library on an external hard drive connected to the eMac. It takes a bit of extra time to open up the iTunes library and to upload music from newly purchased CDs, but generally the external hard drive and eMac perform well together. My question is: Can I do the same with my photos (put them on the external hard drive) and still use iPhoto to access them and edit them? I have checked some of the Apple knowledge base documents, and there seem to be warnings against this. I am currently using iPhoto 6.0.6. I have purchased iPhoto 7.0 (with iLife '08) but haven't put the new software on the computer because there is not enough space. I would like to straighten out this space problem and get the benefits of the new software. (I have backed up quite a few of the photos onto CDs, but I like to have them handy--therefore on the eMac or on a hard drive connected to the eMac.) Thanks ahead to anyone with some good ideas on this topic.

    winesmile
    Yes it is, but you cannot access the at the same time as iPhoto can only open one library at a time.
    So, a solution might be to have the entire library on the external, and to carry the smaller subset on the laptop.
    To do this, follow the instructions above to move the library, but instead of deleting the library on the laptop (in the final step), put the pics from the earlier years into the iPhoto trash and empty it. (iPhoto Menu -> Empty Trash. Hint: Don't so them all at one go! Better a few a a time.)
    Now you have the full library on the external (and if you want to access the full library, use that) and the 07 & 08 years on your laptop.
    To switch between libraries, simply hold down the option (or alt) key when launching.
    As you add photos to the Library you can use iPhoto Library Manager to move pics and albums /events between libraries, and so keep them up-to-date with each other.
    Please note this is the only way to sync the libraries, there is no app that can do this automatically.
    Regards
    TD

  • HT201343 can you mirror say desktop 2 and still use your mac on desktop 1 with the movie playing on the tv?

    I'm interested in Apple TV for the mirroring feature through AirPlay, but will only purchase if I can still use my mac as normal whilst i'm watching what is being mirrored on the tv. Is this possible in any way? like possibly having the movie playing on desktop 2 and mirroring that and still use the mac with the other desktops to browse the internet etc?

    No, AirParrot isn't a solution for dexta,
    AirParrot gives mirroring function to older computer that are unsupported by the Apple's mirrorring function.  Dexta is looking to extend is display which isn't a feature of AirParrot.
    AppleTV will only gives you direct access to some web content using the builtin features like YouTube, Netflix, etc.  If you are looking for unsupported access to other website without using mirroring, then the AppleTV isn't the best hardware to answer your need.

  • Inconsistancy between CRMD_ORDER and ICWebClient in search help

    In this ICWCShowF4Help - Doco I asked about calling a search help from the ICWebClient. I now have that working but there is an inconsistancy about how it is working in from CRMD_ORDER and from the Web Client.
    The search help is the one associated with field CRMT_PRIL_QUERY_ICWEB_MAIN-CATEGORY_ID ie search help CRM_PROD_CATEGORY
    This produces a list of product categories with texts from CRMD_ORDER. Inside the Web Client the same search help is omitting the texts and they cannot be searched.
    Does anyone have any clues, notes or ideas about this behaviour?
    Any ideas or pointers will be gratefully received and rewarded.
    Kind regards,
    Nigel James

    Step:1
    In the View  just add the code for a search help,for example
    <!-- Code for input box with search help,just replace structure name and -->
    <!fieldname by the actual structure and field name created in se11.>
                                 <crmic:inputField id = "ID"
                              maxlength = "40"
                              width     = "100%"
                              value     = "<%= Variablename %>"
                              showHelp  = "FALSE"
                              onValueHelp =
    "ICWCShowF4Help(<%= mpage_context->m_page_id %>_FieldName,<%= mpage_context->m_page_id %>_MaterialText,'StructureName-FieldName','','<%= mpage_context->m_page_id %>')"
                              disabled  = "TRUE"
                              />
    Step:2
    Go to se11 create a structure with the respective field and attach the search help to that field and appropriately check exp imp in the field.The important thing here is that the secondary search help should not be used here.I suggest rather define a view and use it in  the structure.
    thanks,
    ashish.

Maybe you are looking for