Initiate Std ESS for specified PERNR

We have a requirement to call standard ESS address maintenance java webdynpro application in our custom abap webdynpro application for a PERNR which is different than the login user.
We are able to launch this application using following code.
Navigate to portal link with parameters
    CALL METHOD lo_portal_manager->navigate_absolute
      EXPORTING
         navigation_target   = <standard java application pcd link in portal>
         navigation_mode     = if_wd_portal_integration=>co_show_inplace
         post_parameters     = abap_true
         business_parameters = lt_portal_parameters
         launcher_parameters = lt_portal_parameters.
But I am not able to find the parameter name through which we can pass the PERNR number to launch for particular employee(other than login employee).
Has anyone used or worked on the similar application? Can you share the parameter name used to pass the PERNR.
When we call any java webdynpro application through portal the first method it will execute will be windowsu2019 default () method. Can anybody give me list of all parameters that are used in this method also helpful to solve my problem?
Our requirement is to have WD Abap page through which HR administrator can initiate standard services for employees under his/her control. He/She will specify the PERNR and try to invoke the Std ESS Application. We are able to launch the page for self but we want to launch it for a different employee by passing a PERNR

hi ,
1 create a input field , bind it to a context attribute
2 using code wizard (control +f7) , read the context attribute value by using get_attribute method
choose the radio button read context node/attribute
DATA lo_nd_cn_node TYPE REF TO if_wd_context_node.
    DATA lo_el_cn_node TYPE REF TO if_wd_context_element.
    DATA ls_cn_node TYPE wd_this->element_cn_node .
    DATA lv_attr  LIKE ls_city-ca_attr.
*   navigate from <CONTEXT> to <CN_NODE> via lead selection
    lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_ca_attr).
*   get element via lead selection
    lo_el_cn_node = lo_nd_cn_node->get_element(  ).
*   get single attribute
    lo_el_cn_node->get_attribute(
      EXPORTING
        name =  `CA_ATTR`
      IMPORTING
        value = lv_attr ).
3 now u have got the value which user has entered in lv_attr
4 Put if condition
DATA : lv_username type string .
lv_username = SY-UNAME.
IF lv_attr NE lv_username.
//ur logic to call standard ESS address maintenance java webdynpro application
ENDIF.
regards,
amit

