Search OTR -e_Recruiting

Hi
I wonder if there is a way to find whether a text I have is part of an OTR or whether it is dynamically generated by the controller.
I thank you in advance for your advice
regards
yuval

Hi friends
Thank you for your helpful assistance.
Now I have another question:
I have to make slight modification to e-learning module.
If I go to Requisition -> Maintenance -> Create Requisition -> Requisition
there are 9 tabs. I am now searching for a way to add one more tab
to this collection of tabs. ?????/
Also I discovered that each rectangle corresponds to a bsp, which I also managed to locate, all but the BSP that is responsible for showing these 9 tabs and
the sentence above it ("A requisition is a formal request to fill one or more jobs. Store the relevant data and release the requisition.").
Any idea where these are defined?
Thank you
yuval

Similar Messages

  • Documentation of new phtmlb tags

    Hi,
    we recently did an upgrade from PL40 to PL50 (620). Looking into the Tag Browser in SE80 I noticed that some phtmlb docu is now available what is very nice.
    On a second look I noticed that there are a few new tags in the phtmlb libary like <phtmlb:dataTip>, <phtmlb:pictogramLayout>, <phtmlb:focusRect> and some more.
    At least those tags seem to be new to me and there is no docu available for these tags.
    The docu in note 767167 is not up to date, at least it does not include the mentioned tags.
    Is there any documentation available for those new tags?
    The phtmlb_samples BSP-App has changed a little bit but the mentioned tags are not included here either...
    Regards,
    Alex

    The <phtmlb:dataTip> is really cool.  It can be used to apply more details about a field.  I use it with a <phtmlb:messageBar>.  When the user double clicks the <phtmlb:messageBar> message the focus is set to the field that generated the error and the <phtmlb:dataTip> is used to give the specific problem.
    <htmlb:inputField id      = "docversion"
                            value   = "//model/dir_sel.dokvr"
                            invalid = "<%= docversion_invalid %>" />
          <phtmlb:matrixCell col    = "1"
                             row    = "3"
                             vAlign = "TOP" />
          <htmlb:button id       = "linkDIR"
                        text     = "<OTR>Link</OTR>"
                        disabled = "<%= application->MY_BLOCK_NON_TEAM_UPDATES %>"
                        onClick  = "LinkDIR" />
          &nbsp &nbsp
          <htmlb:link id        = "DocSearch"
                      reference = "../zem_doc_search"
                      target    = "_Top"
                      text      = "<OTR>Document Search</OTR>" />
        </phtmlb:matrix>
        <%
      if model->dir_error is not initial.
        %>
        <phtmlb:messageBar id                 = "DIR_ERROR"
                           type               = "ERROR"
                           rulerDisplay       = "TOP"
                           connectedControlId = "<%= controller->component_id %>_<%= model->DIR_CONTROL %>"
                           text               = "<OTR>Error During Link Attachment</OTR>" />
        <phtmlb:dataTip connectedControlId = "<%= controller->component_id %>_<%= model->DIR_CONTROL %>"
                        onlyFirstFocus     = "false"
                        text               = "<%= model->dir_error %>"
                        type               = "error" />
        <%
      endif.
        %>
    https://weblogs.sdn.sap.com/weblogs/images/1918/phtmlb_datatip.jpg

  • How to use OTR Text!

    Hi gurus,
    I am using the CRM Survey Suite to create a Survey form.
    I am supposed to create a PBO through which the OTR Texts will be displayed based on conditional checks.
    I have also created the OTR Texts via transaction Sotr_edit and  I am able to retrieve them via FM sotr_get_concept.
    Pl. let me know how I can show them on the web page, i.e. my survey form.
    I have searched and found that they can be used readily in BSP but how to use them in a Survey Form.
    Regards
    Atul

    Hello
    I am not sure whether we can assign it at the screen properties level. But you can do one thing, call the FM SOTR_READ_TEXT_WITH_KEY by passing the context of the SOTR you want to read and get the text associated back in the ENTRY structure.
    You can have a I/O field which is output only on the screen. And in the program you can assign the OTR text to this I/O field so that the OTR text will be displayed.
    Regards
    Ranganath

  • Search help in dynpro

    Hi to all,
    In my application I have a field with a search help.
    I want that this field only can be modified using a search help and this field can't be modified directly writing in this field.
    Is similar to transaction se63 - Translation - Abap objects - Short texts - OTR - Source language
    I have created an example with the field SFLIGHT_T-CARRID but this field can be modified with search help and directly, or this field can't be modified.
    How can i solve this problem?
    Thanks a lot.

    Hi,
    In my application I have done the following:
    -> Screen painter (layout):
    Name: SCARR-CARRID
    Input Field: not marked
    Output Field: marked
    Possible entries: marked
    Possible entries keys: 2
    -> Flow logic:
    PROCESS BEFORE OUTPUT.
      MODULE IMPORT_DATA_0001.
    PROCESS AFTER INPUT.
      MODULE EXPORT_DATA_0001.
    PROCESS ON VALUE-REQUEST.
    FIELD SCARR-CARRID MODULE listbox.
    PROCESS ON HELP-REQUEST.
    MODULE listbox INPUT.
      TYPES:
           BEGIN OF VRM_VALUE,
             KEY(40) TYPE C,
             TEXT(80) TYPE C,
           END OF VRM_VALUE,
           VRM_VALUES TYPE VRM_VALUE OCCURS 0,
           VRM_ID TYPE VRM_VALUE-TEXT,
           VRM_IDS TYPE VRM_ID OCCURS 0.
      DATA: name TYPE vrm_id,
            list TYPE vrm_values,
            value LIKE LINE OF list.
      CHECK list[] IS INITIAL.
      name = 'SCARR-CARRID'.
      SELECT carrid CARRNAME FROM SCARR
        INTO (value-key,value-text).
        APPEND value TO list.
      ENDSELECT.
      SORT list BY text.
      CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        id = name
        values = list.
    ENDMODULE. " LISTBOX INPUT
    But this don't fix my problem, I can see the diferent values with match code but I can't choose a value.
    Can somebody help me again?
    Thanks a lot.

  • Choose an entry in Search help and not in its input field

    Hi to all,
    In my application I have a field with a search help.
    I want that this field only can be modified using a search help and this field can't be modified directly writing in this field.
    Is similar to transaction se63 - Translation - Abap objects - Short texts - OTR - Source language
    I have created an example with the field SCARR-CARRID but this field can be modified with search help and directly, or this field can't be modified.
    In my application I have done the following:
    -> Screen painter (layout):
    Name: SCARR-CARRID
    Input Field: not marked
    Output Field: marked
    Possible entries: marked
    Possible entries keys: 2
    -> Flow logic:
    PROCESS BEFORE OUTPUT.
    MODULE IMPORT_DATA_0001.
    PROCESS AFTER INPUT.
    MODULE EXPORT_DATA_0001.
    PROCESS ON VALUE-REQUEST.
    FIELD SCARR-CARRID MODULE listbox.
    PROCESS ON HELP-REQUEST.
    MODULE listbox INPUT.
    TYPES:
    BEGIN OF VRM_VALUE,
    KEY(40) TYPE C,
    TEXT(80) TYPE C,
    END OF VRM_VALUE,
    VRM_VALUES TYPE VRM_VALUE OCCURS 0,
    VRM_ID TYPE VRM_VALUE-TEXT,
    VRM_IDS TYPE VRM_ID OCCURS 0.
    DATA: name TYPE vrm_id,
    list TYPE vrm_values,
    value LIKE LINE OF list.
    CHECK list[] IS INITIAL.
    name = 'SCARR-CARRID'.
    SELECT carrid CARRNAME FROM SCARR
    INTO (value-key,value-text).
    APPEND value TO list.
    ENDSELECT.
    SORT list BY text.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
    id = name
    values = list.
    ENDMODULE. " LISTBOX INPUT
    How can i solve this problem?
    Thanks a lot.

    Hi Jey:
    I have tried this:
    MODULE listbox INPUT.
      TYPES: BEGIN OF vrm_value,
               key(40)  TYPE c,
               text(80) TYPE c,
             END OF vrm_value,
      vrm_values TYPE TABLE OF vrm_value,
      vrm_id     TYPE vrm_value-text,
      vrm_ids    TYPE TABLE OF vrm_id.
      DATA: name       TYPE vrm_id,
            list       TYPE TABLE OF vrm_value WITH HEADER LINE,
            poplist    TYPE TABLE OF spopli WITH HEADER LINE,
            popanswer  TYPE c,
            popindex   TYPE i,
            value      TYPE vrm_value,
            lt_dyntab  TYPE TABLE OF dynpread  WITH HEADER LINE,
            dynpprog   TYPE syrepid VALUE 'SAPMZxxxx',           "Enter your dynpro here
            dynpnr     TYPE sydynnr VALUE '0100',          "Enter your screen number here
            dynpfield  TYPE help_info-dynprofld VALUE 'SCARR-CARRID'.
      IF list[] IS INITIAL.
        name = 'SCARR-CARRID'.
        SELECT carrid carrname FROM scarr
        INTO (value-key,value-text).
          APPEND value TO list.
          poplist-varoption = value-text.
          APPEND poplist.
        ENDSELECT.
      ENDIF.
    Use some method to display a list for selection
    Here is a simplified way of doing it but there are
    much more sofisiticated methods.
      CALL FUNCTION 'POPUP_TO_DECIDE_LIST'
           EXPORTING
                textline1          = 'Select an entry'
                titel              = 'Selection'
           IMPORTING
                answer             = popanswer
           TABLES
                t_spopli           = poplist
           EXCEPTIONS
                not_enough_answers = 1
                too_much_answers   = 2
                too_much_marks     = 3
                OTHERS             = 4.
      CHECK sy-subrc = 0.
      CHECK popanswer NE 'A'.
      popindex = popanswer.
      READ TABLE list INDEX popindex.
      IF sy-subrc = 0.
        lt_dyntab-fieldvalue = list-key.
      ENDIF.
    Update the screen field with the selected value
      lt_dyntab-fieldname  = dynpfield.
      APPEND lt_dyntab.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
           EXPORTING
                dyname               = dynpprog
                dynumb               = dynpnr
           TABLES
                dynpfields           = lt_dyntab
           EXCEPTIONS
                invalid_abapworkarea = 1
                invalid_dynprofield  = 2
                invalid_dynproname   = 3
                invalid_dynpronummer = 4
                invalid_request      = 5
                no_fielddescription  = 6
                undefind_error       = 7
                OTHERS               = 8.
    ENDMODULE. " LISTBOX INPUT
    I think that there is a error that I have not seen because I put a breakpoint at the beginning of your code and the execution doesn`t stop.
    Now I execute the dynpro and appears my field 'SCARR-CARRID' and I can't choose a value and I can write in input field.
    Can you help me?
    Thanks a lot.

  • Regarding Assigning Package to OTR Text

    Hi All,
    I've created one webdynpro Component and saved it in Local Object. Inside that component i've created OTR Text...
    But nw i want to assign Package to that Webdynpro Component. I assigned Package to that Component.But I cant able to assign Package to that OTR Text.
    Wat should i do for assigning package to the OTR text ?
    Regards,
    Padmam.

    Hi,
    1. Go to TCode: SOTR_EDIT
    2. Select Short Text and click button Find
    3. Select Object Type and search your OTR Text
    4. Go to: Menu -> Concept -> Reassign.
    5. Choose your new package.
    Regards,
    $=====$
    Are you newbie? Check this out: [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]

  • E-Recruiment 6.0 - External candidate search for Jobs

    Configuration situation: I have configured the search functionality and the OTR text.
    Requirement is to add State and City to the external candidate search for jobs page.
    Z search template element using "FROZEN_REQUI_JOB_INFORMATION"-region field has been created. This custom search element has been assigned to the template. Also a custom search group has been created and assigned to relevant application.
    Issue: In the BSP page for external candidate job search, only the cities are showing up without the state. Further more, if you select a country, the city is not getting restricted according to the selected country.
    The class used is CL_HRRCF_BRANCH.
    If I want to get the region and city onto the standard BSP page, will the class have to be modified? Any other ideas?
    Assistance appreciated.
    Regards, Sunil

    Hi Sunil,
                If i understood correctly, the requirement is to add state and city fields to external candidate job search. For that follow the procedure.
    1) In "Define Search Template Elements" node, copy the element "FRO_REQ_JOB_INFO_COUNTRY_LB"
        to "XXX" and make entries to "FIELD". For city add "CITY" to FIELD fields in "Attributes of infotype category" and "Data Collection". For Region add "region" to FIELD fields in "Attributes of infotype category" and "Data Collection".
    2) Add this element to search template 0021at "Assign Search Template Elements to Search Templates"node.
    3) Then assign the search template to search group 0005 at node "Assign Search Templates to Search Template Groups".
    Now u should be able to see the fields with drop down lists on BSP screen.

  • Not able to find email address in candidate search in erecruitment module

    Hi,
    I am not able to findemail addressin candidate search open search for few candidates who are hired and perner generated. Why is it happening . Check BUT tables and found addr is missing for the Hired candidates.
    Regards,
    Sarvada

    Hi Sarvada,
    What level are you at with your E_Recruitment system?  SAP has issued a note 1783912 which addresses the issue of e-mail addresses.
    Unless this note is implemented, you will lose the e-mail address when a Candidate is hired and is issued a Company e-mail address.  This is now resolved, in that there is a new subtype of IT0105-Communications - subtype 0030 to retain the personal e-mail address on the employee side and also a new field to retain it in IT5102 on the Candidate side
    See also notes 1797722 and 1856417.
    Paul

  • Translate OTR message

    I don't know where this subject shoud be put. Since this issue occurred when i developing wd4a, i put it here.
    when an invalidate date was entered, the dynpro will prompt a message ''2010/09/31' ist ein ungültiges Datum. " with language DE. I know the text concept id '42E77505469C2AC7E10000000A1146E5' but i don't know how to translate it into language ZH.
    i tried t-code SOTR_EDIT and find the concept through package SABP, but cannot create new language for the otr text.

    There is also a translation "tool" for OTR translations that is freely available on SCN - it is nice to use in that it makes it much easier to see which text needs translations
    [OTR Text Translation Tool for Web Dynpro ABAP|https://wiki.sdn.sap.com/wiki/display/WDABAP/OTRTextTranslationToolforWebDynpro+ABAP]
    Actually if you just enter the term "OTR" in the Wiki search you will find lots of documentation on how to achieve your aims!
    Good luck,
    Chris

  • ERecruitment Search Template Elements

    Hi,
    As a recruiter I want to be able to search on all the fields of a candidates "Desired Employment" tab. However as standard I have noticed only the fields Country, Functional Area and Hierarchy Level are available via configuration.
    Can anyone suggest or explain how to add the other fields from this tab such as salary expectations, contract type, industry etc to be searchable?
    Points will be given for all answers!
    Thanks
    Tom

    Hi Tom,
    You can add fields in search criteria. For E.g you want to add it in work expereince, go to spro-> Talent warehouse-->candiate search -
    > candiate search -
    >search templates -
    >Define seach templates elements. Here in new entries you can add new element. For better working copy exsisting element of work experience and then change the name of OTR field .
    Also under Attributes of Infotype category
    Add new element under Field..for e.g contract type, annual salary .Save the same.
    Then In
    Assign Search Template Elements to Search Templates. Choose Work Experince and add new element via new entry.
    This will add new elements in seach criteria.
    Regards
    Pallavi

  • HT203164 help! i am using itunes 10.6.1.7 and windows vista 64. itunes will no longer burn cds. i have searched online and tried all i saw that could possibly fix it and it is still not working.

    i have tried:
    reloading itunes
    unchecking 'write'
    removing lower filters in regedit
    ensuring i had the correct 'gear' info in the upper filters in regedit
    removing 'gear' from regedit, system32
    reloading updated version of 'gear'
    cleaning my registery
    deleting itunes
    cleaning registry again
    reloading itunes
    cleaning registry again
    i still cannot burn cd. t i can import and play cds in itunes and i can watch dvds. itunes will just not burn to blank cds, and i have tried sever new blank cds, each is not recognized.
    i do not know what else to do, i have searched the internet and whatever i saw doable i tried.
    when i check the cd drive in itunes i had gotten a 4220 error, cnet advised to download a free error fixer, however, this error fixer gave me and enduser message, so that didn't work.
    the diagnostic for the cd burner read that i had to put in a formatted disc with content so i did and there are the results of that were that it read the cd and that the 4220 errir code was encountered last time there was an attempt to burn.
    and 'could not open cd handler 32. there is a problem with the installation of the drive in windows or the drive contains a copyprotected cd.
    the above is not the case as it also popped up for me to import cd to itunes.
    i tried to copy and past the entire contents here but it would not allow me to paste.
    please help!

    I too have only recently encountered this problem. I have been able to burn disks before but it keeps making all these weird sounds. It might be a hardware problem but the fact that everything else that uses a disk works I doubt it.

  • Not able to view data in Aria People search Org Chart

    Hi,
    I have uploaded my data into aria_tmp_people, aria_people_a & aria_people_b.
    While doing the search from Aria poeple, the uploaded data is not displaying in org chart.
    Your help is highly appreciated.
    Thanks
    Aneesh

    Hi Aneesh,
    First be more clear about Aria Application. As Aria, is been related to an hrms part of an organization carrying the people infomation and it has some separate features too.
    But in your prespective i couldnt able to understand what do you want to do with that packeged application.
    Since you want to customize the aria application according to your organization needs means, First collect all your necessary organization information that is needed(like tables etc.). Then substitute those (i.e) your organization tables in the appropriate places in the form of query.
    Please dont use the same Aria people table, as the Oracle may framed according to their employee information. Nearly Aria application has 200 supporting objects. If you want to use the same objects means whether u r going to creating nearly 200 supporting objects..It is not worth at all.
    Please be more clear in your requirement that, what you are doing, and then raise the question. Be more prepared with your tables along with datas, and let give your reply once you were been prepared with your organization details table.
    As there are more peoples in the forums to help you other than me.
    Brgds,
    Mini
    Mark Answers Promptly

  • Can no longer enter data in the address bar {url Bar}, it correctly follows data from google search bar. It was a 1 month old installation so not a lot of complications

    I was not adding anything to Firefox. I Refused tool bars embedded in several application installs on this new computer. Was working fine. Then had a problem with Google search, restored default values and re-tooled Firefox. At this point all worked fine. Then my url, address bar changed color to the same color as the program shell, a grey brown as opposed to the white it was before. With the change in color it no longer allows me to change the data showing in the bar. I can not delete or add data. I used to add a url and navigate to the domain. Now I can not

    Greetings,
    TY for the reply, the information was enlightening to be sure. I never knew safe mode was an option with Firefox. I have so many tasks running that I didn't want to shut things down. What I did is turn off some of the last plug-ins I installed. That did not fix the problem at least in the first look. What happened next was very interesting none the less. I had a moment of mouse spastic wrist syndrome and accidentally moved a tab in such a way that it opened in a new window. The URL bar was white and editable. So I moved all my tabs to the new window and everything works as it should. I have restarted Firefox this morning and it came back with the bar editable and I am speechless to understand what I may have done to correct the problem if anything ??

  • F4 search help is not getting displayed in WAD

    Hi all,
    For a certain InfoObject we want to add an attribute in the F4-search help. The additional attribute does appear when executing the query in the Bex Analyzer but not on the Web. Can anyone tell me how to achieve this in WAD?
    Thanks in Advance

    Hi all,
    For a certain InfoObject we want to add an attribute in the F4-search help. The additional attribute does appear when executing the query in the Bex Analyzer but not on the Web. Can anyone tell me how to achieve this in WAD?
    Thanks in Advance

  • IPhone 5s Voice memo to mp3. Now music on iPhone. Won't play from search function.

    I record my band rehearsals using the voice memo on my iPhone 5s. Then I sync to iTunes and convert file to mp3. When i sync back to my iPhone it appears in my music. So far, so good. When I use the search function in music it finds the file but won't play from tapping. I must troll through all my music songs (currently 2227 of them) to find it and then play it. Is it something to do with it still being under the genre "voice memos" or what ?  Anybody help please.  Thanks

    iWeb is an application to create webpages with.
    It used to be part of the iLife suite of applications.
    iWeb has no knowledge of the internal speaker on your iPhone.
    You may want to ask in the right forum.

Maybe you are looking for

  • How to split data from month to week 4/4/5?

    Hello, Is there any R/3 function based on 4/4/5 calendar that determines the number of weeks of the month? At the end, I'd like to split monthly data into weekly basis. Thanks

  • Can garage band analyse the instuments of a track? if so how?

    i want to analyse each instrument sound seperatly so that i can delete the tracks i want(.for example delete the voice part and keep the music). can i do it via garage band? if so how?

  • To import documents from Macbook to iPhone, using iCloud

    I wanted to import about 10000 documents (Word and Pages formats, less than 1 Gb) from Macbook to iPhone, using iCloud. After I downloaded about 5000 files and created some folders in Pages, new documents no longer appear in my. I have enough free sp

  • Long Running Queries Using Group By & Order By

    I have his query and it takes forever to run. The TABLE 'term' has over a million rows and I think that the 'group by' and the 'Order By' together is killing the execution... Or is it due to the compute clauses.. I am at loss to understand the whole

  • Disk Info not showing capacities

    Hi everyone, I have an old G4 as a classroom computer and something odd is happening to how it sees the hard drives. I tried to copy a file to them from a networked computer and there was not enough space which was not true. The Finder will not show