Print Preview in RFx does not show new Adobe Interactive Form

Hello Experts,
I am trying to assign a standard Adobe Interactive form as the output form for SRM RFQ.  I have carried out the following steps in customising under "Define Actions for Document Output".
- Selected bid invitation Action Profile = BBP_PD_BID
- Go to "Processing Types"
- Create a new Processing Type called "External Communication"
- Set the following values to the new processing type:
     - Form Name = BBP_BID_INV_ADB
     - Form Type = P PDF-Based Forms
     - Format = BBP_BID_INV_ADB_MAI
     - Personalization Type = 5 - Recipeient Variable Replacement
- Save Changes
My problem is that when I go to into the BID (RFx) and click "Print Preview" it picks up the standard Smartform, not the new Adobe form I have added as required.
Please can you advise of any additional config settings or other steps required to ensure that the Adobe Form is called when I click "Print Preview"?
We are on SRM 7.0.
I look forward your response.
Regards,
Matt

Hi Matt could you please tell me how do you solve your issue? I have the same and I cant find the solution.
Thanks a lot
Kind Regards

Similar Messages

  • Print Preview in routing does not show text

    Good morning all...
    We have a user who is attempting to preview their print job, and currently the print preview function in the routings does not show the standard text.  It displays the page number but nothing else.
    I am trying to obtain more information from the user now, but was wondering if this is something that anyone else may have run into.  I will be updating this message with more details as I obtain them.
    Thanks!

    Hi Matt could you please tell me how do you solve your issue? I have the same and I cant find the solution.
    Thanks a lot
    Kind Regards

  • Print & Preview of iBook does not show titles and comments.

    iphoto used is 6.0.6 (322) I Don't know if this is a 10.4.11 or 10.4.4 problem.
    problem: iBook prints contain pictures but not title or comments using Epson C60 or HP 1530 printers. Titles and comments are not visible in "preview" but picture is ok. Mac used is an intel Core Duo with system 10.4.4.
    However, prints are ok, i.e., have title, comment, picture using the same HP 1530 or an Epson Stylus Photo 1250 on a Pwr PC G4 with system 10.4.11.
    The Intel is the preferred unit.
    Thanks, CB

    problem: iBook prints contain pictures but not title or comments using Epson C60 or HP 1530 printers. Titles and comments are not visible in "preview" but picture is ok. Mac used is an intel Core Duo with system 10.4.4.
    However, prints are ok, i.e., have title, comment, picture using the same HP 1530 or an Epson Stylus Photo 1250 on a Pwr PC G4 with system 10.4.11.
    How are you previewing the the book? Have you tried the apple suggested methof for previewing books - http://support.apple.com/kb/HT1040
    LN

  • Shared printer from a pc does not show up on my printer list.

    I have a macbook air and the shared printer from a pc does not show up on my printer list.  I know it's available on the network as I have a another pc that has access to it.  The Mac did find it at one time but it has since disappeared.  Appreciate help.
    Rich

    Can you see the CD ripped songs in iTunes itself? Can you then right-click and select "Show in Windows Explorer"?

  • Open/Save Dialog does not show new files?

    Say you are working on a logic file in a folder and you have
    a few audio and movie files in that folder, and you launch
    Logic and via the open/save dialog window you add a few
    files to your song and in that dialog window you can see
    all the files in that folder.
    Then, in the Finder you add a few more files and movies to
    that folder and again use the open/save dialog window to
    add more files BUT the new files you added since launching
    logic are NOT SHOWN in the dialog window ! ?
    What's the deal with that?
    Every other app can show files added since the launch of the
    application, why not Logic?
    PowerBook G4 1GHz   Mac OS X (10.3.9)  

    project manager
    um, yeah.
    Should not need the project manager simply to see new files added to a directory in a Open/Save dialog window since last opening the app.
    I did a scan, a extended scan, opened all the little turn down arrows of the
    full path to the directory I knew there to be the new files and yes, Logic
    shows them there in the "Project manager".
    BUT Logic still does not show the files in the Open/Save dialog windows.
    This is strange because even simple app like TextEdit can show
    new files in it's Open/Save dialog function windows without the need of
    a project manager.
    I have to quit and re-launch each time to see any new files?

  • Form does not show "new" records from SQL Database

    I have a PDF form that pulls data from a SQL Server.  The fields in
    the PDF are populated from the database after selecting a specific
    record from a drop down and then clicking on a button labeled "Fill".
    The problem is that the dropdown does not display new records that
    have been recently added to the database.  I have to open the form up
    in designer then save it, (*note - I change nothing at this point.)
    Then when the form is opened back up in Adobe the dropdown show all
    the records including the new ones.  I even put a manual refresh on
    form to try and fix this an it did not help. Seriously stumped.
    Any help is greatly appreciated.
    Here is my code for the dropdown.
    ++++++++++++++++++++++++++++
    topmostSubform.Page1.JobSelect::initialize - (JavaScript, client)
    var sDataConnectionName = "BBCC"; // example - var sDataConnectionName
    = "Test";
    var sColHiddenValue = "ContractAdmin_Key"; // example - var
    sColHiddenValue = "Dept_ID";
    var sColDisplayText = "JobDescription"; // example - var
    sColDisplayText = "Dept_ID"
    // Search for sourceSet node which matchs the DataConnection name
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oDB = xfa.sourceSet.nodes.item(nIndex);
    oDB.open();
    oDB.first();
    // Search node with the class name "command"
    var nDBIndex = 0;
    while(oDB.nodes.item(nDBIndex).className != "command")
    nDBIndex++;
    // Backup the original settings before assigning BOF and EOF to stay
    var sBOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
    var sEOFBackup =
    oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF",
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF",
    "eofAction");
    // Clear the list
    this.clearItems();
    // Search for the record node with the matching Data Connection name
    nIndex = 0;
    while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oRecord = xfa.record.nodes.item(nIndex);
    // Find the value node
    var oValueNode = null;
    var oTextNode = null;
    for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
    { if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
    { oValueNode = oRecord.nodes.item(nColIndex); } else
    if(oRecord.nodes.item(nColIndex).name == sColDisplayText) { oTextNode
    = oRecord.nodes.item(nColIndex); } }
    while(!oDB.isEOF())
      this.addItem(oTextNode.value, oValueNode.value);
       oDB.next();
    // Restore the original settings
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup,
    "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup,
    "eofAction");
    // Close connection
    oDB.close();
    ++++++++++++++++++++++
    Here is code for the refresh button
    +++++++++++++++++++++
    topmostSubform.Page1.Button27::click - (JavaScript, client)
    sourceSet.BBCC.requery();
    +++++++++++++++++++++

    pguerett wrote:
    The other thing that might be happening is a refresh issue on the DropDownList. Try adding the command xfa.layout.relayout() after the database connection has been closed.
    Paul
    Good catch Paul!  Would you believe that I have been trying to get this resolved for almost two years! Works perfect now.
    Thank you,
      - Eric

  • Print preview of PO is not showing for paticular PO number

    Print preview of PO is not displaying for particular PO number after amendment

    Are you getting any error ?.Check  in PO messages medium is 1 print.If it is medium 1 then it should show the print preview PO

  • Finder does not show new files, does not acualize

    In Mountain Lion I realize that the finder more than once does not show the actual content of folders. Even a "start new" from the stop-dialog did not change it.
    A restart of the whole system did.
    Pathfinder in opposite did show the new files immediatly.
    Does anyone have the same problem?
    Any suggestions?
    Thx.
    H.K.

    limey1
    Welcome to the Apple Discussions.
    It's a while since i used v5 but I think this is true.
    Whereas with early version of iPhoto there was a separate folder for each album, starting at v5 the app doesn;t do that. Instead the album information is stored as part of the main database file. At heart, it's a direction to the app to display certain pics together. The advantage being that a single pics can be many, many albums with no wasted disk space.
    Regards
    TD

  • Finder does not show new files with older creation dates

    Short story: when I somehow create new files or folders with older dates, Finder does not show them.
    This happens e.g. when I unrar archives created some time ago: the files or folders coming out of the archive get their original date, which is earlier than today.
    I can see those files and folders without problems in a terminal (using ls). But they don't show up in Finder when I visit the same directory.
    When I use terminal to go into some directory that is not yet visible in Finder, and I open a new Finder window for that directory from within terminal (using "open ."), the new directory and its contents will show up in Finder.
    My best guess is that some things have changed in the way Finder and the indexing of my flle system co-operate. In any case, this is higly annoying.
    Does anyone know how to fix this?
    OS X Yosemite 10.10 (14A389)
    Macbook Air - 13 Inch - Mid 2013

    I have the same problem.  I create files and they do not show up in their respective Finder window.  I know the files are there because I created them and I can see them using Terminal and applications can open them.  If I refresh the window by going to the parent directory and back again, the files do not show up.  If I close all windows and open that specific  window again, the files still do not show up.  If I leave the computer overnight, the new files still do not show up.  As brdsutte stated, after rebooting the computer, the files show up in the Finder window.  Anyone have any suggestions?
    iMac 27 inch, mid 2011
    Yosemite 10.10.1

  • How do I see a book which has been downloaded, but does not show in Adobe Reader XI?

    How do a find a ePub book in Adobe Reader XI, which has been downloaded and does not show up? janf76607913

    Visit:
    Adobe Digital Editions
    Be well...

  • Web Service is not triggering  using Adobe Interactive Form

    Hello Experts,
      I know this is a common topic now , but the problem I am facing, no thread help me to solve that.
    Problem:--
    My requirement is to create an adobe form , in which
      -> an input field is needed,and some  description is needed.
    I used button to trigger my webservice.
    Here , I want to clear that , I have made a proper WEB SERVICE using Remote Enabled FM.
    My web service is working fine as I have tested from WS NAVIGATOR(Note:  http://<source>:<port>/wsnavigator).
    In Adobe Form (SFP), I have made a new Data connection using WebService WSDL.
    All Request and Response parameters are availabe in Data View palletes of Form.
    Button that is available from data connection is used.
    I  have used Button as  an Execute button , under execute tab in connection , I had given DATA CONNECTION name .
    But above things not worked so ,
    I also tried with Regular Button , and under click written Javascript/FormCalc  which is:--
    var cURL = 'http://x.y.com:8012/sap/bc/srt/rfc/sap/ZMATERIAL_DESCRIPTION?sap-client=800&wsdl=1.1';
    var service = SOAP.connect(cURL);
    xfa.connectionSet.DataConnection2.execute(0);
    But this also not worked .
    So, I think there can be a little issue may be , I am forgetting to click some special  atrributes in form .
    Please help me and let me know what can be probable reasons that webservice is not triggering
    Thanks a lot ,
    Jeet

    Solved my self, converted PDF into image and used that pdf as a static image in Adobe Interactive Form.

  • Control not going from Adobe Interactive form to ABAP WD Event handler

    Hi
    I am facing an issue with adobe interactive forms and WD ABAP integration.
    The buttons in adobe interactive form when clicked is going round and round and the control is not going to the ABAP code(WD ABAP event handler code whatsoever). I have also set the debugger but the control is not moving to the ABAP code from the adobe interactive form.
    Can anyone help me what can be the issue here and how can I resolve the same?
    Thanks.
    Sid

    Hi Babi,
    In the adobe form layout library Use the Submit(which internally means submit to SAP) button from the Webdynpro Native category.
    Only this button action can connect adobe to web dynpro.
    Whenever we click on this particular button the event will be trigger in the ONsubmit event of interactive form UI element in the webdynpro.There we can write our abap code.Hope this will help you.
    Regards,
    Simi A  M
    Edited by: amsimi on Mar 22, 2011 11:37 AM

  • Visual Admin service not present for Adobe Interactive forms

    Hi EP experts,
    i want to use Adobe Document for creating Adobe Interactive forms in webdynpro java.
    but initially i want to activate Adobe Document Service from Visual Admin..
    For this ,Under Cluster tab of visual admin, i want to select Document Services Configuration to assign the credential under com.adobe~TrustManagerService.
    But in visual admin of EP 6.0 SP19 there is no Document Services Configuration under services of cluster tab...
    To enable this ,is there any need of any patch-up to be installed for Adobe Document Service.?
    How should i confirm if alreadt respective Adobe Document Service or patch is Installed on EP server 6.0 SP19.
    Waiting for reply..........
    Regards:
    Hanif

    Hi
    Yes,We have to install Adobe Document Service patch to get access of its service .
    To Check whether it is installed or not go to  Netweaver administration -- configuration --services -- adobe doc service - click on this link ,proper message will be display about its availability.
    Best Regards
    Satish Kumar

  • Mail 4.6 on OS 10.6.8 suddenly does not show new mail

    All of a suden I don't see any new mail in the inbox though Mail Activity shows a download. This only is happening on my MacPro Not my Mac Laptop or iPhone.
    They work fine - same ISP (network Solutions, Same passwords, set up etc.
    This is the second time in six months Please help
    Thanks,
    Vance

    One of our clients is also having this problem. All other folders in the account display email fine. Inbox is empty though the mailbox info states there are 10000 emails in there. Minimising and maximising/restarting Mail does not fix this at all.
    Tried removing and re-adding account, still no luck.
    Reset plist - still nothing.
    Anyone know what is causing this? I have noticed that if I remove the account, reset mac mail preferences and then open mail it still remembers the email address and username whereas it used to ask for these upon a reset. Has something changed in recent updates?
    OS: 10.6.8
    Mail: 4.6

  • How to avoid printing a page if does not contain data in smart forms

    deat all,
    here is urgent requirement for me .
    i have 3 pagelayouts in smartforms.
    if there is no data in page 2 how to avoid it from printing(the second page should not come in even if it contains hedings and logo)

    try like this
    if@section:IND=1
    this template
    end ifsectionbreak
    if@section:IND=2
    this template
    end if

Maybe you are looking for