Unable to view Time-Statement  for the Chosen period in Portal

Hi ,
I am unable to get the timestatement for the Chosen period in Portal
What are the configurations that are to be made for the Timestatements to get dispalyed at the Portal end .
At r/3 end , we have a timestatement data  for an employee and moved that to a Cluster B1. so how does it reflect in the portal.
What am i missing to get that Timestatement to get displayed on Portal
Regards,
Vijay

Hi there,
As of what I see it is an MSS scenario.In this you used a business package, iviews. There should be a webdynpro application or BSP application running at the front end to get this out.
Now, as you mentioned at the R/3 end you have a time statement. So if your web  application is programmed properly, it will fetch the req. time data from backend. What you need to see is that the web application is bug free.
You need to do some debugging there, if the right data is fetched.
but before all this, you need to check if your portal worksets in the business package are set up properly, along with the iviews, pages.
Regards,
Bharat
Message was edited by:
        Bharat

Similar Messages

  • Unable to run time evaluation for the entire year...

    hi experts,
    I'am unable to run time evaluation for the entire year, even though mentioned the date as Force calculation as of : 01.01.2010
    and evaluation upto date : 31.12.2010.  when time evaluation is run , the log is only run for Jan 2010.
    Maintained IT2011 from 01.01.2010 to 31.12.2010
                      IT0050 from 01.01.2010 to 31.12.9999
                      IT0003 : PDC recalculation : 01.01.2010
    Kindly advise.
    Regards
    Pammi

    Check if Time Management status is 1 or 9....
    If it is 1 then it would not run for the entire year..It would run only till today. If it is 9, then the TE runs for future also...also check if in the schema it is activated for future runs or not...

  • When setting the split-days to "every 15 minutes," the week and comparison views show incorrect time ranges for the day

    When I change the "split-days" interval time, under Options > Settings, to
    15, or every 15 minutes, the week and comparison views don't show the correct
    time range for the day.
    <P>
    For example, if I click View to display the calendar and then click Week to get
    a weekly view, the time range displayed is from 6:00 a.m.
    to 4:00 p.m. If I click Comparison to get a
    comparison view, the time range displayed is from 12 p.m.
    to 6:45 p.m.
    <P>
    In this example, should both of these views show the same time range, from
    9:00 a.m. to 4:00 p.m.?
    No, the two views will not necessarily show the same time range. The time
    range for the comparison view will start at the beginning prefs time only
    if you have something scheduled (on any day of the week) starting at that
    time. For example, on one of the days during your week of comparison, if you
    create an event that starts at 9:00 a.m. and then open the comparison view, the
    time range displayed will start with 9:00 a.m.
    <P>
    Additionally, view times will expand past the configured settings if events
    span past the time range. That is, if you have an event that spans from
    5:00 p.m. to 8:00 p.m., the event will be reflected in the view, even though
    your time range may be set to go only to 6:00 p.m.

    Umm yes.
    The settings are stored in ''prefs.js'', so you could swap various copies of this file in and out.
    However, the system will load ''prefs.js'', then, if present, ''user.js'' , so you can set up just your changes in ''user.js'' .
    The sort of line you need to look for is like this:
    <code>user_pref("mail.server.server14.check_time", 10);</code>
    You'll need to do some research to identify which of your accounts is which.
    Search for the account's email address:
    <code>user_pref("mail.identity.id10.useremail", "xenos&#64;example.com");</code>
    Use the id number to locate the account number:
    <code>user_pref("mail.account.account29.identities", "id10");</code>
    Use the account number to find the server number:
    <code>user_pref("mail.account.account29.server", "server14");</code>
    Finally, you can then use the server number find the account's time setting:
    <code>user_pref("mail.server.server14.check_time", 10);</code>
    This last entry may not exist, if you have never changed the setting from the default 10 minutes.
    Do be careful with your typing and copy/pasting; if the file fails the syntax parser it will silently fail.
    And make sure Thunderbird is shut down when you do the swap. If it's open, it may overwrite changes, and in any case, it only reads the settings file when it starts up.

  • Error: Select a Location for the chosen compnay code

    Hello Guru's,
    We have an issue . Shopping caart at the time of approval (Business approval) we get the error message :" Select a Location for the chosen company code".
    We checked in PPOMA_BBP  for the approver (in extended attributes the relevant plant was not assigned. Hence had assigned the plant to the user attributes. But unable to approve. Still get the same error message.
    Also had checked the attributes of all the approvers of the shopping cart . They all are assigned to the relevant plant.
    Below are the questions i have :
    1) Is it possible to debug the shoipping cart which is in awaiting approval status.
    2) We checekd in SE91for the error message  and found the message but not able to see where it is used and no additional details.
    IS there any way to check this error andd fix
    Best Regards,
    Shree

    Hi Shree,
    Does this happen to all the locations?
    Have you ensured that the Plant chosen in the shopping cart belongs to the Company Code in the Shopping cart and that the Company Code is assigned to the user and the approver in PPOSA_BBP?
    Regards,
    Yateesh

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • Unable to get Window Handle for the 'AxCrystalActivXViewer' control.

    Hi,
    I have Operating System : Windows 7 and Application developed in VS 2005 and I am using Crystal Report XI licenced version.
    But when I am trying to use TTX(Field Defination) based reports it gives me "Unable to get Window Handle for the 'AxCrystalActivXViewer' control. Windowless ActivX Controls are not supported."
    Please provide me solution for this ASAP as I am stucked on this from long lomg time.
    -Regards
    Swapnil

    Appears you are installing an upgrade version.
    Use these links:
    http://downloads.businessobjects.com/akdlm/crystalreports/crxir2_sp4_full_bld_0-20008684.exe
    http://downloads.businessobjects.com/akdlm/crystalreports/CRYSTALREPORTS06_0-20008684.EXE

  • Unable to get timer handles for containerId: jboss.j2ee:jndiName=

    im trying to access my database thru ejb.......... im using jboss server.......... but while starting the server im getting an error like --"Unable to get timer handles for containerId: jboss.j2ee:jndiName=Statustable,service=EJB" ---- where Statustable is an oracle database table created by me....
    what could be the problem? can anybody help me?

    You might have better luck posting to the JBoss forum.
    --ken                                                                                                                                                                                               

  • How to write a case statement for the totals column of two different years (2013 and 2014) of the same month so that I can get a +/- column

    Please Help!!!
    How to write a case statement for the totals column of two different years (2013 and 2014) of the same month so that I can get a +/- column.
                                      January 2014         January
    2013                            +/-
                    Region   Entry   Exit  Total    Entry   Exit   Total   (Total of Jan2014-Total of Jan2013)
                    A               2         3      
    40        5       7        30                    40-30= 10

    What is a table structure? Sorry cannot test it right now..
    SELECT <columns>,(SELECT Total FROM tbl WHERE Y=2014)-(SELECT Total FROM tbl WHERE Y=2013)
    FROM tbl
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I am backing up to my time capsule for the first time. It has been stuck on 348mb of 20.1 gb for days. Is this normal or is the machine not functioning correctly?

    I am backing up to my time capsule for the first time. It has been stuck on 348mb of 20.1 gb for days. Is this normal or is the machine not functioning correctly?

    That seems to be OK via WLAN!
    It ist better to do the first backup via LAN-cable.

  • I recently moved my Aperture Library file to an external hard drive.  Can I now create a vault to be saved on my Time Capsule for the Aperture library on this external hard drive?

    I recently moved my Aperture Library file to an external hard drive.  Can I now create a vault to be saved on my Time Capsule for the Aperture library on this external hard drive?

    One thing to bear in mind, if you are using Time Machine on your Time Capsule and have it set so the TM backup includes your external drive, you will effectively be backing up your Aperture library twice on the same drive, once with Time Machine and once with the vault. This isn't a problem unless you start to run out of space.
    Another thing to note, vaults on network drives used to be flaky (i.e. not really supported) and required workarounds to be able to use them. I'm not sure if this has changed, but I just managed to create a vault on my TC ok.

  • I'm setting up my Time Capsule for the first time and cannot get an internet connection throughWAN connection

    I'm setting up my Time Capsule for the first time and can't get an internet connection via ethernet cord

    So new AC model TC??
    What modem is it? Pure cable modem .. did you power cycle the modem ( OFF for at least 30min..)??
    This is essential to lose the old setup and start afresh. 
    How have you setup the TC?
    Did you try just bridge to existing router? If it doesn't get an IP and you just bought it, possible it is faulty.
    Lots more details.. really important things like did the ethernet connectivity leds go on.. both the TC port and the modem port - front ethernet indicator should light up..

  • DRM-61026: Unable to create user session for the following reason: Login failed. Invalid user name or password.

    All Im very new to Oracle DRM and Im trying to get the app setup on Windows server running SQL Server 2008.  When I try to login to the Web Client I keep getting this error.
    DRM-61026: Unable to create user session for the following reason: Login failed. Invalid user name or password.
    Can you please help

    This might be due to The 'Oracle Instance' path may not have been set to a path relative to the 'CSS Bridge Host' (i.e. the Foundation Services machine) on the Configuration > Host Machines > CSS > General tab of the DRM Configuration Utility.
    if this is the case then
    1. Open the DRM Configuration Console.
    2. Go to the Configuration > Host Machines > CSS > General tab of the DRM Configuration Utility.
    3. Ensure that the path in 'Oracle Instance' has been set relative to the 'CSS Bridge Host' (i.e. the Foundation Services machine defined in 'CSS Bridge Host').
    4. If corrections are made to 'Oracle Instance' then restart the DRM services to pick up the change.
    Thanks,
    ~KKT~

  • Actual Time bar for the activity duration in Gantt Chart

    Hi all,
    The Actual time bar for the elapsed activity duration in Gantt chart is not appearing. The same is true for all the activities i.e. activities which are not yet confirmed and activities which are partially confirmed.
    Is there any customizing for the same? ( I am getting the bar in IDES, but not in DEV/QAS/PRD )
    Any Help in this regards will be highly appreciated
    Warm regards,
    Srinivas Potluri

    Hai Srinivas
    Got the solution.
    1)For this first check in the project profile of the Hierarchry graphic -
    Time scheduling profile - check the colour patterns which been assigned.
    2)open the project - Cj20N - go to planning board - bar chart - under settings - Planning board assistant - Gantt chart - check the dates display for Project definition , WBS , Acitivity - try to change the colour and check.
    while changing can see - basic date of the acitivity. based on the confirmation can see the bar confirmed activity with respect to basic date. the bar confirmation will show withrespect to duration.
    3) If the bar chart need in daily /hourly - can check in CNE5 . click on the graphics -bar chart - which u will get the bar chart - in this choose the Time Axis - where can select the monthly /weekly/daily /hourly format .
    Award points if clear and got the solution.
    Regards
    PP

  • I am unable to view imported certificates in the certificate manager in Firefox.

    ''dupe of https://support.mozilla.org/en-US/questions/909905''
    I am unable to view imported certificates in the certificate manager in Firefox.

    Many thanks SafeBrowser; I think the Yahoo and Babylon extensions were the problem. Didn't want them anyway!

  • How to extend the time line for the premiere on mac pro mavericks

    how to extend the time line for the premiere on mac pro mavericks

    Wrong place.
    Try the Adobe Premiere forum.
    http://forums.adobe.com/community/premiere
    Good luck,
    x

