How to Insert fields directly from sharepoint instead of stand alone fields.

I have synced my designer 2013 to my SharePoint site. now below is my input page, but they way i created it was stand alone fields. but instead I want to add the fields directly from my SharePoint, how do i do that, because if i modify anything on my SharePoint,
then i wouldn't have to modify anything again in SharePoint designer ..
Also my last question is how do auto generate fields when a certain selection is made in my drop down.. for example if someone chooses NY (in wire-center name drop-down) then WC name:, site code:, and design area is auto filled.
Thank you for your help....
Please click this link for image example...
http://i60.tinypic.com/1679hl0.png

Hi,
According to your post, my understanding is that you have an issue about the custom form.
To custom a form, I recommend you use the InfoPath to design the desirable form.
What’s more, we can also use the InfoPath to achieve the auto fill field from a drop down list.
http://www.bizsupportonline.net/infopath2003/autofill-fields-infopath-dropdown-selection-secondary-data-source.htm
http://blogs.technet.com/b/anneste/archive/2011/11/02/how-to-create-an-infopath-form-to-auto-populate-data-in-sharepoint-2010.aspx
Thanks & Regards,
Jason
Jason Guo
TechNet Community Support

Similar Messages

  • MIgrate aSSRS from Sharepoint integrated to stand-alone

    We currently have SSRS integrated to SharePoint 2010 with report connections stored in Sharepoint libraries. The data is coming from a patient management systemWe are planning on moving to standalone mode because we are moving from SharePoint 2010 to Office
    365. We would like to know if
    there is a way to migrate to a single SSRS instance. 

    Hello phpmike2,
    Currently, it isn't support to configure SQL Server Reporting Services run in SharePoint O365. For more detail information, please refer to the following article:
    SharePoint Online Service Description:
    http://technet.microsoft.com/en-us/library/sharepoint-online-service-description.aspx#bkmk_tableo365
    If you want to know migrate report items and configuration from one SharePoint environment to another, please check the article below:
    Migrate a Reporting Services Installation (SharePoint Mode):
    http://msdn.microsoft.com/en-us/library/hh759331.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • How to insert the data from XML to a table

    Hi,
    I'm using Oracle 10g Express Edition
    I need help in How to insert the data from XML file into the table.
    Below is the example i'm working on..
    I have create ridb user with below mentioned privileges:
    Account Status Locked Unlocked
    Default Tablespace: USERS
    Temporary Tablespace: TEMP
    User Privileges :
    Roles:
    CONNECT
    RESOURCE
    Direct Grant System Privileges:
    CREATE DATABASE LINK
    CREATE MATERIALIZED VIEW
    CREATE PROCEDURE
    CREATE PUBLIC SYNONYM
    CREATE ROLE
    CREATE SEQUENCE
    CREATE SYNONYM
    CREATE TABLE
    CREATE TRIGGER
    CREATE TYPE
    CREATE VIEW
    & table is created TRIALZIPCODES below mentioned is the DDL:
    CREATE TABLE TRIALZIPCODES
    STATE_ABBR VARCHAR2(20) NOT NULL
    , ZIP_CODE NUMBER(10, 0) NOT NULL
    , ZIP_CODE_EXT VARCHAR2(20)
    Below is the XML FILE: which is stored in C:\OracleProject Folder
    File name: trial.xml
    <?xml version="1.0" ?>
    <metadata>
    - <Zipcodes>
    - <mappings Record="4">
    <STATE_ABBREVIATION>CA</STATE_ABBREVIATION>
    <ZIPCODE>94301</ZIPCODE>
    </mappings>
    - <mappings Record="5">
    <STATE_ABBREVIATION>CO</STATE_ABBREVIATION>
    <ZIPCODE>80323</ZIPCODE>
    <ZIP_CODE_EXTN>9277</ZIP_CODE_EXTN>
    </mappings>
    </Zipcodes>
    </metadata>
    PL/SQL Procedure:which i'm trying to execute from SQLDeveloper
    create or replace
    PROCEDURE TRIAL AS
    BEGIN
    DECLARE
    -- declare attributes
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    l_context_handle dbms_xmlgen.ctxHandle;
    insCtx DBMS_XMLStore.ctxType;
    begin
    -- DBMS_XMLGEN.setRowTag ( ctx IN ctxHandle, rowTag IN VARCHAR2);
    -- DBMS_XMLGEN.setRowSetTag ( ctx IN ctxHandle, rowSetTag IN VARCHAR2);
    -- the name of the table as specified in our DTD
    DBMS_XMLGEN.SETROWSETTAG(l_context_handle,'zipcodes');
    -- the name of the data set as specified in our DTD
    DBMS_xmlgen.setRowTag(l_context_handle,'mappings');
    -- for getting the output on the screen
    dbms_output.enable(1000000);
    -- open the XML document in read only mode
    v_FileHandle := utl_file.fopen('c:/OracleProject','trial.xml', 'r');
    loop
    BEGIN
    utl_file.get_line(v_FileHandle, charString);
    exception
    when no_data_found then
    utl_file.fclose(v_FileHandle);
    exit;
    END;
    dbms_output.put_line(charString);
    if finalStr is not null then
    finalStr := finalStr || charString;
    else
    finalStr := charString;
    end if;
    end loop;
    -- for inserting the XML data into the table
    insCtx := DBMS_XMLSTORE.NEWCONTEXT('RIDB.TRIALZIPCODES');
    insCtx := DBMS_XMLSTORE.INSERTXML(insCtx, finalStr);
    dbms_output.put_line('INSERT DONE '||TO_CHAR(rowsp));
    DBMS_XMLStore.closeContext(insCtx);
    END;
    END TRIAL;
    For the first time when i complied i got the errors as :
    Procedure RIDB.PROCEDURE1@RIDB
    Error(16,14): PLS-00201: identifier 'UTL_FILE' must be declared
    Error(16,14): PL/SQL: Item ignored
    Error(29,1): PLS-00320: the declaration of the type of this expression is incomplete or malformed
    Error(29,1): PL/SQL: Statement ignored
    Error(33,1): PL/SQL: Statement ignored
    Error(33,19): PLS-00320: the declaration of the type of this expression is incomplete or malformed
    Error(36,1): PL/SQL: Statement ignored
    Error(36,17): PLS-00320: the declaration of the type of this expression is incomplete or malformed
    So i logged in as sys & grant the permission to execute on UTL_FILE to ridb (user):
    SQL Statement:
    grant execute on utl_file to ridb
    So, it got compiled successfully but when i execute it gives me error as:
    Source does not have a runnable target.
    What does this mean?
    So I browse through forum & i got to know that i need to initial the UTL_FILE_DIR ="C:/OracleProject" in init.ora
    So can i edit the init.ora with notepad.When i tried to do that it says permission denied
    In my system it shows the init.ora file in path C:\oraclexe\app\oracle\product\10.2.0\server\config\scripts
    but there is also other file initXETemp in the same path do i need to do the changes in it.
    I have tried even editing the SPFILE as mentioned below:
    C:\oraclexe\app\oracle\product\10.2.0\server\dbs\SPFILEEXE - I had edit this file using notepad & set the value of UTL_FILE_DIR ="C:/OracleProject". So next time when i restarted i'm unable to log on to the database.
    So i had reinstall the software again.
    Could you please let me know how to proceed..

    hi,
    I have created the directory from sys database
    CREATE or replace DIRECTORY XML_DIR2 AS 'C:\OracleProject';
    & grant read,write access to the user
    grant read,write on directory XML_DIR2 to RIDB;
    & i had change the tag name in the xml file as shown below:
    <?xml version = '1.0'?>
    <metadata>
    <Zipcodes>
    <mappings Record="4">
    <STABBRE>CA</STABBRE>
    <ZIPCODE>94301</ZIPCODE>
    </mappings>
    <mappings Record="5">
    <STABBRE>CO</STABBRE>
    <ZIPCODE>80323</ZIPCODE>
    <ZIPCODEEXT>9277</ZIPCODEEXT>
    </mappings>
    </Zipcodes>
    </metadata>
    TRIALZIPCODE table as shown below:
    CREATE TABLE "RIDB"."TRIALZIPCODE"
    (     "STABBRE" VARCHAR2(20 BYTE),
         "ZIPCODE" NUMBER(*,6) NOT NULL ENABLE,
         "ZIPCODEEXT" NUMBER
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ;
    I have tried two methods as shown below:
    Procedure 1:
    create or replace
    PROCEDURE TRIAL_V2 AS
    BEGIN
    DECLARE
    -- declare attributes
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    l_context_handle dbms_xmlgen.ctxHandle;
    insCtx DBMS_XMLStore.ctxType;
    cnt NUMBER;
    xmldoc xmltype := xmltype( bfilename('XML_DIR2','trialxml.xml'), nls_charset_id('AL32UTF8') );
    --XML_DIR VARCHAR2(40) := 'C:\\OracleProject';
    BEGIN
    insCtx := DBMS_XMLStore.newContext('DEV.TRIALZIPCODES');
    DBMS_XMLStore.setUpdateColumn(insCtx, 'STABBRE');
    DBMS_XMLStore.setUpdateColumn(insCtx, 'ZIPCODE');
    DBMS_XMLStore.setUpdatecolumn(insCtx, 'ZIPCODEEXT');
    DBMS_XMLStore.setRowTag(insCtx, 'mappings');
    cnt := DBMS_XMLStore.insertXML(insCtx, xmldoc);
    DBMS_XMLStore.closeContext(insCtx);
    END;
    Procedure 1 was compiled with out errors but when i execute i got the error as :
    Source does not have a runnable target.
    Procedure 2_
    CREATE OR REPLACE PROCEDURE TRIAL_V3 AS
    BEGIN
    DECLARE
    -- declare attributes
    charString varchar2(80);
    finalStr varchar2(4000) := null;
    rowsp integer;
    v_FileHandle UTL_FILE.FILE_TYPE;
    l_context_handle dbms_xmlgen.ctxHandle;
    insCtx DBMS_XMLStore.ctxType;
    cnt NUMBER;
    xmldoc xmltype := xmltype( bfilename('XML_DIR2','trialxml.xml'), nls_charset_id('AL32UTF8') );
    --XML_DIR VARCHAR2(40) := 'C:\\OracleProject';
    BEGIN
    INSERT INTO trialzipcode (STABBRE, ZIPCODE, ZIPCODEEXT)
    SELECT extractvalue(x.column_value, 'mappings/STABBRE'),
    extractvalue(x.column_value, 'mappings/ZIPCODE'),
    extractvalue(x.column_value, 'mappings/ZIPCODEEXT')
    FROM TABLE(
    XMLSequence(
    EXTRACT(
    xmltype( bfilename('XML_DIR2','trialxml.xml'), nls_charset_id('AL32UTF8') ),
    'metadata/Zipcodes/mappings'
    ) x
    END;
    END TRIAL_V3;
    Procedure 2 was complied without errors but when i execute i got the error as:
    Connecting to the database RIDB.
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the file specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at "RIDB.TRIAL_V3", line 12
    ORA-06512: at line 2
    Process exited.
    Disconnecting from the database RIDB.
    Could you please let me know how to proceed...

  • Opening PDF Files in Adobe Reader XI directly from SharePoint 2013 Site

    I am trying to open PDF files in Adobe Reader XI directly from a SharePoint 2013 document library using Internet Explorer 11. When I click the file name it immediately opens the file in Adobe Reader, however it is downloading and opening the file locally
    from the Temporary Internet Files location. If I add a comment to the PDF file, and save it will perform a Save As and the location will default to the temporary folder.
    If instead of clicking the file name, I click the ellipses in SharePoint, copy the file URL, and go to Adobe Reader, click File > Open and paste the link into the file name, Adobe Reader will correctly open the file directly from the SharePoint site and
    prompt for "Open and Checkout, Open, or Cancel".
    Is there a way to get it so that when I click the file in IE, I get the same functionality as a File > Open in Adobe Reader?
    Thanks in advance!

    Hi,
    According to your description, you want to open pdf file in the Adobe Reader directly from document library.
    I suggest you do as the followings:
    1. In SharePoint Central Administration site, click Application Management->Manage Web Applications, select the web application for the site. Click Authentication
    Providers, select default zone, and select Yes for "Enable Client Integration?".
    2. click Site Settings-> Site collection features->"Open Documents in Client Applications by Default" click Activate
    3. set the default open behavior for a document library by using the document library settings page.
    4. Enable the “Adobe Arcobat SharePoint OpenDocuments Component”add-on in the IE11.
    5. Add your current site URL to the trusted web sites in IE11.
    There is a similar threads for your reference:
    http://blog.mikehacker.net/2010/05/03/unable-to-open-pdf-directly-from-sharepoint-2010/
    Thanks,
    Wendy Li
    TechNet Community Support

  • How to insert a value from sequence in Bussiness Components?

    How to insert a value from sequence in Bussiness Components?
    I would like to do it, but without a triger that would do it before insert.
    I know that there is a type DBSequence in BC where you can insert a sequence name but it does not work when I type there my sequence name.
    Do you now how to fix that problem?
    Bart.

    The newer way to do it is to make the type DBSequence and enter the name of the Sequence object in the sequence field. It must match the same name of the sequence object in the database. Next, you have to create a before insert for each row trigger on the table. Basically, something like this:
    CREATE OR REPLACE TRIGGER TGB_THEME_SEQ
    BEFORE INSERT ON THEME
    FOR EACH ROW
    DECLARE
    BEGIN
    -- Assign the id from the sequence if null
         IF( :new.theme_id IS NULL ) THEN
              SELECT THEME_ID_SEQ.nextval
              INTO :new.theme_id
              FROM dual;
         END IF;
    END;
    In the above example, THEME_ID_SEQ is the seuence object name in the database. If you have the name right but it still fails, then the user you are logging in as probably doesn't have access to the sequence in the database.
    Hope this helps.
    Erik

  • How do I import directly from Canon XA10 with Final Cut X?

    How do I import directly from Canon XA10 with Final Cut X?

    I have an XA10, and importing is quite simple.  But you do have to make sure your camera is set to the proper settings to allow you to import the files into FCPX.
    First, make sure the camera is powered on.  Connect it through the USB connection.  Then open the camera's viewfinder and press the button on the side of the camera that allows you to see the videos you've shot in the viewfinder.  (This toggle button toggles between seeing what the camera is pointed at live and seeing the thumbnails of the video you've already shot that are stored on the internal memory card.)  Now, the camera will present you with a menu asking which memory card you want to look at (there's an internal flash memory card, plus you can insert SD cards as well).  Choose the memory card on which your videos are stored within the camera, and then you'll be good to go.
    Now you can go into your FCPX event and do the Import from Camera.  Now the Import from Camera interface will open up and you'll be able to select the XA10, where it will present you with all the videos that are on the camera's memory card that you selected.
    From here,  you can select individual videos and import them, or you can set in and out points on videos and just import the parts you want.

  • How can I print directly from my iPad to my new Primax 3260 printer when I have no computer. Do I need a portable single unit Router?

    How can I print directly from my iPad to my new Primax 3260 printer when I have no computer? Do I need a portable one to one Router for the wiFi connection. My Internet is through Telstra 3G system.

    Is your printer a wifi printer or hard wired only? If it's a wifi printer then you might want to look into third party apps like Print n Share or Print Central which allow a version of air printing to non-air print printers.
    You may also want to look on the manufacturer's site. Maybe they have a fix for you.
    If your printer isn't wifi, then you will need a router to get it on a wifi network to print to it. As far as I know, there is no support for the iPad to do wired printing.

  • How do I go directly from one frame to another particular frame which is far away in the time line? (e.g the two frames are separated by 100 frames)

    How do I go directly from one frame to another particular frame which is far away in the time line? (e.g the two frames are separated by 100 frames). I mean, is it possible to take the playhead from one frame to another frame directly which is 100 frames away in the time line? Thanks for any reply.

    In the Timeline, go to the first frame and press M to put a marker on it. Go to the other frame you want to jump to and put a marker on that one too.
    Now press Ctrl+Semicolon to go to the previous marker - or Ctrl+Comma to go to the next marker.
    Andy

  • How to insert select columns from one internal table to another

    Hi,
    How to insert select columns from one internal table to another based on condition as we do from a standart table to internal table.
    regards,
    Sriram

    Hi,
    If your question is for copying data from 1 int table to other ;
    we can use
    APPEND LINES OF it_1 TO it_2.
    or if they have different columns then:
    loop at it_1 into wa_it1.
    move wa_it1-data to wa_it2-d1.
    apped wa_it2 to it_2.
    clear wa_it2.
    endloop.
    thnxz

  • HT1515 i want to know that how can i print direct from my pc, and i also want to knw that can i directly print from my ios device.

    i want to know that how can i print direct from my pc, and i also want to knw that can i directly print from my ios device.

    To print from your PC, please check out the following iFelix article.
    To print from an iOS device (iPhone, iPod Touch, or iPad), the printer must be AirPrint-ready. If the printer is not, another option would be to use something like.
    Also you can check out this Apple Support article.

  • How to read data directly from clusters

    hi all,
    how to read data directly from clusters
    Thanx in advance,
    amruta.

    Using macro:
    RP-IMP-C2-B2.
    RP-IMP-C2-B1.
    RP-IMP-C2-ZL.
    ....etc.
    For TM cluster, U also can use BAPIs like HR_TIME_RESULTS_GET
    More details see SAP HR course 350(HR Programming)

  • Good Morning.  How do I delete directly from the iPhone, with out synching, movies and/or tvshows?

    Good Morning.  How do I delete directly from the iPhone, with out synching, movies and/or tvshows?

    I had the same problem with Iphone 5 iOS 8, none of the methods described above were successful.
    Finally, Iexplorer helped to solve my problem.
    http://iexplorer-support.macroplant.com/customer/portal/articles/1325738-how-to- delete-all-photos-from-an-iphone-or-ipad
    best regards,
    salad

  • How can I upload directly from photos to facebook?

    How can I upload directly from photos to facebook?  There use to be a button to send to facebook, now its gone.

    There was NEVER a button to send directly from photos to facebook. The iPhone has NEVER had facebook integration. Download the facebook app and use that.

  • How can I print directly from my IPad to my network printer?

    How can I print directly from my IPad to my network printer?

    Take a look at the application Printopia. It's an application for your Mac, if in fact you have a Mac. Works great here. Cost is about $10 (US.)
    I'm not sure how it will work with a network printer. Probably depends on your setup.
    dick glendon

  • How can I print directly from my ipad 3rd on AirPrint Printer HP Photosmart 5510?

    how can I print directly from my ipad on AirPrint Printer HP Photosmart 5510 and All-in-One?

    1. Run the CD provided to set the printer for network printing. The software will set the SSID and Password on the printer.
    http://i1224.photobucket.com/albums/ee374/Diavonex/fcca1bf0.jpg
    2. Use the apps to print.
    http://i1224.photobucket.com/albums/ee374/Diavonex/96a0b6ff.jpg
    3. Install the Print Control App if you want to Copy, Scan and Capture on a 3-in-1 printer
    http://i1224.photobucket.com/albums/ee374/Diavonex/62d500ec.jpg

Maybe you are looking for

  • Help!  Can't get my Podcast Image back!

    https://itunes.apple.com/gb/podcast/filmsploitation-film-podcast/id464589769 Image diseapered when they chage dteh sizing.  Using Iweb I have updated the image now twice in teh new format yet still not showing! Any ideas?

  • Premier Pro 2014 opens Audition CS6 when editing audio clip from Premier

    I own Adobe CS6 Master Collection installed (for legacy projects) and I also have the CC subscription. When I am running Premier Pro CC 2014 and then try to edit an audio clip in Audition the CS6 version of Audition loads rather than the CC 2014 vers

  • Delivery Dates in External Procurement

    Hello, I am adding an external opertaion in a Plant Maintenance Order. I am giving Pland Delivery time as 10 DAYS in the Purchasing details. But after saving the maintenance order, system creates PR with Delivery date as of todays date. From where th

  • Serlets and Tomcat

    I am writting an application that can be used to access and edit a database. I have already written the servlet using Oracle JDeveloper. I have compiled the servlet and put the resulting class file under the following directories: - [tomcat]\webapps\

  • Mov files not appearing in m2v

    Hi. I encoded a 10min video via compressor for a client. It took 2hrs to compress which was the first sign that something was wrong. Once brought into DVDSP, I noticed that the .mov file of the opening & closing animation was not there - just black w