How to find the Respective Doc as per the given Reference

Hi Frndz..
Am WDP Java developer n am new to KM , now we have a requirment like, we upload a profiles of an employees on the base of respective Emp ID, and n one Emp ID will refer to one doc r multiple docs.
And i need an option like Search , when i give Emp ID and clicks on Action button it should show the respective Emp Docs.
Thanks in Advance
Regards
Rajesh

Hello,
         For this requirement no need to go Webdynpro,
1. You can get all the employee information if you given user admin, we can get all the user information
from trex engine. so please go to trex server configure & get all the employee information.
2. If you use webdynpro also you need trex server.
Thanks,
Navaneethan

Similar Messages

  • How to find the given job and all the programs in it

    Plz suggest me how to find a job whether it exists in sap or not?
    I searched using sm37 and using table TBTCO still the job name is not available there.
    Note: I know one program name which is part of that job.
    I could not found the given job ?

    Goto SM37 and the last field there is ABAP program name.
    give the program name there and select period well back from past to til till now say -
    01.01.2006 to 12.02.2007.
    and execute ..
    u will find the list of the jobs using this program.
    or Use FM  -
    BP_FIND_JOBS_WITH_PROGRAM

  • How to find the given year is a leap year

    Hi Experts,
    In my code "my date " value should be dynamic,it's not hard coded.In that case how can I found it is a leap year or not?
    Please advice me with coding.
    DATA: mydate TYPE d.
    mydate = '20040301'.
    mydate = mydate - 1.
    IF mydate+6(2) = '29'.
      WRITE 'A leap year'.
    ELSE.
      WRITE 'No leap year'.
    ENDIF.
    Regards,
    Sam.

    hiii
    use following code
    PARAMETERS:
              p_num(4) TYPE i.
    DATA:
          w_num type i.
          w_num = p_num.
           CALL FUNCTION 'Y_DATE'
             EXPORTING
               w_num           = p_num
              W_TEMP          = 4
              W_TEMP1         = 100
    *        IMPORTING
    *          W_MOD           =
    *          W_MOD1          =
    *        EXCEPTIONS
    *          ERROR_MOD       = 1
    *          OTHERS          = 2
           IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.
    FUNCTION Y_DATE.
    *"*"Local interface:
    *"  IMPORTING
    *"     REFERENCE(W_NUM) TYPE  I
    *"     REFERENCE(W_TEMP) TYPE  I DEFAULT 4
    *"     REFERENCE(W_TEMP1) TYPE  I DEFAULT 100
    *"  EXPORTING
    *"     REFERENCE(W_MOD) TYPE  I
    *"     REFERENCE(W_MOD1) TYPE  I
    *"  EXCEPTIONS
    *"      ERROR_MOD
    w_mod = w_num mod w_temp.
    w_mod1 = w_num mod w_temp1.
         if w_mod = 0 or w_mod1 = 0.
            write:/ w_num ,'is Leap Year'.
         else.
            write: w_num ,'is Not Leap Year'.
         endif.
    ENDFUNCTION.
    regards
    twinkal

  • How to find the number of records per months  in cube

    Hi,
      how to find the number of records per months for my all cubes?
      Can i use the ListCube transaction to find totl number f records per cube monthwise ?
    Jimmy

    Hi,
    Here is a program to generate no of records and list of ODS and Cubes in Active version.Schedule this program in background and create a cube to load this information and schedule to the data from the file generated by the program. Schedule this all per you requirement.
    1.Copy the code into your Z<programname> from Se38.
    2.change the FILENAME in CALL FUNCTION 'GUI_DOWNLOAD' in the program to the location from where you can pick the information to load data to cube(eg Application server).
    3.Save program.
    4.Schedule the program in background as required
    5.Create cube with infoobjects to hold no of records and Infoprovider name
    6.Load this cube based on event after the program job is done.
    Hence you can report on this cube to see no of records in  CUBE or ODS in your box.
    Please find the code below.
    Cheers,
    Kavitha Kamesh.
    types: begin of itabs ,
          tabname type dd02l-tabname,
          end of itabs.
    data: itab type itabs occurs 0 with header line.
    data: counter type i.
    data: begin of itab1 occurs 0,
    tabname type dd02l-tabname,
    counter type i,
    end of itab1.
    DATA: ITABTABNAME TYPE STRING.
    DATA: LENGTH TYPE I.
    DATA: OBJECT(30).
    data: str(6) type c.
    select  tabname from dd02l into table itab where ( tabname LIKE  '/BIC/F%' or tabname LIKE  '/BIC/A%00' )
    and TABCLASS = 'TRANSP' and AS4LOCAL = 'A'.
    loop at itab.
      select count(*) from (itab-tabname) into counter.
      str = itab-tabname.
      if str = '/BIC/F'.
    LENGTH  = STRLEN( ITAB-TABNAME ).
      SHIFT  itab-tabname BY 6 PLACES LEFT.
    ELSEIf  str = '/BIC/A'.
      SHIFT  itab-tabname BY 6 PLACES LEFT.
      LENGTH  = STRLEN( ITAB-TABNAME ).
    LENGTH = LENGTH - 2.
    endif.
      itab1-tabname = itab-tabname(LENGTH).
      append itab1.
      itab1-counter = counter.
      clear itab-tabname.
      clear:  COUNTER.
    endloop.
    *********** itab1
    loop at itab1.
    write:/ itab1-tabname, itab1-counter.
    endloop.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        FILENAME                        = 'c:records.xls'
        FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
        WRITE_FIELD_SEPARATOR           = ','
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab1
    *   FIELDNAMES                      =
    * EXCEPTIONS
    *   FILE_WRITE_ERROR                = 1
    *   NO_BATCH                        = 2
    *   GUI_REFUSE_FILETRANSFER         = 3
    *   INVALID_TYPE                    = 4
    *   NO_AUTHORITY                    = 5
    *   UNKNOWN_ERROR                   = 6
    *   HEADER_NOT_ALLOWED              = 7
    *   SEPARATOR_NOT_ALLOWED           = 8
    *   FILESIZE_NOT_ALLOWED            = 9
    *   HEADER_TOO_LONG                 = 10
    *   DP_ERROR_CREATE                 = 11
    *   DP_ERROR_SEND                   = 12
    *   DP_ERROR_WRITE                  = 13
    *   UNKNOWN_DP_ERROR                = 14
    *   ACCESS_DENIED                   = 15
    *   DP_OUT_OF_MEMORY                = 16
    *   DISK_FULL                       = 17
    *   DP_TIMEOUT                      = 18
    *   FILE_NOT_FOUND                  = 19
    *   DATAPROVIDER_EXCEPTION          = 20
    *   CONTROL_FLUSH_ERROR             = 21
    *   OTHERS                          = 22
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • What is latest bundle patch level for exadata x3-2 machine? how to find the doc?

    We have a exadata x3-2 machine. I have a question: What is latest bundle patch level for exadata x3-2 machine? how to find the doc?
    Thanks in advance.

    Check note id 888828.1
    This has all the infomation you need.

  • How to find the webdynpro component on server

    Hi Experts,
              I need to identify a webdynpro component in server whether it is there or not. Just i know the name of the component, Why i am asking with that component i am getting some errors while created a callable object in GP. I need to identify the component and delete that.
    Is there any other  way to do this.......
    Please tell any one know how to find the component in server................
    Thanks,
    Sunil

    Hi ,
    To create a callable object from a web dynpro project you need three DC like
    caf/eu/gp/api
    caf/eu/gp/api/wd
    com.sap.security.api.sda
    but caf/eu/gp/api and caf/eu/gp/api/wd  are not available if you work on local development enviornment with out NWDI. Then you need to put those DCs within your local plugin directiory. I am sending you a link through this you will get to download those DCs and where you will put those DCs it is clear in this doc.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f7be53bb-0b01-0010-1c96-be3cb6799c1b
    In your local mc you will go to the following path
    Program FilesSAPIDEIDE70eclipsepluginscom.sap.tc.ap_2.0.0compCAFDCssap.comcaf
    here you will create a folder called eu and put the DCs as per the doc. and in SC u put your Toplevel SC.
    Now you try from Web Dynpro perspective. You will get all the DCs for callable object.
    Thanks
    Chandan

  • How to find the container in goods receipt table

    hi,
    how to find the number of containers with respect to each material document. After posting the material document the number of containers cannot stored in MSEG or MKPF table. i can able to find only in QALS table  but how to link the material document and inspection lot.
    Thanks
    Muthuraman.D

    Hi Muthuraman,
    Can you check this bapi BAPI_INSPLOT_GETLIST.In this bapi there is a different selection criteria like material,material document no and all. I think you can use this for your report. Check this and post if need help.
    Regards,
    Madhu.

  • How to find the transport request which was released to Quality

    Hi Friends,
    Could anyone please let me know, how to find the transport request that was already released from Development to Quality?
    there was some change in customization took place. I could find the user (through change log) who made these changes, however I could not find the transport request number he has already released. I did give his user name in SE10 and checked the released checkbox and did click transports to see them, however I found nothing. A message got displayed on the screen: Cross-system information for user xxx. I can't ask the Basis people about it, as its not yet been trasnported to Productive.
    Is this the correct way to see the transport request number? Is there any other way to find the number. I can give the tentative dates when the change was released.
    This post might already posted before, I did some search, could not find the exact info what I am looking for.  Would appreaciate if anyone could give the step by step method to find it.
    Thanks in advance.
    BR,
    Sats.

    Ram,
    let me tell you the the situation in a better way.
    When I see se10 with my user id I could see all the transport requests that I have released. However, now when I enter my colleague user id who did these changes (he is on vacation, otherwise I could simply ask him the transport number), nothing is shown on the page. in simple words the page is completely blank. Initially I thought it is because of some authorizations, but I can get the transport request numbers that are released by another user.
    the info what I have right now are:
    1. I knew the user name who did these chages
    2. I knew the date when it was changed.
    I just need the Transport Request number I mean which starts with DEVXXXXXXX.
    As per your solution --> If you have any idea when the reques was relase you can select the request and click on goto-transport logs. This way you can find out the request. --> I knew the date when it was released, but didnt understand, the bold and underlined sentense in your answer.. select on which request? as I said, the page was blank after I enter his user id and activate it.. May be I did not understnd your solution properly. Could you please simplify it.
    Thanks a bunch in advance
    Sats.

  • How to find the invalid form session in oracle Apps

    Oracle Apps R12
    Hai All
    How to find the invalid form session in oracle Apps R12 and How to Kill the that.
    Thanks & Regards
    Srikkanth.M

    Hi,
    Please refer to these docs (for 11i and R12).
    How to Kill Inactive Sessions Based on the Information in the Monitor User Form [ID 103516.1]
    Script: How To Identify The apps User Using The O/S PID For Forms Users In 11i [ID 185762.1]
    Thanks,
    Hussein

  • K mean:: how to find the clustred data;:: or how to assign number t0 each group of data

    hi member
    i have download the LabVIEW Machine Learning Toolkit https://decibel.ni.com/content/docs/DOC-19328
    i want to excute the K mean algorithem to cluster the image in two group or three or more
    the problem is how to find the result i mean the clustred image', the image that contain 2 or three intesity value only
    or how to aasign a 1 vlaue to all intesity that 
    belong to cluster one and 255 to data that belong to cluster 2
    so that the image look like binary image???
    a my vi below
    best regards
    Solved!
    Go to Solution.
    Attachments:
    k mean.vi ‏12 KB

    my post before showed how to set the threshold manually using the graph's cursor.
    here's the automated k-means version, using the toolkit's .vi
    Alex
    ♜♖ LabView 8.6 - LabView 2014 ♖♜
    Attachments:
    2013-06-22_2dhistogram 2009.zip ‏61 KB

  • How to find the code which processes idocs

    I am looking for a descriptive short document which would ideally give me comlete picture in IDOC processing, transactions used etc.
    E.g
    My XI sends idocs to an RFC port of an ERP system. All I know is message type FIDCC2(found it in message mapping and under a partner profile ias imput parameter in transaction we20 for a partner profile with rfc destination of its own rfc destination i.e. PR1CLNT001)
    . However in this example I do not find source code which process then this idoc(probably as it is original idoc)?
    How to find the code

    Jan
    You can check the documentation and source code of two reports
    RBDAPP01 & RESOUT00   ( https://service.sap.com/sap/support/notes/1333417)
    https://service.sap.com/sap/support/notes/527481
    Few more IDoc related tcode, we05,bd87 etc...
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0087780d-81b0-2a10-eb82-86e1062f1a2d?overridelayout=true
    Edited by: Anindya Bose on Aug 6, 2009 7:34 PM

  • How to find the grants given to user for package/procedure?

    Hi all,
    how to find the grants in oracle for what all are the grants a user is having for package and procedure?
    Thanks & Regards,
    M.Murali..

    M. Murali
    Questions like this are asked over and over again on numerous sites on the Internet, including this forum, and answered.
    You are aware this forum has a 'Search Forum' button?
    PLEASE USE IT and STOP asking FAQ and DOC questions!!!!!!!!!!!!!!!!!!!
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read the documentation

  • How to find the Workbook statistics.

    Hi Experts,
    Can anyone please tell me how to find the Workbook statistics.
    There are more 20 workbooks created from a single query. I want to find out the top 3 workbooks accessed frequently for 1 year.
    Please provide your valuable inputs.
    Thanks

    Hi,
    if statistics cubes are installed and getting loaded every day you can check following reports
    0BWTC_C08_Q105
    Business Content workbooks
    0BWTC_C08_Q103
    Business Content DataSources
    0BWTC_C08_Q101
    Business Content InfoCubes
    0BWTC_C08_Q100
    Business Content InfoObjects
    0BWTC_C08_Q107
    Business Content InfoSet queries
    0BWTC_C08_Q106
    Business Content InfoSets
    0BWTC_C08_Q102
    Business Content InfoSources
    0BWTC_C08_Q104
    Business Content ODS
    0BWTC_C08_Q108
    Business Content Queries
    0BWTC_C10_Q014
    Query Runtime
    0BWTC_C10_Q251
    Deleting Data in InfoCubes
    0BWTC_C10_Q253
    Deleting Data in InfoCubes - Detail, Times
    0BWTC_C10_Q254
    Deleting Data in InfoCubes - Details, Records
    0BWTC_C10_Q252
    Deleting Data in InfoCubes - Overview
    0BWTC_C10_Q507
    Average Time per Query
    0BWTC_C10_Q021
    Average Time per Query
    Thanks and regards
    Kiran

  • How to find the processing time of any query?

    im using oracle express edition, can anyone help me, how to find the processing time of any query?

    Trace the query and tkprof the generated trace file.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/sqltrace.htm#PFGRF01010

  • How to find the WBS element for the payment document?

    Dear All,
    How to find the WBS element in the payment document?...I know in payment doc there will not be any WBS but is there any option where I can find in any of the Tables.
    I am in the process of developing a Z report where i need to fetch the payment documents based on WBS. Can any one please help me on this.

    Hi Ram,
    As you are not giving any input of WBS at the time of payment you cannot fetch this directly. But to know the WBS for the reporting purpose on which WBS the payment has been made, you can develop a Z-Report. The WBS elements of clearing documents against the payment entry can be fetched out.
    In this report if there is a single payment against many invoices also possible with different invoice and WBS elements to be displayed on the Z-Report
    Regards
    Divya S

  • How to find the DFF id's ?

    Hi Guru's,
    how to find the DFF ID names
    /oracle/apps/per/wpm/objectives/webui/TrkObjectivesPG
    Here 2 columns is there ,
    1)Appraisee Comments
    2) Appraiser Comments
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OADescriptiveFlexBean oaDFF = (OADescriptiveFlexBean)webBean.findChildRecursive("ObjDFF"); // put your DFF web bean name here
    oaDFF.processFlex(pageContext);
    //Do not use this block for now
    if(dffbeans != null )
    dffbeans.setRendered(false);
    I am getting null pointer exception in while condition but i want id names how to find plz any buddy help me in this requirement.
    i tryed this one this working fine but it's working both 2 items but i want 1 field only i need itemid's plz help me.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OADescriptiveFlexBean oaKFF = (OADescriptiveFlexBean)webBean.findChildRecursive("ObjDFF");
    oaKFF.setReadOnly(true);
    Regards,
    Srinivas

    Hi Thanks for every one i resolve this issue....

Maybe you are looking for