SMP 2.3 Issue on choice field

iam working on hybrid app in SMP 2.3.
i have some issue on  it .
i run the app first time select the choice field it will show at  empty after click on outer space and then click the choice field again it shows the data
but my need is first time to select the choice field it shows the data pls help its urgent
i need  some documents on SMP 2.3

Hi Mani,
are you sure this is question is about SAP Mobile Documents? What product is SMP?
Best regards,
Peter

Similar Messages

  • Answer and Title for 'Other' field in a single choice field is not shown

    The answer for 'Other' in a single choice field is not shown in email answer and 'Other' title not shown in FormsCentral answer.
    I can send examples if that helps.

    Hi Cathy-1961,
    Thanks for using FormsCentral.
    We are looking into the issues that you reported.  I'll let you know when we address the issues.
    Kind Regards,
    Perry

  • Additional Item Added to InfoPath Choice Field Missing from Designer

    I have an InfoPath 2013 form submitting back to a SharePoint 2010 Forms library.  I had published the form, promoting the various fields, and everything was working properly.  I then needed to add an additional option to two different choice fields. 
    I added them in InfoPath, re-published the form and the options are available and selectable when I use the form.  They show up in the SharePoint forms library on submit. 
    I'm now building a workflow for this library and I'm trying to add a condition that uses the added item (Global) from one of the choice fields (Region).  It is not showing as an option.  I've refreshed the list and workflow in SP Designer. 
    I've re-published the form from InfoPath.  I've cleared the cache for SP Designer, InfoPath and Internet Explorer.  I have never had this happen before and have no idea how to fix.  Suggestions?  Thanks in advance for any help!
    Here is what is in the InfoPath form:
    And here is what is in SharePoint Designer:

    Hi,
    I have done a test. I can re-appear your issue.
    Refer to the following:
    I published the form to SharePoint 2010 Forms library, the type of the Region column is a “single line of text”.
    Then I automatically changed the type of the Region column to “choice” and added the options to the choice filed.
    After add an additional option to the choice fields(Region) in InfoPath, I re-published the form to SharePoint 2010 Forms library. when I click new document,
    the new added option showed up in the SharePoint forms library on submit, but It is not showing as an option in SharePoint Designer.
    I found the choice column Region didn’t update the new added option, I need to add it
    automatically. Then It will showing as an option in SharePoint Designer.
    For your issue, Go to Library Settings->edit “Region” column->add the value(Global) choice into the column.
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Responses aren't accurate.. Multiple Choice Field

    I need some guidance/help.  I am using 'Multiple Choice Field's in FormCentral and I have inspectors completing forms and submiting responses.  The issue is, if they make a choice selection and then change it, any and all changed come through to the responses, not just the one(s) they had selected at the time of submission.  I can not have accidently selected items that where changed before submission coming through as if it were still selected.

    Could you please add me as a Co-author to your form so I can take a look at it?  My account is [email protected]
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Read selected values from a multi choice field programatically using Microsoft.SharePoint.Client namespace.

    All examples I found refer to classes under Microsoft.SharePoint namespace. However, I have the SharePoint CSOM that only gives me the Microsoft.Sharepoint.Client namespace.
    I need to read the selected values of a multichoice field, but not sure how to do it with classes in the namespace above.
    everthing works, exept the TSQL_x0020_Reference_x0020_Numbe field.
    my code looks like this:
    Webweb = cont.Web;
                cont.Load(web);
                cont.ExecuteQuery();
    Listsstest = web.Lists.GetByTitle("T-SQL
    Code Review Tracking");
    //CamlQuery query = CamlQuery.CreateAllItemsQuery();
    CamlQueryquery =
    newCamlQuery();
                query.ViewXml =
    @"<View>
                               <ViewFields>
                                    <FieldRef Name='Category'/>
                                    <FieldRef Name='Review_x0020_Type'/>
                                    <FieldRef Name='Review_x0020_Start_x0020_Date'/>
                                    <FieldRef Name='Title'/>
                                    <FieldRef Name='Location'/>
                                    <FieldRef Name='Project'/>
                                    <FieldRef Name='Author0'/>
                                    <FieldRef Name='AssignedTo'/>
                                    <FieldRef Name='TSQL_x0020_Reference_x0020_Numbe'/>
                                </ViewFields>
                             </View>"
     ListItemCollectionitems
    = sstest.GetItems(query);
                cont.Load(items);
                cont.ExecuteQuery();
    foreach(ListItemitem
    initems)
                    Output0Buffer.AddRow();
                    Output0Buffer.ReviewStatus = item.FieldValues[
    "Category"] !=
    null? item.FieldValues["Category"].ToString()
    : String.Empty;
                    Output0Buffer.ReviewType = item.FieldValues[
    "Review_x0020_Type"] !=
    null? item.FieldValues["Review_x0020_Type"].ToString()
    : String.Empty;
                    Output0Buffer.ReviewDate =
    DateTime.Parse(item.FieldValues["Review_x0020_Start_x0020_Date"].ToString());
                    Output0Buffer.Module = item.FieldValues[
    "Title"] !=
    null? item.FieldValues["Title"].ToString()
    : String.Empty;
                    Output0Buffer.BranchLocationURL = item.FieldValues[
    "Location"] !=
    null? item.FieldValues["Location"].ToString()
    : String.Empty;
                    Output0Buffer.ProjectName = item.FieldValues[
    "Project"] !=
    null? item.FieldValues["Project"].ToString()
    : String.Empty;
                    Output0Buffer.Author = item.FieldValues[
    "Author0"] !=
    null? item.FieldValues["Author0"].ToString()
    : String.Empty;
    FieldLookupValueflvAssignedTo =
    newFieldUserValue();
                    flvAssignedTo = item.FieldValues[
    "AssignedTo"]
    asFieldLookupValue;
    if(flvAssignedTo !=
    null)
                        Output0Buffer.AssignedTo = flvAssignedTo.LookupValue;
    varv = item.FieldValues["TSQL_x0020_Reference_x0020_Numbe"];
    if(v !=
    null)
                        Output0Buffer.Reason2 = v.ToString();
                 Output0Buffer.SetEndOfRowset();           

    Hi,
    According to your description, my understanding is that you want to read the selected choice field value using Client Object Model.
    In my environment, I create a list with a mutichoice fileld named "choice" and then I used the code snippet below to get the selected value in choice field.
    ClientContext clientContext = new ClientContext("http://sp2013sps/sites/test1");
    Microsoft.SharePoint.Client.List spList = clientContext.Web.Lists.GetByTitle("list1");
    clientContext.Load(spList);
    clientContext.ExecuteQuery();
    if (spList != null && spList.ItemCount > 0)
    Microsoft.SharePoint.Client.CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View>
    <ViewFields><FieldRef Name='choice' /></ViewFields>
    </View>";
    ListItemCollection listItems = spList.GetItems(camlQuery);
    clientContext.Load(listItems);
    clientContext.ExecuteQuery();
    string value = listItems[0]["choice"].ToString();
    Console.WriteLine(value);
    Console.ReadKey();
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • I created a form with Single Choice fields, 4 days with times listed. But, I want the user to only be able to choose one time, and the time chosen to be unavailable for other users. How do I do this?

    I created a form with Single Choice fields, 4 days with times listed. But, I want the user to only be able to choose one time, and the time chosen to be unavailable for other users. How do I do this? I have 4 blocks of Single Choice fields in order for the summary page to give me each day in the final report. But, I need the user to be able to make a selection of any day and time and that apointment to no longer be available to future users when they log in. Plus, when the user clicks on the time, they are unable to change their mind and choose another time. Here's the link if you want to see what I'm talking about: 2015-2016 Workload Apportionment Review

    I'm afraid not.    It's not rocket science but you need to do some coding. 
    You'll need to find a script (php) and save it to your local site folder.  Then reference the script in your form's action attribute like so.
         <form action="path/form-to-email-script.php" >
    The input fields in your HTML form need to exactly match the script variables. 
    I'm  assuming you're hosted on a Linux server which uses PHP code.  Linux servers are also case sensitive, so upper case names are not the same as lower case names.  It's usually best to use all lower case names in your form and script to avoid confusion.
    Related Links:
    Formm@ailer PHP from DB Masters
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    If this is all a bit beyond your skill set, look at:
    Wufoo.com (on-line form service)
    http://wufoo.com/
    Nancy O.

  • Making a selection from a Choice Field and having Another Set of Selctions Avaiable to Select in a Form

    Hello,
    I am creating and food menu form and some of the selections have a 'combo' option.  I have created a Choice field Column with the menu items available and when say Veggie Melt is selected I'd like to have it then display the combo options for the
    Veggie Melt item.  Is this possible?
    Thank you!
    Joan

    Cascading Drop Down in a Lists is not possible out of the box, with my best knowledge.
    Please refer - https://social.technet.microsoft.com/Forums/sharepoint/en-US/7c06adb6-08e9-4222-8f35-b662ca9fac5c/cascading-drop-down-lists?forum=sharepointgeneral
    Custom product or javascript can help - https://spcd.codeplex.com/
    Regards Sudip Misra [email protected] +1-412-237-5435 Pittsburgh, PA

  • Issue After Rating field is added to the Discussion Board List in SharePoint 2013

    Hi ,
    We are facing issues After Rating field is added to the Discussion Board List in SharePoint 2013. We are getting below error while adding a new item or editing a new item. Please help on this.
    Ashish Kumar Baranwal

    Users which were getting issues actually getting below error:
    [COMException (0x81020014): One or more field types are not installed properly. Go to the list settings page to delete these fields.<nativehr>0x81020014</nativehr><nativestack></nativestack>]
       Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID,
    String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress,
    Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +0
       Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String&
    pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration,
    Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +565
    [SPException: One or more field types are not installed properly. Go to the list settings page to delete these fields.]
       Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) +146
       Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String&
    pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin, Boolean bUnRestrictedUpdateInProgress, Boolean bMigration,
    Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) +2336
    Ashish Kumar Baranwal

  • Workflow to set a choice field on the fly

    Is it possible for a list workflow to execute on the fly as conditions are met before Save is pressed?
    Example: list has two choice columns. Col1 has choices A, B, C. Col2 has choices 1, 2, 3
    Workflow is created so that if user chooses A in Col1, then Col2 will get automatically set to 1. The problem is that Col2 only gets set to 1 when the user Saves the new item and refreshes the page. I want Col2 to get set to 1 on the fly as soon as
    the user sets Col1 to A. is this possible using workflows? If not, is it possible any other way in SharePoint 2010.
    Thanks... Mike
    Note: Col2 is not a Calculated field because if A is not chosen in Col1, the user needs to be free to choose 2 or 3 in Col2. Thus it needs to be a Choice field.

    SPD workflows consist of actions and triggers. You can combine as many triggers as you need but be aware the default condition is an OR clause, not an AND clause.
    You can also set workflows to trigger on item edit, not just item creation.  You'd want to use a few pause steps to finetune the workflow but what you want to achieve is possible.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to update SharePoint list columns including choice fields programmatically?

    Hi All,
    I have a requirement to update multiple columns (which are choice columns) in a SharePoint list.  I'm a newbie at creating event receivers and timer jobs.  Not sure which one to do and where to start first.  There are approximately 4500
    list items in the lists.  I was thinking I could use one list to maintain the Keywords and perform updates or timer job to any targeted lists. 
    Scenario.  Anytime a power user of the sharepoint list wants to update any of the choice field items or possibly even the column name itself, they want to be able to make updates to any of the list
    items or other
    lists that contain the new name.  The columns I'm using are all choice fields named Assigned To, Division, Region, Job Title, Department, and Zone.
    Here's sample code for Updating list:
     using     (SPSite oSPsite = new SPSite("team url/"))   
     using     (SPWeb oSPWeb = oSPsite.OpenWeb())         
     oSPWeb.AllowUnsafeUpdates =   true;          
     // get the List                
     SPList list = oSPWeb.Lists["Keywords"];        
     //Add a new item in the List                
     SPListItem itemToAdd = list.Items.Add();               
     itemToAdd["Title"] = "My Title Field";               
     itemToAdd["Assigned To"] = "Assigned To";               
     itemToAdd.Update();          
     // Get the Item ID               
     listItemId = itemToAdd.ID;          
     // Update the List item by ID                
     SPListItem itemToUpdate = list.GetItemById(listItemId);               
     itemToUpdate["Assigned To"] = "Assigned To Updated";               
     itemToUpdate.Update();          
     // Delete List item                
     SPListItem itemToDelete = list.GetItemById(listItemId);               
     itemToDelete.Delete();                   
     oSPWeb.AllowUnsafeUpdates =   false;         
    Any help is greatly appreciated.  Please provide code sample and references.  Thanks!

    Thanks Ramakrishna -- Here's what I have so far.
    namespace MonitorChanges
            class MyTimerJob : SPJobDefinition
                public MyTimerJob()
                    : base()
                public MyTimerJob(string sJobName, SPService service, SPServer server, SPJobLockType targetType)
                    : base(sJobName, service, server, targetType)
                public MyTimerJob(string sJobName, SPWebApplication webApplication)
                    : base(sJobName, webApplication, null, SPJobLockType.ContentDatabase)
                    this.Title = "My Custom Timer Job";
                public override void Execute(Guid contentDbId)
                    // Get the current site collection's content database           
                    SPWebApplication webApplication = this.Parent as SPWebApplication;
                    SPContentDatabase contentDb = webApplication.ContentDatabases[contentDbId];
                    // Get a reference to the "ListTimerJob" list in the RootWeb of the first site collection in the content database           
                    SPList Listjob = contentDb.Sites[0].RootWeb.Lists["ListTimerJob"];
                    // Add a new list Item           
                    SPListItem newList = Listjob.Items.Add();
                    newList["Title"] = DateTime.Now.ToString();
                    newList.Update();
    Talibah C

  • How to set Mandatory Choice field while Creating Custom Task using Sharepoint Designer 2007

    Hi,
    I am new to Sharepoint development.I dont know whether i am posting  the question in Correct place.Kindly redirect me to the correct place if i am posting it in wrong place.
    I  created a custom task in Sharepoint Designer 2007 using
    Collect Data from User
    Action.
    I created a field in the task form which is of choice type and
    unchecked allow blank values
    because i  wanted that field to be a mandatory field.When i handled that task ,i was able to complete that task
    without selecting that mandatory field.But, I was expecting not to allow me to complete the task without selecting that field. Kindly  tell me how to set the choice field as mandatory.

    Hi,
    You are using SharePoint Designer 2007, so I moved the thread to the appropriate forum for MOSS 2007.
    This is by design that
    Workflow-generated form (for action Collect data from User) does not perform validation properly on drop-down choices, the workaround is to use JavaScript to perform the field validation.
    This thread has the JavaScript code can help you:
    http://social.msdn.microsoft.com/forums/en-US/sharepointworkflow/thread/0ad7fc3c-97a1-464e-ae89-c3133462dda8/
    Xue-Mei Chang

  • Input Masks and Single Choice Fields (drop down menu) Suggestions

    Here's a few suggestions - I hope this is the right place to post these...
    1. I would like to suggest a pre-filled state single choice field (drop down menu) to be used to get address information.  Or better yet a way to import a csv file to fill the preset fields for an option box.
    2. Input masks that force users to enter the data in the format you prefer.  (000) 000-0000
    3. Ability to enable or disable options depending on other choices.
    4. Option for a list of numbers say 1 thru 100 and as people pick a registration (car number in my case) that choice cannot be picked again by another user for that form.  Load values from a table that can be picked several times or only once could work in both my suggestions.
    Thank You.

    Hello there,
    Thanks for these thoughts! They're all really good (and welcome) suggestions for additions to the FormsCentral service. As you might imagine, we're busily working back here to implement new features; we have big plans for FormsCentral. For these suggestions in particular, I'll do two things:
    1. Send these suggestions to the product team and get them added to the to-do list!
    2. Move the whole thread here into the FormsCentral Ideas sub-forum. That way, your suggestions will be noted as such and well-documented on our end.
    Thanks for the great ideas; let us know if you have any more feedback for us!
    Best regards,
    Rebecca
    Acrobat Services Community Manager

  • Sharepoint designer workflow: condition on multiple choice field

    Hello,
    basically I want a set of actions based on the selection of a user saved in a multiple choice field.
    For instance, the column named "Choices" has the possible values:  Car, Bike, Bus, Plane 
    So i want a condition to check for the values that were selected (in pseudocode)
    IF Choices contains "Car" then ....
    IF Choices contains "Bike" then ....
    IF Choices contains "Bus" then ....
    IF Choices contains "Plane" then ....
    But in the designer when i tried to implement such a condition, im not able to write this structure.
    I can select the column in the if clause but then i can only select "equals" and "not equals" instead of "contains"
    Moreover, the when I choose the related string as value it is not saved.
    How can I implement this (normally simple condition) in SharePoint designer?

    Hi
    use a calculated column, to set deppending on your chocie column with IF statement , next use that new calculated column in your next steps
    http://msdn.microsoft.com/en-us/library/office/bb862071%28v=office.14%29.aspx
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.
    I cannot even reference a multiple choice field in a calculated column. A workflow to copy the vlaue does not help neiter:
    Multiple Value Column                       Text Column
    Auto,Roller,Motorrad,LKW   ->   
    {"__metadata":{"type":"Collection(Edm.String)"},"results":["Auto","Roller","Motorrad","LKW"]}

  • Own choice field in find page

    I would like to use a dynamic (from database table) choice field in a find page. How can I do this manualy on most easy way with JHeadstart framework, because I can see JAG doesn't generate them?

    You could add a hardcoded choice field to your find page, and create your own DataAction java class to deal with the selected value.
    Are you generating JSP or UIX?
    And can you explain a little more about the functional requirement? Do you want to show a choice field with values from a table that is not directly related to the data you are searching in that page? How should it influence the search? Can you give an example based on the HR schema?
    kind regards,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • Custom content type and choice field

    Hi,
    I try to create costum content type in visual studio, and I want to add choice field to this content type, but I didn't found, how can I programmatically fill choice datasource
    Can anyone help me?
    Thanks,
    Mykie

    I've only done this one but I seem to recall packaging these up as XML as normal columns and sompl referenced them in the Content type definition.  Having had a quick look on the inertubes for a refresher, I think this might point you in the right direction.
    http://www.skylinetechnologies.com/Blog/Article/76/Creating-Lists-in-SharePoint-Using-Visual-Studio-2012.aspx
    Something like this should be your end product.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

