Display custom info type in ESS portal

Hi all,
I have got a requirement that i need to display the custom defined info type in ESS portal , that info type have three  text fields.
Is it possible to do this using a standard configuration in ESS portal or do i need to do some  development?
Please suggest..
Thanks ,
Gunja

Hi,
You have to do custom development in NWDS. Please check the similar thread
Customer Infotype in ESS
Thanks
Santosh

Similar Messages

  • Problem with customized info type creation

    hi
    When i am creating customized info type using T-code PM01, i get error message like "package in non original system only modifiable with organizer tools".
    The above message is coming whenever save the infotype in either customized package or local package.
    As per my observation when i save the infotype, it default takes SAP package So i need to change that package.So how can i change the package in T-code PM01.
    Please tell me the solution to overcome the error.
    Thanks,
    Ali

    Hi,
    Since infotype attribute in table T582A is clent specific, so you should maintain the entries in the target client.
    Create the table entry of your infotype in the other client in view V_T582A (infotype attribute) or via t-code PM01 and click button 'infotype characteristics. Also you can transport CR from client to client via t-code SCC1 as well.
    Hope helps,
    Chen Jian

  • Changing screen layout of custom info type

    Hi we created a new custom info type from std info type 0002 .We want to realign the fields in the generated info type,but we get an syntax error if we chg it from the screen editor ... can u tell me how to chg it?

    Have you read <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAXX/PYINT_INFOTYP.pdf">Developing an Infotype in Personnel Administration</a> before creating your new infotype ?
    Look at pages 16-25. (in peculiar look for T588M and modification groups)
    Regards

  • Problem in HR Custom Info Type Creation

    Hi,
    Created custom info type from PM01...
    Activated... This is working fine in the System and Client where I created.
    But its not working from other client..?
    I am getting error by saying that Info Type is not created... All the Structure and PAXXXX table got activated in both Clients.
    Earlier we faced same problem, at that time our team made some changes to info type and probelm resolved.
    I don't know where and what exactly we need to do...
    But,
    One of the problem I identified is,
    We are not getting T591A, T591S tables at Subtype Tab, Subtype text tab in INFOTYPE CHARACTERSTICS.
    I can enter these two from TECHNICAL ATTRIBUTES... but when I generate all aobjects from PM01, these two values getting deleted from INFOTYPE CHARACTERSTICS.
    (Above may be the reason)
    Please let me know if any solution for this.
    Thanks,
    Naveen Inuganti

    Hi Gautham,
    I deleted previous one, Created as your blog says. Still same problem.
    Venkat,
    Yes, you are correct. We need to release the Customizing request which contains Subtype , Subtype Text Tables with Info Type Entries.
    Problem with Info type Creation
    Thanks,
    Naveen.I

  • Problem to create HR customized info type

    Hi Guys,
    When i am creating customized info type using T-code PM01,  i get error message like "package in non original system only modifiable with organizer tools".
    The above message is coming whenever save the infotype in either customized package or local package.
    Please tell me the solution to overcome the error.
    thanks.

    Phani,
    In PM01, under create tab when you enter Custom Infotype number and hit enter Which System does it show as Original System (under attributes group), per my understanding it should have been SAP (I Guess), So choose a Package such that your Original System is the system you are working on.
    Hope this helps!
    Regards
    Shital

  • Enabling a customer info type for fast entry

    I would like to enable a customer info type, info type in the 9000 range, for fast entry. Your assistance in this regard will be greatly appreciated.

    Hi Mark
    Thanks for your help in this forum, as always.
    I was able to add the new contact type to the table from SM30 but as mentioned in my original question, the contacts created using this new contact type is not editable. When a business user opens the work item at a later day and wishes to update the contact, the change button is not appearing against these contacts. We can see the change button against every other item which were created using the SAP delivered options.
    I was wondering if there is any other table where we can maintain an entry to make this editable.

  • Error while selecting the Leave type in ESS portal

    Dear Team,
    One of the employee is trying to select a type of leave in ESS portal, system is giving error message as "Access is Denied" at the left hand corner of the screen. When i am checking it in Quality it is working fine.
    Can anybody suggest me on this.
    Kind Regards
    Nag

    Hi,
    Please check whether that emplloyee has got authorization for this function in production system. Thanking you.

  • Displaying Custom Content Types

    Short Version
    I have created custom content types that has a few properties that are complex. One is an image type and another is a collection of another custom content type. I am unable to display or access these items.
    Long Version
    I have a custom content type with the following properties
    It is called PageThreeColumn
    PageTitle : String
    LeftNav : String
    RightNav : String
    HeroImage : image (complext type that came with weblogic)
    ContentCollection: Collection of type ContentPlaceholder
    The other custom type ContentPlaceHolder
    Type : String
    HtmlContent : Binary
    I created a content presenter view (wlp-templete-config.xml) and I am able to get a simple string property to be displayed.
    So I can do the following
    <cm:getProperty name="LeftNav" node="${node}"/>
    And I get the expected String back.
    What I am unable to do is get to anything that is more complicated then the simple datatypes. For instance the Image data type.
    I have tried node.HeroImage but it does not display correctly.
    I appreciate any help you can give and would definately like a link to an example of displaying content that is not as trivial as most of the examples.

    I have tried the following code variations
    <div>
         ${node.properties[0]}
    <!--//Shows string as expected-->
         ${node.properties[1]}
    <!--//Shows string as expected-->
         ${node.properties[2]}
    <!--//Shows string as expected-->
         ${node.properties[3]}
    <!--//Shows the following
    HeroImage: [Lcom.bea.content.Property;@48958a1 -->
         ${node.properties[4]}
         <!--//Shows the following
         ContentCollection: [Lcom.bea.content.Property;@48958a5 ,
                                              [Lcom.bea.content.Property;@48958a8 ,
                                               [Lcom.bea.content.Property;@48958ab -->
                    <cm:getProperty node="${node.HeroImage}" name="heroimage" />
         <img src="${templates:getImageSource(pageContext.request, heroimage)}"/>
    </div>
    Variation 2
    <img src="${templates:getImageSource(pageContext.request, node.HeroImage)}"/> //says that it does not recognize node.HeroImage
    Variation 3
    ${node.HeroImage} //says that it does not recognise HeroImage
    All dont work.
    Should I be adding or doing some type of customization to the template jsp to handle the complex data type?
    Is there an example or tutorial that uses a complex content type and the content presenter to show content?
    Or maybe an example of more complicated uses of the JSP files in the:
    /portlets/wlp/contentpresenter/templates/wlp-default/cm
    /portlets/wlp/contentpresenter/templates/wlp-default/outer
    All of the examples I found were ver trivial. Basicly showing a very simple example but nothing using a content type that is more complicated in the non-primary properties then strings.
    Edited by: danscan1712 on Mar 11, 2009 8:01 AM

  • How can I display custom item type icon?

    portal 10.1.4
    when I try to show the icon of a custom item type, there is no way to show the type of the uploaded archive. Anybody?
    Thanks in advance

    Yup, possible using system variables that can track time and conditional advanced actions.

  • PPCI: Create customer info type

    Hi,
    I tried to create a new info type for OM. I used PPCI but get the following error.
    Any ideas why i can't successfully create info type 9010
    Structure HRI9010 exists
    Structure P9010 does not exist
    Table HRP9010 does not exist
        HRP9010 not created in the database
        Database index XXXX not created
    Module pool
    Module pool MP901000 does not exist
    Include MP901020 does not exist
    Include MP9010BI does not exist

    hi
    this link might be useful
    how to create OM Infotype
    Regards
    sameer

  • Customized info type

    dear all
    i have an customize info type which make some calculation on payroll  and save it in it's own database and also insert
    records  wage types in the standard infotype  0014   but there is problem in the records which inserted to the standard infotype
    i search in the customize infotype code and in the z includes in pm01 transaction but i didn't found where the previous programmer add the records to the standard info type and also i search in the badi .
    could please anyone tell me which possiple places to add customize code in the customize infotype to insert data in another one
    other than the z include and modules in the process after input .
    how can i chek for badis and user exit in this customize infotype
    thanks

    We have a BADI for PA infotype i.e. HRPAD00INFTYP..pleasecheck if it works

  • Display custom service for an ESS user

    Hi,
    I need to extract Employee Education details based on his Employee id ( Pernr ) from R/3 table and display them in ESS.
    For example, ESS employee 123 is accesing his data in ESS. When 123 clicks custom Education tab, it should display his details.
    I have created a ABAP program and assign T-codes, services. But this program needs Employee number as Input. How do I get his Employee number in ABAP Editor ?
    Thanks.
    jey

    Thanks for the info guys. But what I need exactly is,
    - When an ESS user click particular tab, it should display his Education details.
    - In R/3, I wrote a small program which extacts these info using <b>Personal number</b>
    - How does the program come to know which Employee ( <b>Perosnal number</b>) clicks the tab ?
    - How do I extract the clicked Employee number and pass it to my custom program ?
    Thanks
    jey

  • Displaying Custom or Z Reports in Portal

    Hi All,
    My requirement is to Display a Custom Report in Portal. This Report is developed in Abap. Since I am new to this portal thing I can think of only 1 idea to display these reports in Portal by creating transactional iViews . But In HTML transactional iViews I noticed that everytime I scroll through the Report the page is getting refreshed. I am worried about the performance of the portal since I have to display around 5-10 HR Reports in Portal. Also I am not able to hide the System Details that appear at the bottom of the SAP Screen.
    Please help me out how can I hide those details. Also I need to provide Print Option for these reports. How can I acheive that ?
    Is there any other way I can Display these reports in Portal. Please Help !!
    Regards,
    Akhil Rai

    Hi,
    Please don't do cross posting.
    Regards,
    SrinivaS

  • How to display custom forms or reports on portal pages?

    Hi friends
    I am new to Portal. I knew that we can create forms and reports in portal.
    But how can i display a custom form ( ex: employee.fmb) on a portal page?
    Thanks
    Ravi

    Are you meaning Oracle Forms Module and Oracle Reports?
    If so
    please check the following
    Reports
    http://download-uk.oracle.com/docs/cd/B14099_15/bi.1012/b14048/pbr_conf.htm#sthref494
    Forms (you can only invoke forms using the SSO)
    http://download-uk.oracle.com/docs/cd/B25016_02/doc/dl/web/B14032_02/security.htm#sthref42
    Otherwise you can create your custom HTML form and report using the following technologies:
    http://download-uk.oracle.com/docs/cd/B14099_15/portal.1014/b14135/pdg_matrix.htm#CHDJIEIH
    Please refer also to:
    http://download-uk.oracle.com/docs/cd/B14099_15/portal.1014/b14135/pdg_understand.htm#sthref35
    Hope this helps
    Cheers
    Diego

  • Regarding Updation of Custom info type fields

    Hi All,
               I am new to HR ABAP. Actually, I want to update the custom infotype 3 fields as per my user inputs. I am fetching the data from the PA table acoording to sy-datum falling in the begda, enda limitations. now I am changing the field with new values in the work area. And pass with the following data to the FM.
              But I am getting the error  'No data stored for 9008 in the selected period'. I had seen prvious therads, but could not get how they solved the issue.
             Please provide the inpus for the following code. I had also passed the validity start and end.
        CALL FUNCTION 'HR_INFOTYPE_OPERATION'
          EXPORTING
            infty                  = '9008'
            number                 = pernr
      SUBTYPE                =
      OBJECTID               =
      LOCKINDICATOR          =
      VALIDITYEND            =
      VALIDITYBEGIN          =
      RECORDNUMBER           =
            record                 = wa_pa9008
            operation              = 'MOD'
      TCLAS                  = 'A'
      DIALOG_MODE            = '0'
      NOCOMMIT               =
      VIEW_IDENTIFIER        =
      SECONDARY_RECORD       =
         IMPORTING
           return                 = l_bapireturn
           key                    = bapipakey_tab
    Regards,
    Brijesh Patel

    Can anyone please provide inputs on this???

Maybe you are looking for

  • Get Contents of TextEdit Document Only Copies Filename to Clipboard

    I'm using the following workflow but instead of the TextEdit contents getting copied to the clipboard, the filename gets copied instead. So the output looks like: /Users/username/Desktop/tns1.txt Is there a way to copy the contents to the clipboard?

  • Passing Unknown Field in URL

    Hi, How to check the table field which i have given in the Browser URL. I have a jsp page i want to call another page by passing database condition. Suppose if i give unknown field . i want to get user friendly messgae like "Filed Not Found " Please

  • Inconsistent CC indicator between master data view and MARC table

    Hi All, Recently I found strange thing, there are several materials without General Plant Data / Storage view, we did not create it, and CC phys. inv. ind is maintianed in this view, if we did not maintain this view, then this indicator should be bla

  • How to copy files and last modified date

    Does anyone out there know who to copy files files from one directory to another and retain the date time stamp of the source files? I've been able to write some code that copies files from one directory to another but I always end up with a Date Las

  • XI JDBC adapter - Can it be called & return values to XI ?

    Want to make an SQL request to database table and ruturn data back to XI. Flow:   SAP BW--rfc-> XI -jdbc request for data->  SAP BUS ONE            SAP BW<----rfc--- XI  - jdbc return results--   SAP BUS ONE 1. XI-- request -- from> SQL Table  Select