Add data under a selected group

Hi,
How coud I add some employees under a certain group.
e.g. from hr schema employees table
I have all managers and I wnat to select one and under this manager to add an employee.
Thank you

if you have time, you give me an example, please?
how can I insert a new employee under greenberg manager?
Thank you
I have the following:
DECLARE
my_tree ITEM;
my_num NUMBER;
BEGIN
my_tree := Find_Item('BLOCK3.TREE4');
my_num := POPULATE_GROUP('RECORD_GROUP5');
FTREE.SET_TREE_PROPERTY(my_tree, FTREE.RECORD_GROUP, 'RECORD_GROUP5');
END;
and the recordgroup :
select -1, level, last_name, first_name, salary
from employees
start with manager_id is null
connect by prior employee_id = manager_id

Similar Messages

  • Need to add date field on select screen of report RM06INP0.

    Hi All,
    I have to create a new report ZRM06INP0 as a copy from RM06INP0 and add a field in the selection.
    When the selection "Price Determination w/o PO" is not picked then we need a maintainable field from the info record. The default for the date is 9999.12.31 and should manually maintained. This date shoulde be written in the info record.
    How to achieve this?
    Please see OSS Note 392 988 Solution to 2 for more info.

    Hi Akash
    What kind of date is you wanted? You can try to find it in dynamic selections.
    regards,
    Archer

  • It would be great to add contrast to a selected group of objects.

    Can we get some better color controls? It would be great to, for example, select a bunch of objects on various layers and adjust the contrast of the selected objects as a collective color group. You could fairly easily create an array of colors based on the the selected fills and strokes. Then adjust the contrast/brightness much as you do in Photoshop.
    It would be great if you could unify the current color modification panels into one master control.
    For instance, the following are some things we normally expect from bitmap color adjustments that would be equally useful in vector tools: (Some are currently present - but it would be nice as one master panel to adjust sliders for each of these.)
    Brightness
    Contrast
    Saturation
    Hue
    Curves/Levels
    If all these were present in one panel, you could make really quick color adjustments!
    Combine this with a "Color Range" selection tool, and you could select all fills, strokes or even gradients, of a similar green color... and adjust the hue, saturation, brightness and contrast in one quick step.

    Also, posterization/quantization of colors to reduce color palette. That would be really helpful!

  • Add date (selection criteria) in MB52/MB58

    Hi friends,
    I must add date selection in selection screen of MB52. I have been creating ZMB52 but I don't know how can I add date field in selection screen.
    Also i need to add date selection in MB58.
    Can anybody help me?
    Thanks,
    Jawahar.

    hi,
    data : date2  type date.
    or u can use some standard fields
    if u r using mara table in report u can use
    data : date1 like mara-erdat.
    selection-screen : begin of block blk1 with frame title text-001.
    select-options : s_date2 for date2.
    selection-screen : end of block blk1.
    Reward with points if helpful.
    Message was edited by:
            Vinutha YV

  • Material Master Field Selection Group

    Hi Experts
    In Material Master
    Under MRP2 View - Field # Prod Stor Loc, (MARC - LGPRO)  appears & Work Scheduling view, under Field Selection Group: 77
    Now I want to also add/extend  this field:  MARC - LGPRO  in Plant Storage 1/2 view. Possible ?
    What are the steps involved.
    Rgds
    RG

    Hi,
    Go to OMT3B, here select Entry "21" (Std ind.(short) tab pages) and double click on "Data screens" and here select entry "21 + 18" (General Plant Data / Storage 1) and then double click on "Subscreens" and maintain following entry;
    21     18     4     SAPLMGD1     2484

  • Need to fill up Data into  the select Tag options value

    Hi ,
    This is my requirement . I am having two select tags inside my jsp page . one for country and one for state .Upon selecting a country the select tag for states should be filled up .
    Right now i need to fill up the data under country select Tag .I am using AJAX for this .On body onload i am calling a function to get Country data .
    //This is inside my servlet
    *               ResultSet res = st.executeQuery("SELECT * FROM countries );*
    *               StringBuffer sb = new StringBuffer();*
    *     sb.append("<countries>");*
    *               while (res.next())*
    *               String result = res.getString(1);*
    *               sb.append("<country>"+result+"</country>");*
    *               sb.append("</countries>");*
    *               response.getWriter().write(sb.toString());*
    This is Inside MY JSP
    if( xmlHttp.readyState==4 )
    if( xmlHttp.status==200 )
    xmlDoc=xmlHttp.responseXML;
    xmlDoc.getElementsByTagName("countries")
    <select name='countrsel' id="countrsel" onchange="call()">
    <option value="<%=%>"><%=%></option>
    </select>
    I am struck up here please help
    Edited by: RaviKIran on Nov 2, 2009 9:51 AM

    Hi ,
    This is my requirement . I am having two select tags inside my jsp page . one for country and one for state .Upon selecting a country the select tag for states should be filled up .
    Right now i need to fill up the data under country select Tag .I am using AJAX for this .On body onload i am calling a function to get Country data .
    //This is inside my servlet
    *               ResultSet res = st.executeQuery("SELECT * FROM countries );*
    *               StringBuffer sb = new StringBuffer();*
    *     sb.append("<countries>");*
    *               while (res.next())*
    *               String result = res.getString(1);*
    *               sb.append("<country>"+result+"</country>");*
    *               sb.append("</countries>");*
    *               response.getWriter().write(sb.toString());*
    This is Inside MY JSP
    if( xmlHttp.readyState==4 )
    if( xmlHttp.status==200 )
    xmlDoc=xmlHttp.responseXML;
    xmlDoc.getElementsByTagName("countries")
    <select name='countrsel' id="countrsel" onchange="call()">
    <option value="<%=%>"><%=%></option>
    </select>
    I am struck up here please help
    Edited by: RaviKIran on Nov 2, 2009 9:51 AM

  • Scope Entities under the selected Consolidation Group

    Hi Experts,
    During running of Consolidation, I have a logic to compute the translation of Retained Earnings via Account Transformation. Now my problem is that the logic calculates for all Entities. As a result there are data in other Entities even though they are not part of the consolidation group. In the MS version, we used the function below to filter Entities that are active under the selected consolidation group but it seems that this is not supported here in NW. Any function I can use to scope only the Entities that are active in the selected conso group?
    To scope active Entities in MS:
    *XDIM_GETINPUTSET ENTITY=%MYENT%
    *APP=OWNERSHIP
    *XDIM_MEMBERSET GROUPS=%GROUPS_SET%
    *XDIM_MEMBERSET OWNACCOUNT=ACTIVE
    *CRITERIA SIGNEDDATA>=1
    *ENDXDIM
    Conso Script Logic:
    //CALCULATE RETAINED EARNINGS TRANSLATION
    *RUN_PROGRAM CALC_ACCOUNT
       CATEGORY = %CATEGORY_SET%
       CURRENCY = USD
       TID_RA = %TIME_SET%
       OTHER = [GROUPS=%GROUPS_SET%,NON_GROUP]
       CALC = RE_BEG
    *ENDRUN_PROGRAM
    //TRANSLATE TO GROUP CURRENCY
    *RUN_PROGRAM CURR_CONVERSION
       CATEGORY = %CATEGORY_SET% 
       GROUP = %GROUPS_SET%
       TID_RA = %TIME_SET%
       RATEENTITY = GLOBAL
       MEASURES=YTD
    *ENDRUN_PROGRAM
    //RUN CONSOLIDATION RULES
    *RUN_PROGRAM CONSOLIDATION
       CATEGORY = %CATEGORY_SET%
       GROUP = %GROUPS_SET%
       TID_RA = %TIME_SET%
       MEASURES=YTD
    *ENDRUN_PROGRAM
    Thanks in advance,
    Marvin

    Hi Marvin,
    Normally we have a consolidation hierarchy structure in Entity Dimentsion also, so you can add entity filter in script logic and DM and run CALC_ACCOUNT for this group only.
    Anil

  • How to add a button to the grouped data in an AdvancedDataGrid?

    Hi,
    Can anyone please suggest how to add a button to the grouped data in the AdvancedDataGrid?
    I have tried extending the AdvancedDataGridGroupItemRenderer and using it as the groupItemRenderer but its not reflecting.
    For the leaf node the itemRenderer property works just fine.
    Please help!

    HI ,
    I want to add a push button on the ALV list out put which is comming as a pop up and I want this using classes and methods.
    I have got a method IF_SREL_BROWSER_COMMANDS~ADD_BUTTONS from class cl_gos_attachment_list  but still I am unable to get any additional button on the output ALV popup.
    Please help.
    Regards,
    Kavya.

  • HT201317 On a PC with iCloud Control Panel, open a Windows Explorer window. I cannot see .. Select Photo Stream under Favorites. Open My Photo Stream. Click the "Add photos" button. Select photos to import to My Photo Stream,

    I have a VAIO pc and want to put some photos up to iCloud to then go onto my iPad.
    I have iCloud control panel and have followed the instructions.
    Everything is on that should be on .. on the iPad and pc.
    but I cannot find how to  ...
    Select Photo Stream under Favorites. Open My Photo Stream. Click the "Add photos" button. Select photos to import to My Photo Stream, and then click Open.  ...
    as advised in FAQ on iCloud.
    I cannot find favourites ... sorry !!!
    I use Google Chrome, could that be the problem?
    The Apple shop were very sweet, but sent me home with instructions .........
    Please help
    Carski

    It should look like this...
    Open Windows explorer, select Photo Stream under Favorites on the left sidebar:
    Click on Photo Stream, then to the right double-click on My Photo Stream.  Click on Add Photos on the top the menu bar:
    Select the photos you want to import, then click Open.

  • Main Calendar and Contacts wont show in thier respective selected group boxes under sync with outlook

    Main Calendar and Contacts wont show in thier respective selected group boxes under "sync with outlook".

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?
    Also
    Advanced troubleshooting for Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010

  • How to format data for a custom group

    Hi all
    I have a pivot table with Actual and Budget as columns and some accounts in the rows. Since I'm using the account hierarchical column, I created custom groups for the accounts using the Selection steps pane. For example, I created a new group called Profit to combine 3 different Profit accounts and display one Profit line.
    Now I want to format the data for the Profit group. I right-click on the Profit group, choose to edit the group and click on the Format button on the bottom left corner. I add some formatting, e.g. borders. When I now view the pivot table, borders have been applied to the label of the group - so the word Profit is now bordered. However, the values in the Actual and Budget columns do not have a border. Don't know what I'm missing, but I want both the group label and the values to be formatted the same way.
    How can I apply formatting to the data/values for the custom group?

    Yeah tried that already, it formats the entire column whereas I need just the values for the Profit row to be formatted. Seems it is a limitation only when using custom groups?

  • Requirement to add new parameter in selection  in report painter report

    Hi Gurus,
    I have a requirement to add an extra field in Cost center:Act/Plan/Comm CC Cur report.This is otherwise a Z report in report painter with 0% code (T-code : GR55-> Report group->Report).But,when we go to technical information of this report,it has four standard sap programs,which contains code for this selection screen.It does not even have a modification scope.
    Selection screen of this report contains following parameters:
    Selection values:
    Controlling Ar
    Fiscal Year
    From Period
    To Period
    Plan Version
    Selection Groups:
    Cost Center Group
    Or value(s)
    Cost Element Group
    Or value(s)
    My requirement is to add one more parameter : Purchase oeder in new block:
    Is there any way to achieve it.
    Note: Copying the standard progs into custom prog is not working,i already tried that.
    Please let me know your suggestions,if any one of you came across such requirement before.it is very impoertant for me.
    Thanks in advance,
    Meenakshi

    Hi,
    This report (and all generic reports which are based on the same library) looks on CCSS structure. This structure extracts data from totals tables. Therefore, it's not possible to add the parameter of purchase order, as it's a detail line attribute.
    Regards,
    Eli

  • Cannot re-add SQL database to protection group

    Hello,
    I have a situation where my BES database was inconsistent in DPM 2012 SP1. I removed the DB from my SQL protect group and deleted the replica data from the server. When I try to re-add it back to the protection group, I am unable to see the DB in the list
    of DBs on the instance.
    BES DB is mirrored (no FS Witness)
    Principal is 2008 R2 SP1 Cluster
    Mirror is 2008 R2 SP1 Server (No Cluster)
    DPM Server is DPM 2012 SP1, version 4.1.3417.0
    Protection Group is Auto-Protection enabled
    I have stopped protection on the entire SQL Cluster (keeping data), recreating the Protection Group. I have also disabled and re-enabled Auto-Protection. No dice.
    Any ideas?
    Shawn

    Hi,
    What was the original casuse of the inconsistency to begin with - that may hold a clue why we cannot re-protect ?
    Please make sure the mirroring role has not been switched.
    Any mirrored database will be listed on the principal server only and can be selected there for protection.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • How to get list of Users under an Auth Group (for executable Programs)?

    Hi experts.  I have a requirement to get a list of all users under a particular Auth Group for Program Objects.
    Goal of this requirement is to identify the users allowed to use/access a program - we're doing some sort of Program Inventory and we'd like to identify the users per program, via the Auth Group. 
    So question is:  Which tables hold data about Program <-> Auth Group <-> Users, and how are they linked?
    I know this is Basis/Security stuff, but I was thinking of developing a report program to output the information needed.
    Thanks in advance.
    Edited by: George Esquerra on Nov 17, 2011 10:24 AM

    This is available in the standard via tx SUIM - user - users by complex selection criteria - by authorization values.
    If you enter auth object = S_PROGRAM and value = auth group, you will get the list of users.
    You can analyse how this program finds the information and incorporate it into your own logic.
    Thomas

  • Reversing "Add Flagged Photos to Selected Event" Command

    Apparently, we inadvertently moved all of our flagged photos to one event using the "Add Flagged Photos to Selected Event" Command. The problem is, I want all of these flagged photos back in their original events.
    Is there a way to do this without manually re-sorting the photos? I currently have ca. 10,000 photos in 270 events, and I am not looking forward to a manual re-sort.
    Thanks in advance for your help.

    The easiest way ti to use your backup of the iPhoto library - that is why you make them - in case of software, hardware or human error
    If that will not do it, I can not test this but it should get you started - assuming that your events are in the default time/date based set up - and assuming that the photos are still flagged create a new event form the flagged photos and select that event - under the event menu ==> autosplit selected event - this will create new events that will be next to the event the photos came from - then go through and merge the newly created events with the event the photos came from
    Other that your backup I can not think of any other way to get there except to move each photo manually
    LN

Maybe you are looking for