Question regarding logo inserted into form

When I tested my form, the logo inserted at the top did not display.  How do I correct?

Hi,
Can you please send me a link to your form, either by email ([email protected]) or as a private forum message, so we can take a look?
Thanks,
Todd

Similar Messages

  • Question regarding mic plugged into audio in/optical digital audio in port

    So I have this external headset... headphone/mic set combo... I plug the headphone jack in the headphone slot and the mic jack in the audio in/optical digital audio in port slot in the back of my IMAC. I go to my system preferences select "sound" and "line in - Audio line in port". But when recording, it's still recording from the internal mic? How do I just record just from the external mic??? What am I doing wrong? I've read all the other questions regarding how to get the external mics to work, but it's still recording from the internal mic? Help?
      Mac OS X (10.4.9)  

    I never expected APPLE wouldn't make a mac that didn't have a proper mic jack?
    It has a proper one, a good one, a professional one, not the toy that comes with most PCs. Apple has used line level analog audio input for years.
    From Wikipedia;Line level is a term used to denote the strength of an audio signal used to transmit analog sound information between audio components such as CD and DVD players, TVs, audio amplifiers, and mixing consoles.
    In contrast to line level, there are weaker audio signals, such as those from microphones and instrument pickups, and stronger signals, such as those used to drive headphones and loudspeakers. The strength of the various signals does not necessarily correlate with the output voltage of a device; it also depends on the source's output impedance, or the amount of current available to drive different loads.

  • PHP remember Form-button data to insert into form field

    Hi,
    I am creating a book website where people can reserve books (one at a time).
    Basically what I want to do is have a reserve button under each book which contains hidden values (the title and author of the book) and when they click on the button they will be taken to a 'reserve book' page with a form on it where they will have to fill out their details. However I want the book title and author to automatically be entered into the appropriate fields, so to save the users from having to do it themselves.
    I'm sure this is possible with PHP, but not sure how to go about it in the right way.
    I would appreciate any help with this.
    Thanks

    Thanks for that, however I can't seem to get the first part of the code right. I have the following:
    Reserve book button:
                   <form action="reserve.php" method="post">
                        <input type="hidden" name="bookName" id="bookName" value="Eclipse" />
                        <input type="hidden" name="author" id="author" value="Stephenie Meyer" />
                        <input class="button" type="image" value="send" alt="reserve" src="images/reserve.gif" width="81" height="22"/>
                    </form>
    Reserve book form:
       <form action="process-form.php" method="post">
                  <label for="name">Your Full Name:*</label>
                 <input type="text" name="name" id="name" />
                  <label for="telephone">Tel no:*</label>
                  <input type="text" name="telephone" id="telephone"  />
                  <label for="email">Email:*</label>
                  <input type="text" name="email" id="email"/>
                  <label for="Title">Book Title:*</label>
                  <input type="text" name="book_title" size="25" value="<?php echo $bookName ?>" />
                  <label for="Author">Author:*</label>
                  <input type="text" name="author" size="25" value="<?php echo $author ?>" />
                  <input class="button" type="image" value="send" alt="reserve" src="images/reserve.gif" width="81" height="22"/>         
                </form>

  • New person's question: regarding importing media into premiere cs4

    Hi folks, please excuse the level of my ignorance but I really need a bit of clarification.  If i import video from a tape captured from my Canon A1, hd 30 frames progressive or if I import into a project video movie which was rendered 1920x1080 progressive f4v is there any difference in quality?
    In other words is digital information captured in the native format via adobe capture window ( set to hd ) of better "quality" then importing a movie that was 1st rendered from a different project in the hd f4v format?
    I am embarished to ask this question as I keep thinking that zeros and ones captured in Hd 1920x1080 adobe flash movie can not degrade if imported into a project vs digital info from a tape but maybe I am missing something that is essential in the work flow process.
    It is easy for me to output sections of my training films as f4v and store them on my hard drive. Later I can import "blocks" of edited material into another training project but I am afraid that I might be degrading the process with this work flow.
    Sorry to ask such a newbie question but I really don't want to make a fundamental mistake that will have a negative effect down the road.
    Thanks again,
    Ken Araujo
    www.kenaraujo.com
    [email protected]

    Capturing is just a transfer of 0's and 1's, nothing gets changed, so no quality loss. What was recorded is transferred.
    Rendering on the other hand means a change from format A to B. That always implies a loss of quality. How severe depends on the formats used.

  • Question regarding palcing cache related classes into a package

    Hi all,
    I have a question regarding placing classes into packages. Actually I am writing cache feature which caches the results which were evaluated previously. Since it is a cache, I don't want to expose it outside because it is only for internal purpose. I have 10 classes related to this cache feature. All of them are used by cache manager (the manager class which manages cache) only. So I thought it would make sense if I keep all the classes into a separate package.
    But the problem I have is, since the cache related classes are not exposed outside so I can't make them public. If they are not public I can't access them in the other packages of my code. I can't either make it public or private. Can someone suggest a solution for my problem?

    haki2 wrote:
    But the problem I have is, since the cache related classes are not exposed outside so I can't make them public. If they are not public I can't access them in the other packages of my code.Well, you shouldn't access them in your non-cache code.
    As far as I understand, the only class that other code needs to access is the cache manager. That one must be public. All other classes can be package-private (a.k.a default access). This way they can access each other and the cache manager can access them, but other code can't.

  • Select statement to insert into a table using a loop

    hi
    create table uploadtab(
    itema varchar2(3),
    xtype varchar2(1),
    salesa number,
    margina number,
    salesb number,
    marginb number,
    salesc number,
    marginc number);
    insert into uploadtab
      (itema, xtype, salesa, margina, salesb, marginb, salesc, marginc)
    values
      ('abc', 'a', 100, .40, 300, .10, 450, .25);
    create table testinsert(itema varchar2(3),
    xtype varchar2(1),
    sales number,
    margin number);what i want to do is create 3 records based on that one in a loop
    so my desired output for testinsert is as follows
    abc  a 100  .40
    abc  a 300  .10
    abc  a 450  .25i don't want to use 3 insert tables if at all possible
    any help would be greatly appreciated
    thanks in advance
    Edited by: DM on Jul 7, 2010 2:22 PM

    Just a question on this
    INSERT INTO testinsert
    ( itema
    , xtype
    , sales
    , margin
    SELECT  itema
    ,       xtype
    ,       DECODE
            ( RN
            , 1,salesa
            , 2,salesb
            , 3,salesc
    ,       DECODE
            ( RN
            , 1,margina
            , 2,marginb
            , 3,marginc
    FROM            uploadtab
    CROSS JOIN      (
                            SELECT ROWNUM RN
                            FROM   dual
                            CONNECT BY LEVEL <= 3
    ;when you put a WHERE before the CROSS JOIN, the error
    ORA-00933:SQL command not properly ended. is displayed.

  • Quiz Slides inserted into other slides??

    Is it possible to insert a quiz slide into another slide with content on it?  I have a short story in a series of about 11 slides, and would like the user to be able to answer some questions pertaining to the paruticular slides as they unfold.  Is it possible to manipulate a multiple choice question that is inserted in another slide, and/or can the question even be inserted into a story slide?  Thanks in advance!

    Hi Sabrina
    Accept my apologies for this late answer, last week has been very hectic. I will try to make it up, will send you a link to the example slide I did create if this is really what your wanted. You'll find a screenshot.
    I create a slide with a duration of 10secs. The drawing I created (SimpleDiagrams) is visible for the duration of the slide.
    To the slide an audio is attached (it is music here, but you will have a narration, that has a timeline of 7secs. After those 7secs, the question appears (see timeline screenshot). It has 4 Text captions:
    Question itself (How many men...), labeled it Quest1
    3. 4. The three possible answers, labeled Ans1_1, Ans1_2 and Ans1_3
    The answers are covered with 3 click boxes, CB1_1, CB1_2 and CB1_3. They do only have a Success Caption, deleted Failure as well as Hint Caption. The caption gives the feedback to the user (on the screenshot I show the feedback for the correct answer). All captions are in the same location, have same size. To each caption I attached the appropriate object audio. It will play when the caption appears.
    Finally I have a 'Next' button, that is initially set to invisible in the Properties, but will become visible when the correct answer has been chosen. You have to make sure that the pausing time of this button is after the pausing time of the click boxes. I labeled this button BtNext1
    I created 2 standard advanced actions, really simple ones:
    rewind to be attached to all click boxes that sit on top of incorrect answers; they will rewind the playhead so that it will not continue when the click box is clicked (which is the default behavior); since there is nothing specific to the slide object ID's, this can be reused on all question slides; action has one statement:
    Assign   rdcmndGotoFrameAndResume with rdinfoCurrentFrame
    success to be attached to the click box on top of the correct answer (here CB1_2); it doesn't have to rewind the playhead, but will show the button that pauses the slide again (a little bit later on the timeline because the pausing time is later than for the click boxes);  this action has a slide specific object ID (the label of the button), so you will have to duplicate it to have an instance for each slide, and change the button identification (label); to make editing easier I chose this typical label, you will only have to change the last character if you label your buttons with this logical names; this action has only one statement as well:
    Show  BtNext1

  • Regarding insertion of logo in standard forms

    Hi.
    How to find the form and print program for f.64 transaction.I need to upload the logo in that form.
    Please help to solve this problem.

    Go to Customizing SPRO (there are many forms for F.64, depending of the Correspondence type)
    Financial Accounting, Accounts Receivable and Accounts Payable, Customer Accounts OR Vendor Accounts, Line Items, Correspondence, Carry Out and Check Settings for Correspondence
    Call Assign Programs for Correspondence Types and Define Form Names for Correspondence Print
    (For quick search, these are recorded in table T001F)
    Regards

  • Select from tabA & tabB then insert into tabC (these tables ok for form?)

    hi everyone,
    i have a question for any of you who have a few mins to spare
    i have a bunch of tables that i will eventually create a bunch of corrisponding forms for... now i want one of the forms to allow the end user to search for records from two tables,,, select some or all of the rows and then use them in either a delete or update statement....
    my table set up is shown below:
    SQL> desc BOOK_OUT_INFO
    Name Null? Type
    BOOK_OUT_ID NUMBER(10)
    BOOK_CN VARCHAR2(9)
    BOOK_CN_NUM NUMBER(3)
    BOOK_ISBN VARCHAR2(9)
    BOOK_TITLE VARCHAR2(100)
    BOOK_AUTHOR_NAME VARCHAR2(30)
    BOOK_STATUS VARCHAR2(4)
    EMPLOYEE_ID NUMBER(5)
    EMPLOYEE_NAME VARCHAR2(30)
    EMPLOYEE_ADDRESS VARCHAR2(100)
    EMPLOYEE_PHONE_NUMBER NUMBER(7)
    EMPLOYEE_DEPT VARCHAR2(15)
    EMPLOYEE_SID NUMBER(5)
    SQL> desc BOOK_IN_INFO
    Name Null? Type
    BOOK_CN VARCHAR2(9)
    BOOK_CN_NUM NUMBER(3)
    BOOK_ISBN VARCHAR2(9)
    BOOK_TITLE VARCHAR2(100)
    BOOK_AUTHOR_NAME VARCHAR2(30)
    BOOK_STATUS VARCHAR2(4)
    SQL> desc SEARCH_INFO
    Name Null? Type
    BOOK_ISBN NUMBER(9)
    BOOK_TITLE VARCHbefAR2(100)
    BOOK_AUTHOR_NAME VARCHAR2(30)
    ok so now.... i need to allow the user to search both BOOK_IN_INFO and BOOK_OUT_INFO, by BOOK_ISBN then select the records they require for use later and have them inserted into SEARCH_INFO....
    before i start making the forms is there anything i need to change in the tables?
    thanks all
    MUCH APPRECIATED
    RMMO

    I'll give you a hint on how you could solve it.
    Let's take BOOK_OUT_INFO table and try to insert some records from this table to SEARCH_INFO table.
    Create a button in BOOK_OUT_INFO block, lets call the block BLOCK1. The button would appear for all rows. Write this code in W-B-P trigger of the button.
    INSERT INTO TABLE SEARCH_INFO (BOOK_ISBN,BOOK_TITLE,BOOK_AUTHOR_NAME) VALUES (:BLOCK1.BOOK_ISBN, :BLOCK1.BOOK_TITLE, :BLOCK1.AUTHOR_NAME);
    COMMIT;
    MESSAGE('1 row inserted');MESSAGE('1 row inserted');

  • How to insert into SQL server table form oracle forms

    I created a form with oracle as my database. But there one trigger where I need to insert the data into a sql server table.
    Is this possible. If so can any help me out.
    Thanks in advance.
    Asha

    Hi,
    You can insert into sql server database using the following steps
    Note: Check wether you are using Forms 32 bit drivers. If not the Odbc data source will not work.
    step 1: Create ODBC data source for SQL server(one time creation);
    step 2: Logout from Oracle and login to SQL server giving the user name,password and host string as odbc:<odbc datasource name>;
    step 3: use EXEC SQL statement to insert the values into the SQL server and then logout and login again to your oracle database.
    Second Method.
    Check the sql server documentation to insert the values using command line parameters. Then you can call the host command to execute this.
    Third Method.
    Write a VB exe to enter the values in the sql server making two connections one to oracle another to SQL server and then getting values from Oracle and putting in the SQL server database. You can call this exe using the Host command.
    Hope this will help You.
    Regards
    Gaurav Thakur

  • Insert current date/time and username into form.

    Apologies for newbie question.
    I have a form based on table Customer, within the table I have username and modifiedDate columns. How can I populate these text fields with the current user and current date/time ?
    Thanks.

    Excellent, thanks for the fast response. I had this working and then tried in on a new form and now it fails to populate the desired fields.
    I have created a process named "Insert date and username", Type P/SQL anonymous block. On Load - After Header, Once Per Page Visit.
    select :APP_USER, to_char(SYSDATE,'DD-MON-YYYY HH24:MI:SS')
    INTO :P16_USERNAME, :P16_MODIFIEDDATE
    from dual;
    Sorry for the hand holding!
    Jason
    Edited by: Jason S (UK) on Apr 24, 2013 6:57 AM

  • Insert into other table from form

    Hi All,
    I have created a data block with view as a data source. I need to save the data from a form to some other table.
    I have tried using INSTEAD OF Trigger. howeverwhen I try to save, getting an error : ORA-01445 cannot select ROWID from a join view without a key-preserved table.
    I appreciate any suggestions on it.
    Thanks and Regards
    Sai

    Sorry, it looked at first as if you wanted help on the problem you encountered. After reading again your response to Zaibiman I see that you were just tricking us with the detailed explanation of the error.
    To insert into a table other than the one you queried, use the on-insert trigger.
    However, an Instead Of trigger on the view is usually the best method. If you have set the key mode, defined a primary key item and removed any references to rowid, as per Zaibiman, then it should work. You'll need your own locking method if the view uses Group By or Distinct.

  • Inserting into multiple tables on one form using UIX

    We are developing an application using struts and UIX. We would like to be able to insert into three tables on one form(view). How can we accomplish this?

    This is more of an ADF question, you'll need to set up view object, than just drag it from the data control palette like normal.
    If it's not already set up as a view in the db (split into multiple tables), you'll need to create a view object that includes all the fields you want, based on multiple entity objects.

  • Questions regarding Adobe Interactive Forms capabilities

    Hi,
    We have the following questions regarding Adobe Interactive Forms.
    1. Not able to create a text field with dynamic size according to the data entered in the text field in a form with Static Content type forms.   We use a scroll area, but cannot print content that is not visible in the scroll area.
        We currently have Designer 7.0 and 2004 SP 16. I tried to set “Form Properties -> PDF Render Format” to be “Acrobat 7.0 Compatible Dynamic PDF” but the text field did not grow dynamically.
    2. Another requirement is that once one form is accepted by the Customer, we need to generate a second, new form (with all user entered information from the first form) and the customer should be able to print the form.
        To implement this, we need to have a form that can support dynamically growing text field in some areas, and specific positioning of form elements for other areas. Can we have a dynamic form which lets the fields grow dynamically according to the data entered in the field and with specific positioning of elements?
    3. Sending emails from Offline forms – Requirement is to send an email as soon as the form is accepted by our Customers. But the Customers can complete the form offline. Is it possible to automatically send an email in an offline forms without having the user push the ‘send’ button from their email application?  Can the Adobe Form do that part automatically?
    Appreciate any help regarding above questions.
    Thanks,
    Kalyan

    HI Francois,
    Thank you very much for the very helpful information.
    1. I am able to insert now the floating field inside a static text but the text does not grow dynamically even when I set the form type to be "Flowed Content". Is it something that required Adobe Designer 7.0 and also 2004s ADS?
    2. I can still select only Flow or position content from the option but how can we use both in the same form? I am using Adobe Designer 7.0 and it allows to select only one. Is it again a problem in lower versions that I use?
    3. This is an excellent idea and I strongly believe this is going to work (am trying to create POC for this solution). The form should be able to call the webservice as long as the user is connected to internet.
    Can you provide your views on the first two points. I appreciate your help.
    Thanks,
    Kalyan

  • How can I insert into a table other than the default table in a form

    Hi,
    I want to insert into a table with some fields value of a form of another table. I have written insert code On successful submission of that form, but after submit it gives the following error
    An unexpected error occurred: ORA-06502: PL/SQL: numeric or value error (WWV-16016)
    My code is like this
    declare
    l_trn_id number;
    l_provider_role varchar2(3);
    l_provider_id varchar2(10);
    begin
    l_trn_id := p_session.get_value_as_number(p_block_name=>'DEFAULT',p_attribute_name=>'A_TRANSACTION_ID');
    l_provider_id := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'A_PROVIDER1');
    l_PROVIDER_ROLE := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'A_PROVIDER_ROLE1');
    if (l_provider_role is not null) and (l_provider_id is not null) then
    insert into service_provider_trans_records(service_provider_id,transaction_id,role_type_id)
    values(l_provider_id, l_trn_id, l_provider_role);
    commit;
    end if;
    end;
    Where 'PROVIDER1' and 'PROVIDER_ROLE1' are not table fields.
    How can do that or why this error comes ? Any idea?
    Thanks
    Sumita

    Hi,
    When do you get this error? Is it while running or while creating the form.
    Here is a sample code which inserts a non-database column dummy into a table called dummy. This is done in successful procedure.
    declare
    l_dummy varchar2(1000);
    begin
    l_dummy := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',
    p_attribute_name=>'A_DUMMY');
    insert into sjayaram903_1g.dummy values(l_dummy);commit;
    end;
    Please check in your case if the size of the local variable is enough to hold the values being returned.
    Thanks,
    Sharmila

Maybe you are looking for

  • ITunes won't open - "iTunes" folder cannot be created

    Following a power outage (and surge I'm assuming), one of my hard drives crashed. It was only used for additional storage space while the operating system was on a seperate and unharmed drive. I had moved the "My Music" folder to this additional driv

  • BADI  BBP_TARGET_OBJTYPE

    Hello, I'm working with SRM 5.O and due to some specific business requirements we needed to implement the BADI BBP_TARGET_OBJTYPE. But we still didn't cover all our requirements. <u>Here is the required logic we need to pud into the BADI:</u> 1. If w

  • Sound in Application

    I'm just trying to play a song in a regular application, not in an applet. I mean just run the program in a command line window and play the tune. I have searched for a way to do this already and all I find is applet sounds. I have tried using play(g

  • "Attribute" field in product class

    Hi All, Can anyone please tell what is the use of Attributes field which is present in product class? Thanks, Sandy

  • EJB api  (PDFGAPI7.submitJob())converting  pdf to  ps usage

    I am using the PDFGAPI7.submitJob() method for PDF to PS conversion,following is the code ,as the 'jobConfiguration' parameter i have used 'PDFGAPI7.getPDFExportXML("PS", 0,null)' as mentioned by the api ,i am still not able to convert the 'pdf' to .