Merging a developer program into a system.

Hello Community
    Using Sharepoint 2010 Server with the UI you have web applications.
    Eventually you may want to add more applications but this time
you may want to create a web application developed by writing a program.
    Is it possible to add a web application developed and written by a program
to the Sharepoint system that was created using the UI web application and
if so how would you execute a web application written developed by writing
a program from the system created using the UI?
    Thank you
    Shabeaut

Hi Shabeaut,
I think you are refering custom application targetted for SharePoint, correct me if I am wrong.
There are different approaches for developing SharePoint application, usually if high degree of customization is required, we use Visual studio for creating site definiations, web parts, master pages, workflows, REST API, CSOM, JSOM, SSOM etc.,
If there are simple changes, then our choice of tool is SharePoint designer, which is used for master page customization, workflow development, list / content type customization etc.,
few cosmatics changes are done using SharePoint OOTB.
So it depends on level of customization you are looking for, here are few links which will help you to get started -
ALM SharePoint -
http://msdn.microsoft.com/en-us/library/office/dn567995(v=office.15).aspx
http://msdn.microsoft.com/en-us/library/office/gg604045(v=office.14).aspx
http://blogs.msdn.com/b/kaevans/archive/2013/08/15/alm-for-sharepoint-apps-implementing-continuous-integration.aspx
Developing SharePoint apps,
http://msdn.microsoft.com/en-us/library/ff648591.aspx
http://office.microsoft.com/en-us/sharepoint-designer-help/introduction-to-building-sharepoint-applications-HA010239046.aspx
http://blogs.msdn.com/b/uksharepoint/archive/2013/03/25/sharepoint-2013-development-apps-versus-solutions.aspx
http://msdn.microsoft.com/en-us/library/office/jj163230(v=office.15).aspx
Hope this helps!
Ram - SharePoint Architect
Blog - SharePointDeveloper.in
Please vote or mark your question answered, if my reply helps you

