Reg.errors in standard ess coding

hi
In the below  standard code  it is giving many errors in like
the import com.sap.tc.webdynpro cannot be resloved
com.sao.tc.logging cannot be resloved
wdcontrollerapi cannot be resloved like than this many errors for the below.
can any please help me how to relsove the errors
import com.sap.xss.hr.per.in.family.review.wdp.IPrivateReviewView;
import com.sap.xss.per.helpers.F4TextHelper;
import com.sap.xss.per.helpers.TextFieldInfo;
import com.sap.tc.webdynpro.progmodel.api.WDVisibility;
//@@end
//@@begin documentation
//@@end
public class ReviewView
Logging location.
  private static final com.sap.tc.logging.Location logger =
    com.sap.tc.logging.Location.getLocation(ReviewView.class);
  static
    //@@begin id
    String id = "$Id$";
    //@@end
    com.sap.tc.logging.Location.getLocation("ID.com.sap.tc.webdynpro").infoT(id);
Private access to the generated Web Dynpro counterpart
for this controller class.  </p>
Use <code>wdThis</code> to gain typed access to the context,
to trigger navigation via outbound plugs, to get and enable/disable
actions, fire declared events, and access used controllers and/or
component usages.
@see com.sap.xss.hr.per.in.family.review.wdp.IPrivateReviewView for more details
  private final IPrivateReviewView wdThis;
Root node of this controller's context. </p>
Provides typed access not only to the elements of the root node
but also to all nodes in the context (methods node<i>XYZ</i>())
and their currently selected element (methods current<i>XYZ</i>Element()).
It also facilitates the creation of new elements for all nodes
(methods create<i>XYZ</i>Element()). </p>
@see com.sap.xss.hr.per.in.family.review.wdp.IPrivateReviewView.IContextNode for more details.
  private final IPrivateReviewView.IContextNode wdContext;
A shortcut for <code>wdThis.wdGetAPI()</code>. </p>
Represents the generic API of the generic Web Dynpro counterpart
for this controller. </p>
  private final com.sap.tc.webdynpro.progmodel.api.IWDViewController wdControllerAPI;
A shortcut for <code>wdThis.wdGetAPI().getComponent()</code>. </p>
Represents the generic API of the Web Dynpro component this controller
belongs to. Can be used to access the message manager, the window manager,
to add/remove event handlers and so on. </p>
  private final com.sap.tc.webdynpro.progmodel.api.IWDComponent wdComponentAPI;
  public ReviewView(IPrivateReviewView wdThis)
    this.wdThis = wdThis;
    this.wdContext = wdThis.wdGetContext();
    this.wdControllerAPI = wdThis.wdGetAPI();
    this.wdComponentAPI = wdThis.wdGetAPI().getComponent();
  //@@begin javadoc:wdDoInit()
  /** Hook method called to initialize controller. */
  //@@end
  public void wdDoInit()
    //@@begin wdDoInit()
    //@@end
  //@@begin javadoc:wdDoExit()
  /** Hook method called to clean up controller. */
  //@@end
  public void wdDoExit()
    //@@begin wdDoExit()
    //@@end
  //@@begin javadoc:wdDoModifyView
Hook method called to modify a view just before rendering.
This method conceptually belongs to the view itself, not to the
controller (cf. MVC pattern).
It is made static in order to discourage a way of programming that
routinely stores references to UI elements in instance fields
for access by the view controller's event handlers etc.
The Web Dynpro programming model recommends to restrict access to
UI elements to code executed within the call to this hook method!
@param wdThis generated private interface of the view's controller as
       provided by Web Dynpro; provides access to the view controller's
       outgoing controller usages etc.
@param wdContext generated interface of the view's context as provided
       by Web Dynpro; provides access to the view's data
@param view the view's generic API as provided by Web Dynpro;
       provides access to UI elements
