How to customise Siebel Attachment Content Check-In Form?

I've customised my search form using the rules and now all the field from search form appears in the check-in form. How to customise fields list for the check-in form?
Thanks in advance.

Hi jiri.machotka
I Know this link but what i want to do is generating dynamically a sub form (in checkin form) depending on choice
For example when my choice is Person it generate a sub form containing
Name (input with its label)
Firstname
Lastname
Age
Regard
CABDiop

Similar Messages

  • How to generate field on UCM check-in form???

    Hi,
    How to generate field on UCM check-in form???
    I mean in check-in new document form i have an option list metadata field (ex: Type)
    When i select Person like Type value, it generate me input text depended on it for exemple
    - Name (input text)
    - Adress (input text)
    - phone (input text)
    And when i click on check-in button it save the input value on Person table
    Please help me
    Khadim

    Hi jiri.machotka
    I Know this link but what i want to do is generating dynamically a sub form (in checkin form) depending on choice
    For example when my choice is Person it generate a sub form containing
    Name (input with its label)
    Firstname
    Lastname
    Age
    Regard
    CABDiop

  • How do I add spoken content in mp3 form to Audiobooks?

    How do I add spoken content in mp3 form to Audiobooks?
    I have tried drop & drag, adding a folder ect.
    It always goes into the music folder. I have unchecked the box in advanced options, as well.
    Thank you any suggestions.
    PB

    See the FAQ at this site.
    http://aldoblog.com/audiobooks/

  • How to process Excel attachment contents?

    I'm looking to read excel attachments to an instance and use attachment contents in the process. Any help will be highly appreciated.
    Thnx,
    MK
    Edited by goelmk at 11/19/2007 10:19 AM

    I can think of two alternatives:
    1- Use COM (introspect Excel, and use it to open the files)
    2- Use a Java library that can read Excel (for example:
    http://poi.apache.org/ )
    You must first download the attachment to a temporary folder. The filename
    should be unique (i.e.: you can use the instance number as part of the
    name 'this.id.number')
    The following code should download all attachments:
    bytesWritten as Int
    fileName as String
    files as String[]
    //Download all attachments
    for each attachment in attachments
    do
         fileName = attachment.fileName + "_" + this.id.number
         writeFromBinaryTo BinaryFile
              using data = attachment.contents,
                   name = fileName,
                   append = false
              returning bytesWritten
         if bytesWritten != attachment.contentSize then
              //Something is wrong, handle de error...
         else
              files[] = fileName
         end
    end
    for each file in files
    do
         //Use the desired API to process each of the files
    end
    Which choice of API you use, depends on the environment, performance
    constraints, etc. If you choose COM, you must make sure that the
    downloaded files are available on the machine where the COMBridge is
    running (for example by using a network share), and that you're not
    overloading Excel (i.e. not too many concurrent instances, Excel is not
    intended for heavy concurrent use).
    POI should be easier to work with, but your mileage may vary depending on
    how 'standard' the Excel files are (macros that run on load, probably
    won't work).
    Hope this helps,
    Juan
    On Mon, 19 Nov 2007 15:19:36 -0300, Manoj Goel wrote:
    I'm looking to read excel attachments to an instance and use attachment
    contents in the process. Any help will be highly appreciated.
    Thnx,
    MK
    Edited by goelmk at 11/19/2007 10:19 AM--
    Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

  • How to customise and navigate Content Type - SharePoint 2013 List

    I need some advice here. I'm customizing forms that have list built using Content Types. I noticed the difference in the links is something like this below I have one default content list type called item and the other one is called College Form
    Item is ContentTypeId=0x01003FF12EB7EAB88340BEE53D34C38A906200147E508F34B9164ABE555FF698569C27
    College Form is ContentTypeId=0x01003FF12EB7EAB88340BEE53D34C38A906200147E508F34B9164ABE555FF698569C27
    When doing my customization of the form I would like to hide some fields and show some based on the content type. I know by default the content type does that. But im using JS to hide some fields but don't know how i can do this or what values to use to
    make this happen.
    Any ideas and thanks in advance

    WPQ2FormCtx.ItemContentTypeId will give the content type ID of the item in each of the forms newform.aspx, ediform.aspx and displayform.aspx. You can also use WPQ2FormCtx.ItemContentTypeName, if you want to compare name instead of Id. Here is a JQuery
    code to hide fields in the forms:
    <script type="text/javascript">
    jQuery(document).ready(function($) {
        if(WPQ2FormCtx.ItemContentTypeId == '0x010400C36D463A4788AD4AAF5F85C02DA29F8E') {
        $("h3.ms-standardheader:contains('Body')").closest("tr").hide();
    </script>
    Note that this script assumes the JQuery is already referenced in the site. You can place above code in Script Editor web part in each of the forms. 
    Also, beware that this way you can hide the field from UI, but user can still open the page source and find the actual information in the hidden field. 
    If the requirement is to completely hide the field data then you will need to set the field properties like showInEditForm, showInDisplayForm and showInNewForm
    Nadeem Yousuf

  • WebCenter Content Check In Form - CHECKIN_NEW_FORM from ADF Application

    Hi,
    How can I get the webcenter content checkin form to pop up on request from my adf application.? This is an urgent requirement.
    Thank You

    Hi Raj,
    We are running on JDeveloper PS5.
    That blog looks like its a Webcenter Portal Tutorial.
    To Simplify our use case, say you have
    a standard adf application
    With a jspx and a command button.
    Requirement:
    When a user user click on the command button from adf application, the ucm check in page should popup allowing the user to index and check in content.
    We thought the CHECKIN_NEW_FORM service is suppose to meet that requirement but we are having a problem putting it all together inside our adf application.
    Please let me know if you need more information

  • How to change the layout of check in form

    Hi,
    Is there anyway to change to position of the metadata field, such as display more than one field in the same row?
    Thanks.

    Check out chapter 6 of the Admin Tutorials guide for some tips and tricks on using profiles and rules to change and enhance the layout and function of the checkin/search and other pages.
    http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/tutorials/tutorials_cserver_10en.pdf
    Warmly,
    Billy Cripe
    Fishbowl Solutions

  • How to print the contents of a form(window)

    I'm devloping visitors application in java. After the data entry, I need to display the selected information from database along with the photo and take a printout so that it looks like a card.
    I know how to display the contents in a form. How do I print the contents of the form?
    -Thanx
    Hane

    in JComponent there is a method called print(Graphics g)
    you can use that with a Printable class
    read bout the java.print package in the java doc

  • How to enable the Attachment feature in the Receipts Form in EBS 11.5.9

    Hi Community,
    The question is very simple, cause although We have revised most of the posts of the forum and metalink, we do not discover how to enable the attachment feature in Receipts Form, in our release 11.5.9.
    Due to we have a custom receipt form and a standard receipt form, we have try to enable oin both forms, but we do not get it.
    Any clue?
    Thanks for your answers in advance.
    Luis

    go to Application Developer -> Attachments.
    You can configure the attachments for your forms here.
    --Prasanna                                                                                                                                                                                                                                       

  • How to display service for object (attachment content ) in script

    hi all
    In me23n we find services for object like attachment, private note, workflow etc...
    i need to display the attachment content in script ..
    how could i do this ? 
    any body give your valuable inputs to bring solution.
    Regards
    deepika

    Hi,
           Configure it for document type SDIORDER.
    sirish

  • How can i creat CRC 32 CHECK WITH THE lookup table as attached.

    how can i creat CRC 32 CHECK WITH THE lookup table.attached
    i creat one,but not match the result number C++ version
    result number C++ version:
    FE 00 18 02 40 1E 65 43 00 03 E8        CRC32=>78 1F E9 06
    FE 01 18 02 40 1E 65 43 00 03 E8        CRC32=>F8 8F 49 61
    FE 02 18 02 40 1E 65 43 00 03 E8        CRC32=>7D FF B4 7F

    due to some reason i can not attach the table.but you can find it herehttp://lavag.org/topic/15325-crc32/,it in the CRC.llb 84.03K =>CRC-32 Table.ctl thanks a lot

  • How to get content check in info

    Hi,
    I have created a custom check in form and it contains few fields and on is redirected to confirmation page. In the confirmation page, I want to display
    the content id, title, author date,keywords all from the previous screen where user entered the values.
    I am using the following method to get the info but its not working.
    ***************************Check In page**************************************************************************************
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!--$include ss_layout_head_info-->
    <title>(untitled)</title>
    <script id="ssInfo" type="text/xml" warning="DO NOT MODIFY!">
    <ssinfo>
    </ssinfo>
    </script>
    <script type="text/javascript">
    var checkinService = "CHECKIN_NEW";
    function postCheckIn(form)
         alert("insde js")
    form.IdcService.value = checkinService;
    form.dSecurityGroup.value = form.SecurityGroup.value;
    alert(form.SecurityGroup.value);
    form.dDocType.value = form.DocTypes.value;
    alert(form.DocTypes.value);
    form.dAuthor.value = form.Authors.value;
    alert(form.Authors.value);
    form.submit();
    </script>
    </head>
    <body>
    <form name= "Checkin" enctype="multipart/form-data" method= "post" action = "/idc/idcplg">
    <input type = hidden name = "IdcService"/>
    <input type = hidden name ="primaryFile"/>
    <input type = "hidden" name ="dSecurityGroup">
    <input type = "hidden" name = "dAuthor">
    <input type = "hidden" name = "dDocType">
    <input type =hidden name= "RedirectUrl" value= "http://localhost:7771/marketingkitportal/index.htm"/>
    Title<input type="text" name = "dDocTitle"> <br>
    <!--Generating security group from content server -->
    security group <select id="SecurityGroup" name="SecurityGroup">
    <option selected value="0">
    - please choose one -
    </option>
    <!--$rsMakeFromList("estSecurityGroup","securityGroups","estSecurityGroupName")-->
    <!--$ loop estSecurityGroup -->
    <option value="<!--$estSecurityGroupName-->"><!--$estSecurityGroupName-->
    </option>
    <!--$ endloop -->
    </select>
    <br>
    <!-- Generating doc authors from content server -->
    Author <select id="Authors" name="Authors">
    <option selected value="0">
    - please choose one -
    </option>
    <!--$rsMakeFromList("estAuthors","docAuthors","docAuthorName")-->
    <!--$ loop estAuthors -->
    <option value="<!--$docAuthorName-->"><!--$docAuthorName-->
    </option>
    <!--$ endloop -->
    </select><br>
    <!-- Generating document types dynamically that are available in contnet server -->
    Type <select id="DocTypes" name="DocTypes">
    <option selected value="0">
    - please choose one -
    </option>
    <!--$rsMakeFromList("doc_types","docTypes","docTypeName")-->
    <!--$ loop doc_types -->
    <option value="<!--$docTypeName-->"><!--$docTypeName-->
    </option>
    <!--$ endloop -->
    </select>
    <br>
    PrimaryFile1<input type = File name = "primaryFile"> <br>
    Confidentiality: <select name="xConfidentiality" id="xConfidentiality" style="WIDTH: 250px">
    <option value="0" selected>
    Please select one
    </option>
    <!--$rsMakeFromList("estConfidentiality","xConfidentiality.options","confidentialityName")-->
         <!--$loop estConfidentiality -->
         <option value="<!--$confidentialityName-->"><!--$confidentialityName--></option>
         <!--$endloop-->
    </select>
    <input type=button name=javaSubmit value="Check In" onClick="postCheckIn(this.form)"> <br>
    </body>
    </html>
    ***************************Confirmation page************************************************************
    <h2>Check In Confirmation for '<!--$dDocTitle-->'</h2>
         <!--$executeService("DOC_INFO")-->
         dID                         : <!--$getValue("DOC_INFO","dID")-->
         Content ID                : <!--$getValue("DOC_INFO","dDocName")-->
         Title                    : <!--$getValue("DOC_INFO","dDocTitle")-->
         Checked in by          : <!--$getValue("DOC_INFO","dDocAuthor")-->     
    Edited by: AbhijijitPr on Jun 2, 2010 6:00 PM

    Hi Thanks for the help.
    Can you also let me know if this is correct what I am doing.
    1. I created a custom confirmation template named "CHK_IN_CONFORM"(this is content ID) file name is "marketingportalcheckinconfirmation.hcst"
    2. I have put for RedirectUrl value as :
    document.getElementById('RedirectUrl').value="http://localhost:7771/idc/idcplg? IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=chk_in_conform&dID=<$dID$>&dDocTitle=<$url(dDocTitle)$>";"
    3. But when I submit, it says me "Referenced source HTML page not found. Unable to find the template page of form type 'chk_in_conform'."
    4. But when I change the IP and try to redirect I am able to see the dID and docTitle.
    5. Only Issue is to redirect to template page.
    If you can help me it will be great.
    Thanks,
    Abhijit

  • How do I get Payload + Attachment-content into 1 xml using PayloadSwapBean?

    Hi all,
    For a customer I have to poll on a specific email-address on a mailserver until a mailmessage appears, read the attachment (.txt) and transform it to a destination-messagetype. For this purpose, I have used the XI-mailadapter (XIPAYLOAD) and the PayloadSwapBean. I now get the attachment-content in XI and can work with it. So far, so good...
    Now the problem is: I need not only the attachment-content, but also the payload of the mail-xml (with data like sender, CC, subject, body, etc). When I use the PayloadSwapBean, I only get the content from the attachment and I do not get the payload-data. When I do NOT use the PayloadSwapBean, I only get the payload-data and not the attachment-content....
    Is there a way to get both payload (of the email-message) AND attachment-content in 1 file, using this PayloadSwapBean?
    Thanks in advance for your help!
    Regards
    William

    This is not possible. You need a self-written adapter module to achieve this.
    Regards
    Stefan

  • My computer crashed and my itunes library only has my purchases which is 645 songs instead none of my play lists.  my 60g ipod has 1145 songs and all my playlists.  how do i get this content back to my itunes program

    my computer crashed and i had to reinstall intunes.  i have 1144 songs plus some playlists on my old 60g ipod.  my itunes library on my computer only has the songs that i purchased from itunes and none of playlists.  how do i get this content form my ipod back onto my itunes program on my computer.

    check out this post by Zevoneer.

  • How do I move imove content from one user to another on the same computer?

    We bought our Macbook pro about six months ago. We made the mistake of creating two users for it (my husband and myslef) but bow we only log in under my user name. The problem is we originally imported all of our video camera content to his "log in" and now it is in his imovie folder, and not mine. I want to make a movie on my log in with the fottage that we imported to his. So, how do I get video content from one users login on the SAME computer to the other log in users? I cannot seem to move it for the life of me. I did not expect this to be so difficult.

    Hi,
    You need to log into his account and look, under the Movies folder, for iMovie Events. Inside, you'll find folders with the events names and still further will be the movie itself. Copy each to an external media or use the Shared folder so both accounts can reference them.
    Another option would be to attach an external HD and via iMovie (Events Library pane) move them to the new disk. You would preserve the thumbnails and analysis already performed on the videos.
    Good luck!

Maybe you are looking for