Similar Messages

  • "Product info programmed into the system board is missing or invalid system board:

    Product info programmed into the system board is missing or invalid system board:
    OOA product name,
    OOA serial #,
    OOA product #,
    OOA system board ct#
    I get this message every time I start up suddenly. What does it mean and how do I fix It? I just bought this laptop from Staples about 4 months ago!!!
    This question was solved.
    View Solution.

    It is very important that you post the product name or product number of your notebook and the version of the installed BIOS here in your thread.  
    How to identify your notebook.
    Remove the battery and look in the compartment where the battery was installed. You should see a printed part number and a product name. Please post one or both of them (with all alphanumeric characters here). 
    It also helps if you post the country of purchase
    I will pass that information to an internal HP contact as soon as you post it to see if we can get that resolved for you.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Merging of 8 programs into a single program - urgent

    Hi Abappers,
    I have a requirement like 8 programs are given to me which are existing from one server. Now, what i have to do is , i should merge all of them into  one main program in another server. This is my requirement. For that in the selection criteria of the main program, options will be created for each item. The user can select the option he wants to execute.
    Now, can i create a selection screen in which there will be 8  push buttons and whenever user clicks one , the report belonging to taht button executes?
    For that, please suggest me the best way of how to do it..
    Whether include the 8 programs using include statement in the main program or by using subroutines or what?
    I am confused .. kindly suggest me the better way so taht i can proceed.
    Thanks,
    Priya

    The best way to resolve your requirement is to create a new ABAP with a selection screen with 8 options(radio buttons).
    Depending on the selection you can just submit the corresponding ABAP via selection-screen and return.
    selection-screen : begin of block B1 with frame title TEXT-001.
    parameter        : P_01 radiobutton group R1 user-command M1.
    parameter        : P_02 radiobutton group R1.
    parameter        : P_03 radiobutton group R1.
    parameter        : P_04 radiobutton group R1.
    parameter        : P_08 radiobutton group R1.
    selection-screen : end of block B1.
    START-OF-SELECTION.
      if p_01 = 'X'.
         labap = 'ZG1'.
      endif.
      if p_08 = 'X'.
         labap = 'ZG8'.
      endif.
      submit (labap) via selection-screen and return.
    Regards
    Anurag
    Message was edited by: Anurag Bankley

  • Merging of 8 programs into a single program

    Hi Abap gurus,
    Can any one pl help me out about merging 8 programs into a single one.
    Pl give me the best way to merge 8 programs into one program
    Thanks,
    Priya

    Hi priya,'
    What do you really mean by merging of 8 programs?  what are those programs ....
    but anyway ... see a program is written to fulfil a business requirement ...
    so i believe that need is now .. the functionalities of 8 programs in one program ... Am i right ..
    if that is the case then get the requirement of the one report and build a program ......
    cheers
    Kripa Rangachari..

  • How to put a Java Program into the System tray

    Hi all of the forum!!
    I have a question. I want to make a monitor program but I don't know how to put the program in the system tray or just to execute the program but automatically (no manual execute), but i dont want that the program appear in a window, just start to function when i start my PC. i hope anybody help me.
    Thanks
    Best Regards
    Bucio, Francisco

    There is a plenty of similar topics here, so you can use the Search on this forum or in Google to find out.
    But shortly, you will need to use JNI or get a ready-to-use library like JNIWrapper (http://www.jniwrapper.com/winpack.jsp#tray), for example, that lets you do what you want.
    Good luck,
    EToporov

  • Help me!! how to merge 3 different program into one

    hi all,
    i'm having trouble to merge 3 program and then make them run in while loop. i think all those 3 program can be make into class and the switch control them;
    for example:
    1)choice 1
    it goes to the first class
    2)choice 2
    it goes to second class
    3)choice 3
    it goes to third class
    below are the mentioned program
    -----------------first program---------------------------------------
    import java.util.Hashtable;
    public class GraphToSet1 {
    run GraphToSet to get the output from Graph.java and GraphToJava.java
         public static void main(String[] argv) {
         int graph[][] = {
                   { 1, 2 }, //graph are repsented in matrix form
                   { 2, 3 },
                   { 3, 4 },
    { 4, 5},
    { 5, 1 },
              Graph.convert(graph); //convert the graph into matrix by calling the function
    //convert() from Graph.java
    class Graph {
    this function will convert graph that it get fom GraphToSet.java to set
    public static void convert(int[][] a) {
    int total_rows = a.length;
         int total_cols = a[0].length;
         System.out.println("Graph in matrix form["+total_rows+"]["+total_cols+"] = "); //Displaying the graph in matrix form
    for (int rows=0; rows<total_rows; rows++)
              System.out.print("{");
              for (int cols=0; cols<total_cols; cols++)
              System.out.print(" " + a[rows][cols] + ",");
              System.out.println("},");
    /* Start of Modified Code */
    Hashtable num=new Hashtable(); // New Code
    String value=""; // New Code
    System.out.println("\nG=(V,E)");
    System.out.print("G=({");
    for (int k=1; k<=total_rows; k++)
    value=String.valueOf(k);
    num.put(value,value);
    for (int k=1; k<=total_rows; k++)
    System.out.print(" "+ (String)num.get(String.valueOf(k))+ ",");
    System.out.print(")");
    for (int i=0; i<total_rows; i++)
    System.out.print("(");
    for (int j=0; j<total_cols; j++) //retrieving all the edges from GraphToSet.java
    System.out.print(" " + a[i][j]+","); //and print it out
    System.out.print(")");
    System.out.println("})"); //final output for graph to set
    import java.io.*;
    import java.util.*;
    * Read and print, using BufferedReader from System.in, onto System.out
    public class AlgebraToSet {
    public static void main(String[] av) {
    try {
    BufferedReader is = new BufferedReader(new InputStreamReader(System.in));
    System.out.println("Insert the element for algebra :");
    System.out.print("\tSet of elements (U) = ");
    String inputLine1=is.readLine();
    System.out.print("\tOperation over element (Op) = ");
    String inputLine2=is.readLine();
    System.out.print("\tRelation over element(Rel) = ");
    String inputLine3=is.readLine();
    System.out.println("Algebra in set form = "+"{"+inputLine1+","+""+inputLine2+","+""+inputLine3+"}");
    is.close();
    } catch (IOException e) {
    System.out.println("IOException: " + e);
    public class PairToSet {
    pair that need to be transform has to be keyed in here
         public static void main(String[] argv) {
         int pair[][] = {
                   { 34,56 }, //pair represented as matrix
              Pair.convert(pair); //converting pair into set by calling mprint() function
    //from Pair.java
    class Pair {
    this function will convert pair that it get fom PairToSet.java to set
         public static void convert(int[][] a) {
              int total_rows = a.length;
              int total_cols = a[0].length;
              System.out.print("Pair = ");
    for (int rows=0; rows<total_rows; rows++)
                   System.out.print("\t\t[");
                   for (int cols=0; cols<total_cols; cols++)
                        System.out.print(" " + a[rows][cols] + ", ");
                   System.out.println("]"); //displaying the pair from PairToSer.java
    System.out.print("Pair in Set Form =");
                   System.out.print("\t{");
                        System.out.print("{" + a[0][0] + "},"); //converting the pair to set by applying array method
    System.out.print("{" + a[0][0] + "," + a[0][1] + "}");
                   System.out.println("}");

    it is possible but u cant do it. as u have posted 3 posts while u can get answer in one.so keep trying thre3 application independently.grrr

  • How to merge 2 vbscript program into 1

    1st program code:
    Dim objShell
    Set objShell = WScript.CreateObject("WSCript.shell")
    objShell.run """C:\Program Files\Altiris\Altiris Agent\aexnsagent.exe"" /uninstall /qn"
    2nd program code:
    strFolderName = "C:\Program Files\Altiris"
    Set fso = CreateObject("Scripting.FileSystemObject")
    If fso.FolderExists(strFolderName) Then
    fso.DeleteFolder strFolderName
    End If
    prakash

    since they share no variable names, you can simply put one after the other.
    I think your question actually is: how to wait for the first part to complete.
    https://msdn.microsoft.com/en-us/library/d5fk67ky(v=vs.84).aspx
    Set objShell = WScript.CreateObject("WSCript.shell")
    objShell.run """C:\Program Files\Altiris\Altiris Agent\aexnsagent.exe"" /uninstall /qn",,true
    strFolderName = "C:\Program Files\Altiris"
    Set fso = CreateObject("Scripting.FileSystemObject")
    If fso.FolderExists(strFolderName) Then
    fso.DeleteFolder strFolderName
    End If
    note I left out the dim statement. Dim declares a variable, but in vbscript, variables are declared automaticly when first used. For simple scripts that's enough.
    (For more complex scritps, use DIM for all your variables and enforce that using 'option explicit')
    https://msdn.microsoft.com/en-us/library/t7zd6etz(v=vs.84).aspx
    MCP/MCSA/MCTS/MCITP

  • HT4061 I am receiving an Activation Error and unable to get into my phone.It's asking me to register my phone in the iPhone Developer program however I'm already registered. How do I move forward?

    I am receiving an Activation Error and unable to get into my phone.It's asking me to register my phone in the iPhone Developer program however I'm already registered. How do I move forward?

    Hi, jsgladden. 
    Here is an article I would recommend when experiencing issues activating a device.  The step referring to recovery mode usually resolves the issue.
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    To retrieve your data, you will need to restore from backup after processing these steps.  Here is the article that walks you through restoring from either your iCloud or iTunes backup.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Cheers,
    Jason H.

  • HT204414 how to merge my iPhoto Library into my Photos System Library or how to import photos from iPhoto to Photos?

    Can anyone tell me how to merge my iPhoto Library into my Photos System Library or how to import photos from iPhoto to Photos?

    How many did you trash at one go? iPhoto will baulk and possibly corrupt if you try trash too many at one go. Expereinced users recommend getting rid of them in batches of about 100 or so.
    What's your plan for the remaining images in the iPhoto Library (the 2k photos and 4 videos)?
    Regards
    TD

  • Any other Ways to Getting into the Developer Program

    So, I signed my company up for the developer program a few days after the original announcement. We're still not in. This has moved from an annoyance during the development process to crisis (our iPhone Apps are add ons to our web apps and we are being yelled at by our customers for not delivering them).
    So this is my question, those who were on the waiting list for a long time then got in. What worked? I'm certainly not opposed to paying 20K for some equipment I don't need if that solves the problem.

    Ok, so just a bit of followup for others that might be in this situation. Once I waited on hold for another 40 minutes, when I finally spoke to someone, they were able to let me in the program in a matter of a couple minutes (no there wasn't any issues with my application).
    So it seems that at the moment Apple is prioritizing by anger level. So, don't be like me and send a few polite e-mails or patiently wait for months. Get on the phone and scream at the top of your lungs (even if your not that angry), it is the only thing they seem to understand.

  • Converting an sap file output program into xml output

    Hi,
    I have developed a program from which i am able to generate outptut as a file. Since this file is going to be used by the third party system, user has come back asking me to generate an conversion program into xml of the file output.
    Since i have not handled previously about generating the xml conversion program. Please let me know how to do this or if you could provide me the sample program it will be great.
    Thanks in advance.
    Sunil Kumar

    Hello
    Just for example:
    data: itab type standard table of sflight.
    data: xml_out type string,xmltab type swbhtmltable.
    select * from sflight into table itab.
    call transformation ('ID')
    source tab = itab[]
    result xml xml_out.
    call function 'SWA_STRING_TO_TABLE'
    exporting
    character_string = xml_out
    importing
    character_table = xmltab.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function 'GUI_DOWNLOAD'
    exporting
    filetype = 'BIN'
    filename = 'C:\xmlfile.xml'
    tables
    data_tab = xmltab.
    P.s. search SDN for CALL TRANSFORMATION

  • Replicating Report Painter programs in BW system

    Hi,
    We are trying to replicate Programs developed using Report painter tool into BW system. However BW system doesn't have many  transactions and tables corresponding to Report Painter tool. Is there any way to easily replicate these programs instead of developing BW reports from scratch.
    regards,
    satya

    Hi Satya,
    There are no programs for directly Replicating the Report Painter Report from ECC/R/3 to BW.You have to create all the required objects in the BW and then either you have to use the standard Data Source and Enhance it for the required Custom fields or Create a generic Extractor and extract the data from the Source.
    Thanks & Regards,
    Ram Jakki.

  • How to distinguish the ABAP Code in include program into different TRs

    Hello Friends,
      In our current project, two teams are working on the developments.  One team is for LES related developements and another team is for billing related developments.  As part of developments, same programs are sharing by two teams, example -
    Include - MV45AFZZ, the userexits in include are using by both the teams for their developments
    Now the issue was, since the same program is using by both the teams, and during program activation , system automatically includes the code in both the team TRs.  This was causing issue while testing and transport to other testing systems, since billing project is going live in next year and LES in coming november
    Hence, we need to understand how we can differentiate the code which should not impact with other TRs.
    Many thanks for your inputs
    Best Regards,
    Goutham

    Thanks all for the quick reply..
    I would like to brief more clear...
    In current project, Team 1 is working for Logistics developments, Team 2 is for Billing developments.  As part of project plan, Logistics is going live this november
    When two teams are working on the same include, Team 1 is activated the changes then the task is updated in their TR, later when Team 2 has made changes in the same inlcude then the task was includeded in their TR.    Now the problem facing was, Team 2 has developed statements like COMMIT  WAIT WORK  and also BAPI call etc... and these statements are causing performance issues and some other problems......
    Recently Logistics related TRs are moved to testing system for testing, in that all the development TRs are moved into testing system and also code related to Billing project (Team2)  as well.... when we cross check the reason then it was identified that the same include is using by both the teams for the development.    Now we need distinguish the code specific to team whcih should not impact other...
    Hope my explanation clear the criticality of the problem
    Thanks
    Best Regards,
    Goutham

  • Couldn't log into SAP System (message 00264) after SAP_BASIS update

    Hello,
    we performed SAP_BASIS update to SAPKB70023 and get a problem with logon into a SAP system with message 00264 (Status &2 of the user interface &1 missing).
    We have a 64-bit non-Unicode system on Solaris/SPARC/Oracle and Kernel level 333.
    We tried to import MENUSYST program from note 1285869, but nothing happened at all. The parameter abap/unicode_check we set to "on" but this didn't help us.
    So after selecting system record in SAP Logon now we get the initial logon screen with no "new password" button and error 00264 (Status 0020 of the user interface SAPMSYST missing.) and couldn't log into the system.
    We have no idea why correct and existing statuses are not working.
    Please suggest us what to do to fix this problem.
    Thanks in advance!

    Check this,
    http://forums.sdn.sap.com/thread.jspa?threadID=835278
    it may be useful.
    Regards,
    Ravi

  • Import into Consolidation system failed

    Hello,
    We are on NW04s and tryign to import ESS component and other standard components like SAP_JEE,SAP_BUILDT into the Consolidation system and import fails in between with the CBS Log as:
    Build number assigned: 7851
    Change request state from QUEUED to PROCESSING
    INTERNAL BUILD request in Build Space "D77_ESS11ADC_C" at Node ID: 778,177,350
         [id: 7,845; parentID: 7,539; type: 32]
    REQUEST PROCESSING started at 2007-12-14 23:25:37.149 GMT
    ===== Pre-Processing =====
    Calculate all combinations of components and variants to be built...
         "sap.com/ess/jp/fam" variant "default"
    Prepare build environment in the file system... started at 2007-12-14 23:25:37.227 GMT
         Synchronize development configuration... finished at 2007-12-14 23:25:37.227 GMT and took 0 ms
    Development line state verification started at 2007-12-14 23:25:41.336 GMT
    Verification of the development line [ws/ESS11ADC/sap.com_SAP_ESS/cons/active/] SUCCEEDED
    Development line state verification finished at 2007-12-14 23:25:41.352 GMT and took 16 ms
    Cache verification, level 2 (Comparison of attributes) started at 2007-12-14 23:25:41.352 GMT
    Verification of the following object:
         [DC: sap.com/ess/jp/fam, group: 0] SUCCEEDED
    Cache verification finished at 2007-12-14 23:25:41.368 GMT and took 16 ms
         Synchronize component definitions... finished at 2007-12-14 23:25:41.446 GMT and took 4 s 219 ms
         Synchronize sources...
    ===== Pre-Processing =====  finished at 2007-12-14 23:25:50.227 GMT and took 13 s 78 ms
    Change request state from PROCESSING to FAILED
    ERROR! The following error occurred during request processing:java.lang.OutOfMemoryError
    Unknown reason (java.lang.OutOfMemoryError)
    REQUEST PROCESSING finished at 2007-12-14 23:25:50.243 GMT and took 13 s 94 ms
    What can be dome to fix the OutOfMemory Error...?
    Any help would be highly appreciated..

    Hi Shikhil,
    Please do the follwoing
    1. Incrrease the memory size by navigating to Check the CBS settings in the Visual Administrator->Services->Component Build Service-> Tab 'Properties' 
    2.Refer to this thread
    CMS Error importing into Consolidation System
    3.SAP NOTE 723909
    Thanks
    Pankaj

Maybe you are looking for

  • I would like to have 2 seperate sites on one server

    Hi to all, I am a graphic designer who sometimes uses iweb to create very simple sites, which have worked in the past. I have a friend who is opening a restaurant and I want to help out by creating a web site for her in iweb. She already has one "sit

  • Problem with formatting failure caption...

    This might be a bug or a bad Captivate file. Project file (one of 17) has sucess and failure captions. Set the Failure as adobe red/ verdana 12. On day 1 I do this and all is well. On day 3 I open this file and find the failure caption set to adobe r

  • Hi. about monitor message of integration engine from RWB.

    I  want to monitor message of iintegration engine from RWB. but i can not open message content tab page and queue monitor tab page. hint is : SSO login failed. need to  logon again. which user should i use to logon? i tried so many user not to be abl

  • Error 4261 and 4200

    the first cd burned fine (using a cd-R 1x - 16x and burning at maxium speed. After that it would only begin to burn and give me an error #4261 with one exception, once it burned 10 1/2 out of the 13 songs (using a multispeed cd at maximum speed)and t

  • Sales Returns - BOM

    HI SAP Gurus, Can you please help me on what should be the exact Item Category Configuration while creating a Return Sales Order,w.ref. to Billing doc which contains BOM (ERLA). Regards, Sree..