How to create Sub Feature ?

Hi,
Can anyone tell me what is the purpose of Feature ? (Tcode- PE03) How it is attached with infotypes?
What is subfeature & how to create a subfeature?
Thanks,
Debarati

a feature consists of a structure, a decision tree and a back value.
The program (e.g. the infotype module pool) fills the structure and depending on the decision tree the FM HR_FEATURE_BACK_VALUE gives back a value (or a table). Usually it is used to fill default values PBO.
To set up the decision tree is simple customiozing.
Example
In infotype 0008 BUKRS WERKS BTRTLPERSG PERSK MOLGA ...(originally stored in different tables) are passed to feature TARIF and the feature gives back pay scale type and area as the default values for infotype 0008.

Similar Messages

  • How to create sub report in BI Publisher

    Hi,
    i have created sample report in BI Publisher .But I do not know how to create sub report in BI Publisher.
    How to create parent-child report?
    Can you provide details through example?
    Thanks

    This blog post seems to be quite useful: http://blogs.oracle.com/xmlpublisher/2007/01/formatting_html_with_templates.html
    Also, there is a whitepaper: http://www.oracle.com/technology/products/xml-publisher/docs/BIP-SubTemplate.pdf
    The focus is on formatting template for your report, but should have the same principals.

  • How to create Sub Queries In Webi

    Hi,
    we are creating webi reports by using BICS connection..
    Now my requirement is how to create sub queries in webi.
    Any one give me suggestions how to achieve this
    Regards,
    G

    Hi Bhargav,
    Below is thread related to same topic-
    http://scn.sap.com/thread/3430274
    ~Anuj

  • How to create sub columns in interactive report

    can u tell me , how to create sub columns in
    interactive report. i really need it.i search lot but i dont get proper information.
    help plz...
    example : -
    |_____total_ persons _____|
    | persons | male | female |
    100 200 3000
    400 500 600

    i am nile.
    select id as id,
    male as male,
    female as female
    from persons.
    i want interactive report with main column total persons(static text) in that male , female.
    e.g.
    |___total persons_| - - - - -> main cloumn
    | male | female | - - - - -> sub columns
    100 200
    300 400
    Edited by: user9512075 on Aug 29, 2008 1:46 AM
    Edited by: user9512075 on Aug 29, 2008 1:47 AM
    Edited by: user9512075 on Aug 29, 2008 1:48 AM
    Edited by: user9512075 on Aug 29, 2008 1:49 AM

  • How to create sub domain using java ?

    how to create sub domain using java ?
    for example:
    name1.domainname.com
    name2.domainname.com
    is it possibe ?

    You don't do that using Java.
    Consult the documentation of the application server in question how to configure it. If you're using for example Tomcat 6.0, then you should be consulting this document: [http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html].

  • How to create sub-folders containg my announcment list item's images , instead of saving all the images insdie a share folder

    Today i have found this issue which i was not aware of. i have a team site collection, and inside this site collection i have an announcement App. now when users create announcement items and they insert pictures inside the items , all the images are going
    to be saved inside the site asset folder , under the following shared folder :-
    Site Assets>>Lists-->>"List Name"-->>AllItems
    so in this case users might be adding images that have the same names and select to override existing file ,, so images in this way will start conflicting with each others. so is there away to force my announcement list to create sub-folder for each item
    , and to store all the item related images inside it ?
    for example in enterprise wiki site collection, each wiki page will have a sub-folder containing all its images... so can i have the same behavior inside my announcement list ?
    Thanks.

    Also i have noted something interesting , now when users attached files or images there are going to be stored under this directory:-
    .../Attachments/41/
    where 41 is the issue tracking item ID. so for attachments each item will have separate location so files with the same name inside different items will not conflict, which is great.
    while if the user insert a picture inside the issue item such as:-
    , it will be stored inside the shared folder under the "Site Assets" folder
    Site Assets>>Lists-->>"List Name"-->>AllItems
    ,, so images with the same name from other items will get conflict between each others.
    so attachments are being managed in the correct way, as each item will have separate location to store its attachments . while images inserted inside the item description, from all items are going to be stored inside the same folder !!! can anyone advice
    ??? this is a bug in SharePoint 2013 ?

  • How to create Sub- Category tags in PSE 12?

    I want to be able to create Sub- Category tags in PSE 12 without using the map view. I have tags United States with sub- categories South Carolina and Charleston. I had no problem doing this in PSE11.

    I found a very convoluted solution to creating a Places sub-category keytag in PSE12. First I created a new tag by placing an image on a map (using search). The resulting tag created a specfic location such as a street address. I then renamed the new tag with city name. The renamed tag can then be applied to all other desired and selected images. This is much more difficult than in PSE 11.  Is there an easier way?

  • How to create sub views in Oracle SQL

    I am trying to write a select statement through TOAD that needs to build a view and then query from that view further in the same statement. I don't mean create a VIEW in the common sense of running a CREATE VIEW command, I mean creating one dynamically within an SQL statement. Here's what I mean - in DB2 sql I can write the following:
    WITH COUNT_NUM
    COUNT_ADS
    AS
    (SELECT
    COUNT(AD_ID)
    FROM AD
    WHERE CONTRACT_ID = '000234123'
    SELECT * FROM COUNT_NUM;
    Obviously this is a real simple example but you get the idea. Using this syntax you can create numerous sub-views to build data into your final select. My question is how to do this for Oracle. I have searched tons of help pages and sites but the only reference is to creating permanent views. I do not want to create temporary views either as I do not have adequate system permissions - I only want to create dynamic ones within my SQL.
    Thanks in advance for any help!

    In Oracle, the equivalent concept is known as an in-line view. The Oracle version of your statement is:
    SELECT *
    FROM (SELECT COUNT(AD_ID) count_ads
          FROM AD
          WHERE CONTRACT_ID = '000234123')Essentially, you can use an in-line view anywhere you would use a "real" view or a table, so the follwoing is also possible:
    SELECT a.contract_id, a.count_ads, b.count_pages
    FROM (SELECT contract_id,ad_id,COUNT(*) count_ads
          FROM ad
          GROUP BY contract_id,ad_id) ads,
         (SELECT ad_id,count(*) count_pages
          FROM ad_pages
          GROUP BY ad_id) ad_pages
    WHERE ads.ad_id = ad_pages.ad_idHTH
    John

  • How to create sub-column in the report

    Hi there,
    How can I create a report with one column having 3 sub-columns?
    column head
    column1 column2 column3
    Thanks

    Hi,
    one of the simple and quick way to group a columns as you required is... http://jbosamiya.blogspot.com/2010/10/create-column-groups-into-oracle-apex.html
    and if you are using apex 4.0.2 you can use this plugin.... http://www.apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/clarifit-ir-column-grouping_73.html
    Thanks,
    Jaydip Bosamiya

  • How to create sub-directory by PL/SQL in run-time?

    Hello,
    I have directory defined in Oracle DB and I need to create a sub-directory by run-time PL/SQL code and move my file into the sub-directory.
    The DB version is 10.2.0.3.0.
    How can i do it without creating a new directory in DB each time i need to create a sub-directory?
    Thanks!

    Or, as directory objects are replacable you can just change them using dynamic SQL...
    e.g.
    execute immediate 'create or replace directory my_home as ''/home''';
    execute immediate 'create or replace directory my_home as ''/home/newfiles''';
    of course this isn't going to work if the directly object is going to be used by multiple users at the same time, but if it's for a dedicated process then it would.
    (it also relies on the operating system directories having appropriate read/write permissions, but that's outside the ability of Oracle to control)
    Personally though, I'd avoid having things moving about dynamically.
    The design of my process would specify where files are going to be located and the correct number of directory objects defined and created up-front.
    Any 'incoming' files would have to be located in one of those known locations, whether that's under the control of the 'users' supplying the files, or some other process (o/s script maybe?) that receives the files and moves them to the known location.

  • Training&Event : How to create "sub"-resources ?

    Hello,
    I have a question from a customer.  They use Training&Event (SAP R/3 4.6c) and they defined training rooms as resources (transaction PSVR).  Problem : They can divide some training rooms into 2 or 3 smaller rooms. For example: Room 1 (40 seats) can be divided into two smaller rooms : 1A (25 seats) and 1B (15 seats).  They also defined those smaller rooms as resources (same level).  Actually, If they reserve room 1A for a business event, room 1 remain available for another business event at the same date.
    Could someone explain me how to customize resources and relations to allow this room structure, and to avoid double resource reservation ?
    Many thanks for your help.
    Philippe

    Hello Sharon,
    Sorry for late reply.
    Thank you for your answer.  It was helpful.  It's now a part of my solution.
    To identify room and sub-room, I create a relationship (A/B230 - is part of/contains)
    between the resources.  With the user-exit SEMIN-RESOC, I implement a new function module to check the occupation.
    I.e. If one sub-room is not available (directly allocate to a business event), I create a new record in table 'occupation' for the main room.  I determine the main room with relations A/B230.
    It works fine.
    Kind regards,
    Philippe

  • How to create sub-set of Library for moving to a MBP ?

    Up until now, I have been keeping my images as Managed in the Aperture Library on my G5.
    I need to create a sub-set of my Library for use on a MacBook Pro for an upcoming workshop. I would like to have some of my masters on the MBP drive so that I can work on them while away. When I get back, I would like to be able to merge the modified images/metadata with the main Library. Is this possible?
    If not, another approach would be for me to move the entire Library to the Macbook, but first make all the Masters as Referenced files, and then Consolidate just the Masters I want to have with me back onto the MBP drive.
    Any suggestions on an efficient way to do this would be greatly appreciated.

    Hi Ian,
    The problem with the approach you suggested is that some of the Projects have a large number of Images that I dont want on the MBP drive.
    I suppose I could move the selected images to a Workshop Project, export that Project, and import it into the MBP Libary, then import it back into my main library when I am done.
    Do folders, smart albums, etc get saved when Exporting/Importing Projects ?
    If I move my 5-star images out of my original Projects into a Workshop project, work on them and change the metadata, and then put them back into their original projects later, will all of the changes move with them?

  • How to create sub tabs under a tab dynamically ?

    Hi,
    I am using Jdeveloper 11.1.2.4.
    I am using Dynamic UI shell to open tabs in my application.
    My use case is that i need to open a Tab on click of a link. The tab will have a few sub tabs in it that are to be dynamically created when the main tab is being opened.
    As mentioned the sub tabs are to be created dynamically i.e. at run time. The number of sub tabs to be created are also not fixed, it will be generatred at runtime.
    What should be my approach to get this done.
    Thanks

    A tab has activities, not sub-tabs.
    UI Shell - ADF UI Patterns - Dynamic Tabs UI Shell Template Functional UI Pattern
    http://sundarakrishna.blogspot.ca/2014/03/dynamic-tabs-ui-shell-template-example.html

  • How to create sub playlist?

    Hi all,
    Is there any way to create a playlist with children playlists?
    I'm having a lot of different playlist and I would like to organize the playslit in hierarchies.
    Any help will be appreciated.
    I'm using iTunes 6.0.5.20

    You can organize playlist into folders, Just goto file>New Folder, type the name of the folder you want, then drag and drop playlist into the folder

  • How to create a Sub case in Adaptive case management.

    Hi,
    Can you please provide an example or more info about creating a sub case in Adaptive case management.
    Documentation says
    "Sub cases are deployed as a separate composite from the parent case project. They are linked to the parent using the case link mechanism. The sub case composite version is always the active version of the parent composite". This is exactly what I want.
    I created a Sub Case following the steps mention in the documentation. It created it under the case activities. I want to know how to link it to a process or composite. In the advance section it specifies a project name and case name. How do I link it? Please help me with an example on how to create sub case.
    ref:- https://docs.oracle.com/middleware/1213/bpm/bpm-develop/case_mgmt_bpmpd.htm#BPMPD87407
    Thanks
    Anil

    On the Case UI within BPM workspace there should be a place to link cases.
    Also have you looked at the following API ICaseInstanceService (Oracle Fusion Middleware BPM-Services Java API Reference for Oracle BPM Suite)
    oracle.bpm.casemgmt.ICaseInstanceService
    addCaseLinkboolean addCaseLink(IBPMContext context, CaseLink caseLink) throws CaseServiceExceptionAdd a case link
    Parameters:
    context - an IBPMContext value
    caseIdentifier - a CaseIdentifier value
    caseLink - a CaseLink value
    Returns:
    a boolean value
    Throws:
    CaseServiceException - if an error occurs

Maybe you are looking for