Maybe you are looking for

  • Urgent!!! A question about p6.7 stand alone

    I had P6.7 stand alone installed and have used it for a while. Last week, I suddenly couldn't login. After I entered password and clicked Login, and when "loading data" came to 99%, error message popped up and task ended itself, not able to enter int

  • [GNOME] Computer Locks Instead of Hibernating

    I have the alternative status menu installed and I have never been able to hibernate. The screen just locks. I just added the testing repos to see if that would make a difference but has not. Linux myhost 3.1.0-4-ARCH #1 SMP PREEMPT Mon Nov 7 22:47:1

  • Icons for Insert/Delete Pages to Adobe Acrobat Pro 9.

    I want to add icons for Insert Pages and Delete Pages so that I have quicker access than clicking on the Document option or the Navigation Panel. Used to have this on my old version of Adobe, but it was recently updated at work and I can't figure out

  • Indesign CS3 will not launch - windows 7

    Hi, I tried starting indesign last night but when I clicked on the launch icon on my task bar the icon glows I get the egg timer thing but nothing happens. I restarted the computer and it worked ok. Then I tried it this morning and the same problem o

  • Will apple ever update imovie software for the desktop

    In the Fall of 2010, Apple released iMovie 11' and since the release of the iPad, they seem to only be creating updates for iMovie on the iPad, iPhone and iPod Touch!!!  I want to know if Apple is going to update it on OSX.