Report needed on Identified training type.

Dear Experts,
While configuring the appraisal template using phap_catalog,   I have incorporated the badi  u2018Add Business Event Typesu2019 under  free enhancement node for a criteria group. This is to enable supervisor to select training type from training catalog appearing in the appraisal form/document for the appraise during In-Process phase.
My question :  Is it possible to take out a report which will display the training types identified for appraises in their their appraisal document?
I was trying for standard PHAP_SEARCH transaction, but this is not fulfilling the requirement.
Please suggest.
Thanks in advance.

Hi Prakash,
It can be done, but there might be a few issues. Firstly when the user adds Event Types to the appraisal form it would be getting saved as a new criteria group or a criteria group in reference to the config you have set up.
So even if you pull up the additional criterion that gets stored in the appraisal, you will have to map the Event Type (from the course catalogue) with the title of the criteria group stored.
Hope this make sense, else please do let me know.
Regards,
Priya.

Similar Messages

  • GR55 Report - Need to add Document type in selection parameter

    Hi Friends,
    Our client needs to have document type in selection parameter for one report group which has 4 reports attached.
    Changes have been made and now document type is already there in selection parameter. But irrespective of document type Output is same.
    That is if i Give docuement type or not it gives me same output.
    This report is bein copies n new report is made.
    Can any one help me out with how go proceed further.

    Hi,
    This report is bein copies n new report is made.
    You just copied the output from an existing one right....
    Inorder to get the report documenmt type wise you also need to change the output format of the report.
    Ask your ABAPer to get this tobe done...

  • Report needed to identify shipments having volume less than 1cbm in a month

    Hi,
    I need to know which tcode we can use to get a report showing the total shipments in a month having volume of each less than 1 cbm.
    Thanks & Regards,
    Ameya Khanwalkar.

    Solved using report download tcode VT12 and then doing some analysis in excel

  • How to identify the type of font?

    Hi,
    I need to identify the type of font(open type or true type) through programmatically among the system fonts. I am using Illustrator CS3 for windows platform. Please guide me in doing this.
    Thank You.

    In the document info panel (Windows>Document Info) from the flyout you can select font details and all the fonts in the document as well as the type of font as well and of course the fonts name. The document info can be save with all the info about the document as well as the fonts.
    That info document can be opened in a number of applications such as Excel a script editor which in turn might allow you the ability to extract he font info you are looking for but the document info pretty much is scripted to grab this info in a prescribed way so it must be scriptable and so you should go to the Illustrator scripting forum to see if there is perhaps a script that already exists for this purpose.
    What do you need to do with this info once you have it?
    Or is the document info the thing you are actually looking for? I would think you need no more than that.

  • How to identify a type of consolidation in a system?

    Hi,
    I need to understand how to identify the type of consolidation we are doingion the system.
    Example like Step consolidation, Simultaneous consolidation or other method.
    This will be helpfull for me in doing my currest support issues.
    Thanks in advance,
    Richard..

    Not sure to understand your question.
    What is the precise context of your issue ? Is it a problem of SEM-BCS configuration or a general problem on how consolidation works ?

  • Help needed in Identifying dependent objects

    Hi all,
    Basically I need to identify the object related to Integration which is not there in one of our software product under development as compare to other(existing) already developed so that we can apply them in the product being developed.
    I need to find these below from few of the packages given to me
         dependent packages/functions to read and update data
    1)     Tables
    2)     Packages
    3)     Triggers
    4)     Views
    5) Jobs
    I would request you to help me in carrying out this faster, I have plsql Developer tool, how to start with so that i m not mess up with and complete it faster.
    Regards,
    Asif.

    Thankx Pierre Forstmann.
    Dear All,
    Can any one help me in identifying all dependent objects for one object.
    Will this works for me I found from the above link provided,
    as for the time being I do not have the dba priviliges...
    If I am able to get the dba prviliges will this code works for me to get the
    required information....
    Regards,
    AAK.
    SQL>
    create or replace type myScalarType as object
    ( lvl number,
    rname varchar2(30),
    rowner varchar2(30),
    rtype varchar2(30)
    Type created.
    SQL> create or replace type myTableType as table of
    myScalarType
    Type created.
    SQL>
    SQL> create or replace
    function depends( p_name in varchar2,
    p_type in varchar2,
    p_owner in varchar2 default USER,
    p_lvl in number default 1 ) return myTableType
    AUTHID CURRENT_USER
    as
    l_data myTableType := myTableType();
    procedure recurse( p_name in varchar2,
    p_type in varchar2,
    p_owner in varchar2,
    p_lvl in number )
    is
    begin
    if ( l_data.count > 1000 )
    then
    raise_application_error( -20001, 'probable connect by loop,
    aborting' );
    end if;
    for x in ( select /*+ first_rows */ referenced_name,
    referenced_owner,
    referenced_type
    from dba_dependencies
    where owner = p_owner
    and type = p_type
    and name = p_name )
    loop
    l_data.extend;
    l_data(l_data.count) :=
    myScalarType( p_lvl, x.referenced_name,
    x.referenced_owner, x.referenced_type );
    recurse( x.referenced_name, x.referenced_type,
    x.referenced_owner, p_lvl+1);
    end loop;
    end;
    begin
    l_data.extend;
    l_data(l_data.count) := myScalarType( 1, p_name, p_owner, p_type );
    recurse( p_name, p_type, p_owner, 2 );
    return l_data;
    end;
    Function created.
    SQL>
    SQL> set timing on
    SQL>
    SQL> select * from table(
    cast(depends('DBA_VIEWS','VIEW','SYS') as myTableType ) );
    ---select * from table(cast('USER_VIEWS') as myTableType ) );
    LVL     RNAME          ROWNER          RTYPE
    1     DBA_VIEWS     SYS               VIEW
    2     TYPED_VIEW$ SYS               TABLE
    2     USER$          SYS               TABLE
    2     VIEW$          SYS               TABLE
    2     OBJ$          SYS               TABLE
    2     SUPEROBJ$ SYS               TABLE
    2     STANDARD SYS               PACKAGE
    7 rows selected.
    Elapsed: 00:00:00.42
    SQL>
    SQL>
    SQL> drop table t;
    Table dropped.
    Elapsed: 00:00:00.13
    SQL> create table t ( x int );
    Table created.
    Elapsed: 00:00:00.03
    SQL> create or replace view v1 as select * from t;
    View created.
    Elapsed: 00:00:00.06
    SQL> create or replace view v2 as select t.x xx, v1.x yy from
    v1, t;
    View created.
    Elapsed: 00:00:00.06
    SQL> create or replace view v3 as select v2.*, t.x xxx, v1.x
    yyy from v2, v1, t;
    View created.
    Elapsed: 00:00:00.07
    SQL>
    SQL>
    SQL> select lpad(' ',lvl*2,' ') || rowner || '.' || rname ||
    '(' || rtype || ')' hierarchy
    2 from table( cast(depends('V3','VIEW') as myTableType ) );
    HIERARCHY
    OPS$TKYTE.V3(VIEW)
    OPS$TKYTE.T(TABLE)
    OPS$TKYTE.V1(VIEW)
    OPS$TKYTE.T(TABLE)
    OPS$TKYTE.V2(VIEW)
    OPS$TKYTE.T(TABLE)
    OPS$TKYTE.V1(VIEW)
    OPS$TKYTE.T(TABLE)
    8 rows selected.
    Message was edited by:
    460425

  • Stand alone oracle report - need help asap

    Hi,
    We are in ORACLE Apps 11i. We started using ORACLE BI Publisher to create templates for the Oracle Reports. How we are doing reports now is
    1) create data definition XML which has all the queries embedded.
    2) Create Data definition in XML Publisher Admin responsibility.
    3. Attach the Data definition XML to that.
    4. Create a concurrent program definition for the report with XML Type and run the report and save the data file with tags.
    5. Create the template ,rtf in Word and export data using ORACLE BI Publisher. 6. Create template definition in the XML Publisher Admin responsibility and attach this .rtf to that and run the report.
    Now I have a requirement stating that the REPORT SHOULD BE AN ORACLE STAND ALONE REPORT AND THE REPORT NEEDS TO BE RUN THROUGH CONCURRENT PROGRAM SCREEN. I am planning on doing the following steps.
    1. I have to create an .rdf using report builder.
    2. Create concurrent program executable and definition for the report.
    3. Create data definition in XML Publisher admin responsibility.
    4. Run the report in apps.
    5. Create the tempalte .rtf in word and export data with the XML Data file with tags,
    6. Run the report.
    Am I correct? Any help is appreciated asap.
    Thanks
    Akil

    You said,
    standalone report ?? is that mean without using bipublisher ??
    1st method.
    create concurrent program, output xml,
    create data template, create datadefintion , attach Datatemplate.
    run the cc pgm, get xml, design RTF , create template definition , attach RTF,
    run the cc pgm, you get the pdf output.
    2nd method.
    create rdf,
    create concurrent program, output xml,
    run the cc pgm, get xml, design RTF ,
    create datadefintion , create template definition , attach RTF,
    run the cc pgm, you get the pdf output.
    , both requires, cc pgm, rtf, data defintion , template definition.
    only differnece is , how do you get the data, i mean, xml...
    data template or RDF.

  • RMAN report need backup

    We have an incremental level-1 backup Mon-Sat and cold full backup on Sundays with retention policy of 7 days. While troubleshooting some backup issues (space issue, expired backups) I ran the following commands and trying to understand the output.
    RMAN> report need backup database;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to recovery window of 7 days
    Report of files whose recovery needs more than 7 days of archived logs
    File Days Name
    100 146 /orahprdidx/hprd/psindex05.dbf
    RMAN> report unrecoverable;
    Report of files that need backup due to unrecoverable operations
    File Type of Backup Required Name
    RMAN> report need backup days = 7 database;
    Report of files whose recovery needs more than 7 days of archived logs
    File Days Name
    100 146 /orahprdidx/hprd/psindex05.dbf
    RMAN> report obsolete recovery window of 7 days;
    no obsolete backups found
    RMAN>
    I looks like I need 146 days worth of archive log files to recover the psindex05.dbf. If so, what I could do to bring that into the 7 days policy?
    The database is fine, I am not trying to recover the database.
    This was setup by someone and now I am taking over with minimum RMAN experience.
    I appreciate any help in this subject.

    The datafile was offline. I guess it was created my mistake and hanging in there. Once I do the cleanup it should go away.

  • Change COPA Report - need to add Variable and Characteristics

    Hello,
    I need to change the existing COPA report, Need to add WBS element as a selection criteria and also a characteristics so it can be drilled down.  Create WBS as a global variable in KE3E and it is not showing up in when i change the report in KE30 in the available list of characteristics. And also it is not showing up in KE35 when i change the general selection to add as a Variable.

    Go to KE91 and create the report.
    In KE91, the Characteristic Cost element (KSTAR) is available.  Add it as below.
    Cost Element      ....   Check the box Hierarchy node ......   check the box Variable on/off   ......          KSTAR......     Cost element.
    After this, just check in Variable, the Cost element shuold appear
    Line item based reports are defined in KE91 (segment level reports in KE31).
    Both types of reports can be started in KE30 and changed in KE32
    Let us know if you still have any queries
    Thanks
    Edited by: nkonnipati on Feb 19, 2012 5:34 AM

  • Reasons for Introducing database functions for Discoverer Reporting Needs

    Hi All,
    I would like to know the criteria other organizations have used in creating custom database functions specifically for Discoverer reporting needs. It seems good and appropriate to identify these reasons in order that they have a sufficiently good reason (e.g. in presenting this to a change management board).
    Here is a quick swipe:
    -query explain plan improvements
    -take away the complexity of having the end user deal with complex calculations
    -consistency of a value (e.g. a complex amortization calculation)
    -an attribute is used from a dependent table with a minimum cardinality of zero
    Can anyone list other good reasons in terms of Discoverer reporting?
    Thanks,
    Patrick
    Edited by: Patrick Bacon on Jul 15, 2009 10:30 AM

    Hi Patrick
    In addition to the reasons you have given the reasons for having functions anyway apply just as equally to Discoverer as they do to other applications.
    Typically the main reasons why I would use a function are:
    a) due to the complexity of the code, or
    b) to evaluate something which an end user either could not do or does not have access to.
    For example if a user needs to have aggregations from multiple tables side by side in a report, typically from tables which have no joins between them, I write functions to go get the individual results.
    One specific function that I use a lot is one that calculates the number of working days between any given two days. Some of my HR customers use such a function to calculate the number of sick days for an employee when obviously only working days should count. Doing this in a normal Discoverer calculation would be very hard. Retail customers might use this for calculating the number of days it took to ship and item.
    There are other reasons why I use functions but these are the typical ones.
    Best wishes
    Michael

  • Identify the TYPE using CL_ABAP_DATADESCR

    we have a custom field ROLE  with the Data element as ZDOA_ROLE in a table ZTABLE.
    CODE SAMPLE 1
    data gs_comp          TYPE abap_componentdescr.
    gs_comp-type ?=  cl_abap_datadescr=>describe_by_data( 'ROLE' ).
    gs_comp-name = gs_comp-type->get_relative_name( ).
    when i write the above code,  the name is blank.
    CODE SAMPLE 2
    do_type =  cl_abap_datadescr=>describe_by_name( 'ROLE' ).
    it dumps, stating ROLE type is not available
    CODE SAMPLE 3
    do_type =  cl_abap_datadescr=>describe_by_name( 'ZDOA_ROLE' ).
    it returns the type is ZDOA_ROLE.            
    "--NOT USEFUL because i cannot pass the Data element, I can only pass Field name
    Priority is to find the type from the Field.
    Can any body suggest me, a better way to get the Type of the Field and not by the Data element ?

    abhishek nms wrote:
    Any work around ? because i cannot mention the table name,
    abhishek nms wrote:
    Requirement: based on the tab delimited file upload in Web Dynpro, I need to identify which table data (mostly our Custom ZDOA tables which are around 10) was uploaded and updated the corresponding table .
    These two statements seem contradictory. If you know that the file must be one of your ZDOA tables, than you can get the table name(s) by finding all tables that match the pattern ZDOA*
    Once you know the possible tables, you can determine the structure of each table like this:
    lo_structdescr ?= cl_abap_structdescr=>describe_by_name( 'ZDOA_TABLE' ).
    li_components = lo_structdescr->get_components( ).
    li_components is a table of the names and type descriptors for each field in the structure. You can loop through this table, comparing the names of each field to the field names given in the header of the tab-delimited file.

  • How can I block bogus web site that keeps trying to update firefox? Need to identify bogus site too.

    How can I block bogus web site that keeps trying to update firefox? Need to identify bogus site too.

    hello, this is a scam tactic that is trying to trick you into installing malware, so don't download or execute this kind of stuff - updates are handled automatically by firefox so you don't have to download anything (you can always initiate a manual check for updates in ''firefox > help > about firefox'').
    you might also want to run a full scan of your system with the security software already in place and different tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes], [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] & [http://www.kaspersky.com/security-scan kaspersky security scan] in order to make sure that there isn't already some sort of malware active on your system that triggers these false alerts.
    [[Troubleshoot Firefox issues caused by malware]]
    you could also help by pressing F10 & going to ''help > report web forgery'' while you're on this dubious page - this might get the page into the list of malicious sites that get blocked in firefox (the actual list is maintained by google) or when such pages use the firefox logos or trademarks to trick users into downloading malware you could also file it at https://www.mozilla.org/en-US/legal/fraud-report/.

  • Training Need - TN in Training and Event Management

    Hi
    Did any one worked on Training Need (TN) in Training and event management? I have the below question.
    For France there is a legal requirement to capture some 1.6 % of the employee annual gross salary towards training cost.  So where to record the training cost of the employee in Training and event management and is there any link with payroll. 
    Logically it sounds as it does.  but where and how is it connected with payroll.
    Please revert if you know the solution.
    Brs
    Kenu.

    Hi
    In Table V_T77TNM_DC
    We need to have the below entries
    TNM                                              CL_HRTNM_VALO_COMPUT_GUI_FR
    TNM       HRTNM00_REPMOD        CL_HRTNM_VALO_COMPUT_GUI_FR
    TNM       MP168400                       CL_HRBAS_INFTY_1684_GUI_FR
    TNM       RPCTNM9S_REP            CL_HRTNM_INFTY_1036_GUI_FR
    Regards
    Kenu

  • The Group Policy Client service failed the sign-in The universal unique identifier (UUID) type is not supported

    Hi guys,
    we created a custom WIM Image (Windows 8 Enterprise) with MDT 2012.
    Sysprept the Image, Deployed via SCCM 2012 SP1.
    Computers are Domainjoined. Error with standard Domain User.
    On some computers (not every computer) and not with every user on the first logon following error message arises:
    The Group Policy Client service failed the sign-in The universal unique identifier (UUID) type is not supported
    It works, when you log in a second time but this error isn't very nice. 
    Is there a solution for that?
    Kind Regards
    Martin

    Hi,
    The service is responsible for applying settings configured by administrators for the computer and users through the Group Policy component. This issue can be caused by various reasons based on the computer environment.
    Can you find any information in event log about this issue?
    Here is the related blog in which the steps can solve most of such issues if the issue continuously happen.
    http://blogs.msdn.com/b/moiqubal/archive/2012/03/04/how-to-fix-quot-the-group-policy-client-service-failed-the-logon-access-denied-quot-error.aspx
    Also, you can refer to the similar thread about this issue:
    http://social.technet.microsoft.com/Forums/en-US/4a644219-50ee-494d-b965-e64a8555109e/the-group-policy-client-service-failed-the-signin-the-universal-unique-identifier-uuid-type-is
    Since this issue can be related to SCCM, to better help you, please submit a new thread for further help:
    https://social.technet.microsoft.com/Forums/en-US/home?category=systemcenter2012configurationmanager
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • Report needed to  conbine stock movement  and corresponding balance

    Hi Friends,
    End user need a report to show stock movement trasaction and it's coresponding stock balance.
    In MB51, we can see all the stock movements against one material, is there any way a report could show stocks' corresponding iventory balance under diffierent invenotory category (unrestriced,QC, Return and block) for each movement trasaction ?
    Report needed like below
    SLoc , MoveType , Material document, posting date, qty, unrestic bal, QC balance, return Balance, Blked Bal.
    Thanks,
    L

    Hi,
    Kindly take the help of abaper and create a customized report or also you can have query created in SQ01.
    Hope this will help you !!!
    Regards,
    Krishna O

Maybe you are looking for

  • Duplicate files affixed with a "-1" not showing in search results

    When I download files from the internet sometimes I get the same file twice and of course OS X affixes a "-1" to denote this, however when I search a folder (via the top right search tool) for any files containing "-1" in the file name (boolean) it d

  • Compiling Package through Command Window.

    Hi I am new to Oracle and need some help in compiling PL/SQL packages from SQL PLUS. I have two files 1) An SQL file ----------Calculate1.sql 2) and package ----------Indentify.pck,sql I tried the following SQL > @Calculate.sql (this was succesfully

  • BDC for Transaction IA01 including recording from excel (sample Code)

    Dear Experts,                     Can anyone give me a sample BDC code for transaction IA01 from excel Thanks in advance Regards Sayandeep

  • Screen flickers in Windows 7 on Mid-2009 MacBook Pro but not MacOS...

    Hey everyone... My two week old MBP is running Windows 7 Enterprise 64-bit using Boot Camp 3.1 and the screen with occasionally flicker to black and back. Sometimes, it'll stay black until I tap the laptop. I can even make it flicker by tapping right

  • Font Capure: Acrobat.exe system error

    Font Capture: Acrobat.exe System Error. My Acrobat XI Pro will not open a document after a Malware attack.    I get the "api-ms-win-downlevel-shell32-i1-1-0.dll" is missing.  I tried to repair by the original download, but did not work,