Need to create a check in form usin UCM

Hi ,
I want to create a check in form in CS to understand how the form is created, along with dynamic meta data control and save functionality.Also, when the page should be dynamic it means I can update the meta data like its done in the default check in form.
In short, want to have a customized check in form in my website.
Thanks

i ,
I want to build my own custom check in form in which what i want to do is, i will have certain meta data fields like mentioned below
Type
Title
Author (Should be auto populated based on login)
Keywords
Description
Security group
Confidentiality
Account
Release Date
Expiration Date
Last Updated Date
Revision
in which user will enter their details and submit it. Just want to know how it can be done.
Also, few more things in my mind like
1. how to call CS services(any guide),
2. Want to have a user Profile page for edit
3. Want to have option where user can download kits.
Just these are few things in my mind, there are lot many for which i want to have idea on how it is done. I am looking for it but not got any proper guide which makes me understand well.
Any help on his will be highly appreciated.
Thanks,
Abhijt

Similar Messages

  • Need to Create a Check for Plant in WBS & Plant in Network

    Dear Guru's,
    While creating Project (CJ01) my users are creating in a Plant, and while creating network for the same project/WBS, they are using different Plant Code.
    Since my Profit center is related to the plant in CJ01,
    and because of wrong Plant in network, all my PR/ PO is going in a different Profit center, which is creating a huge problem while auditing.
    I need to Create a Check for Plant in WBS & Plant in Network...!!
    Kindly suggest me the ways to do it and how to do it...

    Hi Deepa,
    The Check you are trying to create between Plant defined at Project def and network level that should be same can be achieved through validation at the network level by using a user exit at network level.
                    While creating the network you can change the plant value not equal to the value at proj def/network profile may be one of the reason is since the network type is defined for more than one plant (OPUV).
                    While creating validations at network level we do not have the option of setting the prerequisite/check  using WBS or Proj def fields (i.e. PROJ-, PRPS- fields)    so we need to create a user exit at the network level.
    I am not sure but logically u can have a user exit for both prerequisite and check steps of the validation.
    You need to create the user exit in program ZGGBR000.
    Please take help from your Abaper for the same.
    OPSI-Network header-Validation- Step - Prerequisite u2013 Check u2013 Message.
    Prerequisite
    If Proj Profile = u2018XXXu2019 and Network Profile = u2018XXu2019 (or as per your logic if need be use a exit)
    CHECK.
    PROJ-WERKS = CAUFVD-WERKS   (This logic needs to be defined in user exit and set the same user exit at the check.)
    Once you define the user exit in ZGGBR000, it will be available in the tab u2018exitsu2019 at the Prerequisite and Check levels.
    The name of the form pool (e.g., ZGGBR000) that contains your user exit must be stored in table T80D.
    It is important that you make declare the code generation program for your user exit; how many and what type of parameters you are using for the user exit. You do this by entering your newly defined user exits in the form routine GET_EXIT_TITLES. Found in program ZGGBR000.
    Check with your Abaper to check on all the aboveu2026
    Message:
    Plant at Network level should be same as at Project def level.
    Hope it helps you,All the best..
    Regards
    Vinayak.

  • I need to build a check-in form

    I am creating an app for a local club where members have to check in when they enter. I have all the membership data in an oracle express db. The forms' basic specs are:
    The Check-in Form will accept membership tag information. Upon entry of bar code, the form needs to query the member table to confirm the member's data and present the membership status results (Welcome, Expired, Invalid, Not Allowed etc). It then needs to update a visit_log table to log the transaction. Following this it reverts back to waiting to accept the next check-in.
    Any samples or pointers for me to see how difficult it may to create this app are much appreciated. Thanks much

    Hi,
    Few post where is something about bar code.
    Re: Capturing data from a RS232 device
    Item Text Field (always submits pages when Enter Pressed)
    Re: button that always works when Unde the Enter key to record the information?
    Br, Jari

  • Need to create a user policy form

    Can anyone help?
    I need to create a policy form in Dreamweaver CS4 that a user needs to accept, or not, before proceeding further to another page in my site? After they accept the form the functionality needs to take the individual to another page where they are able to make charitable contributions using credit cards that would be sent directly to the organizations bank. They are trying to avoid using PayPal.
    This is my first time using this concept and I'm getting lost.
    Thanks
    Swany

    Unfortunately it's not perfect. With the other recommendation a user could simply go to the URL without viewing the policy page and thus not accepting the terms. For instance in the example anyone could just go to http://google.com without accepting the terms. Just view source code and see where GoTo URL directs upon accept. Also because there is no server side restriction to the page then the page is crawled by search engines so someone searching for your page online may go to your form page without first being redirected to the policy page.
    With server side restriction the page is not crawled by search engines so the page will not come up in search results and users could not simply visit the URL because it would restrict access and redirect to the "login" AKA policy page first. Server side authentication is always the best method.
    If you'd still like to go about doing it the recommended way let me know and I can walk you through the process. Basically just create a MySQL database table for the users username and password then user Dreamweaver Server behaviors to create the restrict access page and login page. It's pretty straight-forward to use the server behaviors in Dreamweaver once the database is setup. I walked someone through how to setup a database with GoDaddy recently and it's a similar process with other hosts.
    If the other imperfect method that can be worked around works for you then that's great!

  • Need to create a multi line form

    Hi All,
    I have to create a Multi line form for which I have used the following:
    1. Created an EO
    2. Created a VO based on EO.
    3. Created a Page that has two regions:
    a. Main Region
    b. Table Region
    This Table region is of style Table. But when I run the page it shows that No Data has found. Even its not a search page.
    Kindly suggest me that how can I make this page and this page should have 10 rows at a time available to insert.
    Thanks in Advance.
    Thanks,
    Sandy

    Hi Gaurav,
    I have done in the same way as suggested by you but not got success. I am not getting why it shows always 'No Search Conducted' even its not a search page. I have created this page for insert data.
    Following I have added in CO for processrequest:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OATableBean table =
    (OATableBean)webBean.findIndexedChildRecursive("SupTable");
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createSupEntry");
    String buttonLabel =
    pageContext.getMessage("AK", "FWK_TBX_T_ADD_ANOTHER_ITEM", null);
    OAAddTableRowBean addRow = (OAAddTableRowBean)table.getColumnFooter();
    addRow.setText("Add 10 Rows");
    I have added the following code in AM:
    public void createSupEntry()
    SuppVOImpl vo = getSuppVO1();
    System.out.println("AM Inside AM:: ");
    // We need to do this on a VO that has not been queried before we insert
    // our first row. We don't want to do it for subsequent inserts.
    if (!vo.isPreparedForExecution())
    // Complies with the view object initialization guidelines for a detail
    // view object in a master-detail relationship.
    vo.executeQuery();
    System.out.println("AM Not prepared for execution:: ");
    for(int j=0;j<10;j++)
    Row row = vo.createRow();
    System.out.println("AM Creating Row:: ");
    vo.insertRowAtRangeIndex(vo.getCurrentRowIndex()+1,row);
    // Required per OA Framework Model Coding Standard M69
    row.setNewRowState(Row.STATUS_INITIALIZED);
    } // end createSupEntry()
    Thanks,
    Sandy

  • Need to create a online pdf form filler

    hi, not quite sure how to achieve this or which product to use.
    im trying to create an online web form for users to fill out and print (but to prohibit them from saving to their pc).
    i need to embed it somehow on a webpage and not as a link, something similar to this service:
    https://www.pdffiller.com/edit.php?id=475533
    thanks
    Boaz

    Hi Bill, thanks for your reply,
    actually the site uses flash to present the form for filling. i tried building such a form using flash but its too complicated, im sure there is a much easier way.
    say i create a editable form using Acrobat Pro, how would i go about embedding it into the webpage ? and allowing for it to be printed but not saved (the flash solution wrapps the form in a flash file therefor not allowing for a user to save it as a PDF file.
    is there a way to do this ?
    (im not quite sure why the link i sent is password protected, can't you  access it ?  http://www.pdffiller.com/index.php - take alook at their service)
    here is another example of how i would like it to look
    https://www.fillanypdf.com/pdf-software/Fill.aspx?type=pdf-software&id=1179.1783
    Thanks a bunch
    Boaz

  • Need to create a Master Detail Form

    Hi Gurus,
    I have a requirement to create a Master Detail Form. As per my requirement I have a list of Invoice Numbers and once I click on a Invoice Number a new form should open and that Form should contain two regions:
    1. Master
    2. Detail
    1. Master Block should have the Invoice Header Detail which is non-updatable.
    2. Detail Block should be able to perform create, update and delete the lines from here. This detail block should have multiple lines so that user can enter data to create new records in it.
    Kindly let me know your valuable inputs on this. Please share any document, site or any other information on this.
    Thanks,
    Sandy

    Normally, you would create 2 EOs say a MasterEO and DetailEO
    Then Create an Association Object Between them based on the PK-FK relation say MasterToDetailAO
    Then create 2 VOs Based on the 2 EOs already created, say MasterVO and DetailVO
    Then create a ViewLink between them, MasterToDetailVL
    Then add the master VO to ur AM
    And Attach the VL created to the instance of the MasterVO in the AM.
    So the DetailVO will be now linked to the MasterVO via the VL
    U just need to query the master records and the details will automatically be displayed

  • Is this the product I need to create PDF from a form online?

    Hello,
    I need to develop an application where the user fills out an online form and a pdf is automatically created and emailed to them, a copy is also archived. Am I looking in the corect place by exploring LiveCycle PDF Generator or am I looking for something else? I am currently using php and MySQL but from the looks of it may be necesary to use XML. This is very new to me so any direction would be much appreciated.
    Thanks
    Nils Satterstrom

    I am in the same boat as Nils. Has anyone made any discoveries on this? I have a call in to a "specialist" at Adobe, but it will be 3-5 days before someone gets back to me. I want to collect the data using PHP/MySQL and then populate a PDF template of some sort to create a print-ready PDF that I can send to my printer.
    An example of how we plan on using this is with business cards. We're going to create a business card template PDF with form fields for Name, Title, Phone, Email, etc. and then have the user enter in their information and then create a print-ready PDF we could send to the printer to get printed. I am unclear on which Adobe product would work for this. The pre-sales team at Adobe said we might want to look into InDesign server and LiveCycle. I guess the starting price tag for either of those is $10,000.
    Any insight would be great. Thanks!

  • Need to Create a Dynamic Tablular Form in APEX

    Can someone point me to the APEX documentation that discusses how to create a tabular form that can be dynamic (I can add or change data in the table)? Similar to a report, but where the data can be modified.
    Thanks.
    David

    Actually, I found the step by step tutorial on creating a tabular form. So I should be all set. No need to reply to this thread.
    Thanks.
    David

  • How to create a check-out form

    Hi there,
    I'm really hoping someone out there can give me some advice!! I'm building my site in Muse and have Business Catalyst ecommerce.
    My products are essentially quite simple, but each product has variables like size, colour, etc. I am wanting to create a 'form' with drop-down menus available for the customers to choose their products.
    Rather than having an ecommerce widget linking to a third party site like shopify, I am more than happy for the next window when they 'submit' that form, to be a page where they can enter their credit card details, which we will then manually process on our eftpos machine.
    How do I build this?! What is it called? When I do searches on forms and drop down menus and ecommerce widgets etc, I am never lead to the type of 'form' I want to build I'm not sure if it's considered a form! I feel like it should be such a simple process but I am having no luck.
    Thanks in advance to anyone who can shed some light!
    Celia
    PS I am also using MuseCS6 rather than CC as the server I am on is 32bit. Hopefully this doesn't hinder anything.

    Have you heard about GUMROAD ?
    Have you already tried that?
    How about  ECWID?

  • Need to create a contest entry form with a survey

    I have a client that would like me to create contest entry from with a survey, I know that I can easliy do this using the Web Form builder and have the data captured into the database, the prolem that I have is that my client only wants the customer to be able to enter the contest once. Is there a way to set this up using a Web Apps or other code so that if a person with the email address tries to enter more than once they get a message that says that they already entered?
    Any help would be greatly appriciated.
    Thanks,
    Barry

    Hi Barry,
    Here's a posible solution...
    1- Extend the CRM Database with a unique ID field
    2- Add this 'hidden' CRM field to the sign up form so every member has an automatically generated unique ID ( see http://forums.adobe.com/message/4520873#4520873 )
    3- Create an appropriate web app field and pre-populate it with this ID- lets call this field xyz (hide this field too)
    Now, as long as the web app input form is on the web app detail view page, all you'd have to do is compare these two 'strings' i.e {module_cutomerfield,****,*******} and {tag_xyz}
    see http://jsfiddle.net/Webmosphere/Wqvcj/2/
    var alreadyPosted = "{module_cutomerfield,****,*******}";
    if  (alreadyPosted == {tag_xyz})
    $('.removeMe').remove();
    In this example, the element with a class 'removeMe' is removed from the DOM...what you could add under the same if statement is a function to display another element that perhaps
    displays a message such as 'already replied'.
    If the form is not on the web app detail view page, you could still ajax in {tag_xyz}....
    I hope this helps or at the least sends you in the right direction.
    Dave Black
    twitter: @webmosphere
    www.webmosphere.co.uk

  • Need to create a widget or form

    I have a client that needs an html page that has 15 to 20 text fields which the viewer can enter email addresses of friends. When sent it generates a generic email sent to all the email addresses in the text fields.
    I hope I'm in the right forum for this.
    rder

    And what's the real question now? Do you not know how to design the form? How to send e-mails? What have you tried? Not to get crazy, but that could be an endless potpouri of sub-questions involved, but it is unclear what exactly you are having problems with, so please be more specific. One more thing I can tell you in advance: You will need support for PHP on your server to send out mails to multiple people at once nad have security catches to prevent abuse or breakdown of the whole mechanics if not all fields are used, so that would be the first thing to investigate.
    Mylenium

  • Need help creating a fillable PDF form from a Word Doc coverted to PDF

    Hello, I recently switched from the downloaded program to the monthly "subscription type" of adobe "cloud".  Previously, I was able to select in "Tools" the option to insert blue text boxes in my PDF where customers could fill in  info and return to me.  Now, I can no longer find this option on the Adobe Reader XI. Am I missing something?

    You're using Reader instead of Acrobat... Only Acrobat can edit PDF files.

  • Creating a matrix in Forms

    Hi All,
    Can anyone help me out on this. I need to create a matrix in
    Forms 5.0 wherein the values in the block is the sum of 2
    different values from 2 other blocks.
    Please help on this.
    Thanx
    Vikas
    null

    I guess you can do that with investigating the Calculation-part
    of the property sheet for a field.
    Vikas (guest) wrote:
    : Hi All,
    : Can anyone help me out on this. I need to create a matrix in
    : Forms 5.0 wherein the values in the block is the sum of 2
    : different values from 2 other blocks.
    : Please help on this.
    : Thanx
    : Vikas
    null

  • Do we need to create two different home for UCM and WC?

    Hi All,
    I am trying to create Webcenter VM(oracle linux 5) with ECM I used 11.1.1.5.0 version for all installable.for creating this VM.
    here do we need to create separate Home for webcenter and UCM installations.
    any one give me some proper directions to installation of the same
    thank you!
    Siva

    yes i saw those folders but while installing I installed weblogic server in fmw folder.then Installed UCM on top of the i installed WC,but while installing WC its showing ora home is already exits select another or override. like that i am getting so i override. when i am creating domain its completed but i am not able to see startWeblogic.sh in bin folder of the domain.
    I realized that i did mistake while installation.
    can you please give me best infrastructure for web-center installation with all features(portal,sites spaces and content) I have sufficient memory to run multiple VMs.
    Thank you!
    Siva

Maybe you are looking for

  • Is it possible to use the iMac display as en external monitor?

    I want to connect my powerbook up to an iMac using the display as an external monitor for the laptop. Is this even possible? Any feedback would be appreciated.

  • No images in Aperture 2

    I've been using aperture 2 for about four years now and havent had a single problem. I opened the program yesterday and none of my images were there. All of my projects showed up and they all said that there were photos in them, they just weren't bei

  • What is the equivalent Oracle datatype for the access Memo type?

    Hi, I would like to know what the oracle equivalent of the Access Memo datatype is. Thanks Adam

  • Binded attribute value reset in ADF BC 10.1.3.3.

    Hi, I have a jspx page with data from a couple of bind iterators. On one of those iterators I have an attribute AuditId I'm using when user chooses to view some data or download some file. I need this AuditId to be the same the until user leaves the

  • Smart guides just stop appearing (CC)

    Both me and my colleague have noticed with InDesign CC that smart guides just stop showing up. Those little clicks you experience as you change the position of an objects edge and the green lines appear... they just don't do that anymore. Anyone else