Create a front-end form builder

Does anyone know of a front-end form builder? The client wants to create custom forms for its employees, choosing input field types
Any short-cuts to developing this?

am not a techie so cannot answer your question in earnst but I know exactly how youfel about e-rec looka nd feel so adding my two pence:
1. when discussing e-rec it is imp to mentione the version below version 6 it was bsp 6 onwardsit is webdynpro.
2. before we discuss code changes, what is the extent of 'look and feel' change your clientwants? can that be addresed via the portal-theme by way of developing a flashy new css based theme? thatmakes life easy for everybody involved and also makes the entire nw portal flasy not just the outward facing job portal...  at a comparitively low cost...
3. If the answer to abovepoint is a 'no' I guess the only option is to go-a-code-dredging,..
good luck.

Similar Messages

  • How to let sql server 2008 know the table created at front end in c#

    How to let sql server 2008 know the table created at front end in c#

    The best solution is to create table type and pass the DataTable as table-valued parameter. I have an article on my web site about this:
    http://www.sommarskog.se/arrays-in-sql-2008.html
    The full article is a bit of overkill for what you are doing right now, but just the few first pages should get you going.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • I can view the data in front end form, but data is not avilable in backend

    Hi,
    i created a form with three blocks.In first block i entered the data.Based on the data it will fetch recodrs from A & B tables and insert into C table.This logic i have written in backend and put commit in front end and back end. In the 2nd block iam using C table. i can view the data in front end(C table) . But i unable to
    see the data in C table when i go and see in back end.
    Form is used for only querying purpose. for the C block insert allowed and update allowed is false.
    Plz do the need ful

    Please try and post sufficient information for someone to replicate your problem. We are not looking over your shoulder and do not have access to your database.
    We need a minimum table structure, example data, a walk-through of how the form works - you mention 3 blocks and only half-way describe 1. Is another for the C block? Or is that a different form?
    e.g. Enter search data in Block A. Execute Query. Blocks A and B populated with data from database tables based on FK relationship B to A. User presses Save button, procedure in form updates table C based on data in form and issues commit. Execute Query in Block C retrieves just inserted data in table C.
    Is that remotely what's happening? Or something completely different?

  • Form based on Front End (Form based program Unit -Stored Procedure)

    Hi
    I have a form based on a front end package.
    Package spec:
    PACKAGE fpkg_csm_stud IS
    type stud_rec is record
    (s_id student.s_id%type
    ,s_last student.s_last%type
    ,s_first student.s_first%type);
    type stud_ref_cur is ref cursor return stud_rec;
    type stud_rec_tbl is table of stud_rec index by binary_integer;
    procedure sp_student_query(iotb_query IN OUT stud_ref_cur)
    END;
    Package Body
    PACKAGE BODY fpkg_csm_stud IS
    procedure sp_student_query(iotb_query IN OUT stud_ref_cur)is
    begin
         open iotb_query for
              Select s_id
              ,s_first
              ,s_last
              from student;
    end sp_student_query;
    END;
    I have a datablock, STUDENt based on "fpkg_csm_stud.sp_student_query"
    When I query the form I get an error, FRM-40505, on 9iAS.
    However, if I created the same package as a stored database object, and based my form datablock on the database stored procedure everything works fine. I cannot find a reason why.
    I know that forms can be based on front end based procedures OR backend based procs. Dont have a clue here, any help is great.
    Thanks
    Vijay

    Hello Vijay,
    as far as i know there is no way to base a block on a 'front end stored procedure',
    assumed that you mean a package in a library or form.
    But what should be the reason for doing so, or the other way 'round why not just use a database package?
    Bernd

  • Creating dynamic LOV in form builder 6i

    Hi All,
    I am new to form builder.
    I want to create dynamic lov, means
    Project type
    Client
    Work_type(thsi is also lov) ->> 1) Billable
    Reason (this is also lov) ->> 1) Billable
    Work_type(thsi is also lov) ->> 2) Non-Billable
    Reason (this is also lov) ->> 1) Fresher
    2) Project Manager
    As shown above, Suppose the project type is client then I will select either "Billable" or "Non-Billable" value.
    If I am selecting Work_type LOV as "Billable" then it should display "Billable" value in reason LOV
    or if I am selecting Non-Billable value from Work_type LOV then reason LOV will display the list of value as Fresher and Project Manager.
    Please help me, its very urgent.
    Thanks in advance.
    Regards,
    Bluetooth

    Bluetooth,
    This can be accomplished by creating two seperate record groups; one for Billable and one for Non-Billable. Then - in the WORK_TYPE When-Validate-Item (WVI)trigger - when the value is "Billable" you assign the Billable Record Group to your LOV or if the value is Non-Billable, then you assign the Non-Billable record group to your LOV. Your Record Group queries must return the same number of columns and the column names must match. If your record groups need to have a different number of columns and column names, then I would just use two seperate LOV's and assign them to the item accordingly. For example:
    /* Sample WVI trigger */
    DECLARE
      lov_id    LOV;
      item_id   ITEM;
    BEGIN
      lov_id := Find_LOV('YOUR_LOV_NAME');
      /* Option 1: Change Record Group of LOV */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'BILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'BILLABLE_RG');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'NONBILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'NONBILLABLE_RG');
        END IF;
      END IF;
      item_id := Find_Item('YOUR_BLOCK.REASON');
      /* Option 2: Seperate LOV's */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'BILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'BILLABLE_LOV');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'NONBILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'NONBILLABLE_LOV');
        END IF;
      END IF;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Creating tabs in XML Forms builder

    hi all,
    is there anyway we can create a form in xml forms builder with different tabs? would that require manual coding?
    thanks!

    Hello Samer,
    the XMLForms buidler does not support tabs.
    Manual changes to the files created by the XMLForms build is not recommanded, because you would loose all your chance, if you make afterwards a change within the Forms builder.
    Regards, Roland

  • Create user from oracle form builder 10g

    dear all,
    anyone to help me? I want to try, to create a new user from form builder oracle 10g in windows, I use a default script like 'create user user_name identified 123' in toad 9.0 for oracle and the result is success but when I try to combine with form builder oracle 10g this script doesn't work...I hope somebody can help me to solve my problem..
    thank you,,,
    Dedy Prasetyo T.

    Dear Francois,,
    I've tried the way you suggested and success. but how if I take the value of user_name and password from the data block to insert table dba_users ? would you like to help me?
    regard,
    Dedy P.T

  • ESS - Creating a Front End Selection Screen, that accesses SAP T-code

    Hi,
    We have an ESS Portal in our company.
    I have been given the following request:
    For a specific transaction, create a selection screen in the portal that would be a modified version of the selection screen that exists in the SAP system.
    From this front-end in the selection screen, the specific transaction within the SAP system would be accessed.
    How is this done? What do I need to know about the overall process?
    Please help.
    Thanks,
    John

    Just to clarify,
    Create the transaction and selection screen in the SAP system.
    Then ask the Portal team to create an iView for this transaction.
    What if I need to say get the Internal SAP employee number from the user's sign on information?
    Thanks,
    John

  • Function Modules and non-PI services to create a front-end to E-Recruiting

    I have looked quite a bit throughout the forums and via Google and am having a hard time answering this question.  I'm positive I'm not the first to ask this.  Anyway, our business users are not too keen on the look and feel of the WebDynpros or BSP's that are available via the E-Recruiting system.  They would like to really change the look and feel of the application.  Is there any document discussing how to change the look and feel of the External Facing job board and application process?  I have not been able to find a cookbook or anything related to this. I could dig through a bunch of code and work my way back, but their has to be a better way. 
    I'm looking for either a how-to guide that discusses to what extent the look and feel of the screen can change and/or what are the services/function modules that are being used for the external candidate (create candidate, list jobs, show job details, apply for jobs, etc.). Any thoughts would be appreciated.
    Thanks.

    am not a techie so cannot answer your question in earnst but I know exactly how youfel about e-rec looka nd feel so adding my two pence:
    1. when discussing e-rec it is imp to mentione the version below version 6 it was bsp 6 onwardsit is webdynpro.
    2. before we discuss code changes, what is the extent of 'look and feel' change your clientwants? can that be addresed via the portal-theme by way of developing a flashy new css based theme? thatmakes life easy for everybody involved and also makes the entire nw portal flasy not just the outward facing job portal...  at a comparitively low cost...
    3. If the answer to abovepoint is a 'no' I guess the only option is to go-a-code-dredging,..
    good luck.

  • Error in news created in XML Form Builder

    Dear Experts
    I have created news in XML Form builder (three forms edit, rendered list and show). Created two iviews NewsExplorer and NewsBrowser.I have exposed these iviews for relevent users. Now the problem is the edit for and the show form of the XML news is not working for few users. While opening the edit form and show form for few users it is giving the below portal runtime message.
    BEGINING OF ERROR MESSAGE----
    Access denied (Object(s): com.sap.portal.system/security/sap.com/NetWeaver.KMC/low_safety/com.sap.km.cm/components/xmlformpreview).
    END OF ERROR MESSAGE----
    Appreciate your response.
    Regards
    Shanmukha Rao Banisetti

    Try adding everyone group to the low_safety security zone...

  • SQ01: Creating Front end for a set of query programs

    Hi,
    I need to create a front end to display a set of queries or query programs.
    We can use SQ01 to open all queries, but my task is to create a front end
    and let the users only acccess the queries i want( e.g some 50 queries).
    Using the new front end users should be able to access only these 50 queries.
    Any ideas.
    Thanks,
    Rao

    Hi Rao,
    Assign that particular user group or the role to the infoset of those query using SQ02. In this way they will be able to access those queries.
    Regards,
    Atish

  • "Xml Form" Created with Form Builder  in a CO

    Is it possible to assign a "XML FORM" created with the tool Form Builder of Portal, and assign it to a CO?
    Regards
    David
    Message was edited by:
            David Valenzuela

    Is it possible to assign a "XML FORM" created with the tool Form Builder of Portal, and assign it to a CO?
    Regards
    David
    Message was edited by:
            David Valenzuela

  • Display wpc page containing articles created using forms builder

    Hi everybody,
    I need to create a wpc site with different pages. Each page will need to contain different categories of articles.
    These articles will be created using the xml forms builder and for each category there is a specific KM folder (the articles are classified using taxonomies).
    In a page "food", all the articles from the "food" folder will need to be displayed (title, date and content). this for every article in the folder.
    I already had a look at HTML collection renderer but this is not providing what I need.
    So I need something else but I have no idea what I can use for this nor where to start looking for it.
    Can anybody help me?
    Thanks in advance.
    Kind regards,
    Wouter

    Hi Wouter,
    Have you had a look at these.
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/ed404583c63113e10000000a1553f7/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/edd2319b3f3112e10000000a1553f7/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/46/793a1c608c0ad3e10000000a11466f/frameset.htm
    Hope these are handy!
    Good Luck,
    Sandeep Tudumu

  • PL/SQL & Form Builder

    Hey
    I used Oracle 8i when i was at uni to develop databases using PL/SQL and Form Builder. I was able to purchase Oracle 9i a few years so that i could practice my developing skills. Now i do not know what has happened to the Oracle 9i i bought, probably got misplaced when i moved house.
    Does anyone know where i can purchase it from or download it from?
    I need PL/SQL to program and create my tables and Form Builder to have the front end to link to my tables.
    Any help would be most appreciated.
    Kind Regards
    Zak

    You can download them free for your own non-commercial purposes.
    Forms & Reports Developer 10g:
    http://www.oracle.com/technology/software/products/ids/index.html
    Oracle Database 10g:
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Express Edition will probably do fine (this is also free for commercial use), though you could use Enterprise Edition if you prefer ($$ for a commercial licence but free to mess around with at home).

  • Front End Tool for JSP

    I'm trying to develop a commerically viable front-end to an existing JSP system.Are there any tools available that make the task of creating a front end(i.e. HTML,XML) easier.
    For example, nice headers/tabs at the top of each page while keeping usability at a premuim??

    That's a difficult question to answer off the top of my head.
    Are you looking for some software that allows you to import a JSP based application into it, with the intention of modifying those so they look nicer?
    Or are you looking for a tool that will let you build nice looking pages then spit those out as JSPs or XMLs?
    Either way, my reply would be NO? The userbility aspects are things your organisation has to invest time in (designers, PR folks, communications, page developers, info architects, etc). Translating those thoughts into hard pages is where the HTML layer comes in, and there are no tools out there that can bring usability into web pages.
    You see what I mean?
    However, if what you are asking for is the availability of tools or editors to help you create the HTML you put in JSP files, then you are only one step away from your answer. There are several out there. Just look in http://www.download.com/Web-Page-Creation/2001-10247_4-0.html?tag=nav_dir for some of the most popular.

Maybe you are looking for