Similar Messages

  • Initiate STD ESS for a specified PERNR

    We have a requirement to call standard ESS address maintenance java webdynpro application in our custom abap webdynpro application for a PERNR which is different than the login user.
    We are able to launch this application using following code.
    Navigate to portal link with parameters
        CALL METHOD lo_portal_manager->navigate_absolute
          EXPORTING
             navigation_target   = <standard java application pcd link in portal>
             navigation_mode     = if_wd_portal_integration=>co_show_inplace
             post_parameters     = abap_true
             business_parameters = lt_portal_parameters
             launcher_parameters = lt_portal_parameters.
    But I am not able to find the parameter name through which we can pass the PERNR number to launch for particular employee(other than login employee).
    Has anyone used or worked on the similar application? Can you share the parameter name used to pass the PERNR.
    When we call any java webdynpro application through portal the first method it will execute will be windowsu2019 default () method. Can anybody give me list of all parameters that are used in this method also helpful to solve my problem?
    Our requirement is to have WD Abap page through which HR administrator can initiate standard services for employees under his/her control. He/She will specify the PERNR and try to invoke the Std ESS Application. We are able to launch the page for self but we want to launch it for a different employee by passing a PERNR

    hi ,
    1 create a input field , bind it to a context attribute
    2 using code wizard (control +f7) , read the context attribute value by using get_attribute method
    choose the radio button read context node/attribute
    DATA lo_nd_cn_node TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_node TYPE REF TO if_wd_context_element.
        DATA ls_cn_node TYPE wd_this->element_cn_node .
        DATA lv_attr  LIKE ls_city-ca_attr.
    *   navigate from <CONTEXT> to <CN_NODE> via lead selection
        lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_ca_attr).
    *   get element via lead selection
        lo_el_cn_node = lo_nd_cn_node->get_element(  ).
    *   get single attribute
        lo_el_cn_node->get_attribute(
          EXPORTING
            name =  `CA_ATTR`
          IMPORTING
            value = lv_attr ).
    3 now u have got the value which user has entered in lv_attr
    4 Put if condition
    DATA : lv_username type string .
    lv_username = SY-UNAME.
    IF lv_attr NE lv_username.
    //ur logic to call standard ESS address maintenance java webdynpro application
    ENDIF.
    regards,
    amit

  • Initiate Std ESS Application for Selected PERNR

    We have a requirement to call standard ESS address maintenance java webdynpro application in our custom abap webdynpro application for a PERNR which is different than the login user.
    We are able to launch this application using following code.
    Navigate to portal link with parameters
        CALL METHOD lo_portal_manager->navigate_absolute
          EXPORTING
             navigation_target   = <standard java application pcd link in portal>
             navigation_mode     = if_wd_portal_integration=>co_show_inplace
             post_parameters     = abap_true
             business_parameters = lt_portal_parameters
             launcher_parameters = lt_portal_parameters.
    But I am not able to find the parameter name through which we can pass the PERNR number to launch for particular employee(other than login employee).
    Has anyone used or worked on the similar application? Can you share the parameter name used to pass the PERNR.
    When we call any java webdynpro application through portal the first method it will execute will be windowsu2019 default () method. Can anybody give me list of all parameters that are used in this method also helpful to solve my problem?
    Our requirement is to have WD Abap page through which HR administrator can initiate standard services for employees under his/her control. He/She will specify the PERNR and try to invoke the Std ESS Application. We are able to launch the page for self but we want to launch it for a different employee by passing a PERNR

    Duplicate

  • Disabling buttons in std ESS Web-Dynpros

    Any inputs team ...
    Thanks.
    Dear Portal experts,
    How can we find if we can add new columns or buttons in the std ESS web-dynpros.Also if we need to disable existing buttons or hide existing columns.
    We are using NW04S SPS10 (EP7) & ECC 6.0 SPS10.
    Thanks.
    Ashish

    Hi Ashish,
    If you do the personalization as an administrator, you can make it available for a all the users.
    1) Login as content admin
    2) Go to the iview in the PCD.
    3) Right click the iview and preview it. personalize as usual when you preview it.
    This is global.
    Also refer the 'Administrator' section in this link.
    http://help.sap.com/saphelp_nw70/helpdata/en/42/ed3ce7f8593eebe10000000a1553f7/frameset.htm
    Award points if useful.
    sathya.

  • Std ESS and Custom Workset work together

    Hi,
    At a time, can i have Std ESS and Custom Workset for ESS work?
    The navigation is not happening properly. When i click on a service in the custom workset, it navigates to Std. I can modify the pcd of each page and make this work fine, it's affecting the std,why?
    I am making changes in Change Entries and not in Add Entries for the Page resource
    but is this the right procedure?
    To my userid i have the custom as well as the std role assigned.
    Have hidden services from SPRO.
    My purpose is to check the Std ESS and Custom ESS simultaneously.
    Am i following the right procedure?
    Please help.
    Regards,
    Remi

    My purpose is to check the Std ESS and Custom ESS simultaneously?
    First of all why you need two set of roles, If you are using your own role then have  a single
    custom role assigned to the user, why have multiple as it is being redundant,
    Its better to have clear roles defined and assigned!

  • Std Extractor for table EQKT

    Can someone help me in finding the sap std extractor for the table EQKT (Equipment short texts table). I need to extract the info from the field EQKTU.
    -Tagz

    Krishna,
    To the best of my knowledge there is no standard delivered extractor for table EQBS. Try and understand the functionality of the data stored in the table and its relationships to what is specified in requirement. Is the field required in the master data of equipment or some other transaction data? Depending on the scenario you may have to enhance the master data / transaction data extractor or may be if situation warrants you may have to create a generic extractor.
    General procedure employed in finding extractors is to know what type of data is requested, which functional area then check the standard extractors in that specific application component to see if any of the extractors delivered provide the data required. Check help documentation of the extractors.

  • Std report for BOM : Reg.

    Hi experts,
         I need to display the materials along with the BOM of those materials with its quantity and its total price while user give the vendor name and date range as input.
    Is there any std report for the same? Try to give apt solution on it.
    Thanks and Regards
    Raaam's...

    Hi,
    CS12 is to get multi-level BOM report. You can insert satndard price field and vendor filed into the layout and you can filter it within the report itself.
    But what if you have several sources of supply and several prices (in info records!) for your goods? And this report can display only the multi-level BOM of one single material...
    If you want a transaction described by you, you should develop an own report in ABAP - I guess...
    You can post this thread in PP forum as well but I'm afraid there's no such kind of standard report in SAP...
    BR
    Csaba

  • Std workflow for Parked Invoices?

    hi guys
    are there any std workflows for parked invoices? Our requirement is that once the Finance clerk creates a customer or vendor invoice he should only be able to park it and not post the invoice. Once the invoice is parked then the system should trigger a workflow and a notification neeeds to be sent to the approver to approve the invoice. Once it is done the finance clerk will post the invoice.
    I switched on the event trace and did a trace on while creating a parked invoice. No event is triggered when the document is parked. If i post the document the event POSTED of object FIPP is triggerd. So since we dont have any std events raised when a document is parked is it possible to have a workflow?

    Hi,
    The event FIPP.CREATED is raise via the customizing (SPRO)
    Financial Accounting -> Financial Accounting global setting -> document -> document parking -> create workflow variant for parking documents.
                                      Assign co.code to a workflow variant for parking documents.
    Have a look at ws10000051.
    Regards,
    Ronit.

  • Setting up ESS for Training and Event Mgmt

    Hello to all SAP HR experts,
    i am now doing a project on SAP ERP HCM and would like to learn more about the things and steps i need to do to come up with a ESS for Training and Event Management. I have an account for SAP Netweaver and able to access Enterprise Portal (EP). Do i require to navigate in EP to use the items there or do i need to set up an adobe interactive form using SAP Netweaver Developer Studio, design the flow at Visual Studio(VC), then link all the VC at Guided Procedure? If that's the case how am going to extract the data which i have configured in the IMG path under Training and event mgmt (TEM) and also SAP Learning Solution(LSO)?
    For an example: I have created Training Event Groups, Training Event Types and Courses. If i want to so a paperless ESS, how can i extract all this into the fields which i have designed in my adobe interactive form.
    Please help me and guide me along
    Thank you in advance:)
    Regards,
    Jenny

    Hi
    There are 2 end user possibilities for Learning
    One is PV7I and PV8I ITS services which are part of an old ESS role and can be used as integrated ITS versions
    any ESS role via HpF or called directly via URL (without a Portal) - this will allow users to book course and events and view/change bookings etc
    The other is Business Package for Learning 1.0 which requires a Portal (and other LSO dependancies to run)
    this provides a wider range of Learning based activities including booking etc
    Best wishes
    Stuart

  • Problem with Family members/dependents screen in ESS for Switzerland countr

    Hi All,
    We are checking standard Fmaily Members/dependents screen in Personal Information under ESS for switzerland and screen doesn't have some fields compared to what we see in pa30 for the same country.if we check for other countries ess portal screen and pa30 screen look similar.when we check switzerland country specific webdypro component layout is different from pa30 and some of the fields are missing.
    why is this inconsistency with only switzerland country and is there any note available for this
    Thanks
    Bala Duvvuri

    Unfortunately you have to, But since the fields are available in backend, It can be easily be made visible in the front end
    changing the properties of the field
    Do make sure you raise a development request if this indeed required by the customer, You can raise a OSS for it, But I am afraid answer wont be encouraging

  • How does schedule with RESTful API a Webi report for a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    SAB BO 4.1 SP1
    Does it have an RESTful API to schedule a Webi report with the parameter to specify a group of users ("Schedule For" to "Schedule for specified users and user groups" with one or more users/groups)?

    Hello Ricardo,
    have you try a call like this one ?
        <schedule>
          <name>"test"</name>"
          <format type=\"webi\"/>
          <destination>
            <inbox>
             <to>userId1,userId2,userId3,groupId1,groupId12</to>
            </inbox>
          </destination>
        </schedule>
    Regards
    Stephane

  • No table entries found for specified key

    Hi All,
    I have developed a program to upload data from flat file with the help of GUI UPLOAD. It is succesfully updating data in my Z-table.
    Whenever I tried to view the content of table for specific field, message shows No table entries found for specified key. However if I add * as a suffix, it shows the data & when I directly Execute table it also displays the data.
    I have also cross checked the spaces before or after the specific content, no space found.
    Only two fields are creating this issue Individually (one of them is key field)
    Regards
    Mukul Maheshwari

    Hi Dear ,
    Here i had implemented program go through it you can understand easily.
    While creating table give one field as primary as you know that.
    tables zdata1.
    data it_tab type TABLE OF zdata1 WITH HEADER LINE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\Documents and Settings\E50039\Desktop\data.txt'     ***************File path
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = it_tab
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT it_tab.
    zdata1-no1 = it_tab-no1.
    zdata1-name = it_tab-name.
    zdata1-empid = it_tab-empid.
    insert zdata1.
    ENDLOOP.
    Flat file
    1 name1 empid1
    2 name2 empid2
    note: Give the tabspace between values in flat file.
    Edited by: Aditya.G on Oct 12, 2011 10:22 AM

  • How to keep XML file in memory for specified period ?

    How to keep XML file in memory for specified period or forever, I have 5 applications running on WebSphere I wants to use XML file for all the applications. I mean when one apllication is not using XML file still I wants to keep it in memory ...
    Thanx in advance ,

    Hello,you can create a DocumentManager class,
    here is my solution in the past...
    you can use static Hashtable save the xml's Document,if one application want get
    a appointed Document.first,you can find it from Hashtable,if can't find it ,you
    can create it and put into Hashtable,if the words fail to express the meaning,sorry,my english is limited
    package com.foresee.xfiles.util;
    import java.util.*;
    import org.w3c.dom.*;
    import org.apache.log4j.*;
    import com.foresee.xfiles.common.*;
    import com.foresee.xfiles.server.exception.*;
    import com.foresee.xfiles.util.*;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2002</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public final class DocumentManager {
    private static Category m_log = Category.getInstance(DocumentManager.class.getName());
    static {
    PropertyConfigurator.configure(Configurator.getLCF());
    public DocumentManager() {
    //synchronized
    public static synchronized Document getTransitionDoc(String path) throws SchemaCheckOutException{
    Document m_TransitionDoc;
    m_TransitionDoc = (Document)TransitionDoc.get(path);
    if (m_TransitionDoc == null){
    XmlHelper m_xh = new XmlHelper();
    try{
    m_TransitionDoc = m_xh.getDocument(path);
    }catch (SchemaCheckOutException se){
    m_log.error("������������������������"+path+"����:"+se.getUserMsg());
    throw se;
    TransitionDoc.put(path,m_TransitionDoc);
    return m_TransitionDoc ;
    public static synchronized Document getLogicCheckDoc(String path) throws SchemaCheckOutException{
    Document m_LogicCheckDoc;
    m_LogicCheckDoc = (Document)LogicCheckDoc.get(path);
    if (m_LogicCheckDoc == null){
    XmlHelper m_xh = new XmlHelper();
    try{
    m_LogicCheckDoc = m_xh.getDocument(path);
    }catch (SchemaCheckOutException se){
    m_log.error("������������������������"+path+"����:"+se.getUserMsg());
    throw se;
    LogicCheckDoc.put(path,m_LogicCheckDoc);
    return m_LogicCheckDoc ;
    public static Hashtable TransitionDoc = new Hashtable();
    public static Hashtable LogicCheckDoc = new Hashtable();

  • Master Data is missing for Specified Matierials at cube level  !!

    Hello Experts,
    Good Day..!!
    I have been facing an issue in my project,  Master Data is missing for a KF and values are not displayed  in a report for the specified matierial Nos. Where as other matierial nos KF values are displaying.
    Intially, i checked from Cube End and found the issue is in Cube level only.
    For that in the data flow, i already checked whether the data has been loaded perfectly or not.
    Tried to reran the DTP once again and checked the values for the KF in the report and unfortunately KF values are not displaying for specified matierials only.
    Kindly advice how can i move further..
    Thanks,
    SN.

    Hi,
    Check if SIDs are generated for the infoobject, if not try to do the change run attribute and then load the data to Cube.
    Hope this helps...
    Rgs,
    Ravikanth.

  • Set up std. price for proc.type F parts (External Procurement)

    Experts,
    what is the comon way to set up Std. price for materials with Proc.Type F (External procurement). Current I am using KKPAN and set cost out of PIR and material burden as seperate line.
    Looking for a way to have the material burden as fixed value in the system which I can use as base for calculation.
    Thanks in advance
    Jörg

    Dear ,
    For any FG material you should have Standard Price (S)  in Cost2 view  getting updated thrugh CK24 after ck11n done during production process .
    For any Externally procured item , you should have MAP or Planned price with Valdidty .Generally duing planned cost estimaiton , planned price will be considered  while you will do good issue agianst production order , systm will consider  the MAP to calcualte the cost of the material .
    Now to update the price you should carry out MR21 with new price for company code , validdity date , price control indicator  and valution variant .
    Generally in project scinario , you can use MAP for FG material .
    refer :
    http://help.sap.com/saphelp_47x200/helpdata/en/47/60ff6249f011d1894c0000e829fbbd/content.htm
    http://www.sap-img.com/materials/price-control-v-or-s-in-material-type.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/47/60ff0749f011d1894c0000e829fbbd/content.htm
    Regards
    JH

Maybe you are looking for

  • How to configure Security services in OSB 11g..

    We are integration OSB with BANK application, we will be using SSL certificate for the same. Please help how to configure security policy in OSB. I checked below link policy defination http://tim.blackamber.org.uk/?p=825 but in OSB proxy service we a

  • [SOLVED] Youtube Video showing up on every window I open?

    Hello all, I'm getting this strange error. A youtube video (Appearing as it does before you click the play button when it is embedded) is showing up in every window I open (of any sort, it even shows up on games like minecraft) before that part of th

  • ADAPTEC 2940UW SCSI on Solaris 8_x86

    Solaris 8_x86 is able to recognize the AHA2940UW SCSI card but during bootup, the OS kept probing the card from id 0 to 15 (apd0) in an endless loop, returning timeout; reset target; target 0 lun 0...... Tired the solutions in Solaris Device Configur

  • I Date TestSTand data type

    TestSTAND date data type I use TestSTAND pop up message to request user to input date in the input string for example: 10/8/2008  in TestSTAND input string in popup message.  I assume this is a string how do I compare this date to today date or any o

  • I'd heard about a bios bug!

    Hi guys, my system running not allways stable!I got some bluescreens of the art "STOP COMMAND"! Exactly this three ones: IRQL_NOT_LESS_OR_EQUAL PAGE_FAULT_IN_NONPAGED_AREA   and BAD_CALL_POOLER HERE are some information about it,but sorry,it's in ger