Unable to retrieve Personnel List items

Hi,
User needs to process payroll. In Time management for Time Entry it shows the following error instead of showing up EBB- approver.
Error message:
+*Unable to retrieve Personnel List items. Please try again later, or if the problem persists,
Unable to call BAPI: com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException:
Error connecting using JCO client: Null in method CoCAT2 TimeSheet. ValidatePersonnelNumber. 
.*+
Please Help on this !!

Sounds like an ESS question. I suggest you ask in the ESS forum.

Similar Messages

  • Unable to retrieve the list of Standard Reports

    Hi,
    User needs an aging report in PW90 paper but gets an error message when clicking on to the report tab once logged into SAP portal.
    Error message:
    Unable to retrieve the list of Standard Reports. Please call the Help Desk to report the problem. Error encountered while connecting to R/3. java.lang.NullPointerException.
    I checked the java support in Internet explorer and deleted the cookies and temporary files but he kept having the same issue.
    Please Help on this !!
    Thanks in advance.

    Hi,
    Try to restart the portal server.
    Regards,

  • Unable to retrieve vendor list

    Hi , I am working with vc 7.1.1  my nwdi server is the same server and my sld server is 7.1
    I have configured vc to work with nwdi , but when I try to add a local dc to source control I get an error
    unable to retrieve vendor list .
    I have configued the name server on my sld server , but it does not help.
    any ideas.
    Regards ,
    Oren

    Hi Oren,
    This kind of error usually points that there is a communication problem with the NWDI server.
    That could be for one of the following reasons:
       1. Authentication problem (you do not have sufficient permissions)
       2. Name server is configured properly or not configured at all.
    You may also refer to the defaultTrace file and search for the exact exception, which will help you better understand the source of the problem.
    Thanks,
       Nati

  • Retrieving Sharepoint List Item Information for SAP Best Approach

    Hi
    We have a request for retrieving Sharepoint list item information to create DVS objects in SAP. Has anybody been doing something like that, getting information out of Sharepoint into SAP? What would the best approach for this be, as usually implementations are the other way around, i.e. getting data out of SAP into Sharepoint. I think that Duet Enterprise would be an overkill for this and also requires additional licenses.
    So I have been thinking using either a PI/Web Service using the Sharepoint WSDL to retrieve the information, or maybe there are also possibilities using WebDAV. There are some CL_HTTP_WEBDAV classes, but I am not sure whether and how they could be used for this.
    Does anybody have how-tos or examples for either approach? Feedback is much appreciated.
    Thanks,
    Daniel

    Without using a ridiculously long workflow (which even then may not work) I do not think this is feasible in a sharepoint list. A workflow can be used to alter other fields in an item but not incrementing items like you require. You would be better changing
    to data sheet view (quick edit in 2013) and changing them all manually then, or changing to terms such as priority high, low etc. Overall, no this is not really possible.
    Brendan Lee

  • Unable to Read Calendar List Items through CAML

    Hi All,
    * I have created two columns in calendar one Year and other Month.When new event is added in calendar through (Item Added) event receiver I am setting the values to this columns as Name of Month to(February) and Year as(2014)  .So that I can fetch the
    data easily based on month and year
    * Through this Columns Secondly when I try to fetch the data to count number of items of particular month and year using caml query I am getting error as below .
    "Error:One or more field types are not installed properly. Go to the list settings page to delete these fields."
    *My below caml code is working fine if i applied to custom list,But not to calendar.Can any one help me for what reason I am unable to fetch data
    Code
     string year="2014";
     string month="February";
     SPSite mysite = SPContext.Current.Site;
     SPWeb myweb = mysite.OpenWeb();
    SPList mylist = myweb.Lists["Calendar"];
     SPQuery myquery = new SPQuery();
      myquery.Query = @"<Where>
                                          <And>
                                           <Eq>
                                             <FieldRef Name='Year'/>
                                             <Value Type='Text'>" + year + @"</Value>
                                          </Eq>
                                          <Eq>
                                             <FieldRef Name='Month' />
                                             <Value Type='Text'>" + month + @"</Value>
                                          </Eq>
                                         </And>
                                      </Where>";
     SPListItemCollection totaltiems = mylist.GetItems(myquery);
      Label1.Text= "Total Number of Items is "+" "+totaltiems.Count.ToString();
    Thanks, Quality Communication Provides Quality Work. http://siddiq-sharepoint2010.blogspot.in/ Siddiqali Mohammad .

    Hi,
    According to your post, my understanding is that you got an error when read calendar list items using CAML.
    I created two single line of text columns in the Calendar( Year and Month), then add items in the Calendar to check with your code. The CAML query worked well as below.
    string year = "2014";
    string month = "February";
    using (SPSite oSiteCollection = new SPSite("Your site URL"))
    using (SPWeb myweb = oSiteCollection.OpenWeb())
    SPList mylist = myweb.Lists["Calendar"];
    SPQuery myquery = new SPQuery();
    myquery.Query = @"<Where> <And> <Eq> <FieldRef Name='Year'/> <Value Type='text'>" + year
    + "</Value></Eq><Eq>+ "
    + " <FieldRef Name='Month' />+ "
    + " <Value Type='text'>" + month + "</Value>+ "
    + " </Eq> </And></Where>";
    SPListItemCollection totaltiems = mylist.GetItems(myquery);
    Console.WriteLine( "Total Number of Items is " + " " + totaltiems.Count.ToString());
    Console.ReadLine();
    Which type of the two columns in your Calendar? Were they text type?
    Are you sure the field name(<FieldRef Name='Year'/>,
    <FieldRef Name='Month' />) is same as internal name?
    We should only use internal name while refrencing columns in CAML query. If you have space In you column , replace it with "_x0020_", such as
    News_x0020_Category. 
    Thanks & Regards,
    Jason 
    Jason Guo
    TechNet Community Support

  • Retrieve SharePoint List Item version with few columns only

    How to retrieve the version history of the list item in just a few columns just like what we can do with viewfields in spquery which return list item?
    Having performance problem when using splistitem.versions in a big list. When I show only the latest version, the page load much faster.
    teikboon

    Hi,
    According to your post, my understanding is that you had an issue about the version history.
    I couldn’t reproduce the issue in my environment, and I don’t think it’s a known issue.
    Per my knowledge, the version history contains information about when the item or file was changed, who changed it, and information about what was changed. In libraries, the version history might also contain comments written by the people who made changes.
    As you had said, you had seen an update to the value of the new column, did you see who changed it ? Maybe some had changed it.
    Could you reproduce the issue use the other lists? You can check with other lists to see whether it works.
    To quickly and accurately find the issue, I recommend you check with the ULS log to see if anything unexpected occurred.
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Unable to retrieve table list when trying to reverse

    Hi,
    I am trying to load source data which is coming from SQL Server into Oracle target database.
    When am trying to create model and reverse the source tables coming frm SQL Server it's giving me an error saying Cannot retrieve tables list.
    Do I need to configure anything?
    Any help is appreciated.
    Thanks,
    Adi

    Hi
    When am trying to test the conenction in Topology Manager, it's givine me an error
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sunopsis.dwg.dbobj.SnpMtxt.saveText(SnpMtxt.java)
         at com.sunopsis.dwg.dbobj.SnpConnect.saveText(SnpConnect.java)
         at com.sunopsis.graphical.frame.a.ji.bx(ji.java)
         at com.sunopsis.graphical.frame.bn.w(bn.java)
         at com.sunopsis.graphical.frame.bn.d(bn.java)
         at com.sunopsis.graphical.frame.w.actionPerformed(w.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: com.sunopsis.core.SecurityAccessException: com.sunopsis.core.SecurityAccessException: You are not authorized to Edit the Object:SNP_CONNECT : ORACLE_MD_BDO / 35006
         at com.sunopsis.dwg.DwgObject.setterSecurityControl(DwgObject.java)
         at com.sunopsis.dwg.dbobj.generated.GeneratedSnpConnect.setITxtJavaUrl(GeneratedSnpConnect.java)
         at com.sunopsis.dwg.dbobj.generated.GeneratedSnpConnect.setITxtJavaUrl(GeneratedSnpConnect.java)
         ... 33 more
    Do I need to configure anything?

  • How to send a list item value to URL to open data related to item value

    Hi,
    Iam using Apex4.0 and iam facing some problem. Iam unable to send selected list item value to the url specified in the HTMl region.
    Here i want to open the data related to list item value in other page.
    List item - :Familyp
    i want to pass this selected value to the url and when ever user selected the list item and clicks on the url, then it should display the item value related data in new page.
    I tried with &FamilyP in url but it's not working. Any one help me plz.
    Regards
    Vamsi.Tata

    Is it a normal Select list or Multi Select list?
    If you have select list that allows you to select multiple options then you cannot pass it through URL. Multi-select /Shuttle keep colon separated list in the item, and this confuses Apex because the Apex URL uses colons for a different purpose. No escaping or URL encoding will help.
    If it is normal select list that allows selection of only one option then you can pass through the url. Unless of course the data has a colon in it.
    For multi-select, and when the value contains colon, the only way is to save the value in session state, same page item or any other place like Application Item, and then reference it at the other end. Never pass through the URL.
    Regards,

  • Show list items in AngularJS ng-grid

    retrieving SharePoint list items by REST with
    var app = angular.module('myApp', ['ngGrid']);
    app.controller('MyCtrl', function ($scope, $http) {
    $http.get('http://whereever/_api/web/lists/getByTitle("Tasks")/items').success(function (data) {
    $scope.items = data;
    $scope.gridOptions = {
    data: 'items',
    columnDefs: [
    { field: 'Title', displayName: 'Title' },
    { field: 'Status', displayName: 'Status' }
    the ng-grid on
    <div ng-controller="MyCtrl">
    <div class="gridStyle" ng-grid="gridOptions"></div>
    </div>
    just shows nothing. A simple json example like 
    http://plnkr.co/edit/UndbtO?p=preview works. Is there any example showing me how to use a REST call on a SharePoint list and passing data to ng-grid?

    Hi Rajendra, thanks for your answer.
    the ng-app is included
    your link does not help because there is no
    angular ng-grid inside. The example uses expressions like
    {{customer.Title}} to show content. This works generally as a test that data is retrieved.
    But I got it to work with
    var myAngApp = angular.module('myApp', ['ngGrid']);
    myAngApp.controller('MyCtrl', function ($scope, $http) {
    $http({
    method: 'GET',
    url: "http://whereever/_api/web/lists/getByTitle("Tasks")/items",
    headers: { "Accept": "application/json;odata=verbose" }
    }).success(function (data) {
    $scope.items = data.d.results;
    }).error(function (data, status, headers, config) {
    console.log(status);
    $scope.gridOptions = {
    data: 'items',
    columnDefs: [
    { field: 'Title', displayName: 'Title' },
    { field: 'Status', displayName: 'Status' }

  • ACS View sometimes cannot retrieve server list

    Hi Guys,
    Sometimes our ACS View cannot retrieve our list of integrated ACS servers and it posts this error:
    ERROR - com.cisco.acsview.gui.actions.DataCollectionAction  - Unable to retrieve the list of servers
    com.cisco.acsview.viewapi.ViewUIException: Unable to retrieve the ACS Servers from DB
    Do you guys have any idea on how to go about this issue? Or shall I just go on ahead and re-image it
    regards,
    Adrian

    ODI uses a standard JDBC methods for reverse engineering tables/columns.
    It is possible that the method used in the Novell LDAP/JDBC driver is not following exactly the JDBC standard. What I would suggest is to try the "RKM Jython" provided in ODI, and eventually adapt it with the piece of code you have sent.

  • Retrieving list items from a specific view using CSOM

    How can I query a specific view of a SharePoint List using the C# CSOM? I am dealing with SharePoint Online, so the only option is to use SharePoint.Client.
    I have done this using Javascript, and I know how to do this with SharePoint On-Premises, but I haven't found a way to do with for SharePoint online using C#.

    hi Dkhouri,
    thanks for posting your issue, you can create a specific view of a list using CSOM and C#.
    Kindly find the code snippet below fort he same.
    Code for CSOM :- 
    // Starting with ClientContext, the constructor requires a URL to the
    // server running SharePoint.
    ClientContext context = new ClientContext("http:SiteUrl");
    // Assume the web has a list named "Announcements".
    List announcementsList = context.Web.Lists.GetByTitle("Announcements");
    // This creates a CamlQuery that has a RowLimit of 100, and also specifies Scope="RecursiveAll"
    // so that it grabs all list items, regardless of the folder they are in.
    CamlQuery query = CamlQuery.CreateAllItemsQuery(100);
    ListItemCollection items = announcementsList.GetItems(query);
    // Retrieve all items in the ListItemCollection from List.GetItems(Query).
    context.Load(items);
    context.ExecuteQuery();
    foreach (ListItem listItem in items)
    // We have all the list item data. For example, Title.
    label1.Text = label1.Text + ", " + listItem["Title"];
    For C# 
    public CamlQuery CreateInventoryQuery(string searchSku)
    var qry = new CamlQuery();
    qry.ViewXml =
    @"<View>
    <Query>
    <Where>
    <BeginsWith>
    <FieldRef Name='SKU' />
    <Value Type='Text'>" + searchSku + @"</Value>
    </BeginsWith>
    </Where>
    </Query>
    </View>";
    return qry;
    Also, checkout below mentioned URLs for more details
    http://www.c-sharpcorner.com/UploadFile/sagarp/sharepoint-2013-caml-query-for-item-id-with-jquery/
    http://msdn.microsoft.com/en-us/library/ff798388.aspx
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Unable to select the value from a list item in forms 6i

    Hi ,
    I'am using forms 6i. I have created a list item in my form as below.
    Item_type = list item
    list style - popup list
    elements in list - A, B, C,D
    When I open the form all the above values are displayed for the list item. But I'am unable to select the item( either A,B,C,D).
    Please let me know if I need to add any thing else programatically to acheive this. The block on whixh these values are diplayed is a datablock.
    This is very urgent. Any suggestions would be of great help.
    Thanks
    Deepthi

    If you have a list item where you have:
    Display A value 1
    Display B value 2
    Display C value 3
    Display D value 4
    If want to initial the value of the item to be A, you can set the initial value of the item to 1 in the property pane.
    Otherwise in an initialisation triger have
    :block.list_item := 1;
    HTH
    Tony

  • Retrieve list items from the textbox text value and display the dropdownlist item for that particular list item

    hi,
     I have created a custom list in my sharepoint :
    List1 name:   employeedepartment  -
                   Title       empdepartment
                   A             D1
                   B             D2
                   C             D3 
    List2  name:  employeedetails  
     emptitle            empname       empdepartment(lookup) --> from the list "employeedepartment"
       x                     Ram                 D1
       y                     Robert             D2
       z                     Rahim              D3
    My task is to create a custom webpart that will be for searching this employee details by entering emptitle
    For this, i have created a visual webpart using visual studio 2010, my webpart will be like this:
    emptitle  --->  TextBox1                        Button1--> Text property : Search
    empname---> TextBox2
    empdepartment-->  DropDownList1
    For this, i wrote the code as follows:
    protected void Button1_Click(object sender, EventArgs e)
                using (SPSite mysite = new SPSite(SPContext.Current.Site.Url))
                    using (SPWeb myweb = mysite.OpenWeb())
                        SPList mylist = myweb.Lists["employeedetails"];
                        SPQuery query = new SPQuery();
                        query.Query = "<Where><Eq><FieldRef Name='Title'/><Value Type='Text'>" + TextBox1.Text.ToString() + "</Value></Eq></Where>";
                        SPListItemCollection myitems = mylist.GetItems(query);
                        if (myitems.Count > 0)
                            foreach (SPListItem item in myitems)
                                string a1 = Convert.ToString(item["empname"]);
                                string a2 = Convert.ToString(item["empdepartment"]);
                                TextBox2.Text = a1;           // displaying   properly                    
                                //DropDownList3.SelectedIndex = 1;                           
     It is showing the list item in textbox according to the item entered in the textbox1... But I am stuck to show in the dropdown list. 
    Suppose, if i enter X in textbox and click on search, then dropdownlist need to show D1,
                               for Y --> D2 and for Z-> D3... like that.
    What code do i need to write in the button_click to show this... 
    Please don't give any links...i just want code in continuation to my code.

    Hi,
    Since you have got the data you want with the help of SharePoint Object Model, then you can focus on how to populate values and set an option selected in the Drop Down List.
    With the retrieved data, you can populate them into the Drop Down List firstly, then set a specific option selected.
    Here is a link will show how to populate DropDownList control:
    http://www.dotnetfunda.com/articles/show/30/several-ways-to-populate-dropdownlist-controls
    Another link about select an item in DropDownList:
    http://techbrij.com/select-item-aspdotnet-dropdownlist-programmatically
    Best regards
    Patrick Liang
    TechNet Community Support

  • Retrieve List Items based on condition in Where Clause

    Hello Experts,
     I am trying to retrieve list items from a list (CityList)  which contains 2 columns one is city(string) and State(Lookup) based on Lookup value, but i am getting all city names.
    here is my query below.
    function MainFunction() {
            var lookupid = 5;
            var myQueryString = "<Where><Eq><FieldRef Name='State' LookupId='true' /><Value Type='Lookup'>"+lookupid+"</Value></Eq></Where>";
            var myContext = new SP.ClientContext.get_current(); ;
            var myWeb = myContext.get_web();
            var myList = myWeb.get_lists().getByTitle("CityList");
            var myQuery = new SP.CamlQuery();
            myQuery.set_viewXml(myQueryString);    
            myItems = myList.getItems(myQuery);
            myContext.load(myItems, 'Include(Title)'); 
            myContext.executeQueryAsync(Function.createDelegate(this, GetListDataSuccess), Function.createDelegate(
    this, GetListDataFail));
        function GetListDataFail(sender, args) {
            // Show error message
            alert('GetListDataFail() failed:' + args.get_message());
        function GetListDataSuccess(sender, args) {
            var currListItemCount = myItems.get_count();       
            var currItemEnumerator = myItems.getEnumerator();
            var currItemDetails = '';       
            while (currItemEnumerator.moveNext()) {          
                var currItem = currItemEnumerator.get_current();          
                 currItemDetails = currItemDetails + ';' + currItem.get_item("Title");
            // Show details 
            alert(currItemDetails); 
    Please suggest where i am wrong. 
    Thank you
    saroj

    You need to enclose the <Where> tag inside <View><Query> . Try like below
    var myQueryString = "<View><Query><Where><Eq><FieldRef Name='State' LookupId='TRUE' />
    <Value Type='Lookup'>"+lookupid+"</Value></Eq></Where></Query></View>";
    Geetanjali Arora | My blogs |

  • List Item - Retrieve  occurances of pattern entered

    Hi,
    In Oracle Developer 10g, is it possible in list items (combo box style) to retrieve the first occurrence of the entered pattern automatically while typing down letter by letter. We can do this in a LOV . Please help
    May

    Hello,
    I don't think there is someting native for this.
    Francois

Maybe you are looking for

  • Saving a PDF on an iPad

    When filling out a PDF in Adobe reader on my iPad the checkboxes are visible but the words I typed in are not visible when I save the PDF. When I e-mail the PDF both words and checkboxes are visible to the recipient. How do I get everything to be vis

  • Kernal Panic - iMac G5 - 10.3

    Hi, On my iMac G5, running panther I get this When using Apple Mail sometimes when I open it the screen goes fuzzy and after a minute or so a kernal panic occurs. When I reboot all my mail is set to unread! Any suggestions on what to do? Thanks a lot

  • BPM Task payload namespace issue while modifying from ADF UI

    Hi, In my BPM process, I have the below tasks. 1. Input task - user input form 2. Review task - to review the user input values I have created the UI for the above tasks through Auto-generate forms. Before invoking Input task, I have created a transf

  • Issues with BBC website video + Audio

    I've been having issues using the video and audio content on the BBC website for a few months, it's started to get really annoying so I thought I would ask and see if anyone has a solution. First I have uninstalled and reinstalled Flash, repaired per

  • Problem with broadband

    as recent i notice itself upgrade to 20mb from 8mb option 3 i have it only broadband no phone as i am deaf so i have stable 7.5 mb and it great never went down at all as i am near at the exchanged however it upgraded itself to 20mb and i notice it fa