Maybe you are looking for

  • How To Perform Parallel UPDATE When Trigger is ENABLE On Table.

    select *from v$version; BANNER Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production PL/SQL Release 11.1.0.7.0 - Production CORE    11.1.0.7.0      Production TNS for Linux: Version 11.1.0.7.0 - Production NLSRTL Version 11.1.0

  • Grant debug connect session to user

    I understand that if DBA hasn't granted following option to "user" following way: grant debug connect session to user;, then "user" wil lget following error when she tries to debug: ORA-0131:Insufficient Priviledges Debugging requires Debug connect s

  • Adobe document service configuration

    Hello, We are in the process of configuring adobe document service and having issues in configuring credentias Background: Web AS Java 640 only Steps we have followed: 1. Have installed adobe document service 2. creating user for basis authentication

  • Why can't I save pictures off the Internet after downloading ios 6?

    Ever since I installed ios 6 I have not been able to save pictures off the Internet. When I 'Save photo', it does not save anywhere. Unless it now saves to a new spot I am unaware of? It's not in my 'Photos' section. Anyone have any ideas what this i

  • S20 Audio Stutter / DPC Latency...can't fix it. Need help!

    Hi everyone, I recently (last week) bought a Lenovo S20 (Xeon W3520 with memory upgrade to 6GB). I mainly use this workstation as a DAW for audio recording / editing. Instead of the preinstalled Windows XP (32bit) and the Vista Business that comes wi