@param firstTime indicates whether the hook is called for the first time
       during the lifetime of the view
  //@@end
  public static void wdDoModifyView(IPrivateReviewView wdThis, IPrivateReviewView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
    //@@begin wdDoModifyView
     String subtype = wdContext.currentSubtypesElement().getSubtype();
                                   if (subtype.equals("2")) {
                                        wdContext.currentContextElement().setStandardIsVisible(
                                             WDVisibility.VISIBLE);
                                        wdContext.currentContextElement().setIsVisible(WDVisibility.NONE);     
                                        wdContext.currentContextElement().setStandardVisible(WDVisibility.VISIBLE);
                                   }else if (subtype.equals("6")) {
                                        wdContext.currentContextElement().setStandardIsVisible(
                                                       WDVisibility.VISIBLE);
                                        wdContext.currentContextElement().setIsVisible(WDVisibility.NONE);     
                                        wdContext.currentContextElement().setStandardVisible(WDVisibility.NONE);
                                    else if(subtype.equals("5") || subtype.equals("8") || subtype.equals("10") || subtype.equals("14")){
                                        wdContext.currentContextElement().setStandardIsVisible(
                                        WDVisibility.NONE);
                                        wdContext.currentContextElement().setIsVisible(
                                        WDVisibility.VISIBLE);
                                        wdContext.currentContextElement().setStandardVisible(WDVisibility.NONE);
                                   else
                                        wdContext.currentContextElement().setStandardIsVisible(
                                        WDVisibility.NONE);
                                        wdContext.currentContextElement().setIsVisible(
                                                                           WDVisibility.NONE);
                                        wdContext.currentContextElement().setStandardVisible(WDVisibility.NONE);
    // Other Allowances
     if (wdContext.currentSelectedInfotypeElement().getKdbsl().equals("X"))
                    wdContext.currentContextElement().setOther_Allowances(true);
               else
               {   wdContext.currentContextElement().setOther_Allowances(false);
  //Child Education Allowance
  if (wdContext.currentSelectedInfotypeElement().getKdzul().equals("X"))
                      wdContext.currentContextElement().setChild_Education_Allowance(true);
                 else
                 {   wdContext.currentContextElement().setChild_Education_Allowance(false);
// Children_Hostel_Allowance
if (wdContext.currentSelectedInfotypeElement().getKdgbr().equals("X"))
                       wdContext.currentContextElement().setChildren_Hostel_Allowance(true);
                  else
                  {   wdContext.currentContextElement().setChildren_Hostel_Allowance(false);
     TextFieldInfo[]     fieldInfo = new TextFieldInfo[]
       { new TextFieldInfo("Fasex", "Gender"),
          new TextFieldInfo("Fanat", "Nationality"),
          new TextFieldInfo("Fana2", "OtherNationality"),
          new TextFieldInfo("Fana3", "SecondNationality"),
          new TextFieldInfo("Fgbld", "BirthCountry"),
         new TextFieldInfo("Fnmzu", "OtherTitle"),
          new TextFieldInfo("Fvrsw", "Name_Prefix")
     F4TextHelper.GetF4Text(     wdThis.wdGetAPI(),
                                   wdContext.nodeSelectedInfotype(),
                                   view,
                                   fieldInfo);
    //@@end
The following code section can be used for any Java code that is
not to be visible to other controllers/views or that contains constructs
currently not supported directly by Web Dynpro (such as inner classes or
member variables etc.). </p>
Note: The content of this section is in no way managed/controlled
by the Web Dynpro Designtime or the Web Dynpro Runtime.
  //@@begin others
  //@@end
Thanks in advance
Deepika.M
Edited by: deepika_indian on May 24, 2011 10:49 AM
Edited by: deepika_indian on May 24, 2011 10:50 AM
Edited by: deepika_indian on May 24, 2011 11:49 AM

Hi Vivek
I have pasted all the components which are used in server.can u please check it and guide me.
BP_ERP5ESS  1.0 SP18 (1000.1.0.18.0.20100830051959)  SAP AG  MAIN_ERP05VAL_C  20101223183222 
sap.com  BP_ERP5MSS  1.0 SP18 (1000.1.0.18.0.20100830033715)  SAP AG  MAIN_ERP05VAL_C  20101223183226 
sap.com  DI_CBS  7.00 SP23 (1000.7.00.23.0.20101122112033)  SAP AG  MAIN_APL70P23_D  20110509211915 
sap.com  DI_CMS  7.00 SP23 (1000.7.00.23.0.20101122112054)  SAP AG  MAIN_APL70P23_D  20110509212038 
sap.com  DI_DTR  7.00 SP23 (1000.7.00.23.0.20101122112109)  SAP AG  MAIN_APL70P23_D  20110509212048 
sap.com  EP-PSERV  7.01 SP3 (1000.7.01.3.0.20090108071100)  SAP AG  SAP AG  20101021161551 
sap.com  EP-WDC  7.01 SP3 (1000.7.01.3.0.20081211162000)  SAP AG  SAP AG  20101021161701 
sap.com  SAP-EU  7.01 SP3 (1000.7.01.3.0.20090112112930)  SAP AG  MAIN_NW701P03_C  20101021162607 
sap.com  SAP-JEE  7.01 SP7 (1000.7.01.7.0.20100612175953)  SAP AG  SAP AG  20110516194447 
sap.com  SAP-JEECOR  7.01 SP7 (1000.7.01.7.0.20100612180141)  SAP AG  SAP AG  20110516194727 
sap.com  SAP_BUILDT  7.01 SP7 (1000.7.01.7.0.20100610162200)  SAP AG  SAP AG  20110521181615 
sap.com  SAP_ESS  600 SP19 (1000.600.0.19.1.20110408044819)  SAP AG  MAIN_ERP05PAT_C  20110516202410 
sap.com  SAP_JTECHF  7.01 SP7 (1000.7.01.7.0.20100612180438)  SAP AG  SAP AG  20110516194827 
sap.com  SAP_JTECHS  7.01 SP7 (1000.7.01.7.0.20100612182449)  SAP AG  SAP AG  20110516203152 
sap.com  SAP_MSS  600 SP19 (1000.600.0.19.0.20110207050012)  SAP AG  MAIN_ERP05VAL_C  20110516203751 
sap.com  SAP_PSS  600 SP18 (1000.600.0.18.0.20100830054704)  SAP AG  MAIN_ERP05VAL_C  20110516203850 
sap.com  SAPPCUI_GP  600 SP18 (1000.600.0.18.0.20100830054620)  SAP AG  MAIN_ERP05VAL_C  20101223183346 
Thanks & Regards
Deepika

Similar Messages

  • Error in Standard ESS application Address

    Hi Expert,
    We are using standard ESS package provided by SAP. But in address application in Pernmanent address the dropdown for Country was non editable. We have  changed the property of that field through NWDI and now the dropdown is eitable.
    but the problem is that now it is showing only  one or two values in the dropdown though we need all the country values in dropdown. We have searched in SDN and apply SAP NOTE 1253136 for foreign address. but after that this application is giving error saying that : 
    "DataNodeInfo(FcPerAddressIN.SelectedInfotype): unknown child node Countrykey_Grouping:com.sap.tc.webdynpro.progmodel.context.ContextException: DataNodeInfo(FcPerAddressIN.SelectedInfotype): unknown child node Countrykey_Grouping
         at com.sap.tc.webdynpro.progmodel.context.Paths.followMetaPath(Paths.java:794)
         at com.sap.tc.webdynpro.progmodel.context.Paths.getAttributeInfoFor(Paths.java:234)
         at com.sap.tc.webdynpro.progmodel.context.Context.getModifiableTypeOf(Context.java:175)
         at com.sap.xss.per.helpers.F4TextHelper.SetF4Values(F4TextHelper.java:92)
         at com.sap.xss.per.helpers.F4TextHelper.SetF4Values(F4TextHelper.java:36)
         at com.sap.xss.hr.per.in.address.fc.FcPerAddressIN.addValueHelp(FcPerAddressIN.java:360)
         at com.sap.xss.hr.per.in.address.fc.wdp.InternalFcPerAddressIN.addValueHelp(InternalFcPerAddressIN.java:565)
         at com.sap.xss.hr.per.in.address.fc.FcPerAddressIN.selectRecord(FcPerAddressIN.java:346)
         at com.sap.xss.hr.per.in.address.fc.wdp.InternalFcPerAddressIN.selectRecord(InternalFcPerAddressIN.java:561)
         at com.sap.xss.hr.per.in.address.fc.FcPerAddressINInterface.selectRecord(FcPerAddressINInterface.java:180)
         at com.sap.xss.hr.per.in.address.fc.wdp.InternalFcPerAddressINInterface.selectRecord(InternalFcPerAddressINInterface.java:213)
         at com.sap.xss.hr.per.in.address.fc.wdp.InternalFcPerAddressINInterface$External.selectRecord(InternalFcPerAddressINInterface.java:289)
         at com.sap.xss.hr.per.in.address.overview.VcPerAddressINOverview.onEvent(VcPerAddressINOverview.java:217)
         at com.sap.xss.hr.per.in.address.overview.wdp.InternalVcPerAddressINOverview.onEvent(InternalVcPerAddressINOverview.java:234)
         at com.sap.xss.hr.per.in.address.overview.VcPerAddressINOverviewInterface.onEvent(VcPerAddressINOverviewInterface.java:116)
         at com.sap.xss.hr.per.in.address.overview.wdp.InternalVcPerAddressINOverviewInterface.onEvent(InternalVcPerAddressINOverviewInterface.java:124)
         at com.sap.xss.hr.per.in.address.overview.wdp.InternalVcPerAddressINOverviewInterface$External.onEvent(InternalVcPerAddressINOverviewInterface.java:208)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:534)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:438)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$600(FPMComponent.java:78)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.raiseEvent(FPMComponent.java:937)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.raiseEvent(FPMComponent.java:1100)
         at com.sap.xss.hr.per.in.address.overview.VcPerAddressINOverview.edit(VcPerAddressINOverview.java:246)
         at com.sap.xss.hr.per.in.address.overview.wdp.InternalVcPerAddressINOverview.edit(InternalVcPerAddressINOverview.java:242)
         at com.sap.xss.hr.per.in.address.overview.BizCardsView.onActionEdit(BizCardsView.java:186)
         at com.sap.xss.hr.per.in.address.overview.wdp.InternalBizCardsView.wdInvokeEventHandler(InternalBizCardsView.java:216)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:333)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:761)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:696)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:869)
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:77)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1356)
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:327)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:869)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:333)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:741)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:694)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Please help to resolve the issue.
    Tanks,
    aniruddha

    Shardha,
    Thanks a lot for offering to help me out. my email id is
    [email protected] / [email protected]
    regards
    Sammer
    Message was edited by:
            sameer chilama

  • Errors in standard code in NWDS

    I am trying to modify standard ESS/MSS source code. But lot of code there is marked in RED to say that it is an error code ( Which in reality is not). And even when i press CTRL + Space to get context help for commands it does nto work. I logged off and logged back in, did syn sources but to no use. Any sueggestions how to get over this issue
    regards
    Sam

    Hi Sam,
    You're missing compile time libraries, that is, your classpath doesn't provide enough JARs. As I'm not familiar with ESS/MSS development, I cannot help directly, but the general reason is obvious. Probably you are using NWDI to alter the implementation?! In this case, the dependencies to other components are not set up sufficiently.
    Hope it helps
    Detlev

  • Standard ESS-MSS Package Customization

    HI,
    I have to customize existing standard ESS-MSS packages.
    I down load the packages to my NWDS from NWDI.But after down load,I am getting this error."The type AbstractStringBuilder is not visible".
    Please suggest me how to resolve this error.
    Regards
    -Sandip

    Hi,
    Try Repair project structure and classpath.
    Hope you have done the Organize imports....
    Regards
    Ayyapparaj

  • How To hide buttons in standard ESS /MSS applications .

    I have implemented standard ESS/MSS business package version mySAP2005 in ECC 6.0. Now in a standard iView buttons like Edit ,Previous ,etc are present . Now how can I hide these buttons ,say Edit button from iview level ?Now since this is Client Requirement .
    My main problem is I do not have adequate time to customize the standard applications through coding .Is there any other way to do it ?Thanks in advance for any solution provided quickly as goalive is near .

    Hi Ribhu,
    Open the iview in question and do a CTRL+right click.
    Hope this helps in serving your purpose.
    Points are welcome!
    Cheers,
    Sandeep Tudumu

  • Xssutils Error when using ESS role.

    Hi
    I'm getting this error:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create deployable object 'sap.com/pcui_gp~xssutils' since it is not of a Web Dynpro object.
    for a version of the ESS role I've created. If I assign content_admin or give them any other role as well as the one causing the error then everything works.
    Help!
    Rob

    Lets start all over again..
    Copy standard ESS role into your custom Folder.. and now check permission of this role.. , set this as end user access and assign read access to role for target user groups (check for everyone group first).
    and see whats result.
    Also check whats permission level for ESS FPM application..
       Assign permissions to objects in the following folder to every portal user:
       Portal Content ® Content Provided by SAP ® srvconfig ®  com.sap.pct.erp.srvconfig.ess.employee_self_service.
    link
    Hope this helps.
    Cheers

  • Customised Error Message for ESS-MSS Applications

    Hello All,
    Currently, if there are any errors in the ESS/MSS transactions, we get the 503 error with lot of irrelevant data to the users. We have a basic html page which says, "There is a issue-Please contact XXXX".
    Is there a way to replace the standard error message with this html page ?
    PS: I am not talkign about the "Dispatcher Running" or "Application Stopped" messages, Please do not point me again to SAP Help website which doesn't answer my query. THIS IS ABOUT REPLACING THE STANDARD ERROR MESSAGES FOR ESS/MSS APPLICATIONS.
    Any help is much appreciated.
    We are on EP 7.01 SP3 (ESS 1.41)
    -Raj

    Hi Raj
    Let me clarify the difference between ESS and MSS errors and JAVA stack errors
    A "503 Service  not available" is not an ESS or MSS error - this is the thrown by the stack (possibly while navigating
    in ESS or MSS)
    The only information I have available in the case of java stack errors is to follow
    http://help.sap.com/saphelp_nw70/helpdata/en/9a/e74d426332bd30e10000000a155106/frameset.htm
    Whcih indicates how to customize stack errors  like 404 or 500
    Lastly you can also decide to hide the stack trace as per KBA 1596212
    To modify an ESS or MSS message this may require modification to front and back-end HCM application - usually
    ESS gets error information based on back-end errors example "fill in all required fields"
    Hope this helps

  • How can i replace the standard ESS iview with my own iview

    I want to replace standard ESS addr iview with my own WD developed by ABAP
    I added the iview(my WDA) into standard ESS addr page.
    (pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.pages/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.cn/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr)
    And make it visible.
    But I got this error in ESS PA addr :
    WebDynpro Exception: Application PER_ADDRESS_CN Does Not Exist
    Here is the error code :
    Error code&#65306;ICF-IE-http-c:100-u:AC_WANGFZ-l:1-s:CE1-i:SAPCE101_CE1_01-w:0-d:20070514-t:172301-v:RABAX_STATE-e:UNCAUGHT_EXCEPTION
    So , how can i replace the standard ESS iview with my own iview?
    Thanks

    Can you see any Javascript EPCF code in the old iView  ?  You are surely just going to have to find it  (if our hunch is correct) and analyse it and copy it into your new iView so that it functions in some way that at least does not error

  • Error in Standard Program for Purchase Order

    Hello Everyone,
    I am getting an ABAP Dump Error while Displaying & Printing Purchase Order using TCODE : ME9F & ME23N.
    We have applied new Patches.
    for Logistics it is 26 & ABAP it is 58.
    I am getting Error in standard INCLUDE
    Program : LMEDRUCKF1K at line 64.
    The Error is :- "Field "ENJPREVIEW" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement."
    Declaration for "ENJPREVIEW" is also available in
    include LMEDRUCKTOP. still it gives an error.
    These lines of code is included by SAP note 855263.
    Before applying these Patches it was working properly, but now it gives an error.
    Please , Can anyone give solution for this.
    Regard's
    Archana.

    Hi Archana ,
    Check is there any Inactive Versions in ur Systems ?
    useful tcodes are SPAU /SPDD for tables
    Regards
    prabhu

  • Error on the ESS homepage of users

    Hi All,
             I am encountering following error in the ESS homepage of users in Development.
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
    Could you please suggest, what measures should be taken to overcome this problem
    Thanks & Regards
    Umang Mathur

    Umang,
    Check in the Tcode, HRUSER if the pernr's have been assigned to the users. Also, check the backend authorizations being assigned to the users.
    Cheers!
    Sandeep Tudumu

  • Syntax error in standard program after upgrade

    Hi,
    After upgrade from 7.0 to 7.3, we are facing a syntax error in standard program that is used in one of our process
    The error says:
    The field "G_REQUIDPARENT" is unknown, but there is a field with the s"
    imilar name "G_REQUID_LAST". "G_REQUID_LAST"."
    The system cannot find this object inside include LRSBM_REQUEST_GUIP04, that belongs to program SAPLRSBM_REQUEST_GUI
    We assume that this is associated with the upgrade but we cannot find any solution in the web. Besides, this is a standard program so we cannot perform any change directly. We look for SAP Notes to apply but we didn't find nothing worthwhile
    Basically, we are receiving a dump with the error message posted above and we found the syntax error, but the thing is that we don't know how to fix it, due to the fact that is a standard program and we cannot change it
    I know that SAP could remove some object reference during the upgrade, but there should be an anticipated plan to fix this kind of errors, right?
    Can you shed some light on this, please ?
    Thanks a lot
    Ale

    Hi Ale,
    If you make sure there are no customization around the object and SGEN already run, I think you can just open a OSS message to SAP to looking for a fix.
    Regards
    Bill

  • Additional fields in CATSDB errors out in ESS

    Hi,
    We added additional fields in CATSDB (customer fields). This errors out in ESS.
    Is there anything else needs to be done after adding these fields? Do we have to adjust profiles?
    Error when accessing Dictionary table ABAP-generation exit error., error key: RFC_ERROR_SYSTEM_FAILURE:
    please  help us.
    SM

    gO TO Customer specific Customization
    Under Time sheet from SPRO
    Then create the customer field
    Hope this helps
    Shetty

  • How to allow modification of Country key in standard ESS "Adress" Iview ?

    Dear all,
    In the standard ESS Personal Information Iview and especially "Adress" Iview, the COUNTRY drop down list can't be modified, modification is deactivated, Country drop down list isn't accessible. But I need to let people select their country when they indicate a new adress (emergency, foreign adress, secondary adress...).
    In SPRO>ESS>Personal data/information -->I use country 06, infotype 0006, application case 1 permanent residence.
    I tried the CTRL+right click method but I can't activate the country "modification" (no button to solve my issue).
    I looked at the below thread but I do want to know if there's really no standard way to allow people to modify that usual field?
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    Many thanks by advance for your advices!
    BR
    Blandine Landais

    Many thanks for your answer!
    I've tested it on another system (EHP3 this time) and you need, indeed, to activate business functions (new releases of EHP) in the customizing to allow editing of other country forms. The address iview is a new one too, so no way on an ECC6.0. We tried to search a solution within the abap way but it would generate such a big specific development that I'm not sure we will implement it..
    Thanks again for your helpful answer.
    BR

  • How to do the modification in standard ESS/MSS business packges using NWDI?

    Hi Gurus,
    I have requirement where in which set up is ready ESS/MSS business packges are available in NWDI now my question is......
    How to do the modification in certain ESS/MSS standard iviews? using your local machine NWDS?
    How will you download the ESS/MSS iviews that are available in NWDS?
    My EP server version is EP 7.0 and backend ecc5.0......
    Can you guys tell me how to do the changes in standard ESS/MSS stuff that are avaiable in NWDI using your local machine NWDS.
    once the changes is done how you will upload the same into NWDI to reflect the changes globally.
    Its an urgent requirement....Please provide me step by step approach of the same.
    Thanks in Advance,
    Dharani

    Hi Dharani,
         Have a look at my weblog,
    For your 1st Question:
    "How to do the modification in certain ESS/MSS standard iviews? using your local machine NWDS?" -
    1.After you configured your track for ESS/MSS business package in NWDI try importing the track in NWDI by configuring NWDI server in NWDS, goto Windowsàpreferences-Java Development Infrastructure-Development Configuration
    and specify the URL where you have configured your NWDI
    2. create a project for the views which you want to modify.
    3. Checkout and create a new activity for the DC
    4. Make the changes as per your requirement
    5. Checkin the activty once you are done with the changes
    6.Activate and release
    These are all the steps involved in customization of any business package.
    Mail me back if you have any doubts.
    Hope this helps,
    Regards,
    Vinoth.M
    Edited by: Vinoth.Murugaiyan on Feb 13, 2008 3:14 PM

  • Standard ESS components missing!!!

    Hi Experts,
    I am working on ESS components in WD ABAP. But there is a problem the standard ESS componets for travel and expense which strats with prefix  FITE are missing in Sandbox system and production system. But these components are available in development system. What could be the reason for it and the preffered solution in this case. Please help.
    Regards,
    Vaibhav Tiwari.

    Hi,
    Make sure the FITE* and FITV* services are activated in transaction "SICF" under the path:  default_host --> sap --> bc --> webdynpro --> sap.
    Let me know if that helps.

Maybe you are looking for

  • Smart form printing same data  in all the 10 pages for tcode va03

    Hi Experts with tcode va03 i am taking print preview of sales document when i go for print preview it is showing all the 10 pages with line items but when i take print for all 10 pages it is displaying first page data in all the 10 pages i had checke

  • New ARD User

    Hello all, I have an iMac Flat Panel (with Mac OS X 10.4.2) and an iBook (same system). Now, I got ARD because I wanted to control (access) my desktop at home from the iBook at work. But, also, I am helping some relatives with theirs, too (all recent

  • ICC Profiles and PSE3.0 - How to Needed?

    I recently bought a monitor calibrator, and I am quite satisfied that what I see on the monitor is the way I should be seeing it. I've printed a few prints with my Canon Pixma 4000, and the prints are almost exactly the same as what I see on the moni

  • Adding Bookmarks to an Audio Track

    Is it possible in iTunes to add bookmarks to an audio track?

  • Uninstall Symantec Antivirus

    I'm having trouble uninstalling my Symantec antivirus products. I first installed them on Mac OSX 10.3, and I'm running Version 1.0 (082). We upgraded our OS to 10.5 a while ago and trasfered everything currently installed. But since the antivirus is