How to check in an attachment when checkin a document in UCM 11g?

Is there way to check in an attachment when checkin a document 11g UCM?
Actually I am try to checkin two alternate files with primary file. But which is not supported.
So I am thinking to checkin the second alternate file as a attachment.
Or is there any other better ideas?
Thanks.

If you are referring to programmatic attachment though there is an enhancement request open. When a file is processing (the main checkin) attaching an attachment will fail until it is released. With a manual process this is not a problem but with some kind of script this will fail.
just an FYI

Similar Messages

  • How to check lock status of field in current document?

    Hi,
    How to check the status of field in current document(master agreement), that is whether its locked or not.
    I locked "Publish to Supplier" checkbox after MA is saved first time. Now, I want to check the status whether this field is locked or not in the same document.
    IsLockOwner( ) is not returning the correct value. Its not giving the current document field lock status.
    Is there any way to get current document field status?
    Thanks,
    Saloni

    Hi,
    If I understand correctly, your requirement is to get the value of this field "Publish to Supplier on". It can be achieved by writing the below:
    isVendorVisible = doc.getExtensionField("VENDOR_VISIBLE").get();
    Meaning, if the box is checked, it will return a value = true and if not then false.
    Hope this helps,
    Regards,
    Vikram Shukla

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to add a related content for a particular document in UCM

    Hi All
    How to add a related content for a particular document in UCM. On which table it stores all the related document details. Can anyone suggest me a document which helps me to know how to add related contents for a document
    With thanks and regards
    Anoop

    I believe there is a PDF doc which comes with the component (it should be at your harddrive when you install it), which describes everything you will need.
    In a nutshell, there are two types of relationship: sibling - sibling, parent - child (there are some more nuances, but it follows the same logic).
    A relationship is created between two existing items (not sure, if you can also create a relationship for a new checked in item, but it would be just a usability). You select the type of relationship and the item - I believe depending on the relationship you may start from either item. The dialog to start is INFO (display metadata) or UPDATE (update metadata).
    When a relationship is created you may watch it also from either end (again INFO is the starting point).
    It is quite self-explanatory, so if you have the component installed you may just play around with it for a while and that is it.

  • How to check credit card number when clicking Update order

    Hi Experts,
    I need to check credit card number when clicking Update order.
    I put  if(document.forms['order_positions'].elements['nolog_cardno'].value == "") in submit_refresh function,  but get "document.forms.order_positions.elements.nolog_cardno.value is null or not an object" error.  Any advises?
    Thanks, Jin

    Try like this
          if ( document.forms['order_positions'].elements['nolog_cardno[0]'].value == "" )

  • How can I place my initials when in a document shared review?

    When in a document shared review envitronemnt, the Sign Document menu is grayed out, I want to be able to place my initials in
    a document, what are my options?

    The contents of the folder-level JavaScript file can simply be:
    // Create and set the value of the identity.initials property
    identity.initials = "GWJ";
    You can then retrieve the value in your dynamic stamp JavaScript to the the value of a field, something like:
    // Code in calculation of a text field in a dynamic stamp
    event.value = identity.initials;

  • How to create column for attachment in SharePoint 2013 Document Library.

    I've created document Library where user can upload the file while click on Upload option (OOTB).
    Now in this Library I want to create one more column where user can put some comment and attach one more file for reference. 
    For comment I can create "Single line of text" type calumn where user can put some comment but for attachment not sure which type of column I have to create.
    Want to know is there OOTB feature/column available which I can use to Add / create a one more column to upload a document for reference.

    Hi,
    For issue 1, please refer 
    To manage the permissions for a Document Set, you must have at least the Design or Full Control permission level.
    On the Welcome Page for the Document Set, click the Manage tab of the Document Set ribbon, and then click Permissions.
    Do one of the following:
    To change the permission settings for the document library itself, click Manage Parent.
    To stop inheriting permissions from the document library and create unique permissions for this Document Set individually, click Stop Inheriting Permissions.
    To view the specific permissions an individual has, click Check Permissions, and then type the name of the user or group you want to check.
    To inherit permissions from the parent document library (if the Document Set was previously configured to stop inheriting them) click Inherit Permissions.
    For more information about working with permissions, see the links under See Also.
    https://support.office.com/en-in/article/Create-and-manage-Document-Sets-c71d5796-d559-48de-b1b3-42383bdd13ea?ui=en-US&rs=en-IN&ad=IN
    For Issue 2:
    You can create a link in the Quick Launch bar
    http://support.sherweb.com/Faqs/Show/how-to-add-a-link-to-the-quick-launch-toolbar-in-sharepoint-sharepoint-2013
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • How does customer account gets debited when a billing document is made

    where it is configured that a particular customer master record gets debited when any billing in sales is done.
    is it  part of fi-sd config part.
    or fi part only
    sales a/c gets creditted due to vkoa t,code
    but how does customer a/c gets debited where

    Hi
    In SD you set up the account assignment to FI, the customer in SD is normal the same customer number as in FI. There are different other options possible, this is set up in the partner rol in SD. (like Payer).
    From SD there is an intertnal interface to FI/CO that use these settings
    This part of the settings is between FI and CO and should be done by sales and finance

  • How do you add an attachment to an email (document, photo, contact, etc.) from the mail application?

    I want to reply to an email and add an attachment. How do you do this on email accounts other than iCloud Mail?

    The only things that you are able to email using the software that came with the phone are photos, videos, contact information, notes, and links. Documents are not able to be saved to your iPhone unless you are using a downloaded application or have them in an email. To send an email containing a photo, contact, etc. you must go into the application and click share->email.
    A workaround for saving documents without the need for a downloaded application would be taking a screen shot (pressing the lock button and home button simultaneously.) This is not the best choice for all cases, but may be for some documents such as word documents.

  • MIRO- How to check the Status of Invoice Image in Document

    Hi,
    Can anyone help me extract a report from SAP to identify the list of documents (posted in MIRO) on which Invoice Images are attached? Is there any T-codes or programs? This is required to identify which all documents have invoice images & which are not having.
    Looking for your quick reply.
    Regards,
    Santosh Poojari.

    Hi,
    I  am not able to see T-code MIR5 in the system. Can you kindly help with the correct t-code before I can think of customising.
    Regards,
    Santosh.

  • How to change schedule line fields when save sales documents in va01/va02

    Hi, every Experts,
    I want to change schedule line when save the sales documents in va01 or va02, such as change delivery block or schedule line category.
    of course, can use user exit USEREXIT_SAVE_DOCUMENT_PREPARE, but I do not know to use this user exit, I am newer about ABAP.
    Please help me , thanks.
    best regards
    Passion Wu

    Hi,
    For changeing schedule line: select line item, GOTO --> item --> schedule lines --> enter the confirmed qty.
    USEREXIT_SAVE_DOCUMENT_PREPARE program is MV45AFZZ
    For your reference
    USEREXIT_SAVE_DOCUMENT_PREPARE - Can I use in button, but skip
    regards,
    Mohanprabu C

  • How to create a empty table when user a oracle bpm ADF 11g auto created form?

    Hi,
    I'm new to ADF/BPM development. I created a bpm process and generated adf forms.
    I want to customize those created forms. I want to use a table to show payload content and insert rows from my EJB to BPM payload datacontrol programatically. Everything is fine but, when loads those pages a empty row is created cause some unwanted behavior, if I won't delete this row, if I want to delete this row, it actually removes the last inserted until I delete this empty row. I googled but I do not found any info.

    Hi,
    you may want to try the SOA forum with BPM related questions. If you create an empty row then - if this row has validation applied - you of cource need to delete it. However, if you add a new row after the empty row then you need to find this row by its index or similar as it no longer is the current row (so just using the delete operation of the DC doesn't work)
    Frank

  • How to fill properly PA fields when creating FI document through BDC sessio

    Hello Guys,
    I got a problem filling PA fields properly when creating an FI document via FB01 with BDC session. There is no problem filling PA fields properly with bapi 'BAPI_ACC_DOCUMENT_POST' as background and document is being created succesfully but when I try to create FI document via Batch input session and when Profitibality segment screen comes , PA field values don't fill the appropriate PA fields in this screen and cannot be created document. There is no problem sending appropriate values to related fields in the program code because I debugged and seen it. Do you have any idea for solving this issue?

    mehmet gullu wrote:
    Hello Guys,
    > I got a problem filling PA fields properly when creating an FI document via FB01 with BDC session. There is no problem filling PA fields properly with bapi 'BAPI_ACC_DOCUMENT_POST' as background and document is being created succesfully but when I try to create FI document via Batch input session and when Profitibality segment screen comes , PA field values don't fill the appropriate PA fields in this screen and cannot be created document. There is no problem sending appropriate values to related fields in the program code because I debugged and seen it. Do you have any idea for solving this issue?
    In some scenarios when the program is run in the background then some screen numbers are different. Maybe you can try to simulate the program in background mode.

  • How to check the form name in S_P00_07000134

    hi all,
    could you please tell me how to check the form name when get the print preview using T-code S_P00_07000134. i tried to active SE71, but when executing S_P00_07000134, click on print preview, it doesn't go to debugging.
    please help me with the issue, thanks a lot.
    regards,
    eric

    Have you looked in the IMG menu path: Financial Accounting > Financial Accounting Global Settings > Withholding Tax > (either Withholding Tax or Extended Withholding Tax) > Generic Withholding Tax Reporting > Define Output Groups.
    View the output group used in the S_P00_07000134 selection screen.  In the Printouts section, Printout 1 and Printout 2 have smart forms identified, either Smart Form or PDF form types.

  • How do you add a Comment when editing document in Word for ipad?

    How do you add a Comment when editing a document in Word for ipad. I've subscribed to Office, so have full editing functions. Can Track changes etc in Review, but can't see how to add a marginal Comment.

    Comments, like they are in Numbers for OS X, are not really supported in iOS. Normally, they rely on a mouse-over to read them. Since there is no mouse on the iPad, it stands to reason they are not there.
    I believe Eric Ross's comments is more geared towards used said Numbers docs on iWork.com.

Maybe you are looking for

  • Font sizing best practice in 2014

    Decided to obtain a better working knowledge of font sizing best practice, read until my eyes bled, and find I continue to have questions. So much posted is old (older than few years) and change happens fast. To the point; Since use of em units (or p

  • Java Update 5 (1.0) breaks Java for Volano based chats

    I installed the Java Update 5 (1.0) for Leopard on my Intel based Mac mini and then was unable to enter Volano (Java applet) based chat rooms. I was forced to reinstall my system to revert to my prior version of System 10.5.8 in oder to be able to co

  • User defined field with Linked Table property

    Hi All, I know this has been posted several times but I cannot get this to work.  I am trying to add a user defined field and link it to a table.  I am getting the error "The field 'Related Table' should consist of 8 alphanumeric characters with no v

  • Removal of pics from 3gs. can transfer to pc, but cant get the pics off of phone.

    I correctly used the phone as an exterior drive and got the pics to go to pc. But the pics wont remove from the phone. Then I mistakenly sync all the pics from pc to phone. What is the correct way to get pics off of phone without having to delete eac

  • What are iTunes Cookies?

    When I try to accept the new Terms on iTunes 9.0.1 (9), I get the message "Your request could not be completed. Make sure your computer's date is set correctly and that it accepts cookies from the iTunes Music Store. I click "More Info", which leads