Fragment de-linking from form

I have a consistent problem with fragments within my forms de-linking from the document for no reason.  I open up an existing form and all that appears for each of my fragments is a purple box.  When I go down to the object palette, the link to where the fragment is still exist so Livecycle knows where the fragment is.
The most recent case I had was that I edited on of my fragments.  Now, all the fragments that I have on my 200+ forms are delinked.  None of the fragments were moved to a different folder or anything.
Does anyone know what would cause this and how I can fix it?  Relinking fragments on 200+ forms could take a few hours.

Is the path to the fragment reachable when this happens? Where are the fragments stord in relation to the form?
Paul

Similar Messages

  • Name several links from form data

    have a swf page of 10 thumbnails. From a html form on another
    page I want to generate a list of the thumbnails' url and the url
    of the movie that plays when each thumbnail is clicked. I can make
    the form create a text file like:
    1. bob.jpg , bob.flv
    2. mel.jpg , mel.flv
    etc.
    How can I make my thumbnail page select these values for each
    thumbnail when the page is generated?
    any help is greatly appreciated!
    ff

    If I understand what you're asking, you'll want to reformat
    your .txt file a bit (just slightly!) and use LoadVars to obtain
    those values.
    1. bob.jpg, bob.flv -- now, if your pattern will be like
    this, you can simplify the process. (ie- no 1.bob.jpg wayne.flv)
    flash sees text file variables like this:
    &variableONE=VALUEone&variableTWO=VALUEtwo&
    the "&" symbol tells flash there is a new variable
    coming. Then you're just assigning values to variables. Looking at
    your example, you could do it one of two ways....
    &image1=bob.jpg&link1=bob.flv
    or
    &person1=bob
    //doing it this way would force you to keep your files a
    little more organized, but it would probably pay off.
    check out
    THIS. Its a simple
    tutorial that will show you how to import values into flash, and
    how to properly use them. If its too confusing, I can keep
    exlplaining here. :)

  • "edit" link from report to form does not show values

    I created a report and an attached form on two different pages. The report is a query combining two tables with outer joins. When I click on the "edit" button on the report, I get forwarded to the form page.
    My problem: When I get forwarded to the forms page, I get an empty form, and not the data from the column as expected. The "edit" button behaves more like the "create" button. Anybody an idea what I could change to be able to edit the column data?
    Thank you.

    I've met the similar problem with previous releases (1.5.0 and 1.5.1) without any objective reason.
    As I suggests, sometimes HTMLDB lost current session state. When this occurs, ALL links from reports to it's forms does not transit primary keys. I've just completed application development and I've met this behaviour every months.
    As a workaround I found folowwjing process:
    Come into administration tab, selet "Report with option to purge current session state". When I purge current session state and re-login to application, all report-form links will start to work.
    I don't know, what is the issue, but I met it so soon on my local HTMLDB environment.

  • Link from Report to Form in a Page

    1. I have created a page in the Page Groups. I have five tabs on this page. Under a tab I have one Report added as a Portlet. This Report has a LINK to a From. When I click on the LINK the Form opens, but not in the Portlet area. Is it possible to have a Form open in the Portlet area (replacing the Report)?
    2. I get the following error when trying to add one particular Report as a Portlet in a page:
    An unexpected error has occurred in pages: wwpob_api_page.add_portlet (WWC-44847)
    An unexpected error has occurred in portlet instances: wwpob_api_portlet_inst.create_inst (WWC-44846)
    Do anyone have any ideas?

    Doug wrote:
    I am using version 4.0 of APEX.  My question concerns linking to other APEX pages from a report.  In APEX we link to another page, which may be a form or another report, by using a column in the report as a link column.  Any column may be used to transfer values from any other column.  This works fine, but the disadvantage is that whichever column is used as the link column has a heading which identifies the column's purpose but may not identify the purpose of the transition to another page.  In Oracle Forms, we could use buttons as a column of the multi-row screen (i.e. same as APEX report), and the button's label identified the purpose for the transition.
    Is there any way to create a column in an APEX report  to serve the same purpose as the button in Oracle Forms?
    When discussing "reports" it is essential to indicate whether this means a standard report or an interactive report in order to receive an appropriate response.
    It is possible to create a link column that is distinct from report data columns. In standard reports, this is done using the Add Column Link option from the Tasks menu in the right sidebar of the Report Attributes page. In interactive reports, define a Link Column on the Report Attributes page.
    To provide further information about links to users in both cases, specify an HTML title attribute for the link in the Link Attributes property of the link definition. This will be rendered as a tooltip when the cursor hovers over the link in visual browsers, and as an audio cue on navigation to the link when using a screen reader.

  • Changing fields in form opened in query mode via a link from a report

    I have a summary report which allows me to access a form via a link: The form opens up with its fields populated with the corresponding record from the report.
    Can additional code be added to the after displaying page section of the form such that some of the fields can be assigned with different values from those in the original record? If so, can anyone offer some sample code for this?

    Hi,
    You can access and set the values of the columns in forms by using certain apis. All the columns in the form are available in the session which can be accessed and set.
    Sample Code
    declare
    flightno number;
    ticketno varchar2(30);
    tdate date;
    persons number;
    blk varchar2(10) := 'DEFAULT';
    begin
    flightno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHT_NO');
    ticketno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_TICKET_NO');
    tdate := p_session.get_value_as_date(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE');
    persons := p_session.get_value_as_number(
    p_block_name => blk,
    p_attribute_name => 'A_NOF_PERSONS');
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHTNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TICKETNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE',
    p_value => to_char(NULL)
    end;
    The above code sets and gets value of the form fields. The form field is accessed by prefixing "A" to the form column name. For example if the column name is "DEPTNO" then to access or set value to it you should refer to the session variable "A_DEPTNO".
    Thanks,
    Sharmila

  • Crearting a link from a PDF form

    To demonstrate the format of a PDF form created in FormsCentral, I have created a link from a PowerPoint slide to the PDF form.  I want to be able to create a link back to the slide from, the form to resume the presentation.  Links in Acrobat XI do not work on the form and neither does the link at FormsCentral - can anyobne help?

    Hi,
    Please refer to the following document for instructions on editing a FormsCentral PDF in Acrobat.
    http://forums.adobe.com/docs/DOC-3661
    For help linking the two documents, please post to the Acrobat user forum - http://forums.adobe.com/community/acrobat
    Regards,
    Brian

  • DB-link is not connected from Forms 10g

    Hi,
    I have created the db-link(visdev) from mytest schema to APPS schema -- created successfully
    ->Login to mytest schema and ran the query: select * from all_objects@dblink -- Return values.
    -> I have used the same dblink with below code from Forms 10g (Datablock - Pre-insert trigger)
    cursor_handle := dbms_sql.open_cursor;
    dbms_sql.parse(cursor_handle, 'select decode(object_type,''TABLE'',''T'',''VIEW'',''V'',null) col1 from all_objects'||'@'||db-link, 1);
    dbms_sql.define_column(cursor_handle,1,col1,30);
    execute_feedback := dbms_sql.execute (cursor_handle);
    execute_feedback := dbms_sql.fetch_rows(cursor_handle);
    dbms_sql.column_value(cursor_handle,1,col1);
    Its throws error in Pre-insert trigger : select decode(object_type,'TABLE','T','VIEW','V',null) col1 from all_objects@db-link ---- Not return values -- error out
    I found this error using log message.
    Can you please help us... its very critical for us.
    Edited by: user775668 on Jun 17, 2011 5:46 AM
    Edited by: user775668 on Jun 17, 2011 5:46 AM

    In terms of trying to debug this why don't you login to your schema and create a view:
    create view testview as select * from all_objects@dblink
    and deal with that instead?
    (You would need to grant permissions to that view.)
    I mean as a way to keep the complex dbms_sql out of the loop and look
    more to permissions and schema issues. In the long term the view hard codes the structure and is
    not a good solution if the structure changes. I just mean as a test.
    BTW you know there is an all_objects already? Didn't know if you meant that literally or not.
    You could not use that name.

  • FRM-10242:  Cannot call linked-in Forms from Form Builder. error

    FRM-10242: Cannot call linked-in Forms from Form Builder.
    Cause: The menu designer specified a call to linked-in Forms from within Form Builder.
    Action: Notify your DBA.
    does anyone know why this happens.
    I have this main-menu.. and when i click on one of the submenus which should call the form....i get this error.

    Same issue here... Been trying to get this working since a week now. I tried all the solutions like memory heap and all but no luck.
    One thing that I would like to know is that, in some threads the resolution was to recompile the INS_FORMS.MK file under /forms/lib32 but with my installation I don't have that "lib32" folder under /forms/ and I can not even find that file anywhere in my entire installation.
    I am using 12.1.1 on Windows Server 2008.
    Any help or guidelines is greatly appreciated.
    Santhosh.

  • Copying links from published forms - not working for all!

    I currently have two web based forms open.  I am trying to allow others to view the results and feedback and have therefore published both forms.  I have then copied the links from each forms and created links to them via a Sharepoint site.  One of these links works fine whilst the other states 'That URL is not in the correct format for an Acrobat.com document link.'.
    Any advice on how to fix this?

    Hi;
    When you paste the URL directly into a web browser does it display the results correctly?  If it does then it seems it would be related to how the link is embedded in the sharepoint site.  Double check that you've copied and pasted the URL correctly.  Is the Sharepoint site a public site you could share the URL with me to take a look at it?  If so you can email me at [email protected]
    Thanks,
    Josh

  • Sharepoint 2010 add/edit form: Insert link from sharepoint disabled

    Hello!
    I have a list with enhanced rich textbox field. I can click on Insert link, "from addres" is enabled, but "from Sharepoint" is disabled.
    Is there a reason why is this button disabled? Field is enhanced rich textbox... Paste button is also disabled.
    Thanks

    Microsoft says
    it is an issue but you can check
    design this strange behavior on other occasions:
    If we have a Web page in the root
    of the site and insert a Web Part content "from SharePoint" will
    disabled, but if this same Web Part Page
    is in a library "from SharePoint"
    is enabled What is the difference? I do not know.
    Worse. If we insert the Web Part
    to a page in the root of the site is
    a list or library that has a link produced by a
    workflow, an error as seen in
    http://www.danielroot.info/2010_07_01_archive.html
    But the link works correctly if the
    page is within a library.
    Are these design issues also?
    Sorry for my English.
    Soy Miguel de Torre Arias

  • Passing Parameter from link to form

    I have a form with a field called "ID". I created a LINK component to the form. I set the value of ID=2 on the 'Link Target Inputs' page hoping that when i run the link, the form opens with the ID field =2. However no value is passed. What am i doing wrong?
    Thanks
    null

    Dmitry,
    I have the same problem, but the references you listed are invalid. Can you provide any more help?
    Thanks.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Dmitry Nonkin([email protected]):
    Hi,
    Please refer to the following topics:
    http://technet.oracle.com:89/ubb/Forum70/HTML/000016.html
    http://technet.oracle.com:89/ubb/Forum70/HTML/000318.html
    Regards,
    Dmitry<HR></BLOCKQUOTE>
    null

  • How can I Connect to SQL Server or other RDBMS like Sybase from Form 6i

    I want to connect Connect to SQL Server or other RDBMS like Sybase from Form 6i. I kniow that I need some gateway product but I don't know the name of the product?Can i use some other technology to do the same like client software etc.
    I need this help urgently?

    Check the following link.
    http://www.oracle.com/technology/products/gateways/index.html

  • I have iPhone 4s, and using latest iOS. When I try to open any link from Twitter or Facebook, it goes to open some wrong webpage. My iphone seems to be infected or suffering from some spyware or malware. How can I remove this wrong link opening

    I have iPhone 4s, and using latest iOS. When I try to open any link from Twitter or Facebook, it goes to open some wrong webpage. My iphone seems to be infected or suffering from some spyware or malware. How can I remove this wrong link opening ? Please help me to resolve...

    I think the McAfee suite will do the trick when I pay them a one-time fee of $69 or $179 for a year for unlimited support.
    Your call of course but IMO a waste of money. Please read this first:
    There are many forms of ‘Malware’ that can affect a computer system, of which ‘a virus’ is but one type, ‘trojans’ another. Using the strict definition of a computer virus, no viruses that can attack OS X have so far been detected 'in the wild', i.e. in anything other than laboratory conditions. The same is not true of other forms of malware, such as Trojans. Whilst it is a fairly safe bet that your Mac has NOT been infected by a virus, it may have another security-related problem, but more likely a technical problem unrelated to any malware threat.
    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful:
    https://discussions.apple.com/docs/DOC-2435
    The User Tip (which you are welcome to print out and retain for future reference) seeks to offer guidance on the main security threats and how to avoid them.
    More useful information can also be found here:
    http://www.reedcorner.net/mmg/

  • Can I link from Interactive report Page 1 to Master Detail page 2?

    Hi folks-
    I know how to create a Page as an Interactive Report; it creates 2 pages automatically (primary page with the great interactive bar) and a 2nd page that's a single record.
    I know how to create a Page as Master Detail, whereby I get a tabular list without the super interactive bar, and I can select a record, and get transported to a nice page with 2 regions (master on top, detail on bottom).
    I want to have the First page from the Interactive Report, select the record, and go to the 2nd page of a MasterDetail.
    Do I create the Interactive Report, and customize the 2nd page, to add a region?
    Or, do I create both page types, and redirect from the 1st page of the Interactive Report to the DML Form from the MD report? I tried that, re-assigning the link from the Interactive Report to be a Link to Custom Target, and specify the page # of the Master-Detail page. And it is taking me to the right page, but the data from the selected row is not coming with me, and the detail in the bottom region is not appearing at all.
    Can someone please give me a nudge as to the sequence I should be doing?
    (As you can tell, I'm new to Apex.... I'm trying to use it to create a prototype or proof-of-concept for a database driven web application)
    Thank you
    Marion

    Yes, I tried that after I wrote to you - and it's fine, but not what I'm after; it's only based on 1 table and I'm working with 2 tables.
    Perhaps I can explain in better.
    I want one page as an interactive tabular report (of the master records)
    I want to select a row, and transfer to a page that has the corresponding row on top (as a form), and a tabular region below of records from a related detail table.
    ie, I want page 1 from the Interactive Report, and page 2 of the Master Detail report.
    OK - I just took the form page, and added a region below in a tabular report. And I'm getting the data, but I'm getting all the records (not just the ones associated with the single record on top. I figure I need to edit the Region Definition->Source (to specify that the id numbers need to match), but the code is not editable.....
    So I am in Structured Query Attributes, and I've Modified the Join Conditions - but I still get all the detail records in the bottom region. I''m trying to add in the ( + ) qualifier, but it doesn't affect anything...
    I'm soo close to what i'm trying to do!
    Thank you for your continued patience and assistance
    Marion
    here's the Source I have for the region..... (I'm including the excess ID columns just for learning purposes)
    SELECT
    "PHONENUMBERS"."PHONE_ENTITY_ID" "PHONE_ENTITY_ID",
    "ENTITIES"."ENTITY_ID" "ENTITY_ID",
    "ENTITIES"."FIRSTNAME" "FIRSTNAME",
    "ENTITIES"."LASTNAME" "LASTNAME",
    "ENTITIES"."COMPANY" "COMPANY",
    "PHONENUMBERS"."PHONE_ID" "PHONE_ID",
    "PHONENUMBERS"."PHONETYPE" "PHONETYPE",
    "PHONENUMBERS"."PHONENUMBER" "PHONENUMBER",
    "PHONENUMBERS"."PHONECOMMENT" "PHONECOMMENT"
    FROM
    "PHONENUMBERS",
    "ENTITIES"
    WHERE ENTITIES.ENTITY_ID = PHONENUMBERS.PHONE_ENTITY_ID
    Edited by: mtpaper on Oct 12, 2009 1:30 PM
    Edited by: mtpaper on Oct 12, 2009 1:32 PM

  • Make the link from the single cell of Bex Report and the image of bill

    Hi guys,
    my client scan every bill and archive the image by File.net technology.
    In our Bex Report we have the Bill number and we want to make the link from the single cell and the image of bill.
    The possible paths to solve the problem are:
           Replicate the image in BW and crate a link from the single cell and the image of document.
           Create an URL link from the single cell and the image of document archived on File.net server.
    In witch way we can to implement the two paths?
    Thank you.
    Alessandro

    Hi Alessandro,
    Have you seen "How To…Enhance your Web Query with the Table Interface"?
    You can find it in media library:
    https://websmp105.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000194044
    Best regards,
    Eugene

Maybe you are looking for

  • Can't Print PDFs in Lion

    I am desperate for a solution.  Since installing Lion I can't print any PDFs.  Printer dialog box just shows constant loading, spooling.  I've had to send the PDF to myself in an email or download it through my son's PC laptop, connect his laptop to

  • Seeburger SFTP Sender Adapter Failure

    Hello, a SFTP sender channel causes the follow error when executing a poll cycle: SFTP Adapter failure Details: while trying to invoke the method com.seeburger.uri.dt.sftp.schema.DtSFTPPollingResponse.setSuccessMessage(java.lang.String) of an object

  • How can I create a screen a select option inside a screen

    Hello experts, I have a screen '0100' and i need to create a select-options inside how can i do this? thanks in advance'

  • Searching with different character sets

    Hello, we have a problem with Intermedia 8.1.6. running on Solaris. The table contains the text with different character sets and that's the problem. User submits the query in his char.set and the IM sometimes doesn't find the data. Idea is to create

  • Query regarding OEM

    Hi, DB version - Oracle 10g Rel 2 1. Has anyone got an idea whether we can use OEM Grid Control for free(Without any extra licence other than Oracle database 10g), like we can do incase of OEM DB Control. Without tuning pack we can use OEM Db control