Create new lists at OPK8

Hello All.
Could you please help me in order to create a new list at OPK8 tcode?
I've tried to do this by using F5 option but system gives me the message "enter a valid value" . Even when I try to create a copy from an existing list.
Do you have any idea of how to solv this.
Thanks in advance.

Hi,
For that need, you can maintain specific forms based on plant and order type, so even though the list is the same, you can call different forms.
I would suggest first spend a few moments with OPK8 to understand the setup, if you face any issues, then do revert.
Also the method of assigning, creating is discussed in this forum, so just do a search with OPK8 & you will get the details.
At the end if you need any specific support do revert, will try to be of the best help possible.
Regards,
Vivek

Similar Messages

  • I don't have a "create new list" button in the reminder list when i press edit

    I tried to create a new reminder list, I open the reminder app, under Lists, i pressed the 3 bar symbol on the upper right hand corner, then i pressed edit, but there is neither the delete button () nor the  "create new list" button. Can someone tell me how to get the create new list button?

    I had that problem too!
    Do you have a hotmail account that you have connected to?
    Because I do and I couldn't make a new reminder list!!
    But I fixed it by going to settings and going to mail, contacts and calendar and then under "accounts" i went to Mail and then slided the little dot for reminders to off.
    This fixed it for me, hopefully for you too! 

  • I can't create new lists in reminders

    I've recently got an iPhone 4S and I've been trying to add a new list to reminders and edit one of the existing ones but I've been unsuccessful so far. I've followed the instructions from the user's manual and everything seems fine until the very end, I do get to the stage where I can tap the Edit button but then nothing happens when I tap the name of the existing list to edit it. Any ideas how I could resolve this issue are much appreciated! Thanks.

    Hi,
    Thanks for your answer. I can edit the contents just fine, the problem is with creating/editing/deleting lists. Since you mention 'tapping edit then "Create New List"', I think that's where part of the problem lies because I can't create a new list. When I tap 'Edit', I can see my existing (pre-defined) lists but there is no "+" button or a "Create New List" button. I can't tap the lists, nothing happens and no red circle with a horizontal line appears.
    Incidentally, I can't change the names of the pre-defined calendars either but I've sort of managed to bypass that problem by syncing the iPhone with iTunes and importing my calendar from iCal.
    Do you think I should take it back to the shop or is there any other way I could resolve this issue?
    Thanks

  • Create New List Item

    I am getting an error each time I try to run this code and get the error message "There was a problem submitting your answers. Please try again later."I have looked at this for so long now I am not sure if I am missing something or what. I have referenced SPServices and jquery and it is working correctlyI am trying to make a crossword using some code I found online and I followed it andstill get this error. // Create an object to associate each SharePoint column with the class name used for the input and the user's response for that column
    var responses = {
    "oneAcross": {
    "selector": "one-across",
    "column": "OneAcross",
    "answer": ""
    "oneDown": {
    "selector": "one-down",
    "column": "OneDown",
    "answer": ""
    "twoDown": {
    "selector": "two-down",
    "column": "TwoDown",
    "answer": ""
    "threeDown": {
    "selector": "three-down",
    "column": "ThreeDown",
    "answer": ""
    "fourAcross": {
    "selector": "four-across",
    "column": "FourAcross",
    "answer": ""
    // Create the batchCmd variable that will be used to create the new list item
    var batchCmd = '<Batch OnError="Continue"><Method ID="1" Cmd="New">';
    // Concatenate values of each response input by iterating over the object representing the responses
    $.each( responses, function() {
    // Cache the current item in the responses object.
    var $response = this;
    // For each input in the crossword associated with the current response object, get the values and save them in the answer property.
    $( '.' + $response.selector ).each( function() {
    $response.answer += $( this ).val().toLowerCase();
    // Add the response to the batchCmd
    batchCmd += '<Field Name="' + $response.column + '"><![CDATA[' + $response.answer + ']]></Field>';//Create a new list item on the destination list using the batchCmd variable
    $().SPServices({
    operation: "UpdateListItems",
    async: true,
    webURL: "http://operations.home.blah.com/sites/EIS/SEEIS/SSC/Lists/",
    listName: "Crossword",
    updates: batchCmd,
    completefunc: function( xData, Status ) {
    // If the AJAX call could not be completed, alert the user or include your own code to handle errors.
    if ( Status !== "success" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    else {
    // If there was an error creating the list item, alert the user or include your own code to handle errors.
    if ( $( xData.responseXML ).find( 'ErrorCode' ).text() !== "0x00000000" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    // if the list item was successfully created, alert the user and navigate to the Source parameter in the URL (or to a URL of your choosing).
    else {
    alert( "Your answers were submitted successfully! Click OK to continue." );
    if ( window.location.href.indexOf( "Source=" ) !== -1 ) {
    var url = window.location.href.split( "Source=" )[1].split( "&" )[0];
    window.location.href = url;
    else {
    window.location.href = "/";

    When I look at the demo on the page it fires the same response as that is part of the error handling because it is a standalone HTML and not on a sharepoint server so I am wondering if something I am missing on the submit.click function or batchcmd. 
    I included the entire code for it to see if maybe you can see something I am not.  My crossword is on a Sharepoint Server
    $( '#crossword-submit' ).click( function( event ) {
    // If you decide to use a hyperlink instead of a button input, this will prevent
    //the hyperlink from actually navigating away from the page or to an anchor.
    event.preventDefault();
    // Disable the button so the user can't click it again and submit the answers more than once.
    $( this ).prop( 'disabled', true );
    // Prevent submission if the crossword isn't completed.
    if ( $( '#crossword' ).find( 'input' ).filter( function() { return $( this ).val() === ""; }).length !== 0 ) {
    alert( "You have left some answers blank. Please complete all answers before submitting." );
    $( this ).removeProp( 'disabled' );
    return false;
    // Confirm that the user wants to submit their answers.
    var confirmResponse = confirm( "Are you sure you are ready to submit your answers? Once submitted they cannot be changed.\n\nClick OK to continue or Cancel to review your answers." );
    if ( confirmResponse === false ) {
    $( this ).removeProp( 'disabled' );
    return false;
    // Create an object to associate each SharePoint column with the class name used for the input and the user's response for that column
    var responses = {
    "oneAcross": {
    "selector": "one-across",
    "column": "OneAcross",
    "answer": ""
    "oneDown": {
    "selector": "one-down",
    "column": "OneDown",
    "answer": ""
    "twoDown": {
    "selector": "two-down",
    "column": "TwoDown",
    "answer": ""
    "threeDown": {
    "selector": "three-down",
    "column": "ThreeDown",
    "answer": ""
    "fiveDown": {
    "selector": "five-down",
    "column": "FiveDown",
    "answer": ""
    "sixDown": {
    "selector": "six-down",
    "column": "SixDown",
    "answer": ""
    "sevenDown": {
    "selector": "seven-down",
    "column": "SevenDown",
    "answer": ""
    "eightDown": {
    "selector": "eight-down",
    "column": "EightDown",
    "answer": ""
    "fourAcross": {
    "selector": "four-across",
    "column": "FourAcross",
    "answer": ""
    "nineAcross": {
    "selector": "nine-across",
    "column": "NineAcross",
    "answer": ""
    "tenAcross": {
    "selector": "ten-across",
    "column": "TenAcross",
    "answer": ""
    "elevenAcross": {
    "selector": "eleven-across",
    "column": "ElevenAcross",
    "answer": ""
    "twelveAcross": {
    "selector": "twelve-across",
    "column": "TwelveAcross",
    "answer": ""
    // Create the batchCmd variable that will be used to create the new list item
    var batchCmd = '<Batch OnError="Continue"><Method ID="1" Cmd="New">';
    // Concatenate values of each response input by iterating over the object representing the responses
    $.each( responses, function() {
    // Cache the current item in the responses object.
    var $response = this;
    // For each input in the crossword associated with the current response object
    //, get the values and save them in the answer property.
    $( '.' + $response.selector ).each( function() {
    $response.answer += $( this ).val().toLowerCase();
    // Add the response to the batchCmd
    batchCmd += '<Field Name="' + $response.column + '"><![CDATA[' + $response.answer + ']]></Field>';
    // Close the batchCmd variable
    batchCmd += '</Method></Batch>';
    // Create a new list item on the destination list using the batchCmd variable
    $().SPServices({
    operation: "UpdateListItems",
    async: true,
    webURL: "http://operations.homestead.abc.com/sites/EIS/SEEIS/SSC/Lists/",
    listName: "Crossword",
    updates: batchCmd,
    completefunc: function( xData, Status ) {
    // If the AJAX call could not be completed, alert the user or include your own code to handle errors.
    if ( Status !== "success" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    else {
    // If there was an error creating the list item, alert the user or include your own code to handle errors.
    if ( $( xData.responseXML ).find( 'ErrorCode' ).text() !== "0x00000000" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    // if the list item was successfully created, alert the user and navigate
    //to the Source parameter in the URL (or to a URL of your choosing).
    else {
    alert( "Your answers were submitted successfully! Click OK to continue." );
    if ( window.location.href.indexOf( "Source=" ) !== -1 ) {
    var url = window.location.href.split( "Source=" )[1].split( "&" )[0];
    window.location.href = url;
    else {
    window.location.href = "/";
    </script>

  • Read contents of excel and create new List based on excel

    HI,
    I have a excel file, which is uploaded in a document library. I am using C# and VS 2010.
    The excel file contains multiple sheets. I want to read the contents of the excel file and create a new List based on the contents of the excel file.
    How to achieve this programmatically?
    Thanks

    Hi.
    You can user OpenXML SDK to read excel Data.
    http://msdn.microsoft.com/en-us/library/office/bb448854.aspx
    Here an example of use.
    http://zsvipullo.blogspot.it/2011/08/excel-helper-leggere-un-file-xlsx.html
    Regards,
    Bubu
    http://zsvipullo.blogspot.it
    Please mark my answer if it helped you, I would greatly appreciate it.

  • Cant create new list in reminders

    I cannot create a new list in reminders (iphone5).  There are lists for each of my email accounts, but I cannot create a new one.

    What happens when you try? Describe the steps you're taking.

  • Mailman cannot create new list

    In OS X Server 10.4.x, for some reason creating a new list for an existing virtual domain results in "Error: Unknown virtual host: <domain>".
    This domain exists and existing lists can be updated, but the creation new list fails. This virtual domain was setup after following the steps indicated in this thread
    http://discussions.apple.com/thread.jspa?messageID=659014
    Have gone the step for mailman genaliases and postfix reload.
    Still the error. Any help in fixing the problem is much appreciated.
    XServe G4   Mac OS X (10.4.4)  

    Are you adding the list via SA or the web interface?

  • Baffled - "unknown virtual host" when creating new list

    *I am getting this message:*
    _Error: Unknown virtual host: mail.riverstoneschool.org_
    *when I attempt to create a new list. What's baffling is that we don't have any virtual domains and the domain listed in the message is our primary domain. Here's the mm_config.py: (minus the initial comments)*
    from Defaults import *
    # Put YOUR site-specific settings below this line.
    MTA = 'Postfix'
    DEFAULTEMAILHOST = 'mail.riverstoneschool.org'
    DEFAULTURLHOST = 'mail.riverstoneschool.org'
    DEFAULTURLPATTERN = 'https://%s/mailman/'
    IMAGE_LOGOS = '/images/'
    DEFAULTADMIN_MEMBERCHUNKSIZE = 150
    OWNERSCAN_DELETE_THEIR_OWNLISTS = yes
    *In case it's relevant, here's the dig results for "mail.riverstoneschool.org" when run from the server in question (ie: from mail.~ itself). Also in case it's relevant, this Mac server is the one hosting DNS, too:*
    rs-server-ws:Mailman matthewmiller$ dig mail.riverstoneschool.org
    ; <<>> DiG 9.4.3-P3 <<>> mail.riverstoneschool.org
    ;; global options: printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 14059
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 3, ADDITIONAL: 2
    ;; QUESTION SECTION:
    ;mail.riverstoneschool.org. IN A
    ;; ANSWER SECTION:
    mail.riverstoneschool.org. 14400 IN A 10.100.1.10
    ;; AUTHORITY SECTION:
    riverstoneschool.org. 14400 IN NS mail2.riverstoneschool.org.
    riverstoneschool.org. 14400 IN NS rs-server-ws.riverstoneibs.lan.
    riverstoneschool.org. 14400 IN NS mail.riverstoneschool.org.
    ;; ADDITIONAL SECTION:
    mail2.riverstoneschool.org. 14400 IN A 10.100.2.10
    rs-server-ws.riverstoneibs.lan. 10800 IN A 10.100.1.10
    ;; Query time: 1 msec
    ;; SERVER: 10.100.1.10#53(10.100.1.10)
    ;; WHEN: Mon Oct 18 13:11:10 2010
    ;; MSG SIZE rcvd: 169
    Thanks in advance for any assistance you can offer!
    -Matthew

    Hi Kevin,
    I think you have to set the query specification for the data provider you created. If you don't, no object is available (that'w why you received a such error).
    Best regards,
    Anthony

  • I have a iPhone 4s and I can't create new lists in Reminders

    my wife has an iPhone 4s, running IOS 7.0.4 She is trying to create a new list in Reminders and nothing happens - just dumb screens
    I have the same phone running same IOS and do not have the problem - Suggestions?

    OK I am not sure what I did - but I will describe it and maybe one of you experts can put it into understandable language
    I went into my wife's phone and activated her iCloud - once I did that - her Old Reminders came back and she was able to establish new lists -
    I am sorry I am really not a techie - and not sure what I did - but it worked

  • In OPK8 need to include new list name.

    Hi Experts,
    In one of my requirment i need to configure a new list names ( LG96 & LK96) in the printer configuration OPK8.
    Please advice.
    Thanks

    I am not sure got your question correctly. But in OPK8  you can just click on icon NEW Entries & create new lists & their complete configuration.
    General best practice is to use some existing SAP lists whose configurations nearly meet your requirement  & copy into your custom lists. Then do required modifications as needed.
    Hope this helps. Else let me know.
    Thanks,
    Ram

  • Creating new mailing list.

    CRM import the file - 600 new adresses (it's a txt/tab file made with Excel/Mac) but BC do not visualize the new mailing list, so I cannot make any further choice for campaigns. Other question: can I create email list fron CRM and how can I change option filters to create new list. Can someone help? New to BC. Thanks

    Dear Liam, it's just I am new to BC. I first had problems to create mailing list importing .csv files, then turned to txt file.
    Had no problems with 50 address txt file, meaning BC showed me that list with those 50 custumers included.
    But when the list is about 600 addresses, BC does not show the list I have created as a new mailing list with its name.
    I dont know why. The CRM add those 600 new addresses, but there is no mailing list connected to those 600.
    So I have a great CRM now, but cannot choose those among them I want to send email campaigns to. For instance:
    all company working in the same town (which was the title of the email list I should have created, that indeed BC dont show me).
    Am I doing something wrong with saving correctly the .csv or txt file? I started from the basic Excell templates given by BC.
    Is there a fast way to erase my CRM, in order to rebuild it with mailing list criteria?
    Much confused, as you see.
    Please try help me. And thank you very much for first answer. Waiting.

  • Yosemite doesn't allow me to create Reminders List "On My Mac".

    I used to be able to create Reminders Lists to store only On My Mac, in other words not in iCloud.  Most of my Reminders Lists are in iCloud, so I can see them on my iOS devices, but I would like to keep some lists only On My Mac.  I used to be able to do that, but now if I go to create new list, there is no option of where to store it; it automatically goes to iCloud.
    I believe this started with the upgrade to Yosemite.
    Is there a way for me to overcome this?
    Marcia

    The On My Mac category is inaccessible if you store reminders on one or more network servers, such as iCloud, and there are none stored locally.
    In the Internet Accounts preference pane, disable all Reminders synchronization by unchecking the corresponding box in all calendar accounts with which you now sync. The data should be retained on the servers, but it would be wise to back it up anyway by following the instructions in this support article.
    Quit and relaunch Reminders. The database will be empty. Create a new note. From the View menu, select
              Show Sidebar
    if the list isn't already showing. You should now see On My Mac. Re-enable synchronization. Your synced reminders should reappear.

  • Need checkboxes in PDF that create a list of those items later in the same PDF

    I asked this in Indesign, but they said to ask again here.
    Hi Folks,
    I create PDF travel guides in indesing and turn them into PDF.  I also have Acrobat. 
    For each location in the travel guide I would like to have a checkbox available on the page, next to the title, that a reader could check if they decide they want to visit that location/activity.  Then, those title results would populate a list in the same PDF eBook, in something like a notes section in the end of the document, so that the user has an easy list to view of what they decided to visit.  They should be able to uncheck them later so that they can create new lists. 
    Is this possible in a PDF?
    Thanks for your help.

    Sure it's possible. The easiest way to set this up would be to set the text you want associated with each check box as the export value of the check box, and set up a multiline text field in the notes section with a custom calculation script. It might look something like this:
    // Custom Calculate script for text field
    var i, v, s = "";
    // Loop through the check boxes and get text if they're selected
    for (i = 1; i < 11; i += 1) {
        // Get the value of the current check box
        v = getField("checkbox" + i).value;
        // Add current checkbox value to summary string, separating each with a carriage return
        if (v !== "Off") {
            s += v + "\r";
    // Set this field's value
    event.value = s;
    This script assumes the check boxes are named checkbox1, checkbox2, ...checkbox10, so you'd have to modify to match your form. The field's calculate script will get triggered whenever any field value changes, so it will get updated each time a check box is selected or deselected.

  • How to customize Category and Category items list while creating New Model

    Hi,
    what the most convenient way to customize the Category and Category items list while creating New Model?
    This is standard:
    Now, what we want to achieve, is to customize this menu, to:
    1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    2. In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available. Additionally, it should behave like a hierarchy ... meaning you can create the second diagram, only as child (related diagram) of the first diagram etc.
    I know, excluding the particular diagrams/diagram elements can be configured using the right/profile settings, but how to:
    1. Customize the standard New Model menu window
    2. Create copies of City Planning Diagrams with different set-ups
    3. Set the relationship between diagrams
    Is such a configuration change possible?
    Thanks a lot for your help!
    Regards,
    Rafal

    Now, what we want to achieve, is to customize this menu, to:
    Question #1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    Click on Tools => General Options=> Model Creation
    Click on Properties => at right of Default category set
    Note : Model template does not work as Category. We can't set. An enchancement request has been open to SAP
    In the following example I defined a new default (MyNewDefault.mcc). As you can see only BPMN models are available.
    To create a new category set with BPMN choice
    a) Copy default.mcc in MyNewDefault.mcc file.
        Go to Tools=>General Options=>Model Creation : Select your new category
        Go to Tools=>General Options=>Model Creation : Edit properties and remove all things you does not want keep
    or
    b) Go to Tools=>General options=>Model Creation : Edit properties and click on Save as button and specify the file name "MyNewDefault".
        Quit the window.
        Select you new category : Go to Tools=>General Options=>Model Creation : "MyNewDefault"
        Edit properties and remove all things you does not want keep.
        Save you new category
    Question #2. How to define copies/replicas of existing diagrams
         Wrote an extension
    Question #3. How to make sure, particular diagrams can be used (created) only on predefined "levels" and how to set the parent-child relationship, so that PD enforced it directly when creating a new diagram.
         Specify yours conditons in your extension attached to your model
         Example : When the user want create a child diagram :  You can display a list of Parent Diagrams to select from.
         You can set in your extension by VBScript parent-child relationship
    Question #4 In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available.
    If I understand well your question. I suggest to take a look in
    Repository=>Administration=>Objects Permission Profile
    You can specify objects to show, mask, deactivate at model level.
    You can specifiy your own metadata.
    But I'm not sure you can mask, deactivate functions following diagram selection. It seem to specific.
    Message was edited by: Benoit Le Nabec

  • SharePoint Designer 2013 (2010 Platform Workflow) - How can I create a new list item with a SPECIFIC content type?

    In SharePoint 2010 I created workflows that used the 'Create list Item' Action, which then set the Content Type ID (so I could create documents of various types in a document library). 
    We just switched to the SharePoint 2013 platform, and now the drop down for Content Type ID is blank in all of the workflows that are still using the SharePoint 2010 platform.  Is there any way to create a list item with specific content
    type?  Even if I could just input a string into that field instead of using this blank drop-down.  Please help! 

    Hi Sarah,
    According to your description, my understanding is that you cannot create a new list item with a specific content type using SharePoint 2010 Platform Workflow.
    I tested the same scenario in my environment, and the Create List Item worked fine with the specific content type.
    How did you create the content type?
    Please check if the content type is added to the list/library the workflow associated with.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for