File available with list of customized seeded forms on Linux?

Hello,
Does anyone know which file on Linux keeps track of the customized seeded forms? This list will be used to give a warning when applying a patch which contains conflicts.
Thanks for your response!
Guy
Edited by: guyb on 6-mei-2010 5:33
Edited by: guyb on 6-mei-2010 6:05

Hi;
Yes, I know, but in your exemple the form INVTVTXN.fmb should be registered somewhere in a file, because otherwhise we don't get a warning before applying a patch which contains the same file. If there should not be a warning, the file would be overwritten. Do you know in which file it is registered?All registered form information hold under FND tables(like FND_FORM). Those table information hold in tablespace which is holding on xxdata(like proddata) on OS level.
AFAIK If you are applying patch and if it try to change xx.fmb its check fmb's version, If the version check pass then it change fmb also change related fmx. But AFAIK it doesnt change nothing in FND tables.(maybe some patch do,it can depends patch type,i am not sure)
Please check e-trm site to can get to learn relation between FND tables and registered form information
Regard
Helios

Similar Messages

  • I cannot open some pdf files online with Reader XI (like sample forms in Help section).

    I cannot open some pdf files online with Reader XI (like sample forms in Help section or IRS.gov or credit card statements).  I have uninstalled Reader XI, cleaned and reinstalled.  I have no problem right-clicking and downloading and then viewing the files.  No problem viewing acrobat files.  I'm runnnig Windows 7,  IE9.     I can acces them through Chrome.

    RESOLVED
    I found two suspect programs that were installed within the last 48-hrs that may have caused the problem
    1) - Libre Office - latest update.  This is a fork of Open Office.  (unlikely)
    2) - ManyCam video manipulation software  (likely)
    Following info here, I opted to try to open an Adobe PDF file that was on my hard drive.  When I did, it refused and IE10 gave me an ActiveX error (AHA!!).   When I checked the installation of ManyCam, it had installed a version of DirectX that may have over-written the resident versions or disabled them somehow.
    I uninstalled ManyCam but left Libre Office's update in place, then I ran a system restore from a point 24-hrs before the installations.
    This resolved the problem 100%.
    So, the suggestion here is that there may be one or more program in the wild that is interupting the ActiveX or DirectX systems.  They may be running or installing an older version.  In this case it appears the handlers were broken.
    Once the system restore had completed I was able to open Adobe PDF files within my IE10 browser from the Internet as well as open PDF files from my hard drive.
    Note that this same issue also clearned up a problem I was having with the Comodo Dragon web browser, which is a fork of the Chrome project.  Once I eliminated the suspect program and ran the system restore all was well.  In the instance of the Comodo browser it was unable to open or reach anything - dead white screen below the menu bar.
    So my suggestion would be to take an inventory of recent program installations, remove/uninstall them, run system restore from a date before the suspect programs were added, and see what happens.  In my case that fixed the problem.

  • How change the File Open With list of apps?

    In Bridge CS3, how does one edit the list of applications in the File > Open With menu (also available from the contextual menu for any image).
    The list contains a number of applications that I would never use to open an image, and I would like to add to it, a new image editor (pixelmator) that does not appear in it. I have looked in the Bridge Help and the Preferences dialog and don't see any option to do this.

    OK, I have now learned that Mac OS keeps the list of which apps to open what, in the "launch services database."
    This database can be cleaned up and reset which somewhat simplifies the list that is displayed by the Finder OR by Bridge CS3.
    Here is an article on how to reset the launchdb:
    http://www.macosxhints.com/article.php?story=20031215144430486
    Be sure to read all the way to the end as there are updated instructions down among the comments.
    Here is a thread in the Apple Support forums discussing the same issue, and it includes links to some 3rd-party programs that can reset launch services without use of a lengthy Terminal command:
    http://discussions.apple.com/thread.jspa?messageID=1289317
    Even after rebuilding the launchdb, I find that a large number of apps are "registered" to open JPG files, including Camino, Opera, TextWrangler and others with only a tenuous connection to JPG. I don't understand why this is, and I would still like to find a way to limit the JPG Open-With list to a few graphics programs. But cleaning up the launchdb as described in the linked pages, did get rid of some programs and added some missing ones.
    Hope this actually constructive info is useful to others.
    Dave Cortesi

  • Problem with List Item in oracle forms

    Hello Experts,        
                         I am new in oracle forms and i am using oracle forms 11g with weblogic 10.3.5 at windows 7.
    I have 3 database tables say(tbl_city,tbl_state,tbl_address).
    tbl_city
    C_ID
    C_name
    S_ID
    0
    None
    0
    1
    XYZ
    1
    2
    AS
    2
    3
    AXD
    2
      tbl_state
    ID
    s_ID
    S_Name
    0
    None
    1
    XY
    2
    ASD
    tbl_address
    A_ID
    A_Street
    S_ID
    C_ID
    1
    ABC
    1
    1
    Now I have made an oracle form having data block tbl_address with base table name tbl_address. In the form there are two list: one(list_state) for State_Name & State_ID and another(list_city) for City Name & C_ID display.
    Here I want when I set State_name to ASD then List item list_city should be populated with the values having State_NAME=ASD not of State_Name=XY or None.I have tried it to make but not succeeded.I have made a procedure to populate list_city list item as:
    -- here item_nm-->List item Name,  sel_val & sel_val2 for selecting C_ID and C_NAME,   tablNm---->tbl_CITY,  whr for where condition,   mtch--->selected value of list_State(list item in form)
    PROCEDURE list_item(block_nm varchar2,item_nm varchar2,sel_val varchar2,sel_val2 varchar2,tablNm varchar2,whr varchar2,mtch varchar2) IS
    group_id RecordGroup;
    group_name varchar2(10) :='abc';
    status NUMBER;
    query1 varchar2(350);
    item_name varchar2(20);
    match varchar2(50);
    BEGIN
        match:=mtch;
        item_name:=block_nm||'.'||item_nm;
      group_id := find_group(group_name);
    if not id_null(group_id) then
    delete_group(group_id);
    end if;
    --if whr='' then
    --    match:='0';
    --    end if;
    query1:='select '|| sel_val || ',TO_CHAR('|| sel_val2 || ') from '|| tablNm ||' where '||whr||' = '||mtch;
    message(query1);
    group_id := Create_Group_From_Query(group_name,query1);
    /* Select statement must have two column*/
    status := Populate_Group(group_id);
    Populate_List(item_name,group_id);
    exception
        when others then
        message('error');
    END;
    I am not  able to guess what trigger  in oracle forms should be used to populate list item(list_city). Please help by giving useful suggestion.
    Thank You
    regards
    aaditya

    979801 wrote:
    If I use LOV in place of List Item,Then I have to populate a LOV at run time.How could I maintain a record group n attach to LOV at run time?
    On my previous post I have mentioned record group as follows:
    select * from tbl_state where s_id=:tbl_address.s_id;
    If :tbl_adress.s_id chaned during the time of run, then output values of list_city (LOV) is also changed.

  • Unzip.vi only works with 1-internal file, error2 with multiple even in raw form.

    I've attempted to use the LabView unzip tool with several different meathods & I can only get it to work when there's only one file in the zip file. Multiple files continually cause an error in the VI, even when using raw LabView example code/tools. The first file does get unzipped in the specified folder before the error. Error 2 occurred at System Exec.vi. Command was "touch 08131333062007 "Chamber 1.ted"",LabVIEW:  Memory is full.

    Thanks for you response Juan & while this gives me some insight as to where the error is occurring it doesn't solve my problem. You can use the NI provided "Zip Tool.vi" to zip some files & then start a new blank VI & drop in the unzip tool & do nothing with it & run the Untiltled VI like that & it'll prompt for the file & as soon as you select the file...."Error 2", you can even double-click the unzip from the block diagram & use it that way.  I did this as a test to verify that what I'm doing wasn't causing the problem. My actual code uses the "File Dialog Express VI" in a flat sequence to first determine the zip file then the unzip-to location then runs the unzip function. I even get folders if zipped but only one file, no error if there's only one file, the error only occurs with multiple files.
    It appears to be an access issue as if it gets the first file & then trys to re-access for the next. I could handle this if it had functions to close the reference but it doesn't. I did try to take the preview, turn it into an array, run it through a for-loop but there's no way to specify a specific file w/in a zip file.
    Any thoughts?

  • Listing and customer orders

    Hi everyone.
    Has anybody experience with listing and customer orders in IS-Retail?
    SAP Help says:
    "Using assortments, you have...
    - the ability to associate customers with assortments when creating customer orders or deliveries by having the system check the article listings. You can have the system control whether the customers can receive only those articles in their assigned assortments, or any articles in the entire assortment, or have the checking take place through a user exit."
    I have created an assortment and have assigned a customer. As "basic listing rule", I have assigned "1 - Can only order the assortment assigned". After that, I have listed an articel into that assortment.
    But if I create a customer order via transaction VA01 for this customer, nothing happens. I can still put every article in the customer order and there is no check of the article listings.
    Does anybody have an idea, which setting(s) I am missing?

    >
    Tobias K. wrote:
    > Hi Joe,
    >
    > basically, you can use the standard SD Listing check.
    > The difference in IS-R is that it checks against Retail Listing conditions (entries in table WLK1).
    > So, you have to do the following steps:
    >
    > - create assortments and list the articles according to your requirements
    > - customize the SD Listing check (define a listing type and assign it to your sales document type)
    > - assign the customers to the assortments (transaction WSOA2, tab assortment user)
    > - the basic rule listing in the assignment has to be 1 ("can only order the assortment assigned")
    >
    > Now, in the customer order (sales document type as customized) the system should check against WLK1 if the customer is allowed to purchase this article.
    >
    > Regards
    > Tobias
    Hi,
    How did you customized customer order should check against WLK1.
    Thanks in advance
    regards
    Vijai Jain

  • Creating custom correspondence forms for external confirmations

    Hi gurus,
    could you please share your experience, what is the possible solution to create custom external correspondence forms -  confirmations for Business partners or modify the template,  like the one pre-delivered by SAP - F_TR_CONFIRM_ALL.
    my client need confirmations for those financial transactions:
    u2022     Fixed interest bonds;
    u2022     Variable interest bonds;
    u2022     Repos;
    u2022     Interest rate swaps (IRS);
    u2022     Securities lending;
    u2022     Deposits.
    Thanks for your input.
    Rgds,
    Renatas

    Hi,
    The correspondence function provided by SAP is freely definable, and can be assigned with any other custom made forms as well. You may need to develop a new form script by copying existing standard form and make changes as per your specific requirment and assign the same at spro--correspondence area against respective transaction activity.
    Please note, while developing new forms, and if those are assigned for automatic print processing, any inconsitency in the form may lead to runtime error while creating transactions (FTR_CREATE).
    Regards
    Prasad AV

  • Custom order form with file upload facility

    Hi all,
    I'm trying to create a custom order form(for a printing company) where the user can select their product, enter their credit card details and then upload the file. I've created the combo box & user input text fields. Now what I want is that when user clicks the submit button:
    1. A mail is sent to the admin which contain all the details about the form that was filled by the user.
    2. The file that is uploaded by the user should also be sent as attachment in the same mail. I'm not able to figure out how to add the feature of file upload in ActionScript.
    3. This one is optional, but will add value to me if possible. The website is developed in Wordpress. Can we have a feature where a logged in user can save his order and come again later and retrieve his order form.
    Any help would be appreciated. Thanks for your time.
    Regards,
    Rajeev

    your client is, i believe, legally negligent.  you are probably jointly liable with your client.
    you should try and protect yourself.  you should keep a record that you've informed him that he needs to encrypt all credit card numbers during all phases of transmission but i doubt that will be enough to protect you because you are in a position to know and, will know, that he's not fulfilling his obligations to protect sensitive information.
    you would use the urlloader class to communicate between flash and the server and you will probably use php (another coding language) for the server-side coding.
    you can use google to search for php tutorials and help.

  • Customized emailed forms with Acrobat 9

    Using systems with XP or Vista, Office 2003 or 2007 and Acrobat 9.0 standard or pro, is it possible to create a customized form to mail out and collect the responses via email into the answers file?

    Yes. There are a number of new features available with Acrobat 9, many of which are covered in the following:
    https://admin.na3.acrobat.com/_a723755887/p31325014/
    George

  • Clicking on LinkTitle in list opens allitems instead of custom application form

    Hello, This question is pertaining to SharePoint 2010.
    I have one list which has two content types. We have modified the detault forms (new,edit and display) of each content type to its individual custom application pages. We have done this through coding.
    SPContentType CT1= requestsList.ContentTypes["CT1"];
    //Change Edit and edit URL to custom application page
    CT1.NewFormUrl = "_layouts/folder/customnewapplicationpage.aspx;
    CT1.EditFormUrl = "_layouts/folder/customeditapplicationpage.aspx;
    CT1.DisplayFormUrl = "_layouts/folder/customdisplayapplicationpage.aspx;
    //Delete the default from to enable custom application pages.
    CT1.XmlDocuments.Delete("http://schemas.microsoft.com/sharepoint/v3/contenttype/forms/url");
    web.AllowUnsafeUpdates = true;
    CT1.Update();
    list.Update();
    And same update for the other content type. Everything works well.
    When we click on new, custom new form opens, when we click on edit, custom edit form opens, when we click on view item, custom view form opens for respective content type. The problem is when we click on linktitle field value in allitems.aspx, it opens up
    allitems.aspx page instead of opening display form as model dialog which is does when we click on view item by either selecting in ECB menu or from ribbon.
    On custom application pages, I am using SharePoint:SaveButton to save values so that I do not need to write down the code.
    I just tested one thing that, if we have our custom button and if we write traditional way to inserting list item into the list with specifying ContentTypeId in list item, then this problem does not appear. This is when SharePoint:SaveButton is clicked and
    item is saved, at this time problem appears. I prefer going with SharePoint:SaveButton as I have more than 70 fields on the form and do not want to write a code to set values for 70 fields by doing SPList.AddItem()
    According to me, SharePoint:SaveButton is saving list item inside folder because when we update the view and set to show items without folder, I cannot see list items saved using SharePoint:SaveButton click. But when i switch back to show items with
    folder, all items appear. This may be the reason when I click on LinkTitle directly on that hyperlink, it opens up AllItems.aspx with FolderCTId={} as one of the query string.
    Any pointers would be highly appreciated.

    Hi,
    We can do as follows:
    1. Change the URL of Title field to the URL of custom application page using JavaScript.
    2. Create a calculated column and set formula: ="<a href='"&UrlFieldName&"'>"&Title&"</a>", then we can use it as a “Title” column.
    http://sharepoint.stackexchange.com/questions/58954/link-title-in-list-to-value-in-url-column
    3. If you want to customize list form and use  SharePoint:SaveButton control to save the data, the following articles for your reference:
    http://ariwibawa-sharepoint.blogspot.com/2012/12/make-addeditview-custom-form-and-custom.html
    http://thesharepointdive.wordpress.com/2012/03/20/list-forms-deployment-for-sharepoint-2010-part-1-of-4/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Function not available for this responsibility - Custom Form

    Hello All,
    We developed a custom form and was working fine in Testing instance.
    Last week testing instance was refreshed.
    After that all the custom forms are not working. Seeded forms are working properly.
    We checked the form setup(ie form, function, menu and we ran compile security and bounced the server).
    Custom reports under the custom top are working fine.
    Only the form functions throwing the error
    "Function is not available for this responsibility".
    Any ideas. Is the test.class having any impact on this.
    Regards,
    Kannan Balasubramanian.

    Hi,
    Last week testing instance was refreshed.your answer is that the refreshed has remove the custom top definition from your environment.
    Check this
    knick

  • I lost the ability to order and hide site columns if i use custom content type with a custom Create Form

    I have a team site collection and I want to add a new App of type Issue Tracking list. so I did the following:-
    From the site collection I created a new App of type issue tracking.
    Then from the site collection I created a new Content type named “CustomIssue” which has its parent as “Issue” content type.
    I went to the Issue tracking list and I changed the default content type from Issue , to the new “CustomeIssue” content type.
    I open the site collection using SP designer and I created a new Create form for my Issue tracking list based on the "CustomIssue" content type and I select to have the Create form as the default form when creating an item.
    Everything till this point worked well. But when I open the “customIssue” content type , and I re-order the columns and I hide some columns, this was not reflected inside the custom Create form …
    although when using the default content type and the default create form you can control the order of the fields and to specify if certain fields hold be hidden inside the Create form.. so can anyone advice on this please?

    Hi,
    According to your post, my understanding is that you lost the ability to order and hide site columns if i use custom content type with a custom Create Form.
    I try to reproduce the issue, the result is the same as yours.
    As a workaround, if I modify the custom content type form the site setting, and then change the NewForm as the default form, it will change the column orders.
    However, if I use the new created form as the default form, it will remain the original orders.
    I recommend that you modify the custom content type form the site setting, and then reset the NewForm as the default form.
    The result is as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support
    ok thanks for the explanation ,, but what if i want to change the order and hidde some fields in the future ,, do i have to chnage the defualt create form again ...

  • Custom HCM form integration with ESS

    Hi,
        Is it possible to integrate a custom HCM form(Accident reporting) with ESS.
    There are 12 services available in the homepage framework for ESS HCM forms. Does this mean that we can only integrate HCM forms related to these services with ESS?
    Thanks,
    Anand

    Thanks Bala, I have created a new service for the custom form. Which iview should i use to display the form.
    I tried the approach of copying the start process iview from HR administrator business package and linking it to the service. The iview is not displaying the form.
    Is this a valid approach or do we have to use webdynpro+adobe forms for ESS since there is no start process iview in ESS?
    System info:
    EHP3
    Portal 7.0
    ESS 1.0
    Regards,
    Anand

  • ITunes was on a drive destroyed by virus; how can i sync my iPod with new iTunes on new computer without losing my old library? There is no backup iTunes/iPod files available.

    how can i sync my iPod with new iTunes on new computer without losing my old library? There is no backup iTunes/iPod files available.

    If you connect your ipod to your computer then look in the hidden folder labeled "iPod_Control" . (This is on a Mac version, but i think it's the same for Windows) and in "Music" is all your music mixed up in different folders. Just drag the MUSIC folder onto itunes then BAM! It's done ;D
    Source:... This is what I did when this EXACT thing happened to me ;D

  • I need to align the margins of my forms with those of my website, I have looked at all the options and unfortunately I am unable to do it with access to the Adobe.form.min.CSS file which I can't access as a consumer, how else can I fix my problem

    I need to align the margins of my forms with those of my website, I have looked at all the options and unfortunately I am unable to do it with access to the Adobe.form.min.CSS file which I can't access as a consumer, how else can I fix my problem

    I need to align the margins of my forms with those of my website, I have looked at all the options and unfortunately I am unable to do it with access to the Adobe.form.min.CSS file which I can't access as a consumer, how else can I fix my problem

Maybe you are looking for

  • Can I use a 32 BIT Dell Inspiron Duo?

    All I have is a 32 Bit Dell Inspiron Dup 1090 with 1.5 ghz and about 247 gb left on it. CAN I DOWNLOAD and Use Dreamweaver on this computer to build a simple website? I already have a subscription to Creative Cloud - I just want to learn how to do th

  • Pivot table HELP in OBIEE Answers!!!

    Hello, I am having some problems in a "pivot table", "Sections" and "Calculated Items" I have a section called 'e) External Income' and I would like the value reverted from a negative to a positive. In excel or any other form of calculation you can d

  • Can't open print & fax preferences, can't print

    I know I've read about this problem before, but I can't seem to find the thread. I'm a total novice when it comes to terminal, but I don't even know where to start. Whenever I try to print, or even open print & fax, I just get the spinning wheel. I'm

  • Unable to change gmail notification settings

    I just had to do a factory reset on my Incredible to get rid of a few issues. Everything is good now and I've got everything back to where it was except for notifications in gmail. Although I have Email Notifications checked in the Account Settings,

  • Administrator permission Problem

    Hi All I hv a problem. i combined another catalog in my current catalog.after doing this when i start presentation services with administrator then setting tab is not visible for administrator. then how can i get rid of this problem. Regards, SAP