IE error while submitting Adobe Form

Hi All,
I am facing an unusual problem while submitting Adobe form. When I try to submit Adobe form a dialog box will appear, which shows some missing dll information.
"sapadobecontrol.dll" and force me to close that dialog box which ultimately leads to closing the application.
Till now I have done several things like
1. Repair/upgrade the IE.
2. Modify/ repair Adobe Life Cycle Designer.
I am using Portal Sneak Preview 7.0
Please give your valuable views.
Regards,

I too am having the same issue. My process is also very simple, and I can't seem to find where I could have made a mistake.
I googled the error and found only one or two possible solutions that involved changing my data source. I don't think that is exactly the solution to either of our problems. It seems a bit complex for such simple workflows.

Similar Messages

  • Error while submitting a form through workspace.

    I am trying to send a pdf form to a certain location when i hit the complete button on the form i get following error
    An error occurred submitting the form (task 345, form 0). (ALC-WKS-007-043)
    Can anyone help me with it.
    My process flow in workbench is very simple and is as follows
    get id--> generate pdfa---> archive document
    I assume i have done all the setting routing properly. I am stuck at this point since a long time and need some help
    Thanks

    I too am having the same issue. My process is also very simple, and I can't seem to find where I could have made a mistake.
    I googled the error and found only one or two possible solutions that involved changing my data source. I don't think that is exactly the solution to either of our problems. It seems a bit complex for such simple workflows.

  • Getting Error while generate Adobe form

    Hi,
    I  am new to adobe smartforms, i am getting one error while activate smartform. we need to set anything in SICF setting for Adobe smartform??. i am get error like "this forms refers to external file which is not found in compters.please create connection to folder so thatt these should be found.

    Hi
    Are you talking about adobe forms or smartforms. These are 2 different types of forms. For Adobe forms you need an ADS which sits on the java stack and needs to be configured properly. Some services need to be activated in SICF for the configuration as well. A conplete guide on how to configure the ADS is found on the following link
    [https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/90355269-4d89-2a10-0bb9-f388704f1dcd]
    Regards
    Thashin

  • Error while executing adobe form

    Hi All,
          I am working on an adobe form in development system everything is working perfectly, But the form is giving an exception ()when executed in quality system .I did remote comparison of both layout and interface and there are no changes.
         What i observed is when i execute the form in SFP in dev system it is creating an FM , But in quality system execution of form in SFP is giving me error saying "Error in include information for function module /1BCDW/0000000007" and when i try to check this FM in SE37 it says it does not exist.
      Please let me know if anyone has faced similar issue before and if you have found the solution.
    Regards,
    Anjana Rao

    Hi friend,
    Its simple.
    The same problem exists in Smart forms also.
    What you need to do is you need to give the Adobe form name to the function module "FP_FUNCTION_MODULE_NAME".
    It will return you a name just you need to substitute that in the form call.
    Because for each and every system the function module number generated for the Adobe form differs.
    Just see the link below its for smart form, just adapt the same for Adobe forms, see my post and use the above function module instead of the one in the link [Smartform error|http://forums.sdn.sap.com/thread.jspa?threadID=2127306&messageID=11037853#11037853]
    Do this it will solve your problem.
    If any queries please revert back to me i will help you.
    Thanks,
    Sri Hari
    Edited by: srihari.kumar on Feb 13, 2012 3:52 PM

  • Stale data error while submitting the form(before that opening the popup )

    I am using OAURL to open a pop-up in my oaf page
    passing my page to this class.And at the time of loading the base page
    the pop up window url is like this
    OA.jsp?page=/myfolder/webui/NumberColumnsPG&retainAM=Y&"+"fndOAJSPinEmbeddedMode=Y&addBreadCrumb=S&_ti=55514227&oapc=10
    now i click on the link to open the pop-up
    its opening the pop-up.
    Closing that pop-up.
    Saving the details entered in the base page.
    Now it is executing again from the processRequest() of base page
    now the URL like this...
    OA.jsp?page=/myfolder/webui/NumberColumnsPG&retainAM=Y&"+"fndOAJSPinEmbeddedMode=Y&addBreadCrumb=S&_ti=55514227&oapc=11
    Now i am getting stale data error
    The number of displayed records, 2, exceeds the actual number of records, 1, in view object SampleAM.SampleVO1. Some of the displayed records may have been deleted.
    Here i am observing that the parameter OAPC is different in these two URLs.
    can you please tell me how to come out of this error while i am submitting the base page.
    Thanks

    Hi Pratap,
    Thanks for your information.But there i didn't get any information related to my issue. can you please tell me a way to proceed further in order to solve this issue.
    Thanks
    Satya

  • Error while opening Adobe Form Builder

    Hi all,
    I am trying to open an existing form in Adobe Form builder (TA SFP).
    When ever I display a standard form say FP_TEST_01 and go to the layout tab, I get an error saying <i><b>Error occurred in communication with layout editor</b></i>. I am using ECC 5.0 system.
    Am I missing any configurations?
    We have all the required configurations set as mentioned in Configuration guide. (Required for ABAP stack).
    Please help me out.
    Thanks in advance.
    Regards,
    Ravikiran.

    Or go to http://service.sap.com/download > Download > SPs and Patches > Search for SPs and Patches > Enter 'Designer'. Install Designer 7.0 <b>and the 7.0 patch</b> (!).
    Kind regards,
    Markus Meisl
    SAP NetWeaver Product Management

  • Error while submitting a form

    I have made a table and on the basis of that table i have created a form when i am submitting the form its throwing an error "ORA-06502: PL/SQL: numeric or value error: number precision too large ORA-06512: at "APEXDEMO_TEST.BI_NEW_BOOKINGS1", line 3 ORA-04088: error during execution of trigger 'APEXDEMO_TEST.BI_NEW_BOOKINGS1'"
    please let me know where i am wrong
    thanks in advance
    adi
    Edited by: Adi's on Feb 18, 2010 12:41 AM

    Adi,
    When declaring a number data type you can provide a precision and scale. The first parameter in the declaration is precision and the second parameter is the scale. lets say for instance you declare a number(10) you told oracle to allow for 10 digits If you would have declared the number as number(10,2) this would allow for 10 total digits 2 of which are to the right of the decimal point. So if you declare a number as number(30,30) you are telling oracle to allow for 30 digits and have all 30 digits to the right of the decimal point. effectively only allowing for numbers that are below zero. Since your sequence is returning a whole number it cannot fit into your data type of number (30,30). To find out more information about declaring data types, have a look at this link. http://www.techonthenet.com/oracle/datatypes.php.
    I'll get to your second question in the next post...
    Cheers,
    Tyson Jouglet

  • Error while submitting ISR form

    Folks,
    I am getting the error when I am submitting ISR form
    <b>com.sap.tc.webdynpro.progmodel.context.ContextException:  is not a valid name for a node or attribute
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.validateName(NodeInfo.java:948)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.addChild(NodeInfo.java:308)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.addChild(NodeInfo.java:374)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.createGenericContext(FcISRProcessEvent.java:1294)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.adjustContext(FcISRProcessEvent.java:1745)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callIsrProcessEvent(FcISRProcessEvent.java:321)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEvent.callIsrProcessEvent(InternalFcISRProcessEvent.java:1079)
         at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEventInterface.callIsrProcessEvent(FcISRProcessEventInterface.java:125)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:380)
         at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEventInterface$External.callIsrProcessEvent(InternalFcISRProcessEventInterface.java:504)
         at com.we.mss.rec.req.buttonsreview.VcCustomButtonsReview.onEvent(VcCustomButtonsReview.java:225)
         at com.we.mss.rec.req.buttonsreview.wdp.InternalVcCustomButtonsReview.onEvent(InternalVcCustomButtonsReview.java:192)
         at com.we.mss.rec.req.buttonsreview.VcCustomButtonsReviewInterface.onEvent(VcCustomButtonsReviewInterface.java:164)
         at com.we.mss.rec.req.buttonsreview.wdp.InternalVcCustomButtonsReviewInterface.onEvent(InternalVcCustomButtonsReviewInterface.java:148)
         at com.we.mss.rec.req.buttonsreview.wdp.InternalVcCustomButtonsReviewInterface$External.onEvent(InternalVcCustomButtonsReviewInterface.java:228)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:439)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:354)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$1300(FPMComponent.java:71)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.raiseSaveEvent(FPMComponent.java:805)
         at com.we.mss.rec.req.buttonsreview.VcCustomButtonsReview.submitForm(VcCustomButtonsReview.java:205)
         at com.we.mss.rec.req.buttonsreview.wdp.InternalVcCustomButtonsReview.submitForm(InternalVcCustomButtonsReview.java:184)
         at com.we.mss.rec.req.buttonsreview.ButtonsReviewView.onActionSubmit(ButtonsReviewView.java:151)
         at com.we.mss.rec.req.buttonsreview.wdp.InternalButtonsReviewView.wdInvokeEventHandler(InternalButtonsReviewView.java:159)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleAction(WebDynproMainTask.java:101)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:304)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:659)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)<b></b></b>

    We have enabled the looging and here is the log trace
    <b>#1.5#0016356AB5FA006F0000008D00001D5C000430826F70B48E#1179236680474#System.err#sap.com/tckw_tc#System.err#Guest#2####6de0e3d002ea11dc81050016356ab5fa#SAPEngine_Application_Thread[impl:3]_3##0#0#Error##Plain###May 15, 2007 8:44:40 AM      com.sap.kw.framework.FrontController [SAPEngine_Application_Thread[impl:3]_3] Path: Caught java.lang.RuntimeException: FATAL ERROR: Could not load E:
    usr
    sap
    ADS
    JC01
    j2ee
    cluster
    server0
    apps
    sap.com
    tckw_tc
    servlet_jsp
    SAPIKS2
    root
    WEB-INF
    ApplConfig.xml
         at com.sap.kw.framework.XMLConfiguration.<init>(XMLConfiguration.java:52)
         at com.sap.kw.actions.ApplConfig.init(ApplConfig.java:83)
         at com.sap.kw.framework.FrontController.init(FrontController.java:197)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.addServlet(WebComponents.java:139)
         at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.loadServlets(ApplicationThreadInitializer.java:386)
         at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:110)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.io.FileNotFoundException: E:
    usr
    sap
    ADS
    JC01
    j2ee
    cluster
    server0
    apps
    sap.com
    tc~kw_tc
    servlet_jsp
    SAPIKS2
    root
    WEB-INF
    ApplConfig.xml (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:69)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:156)
         at java.net.URL.openStream(URL.java:913)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:201)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:263)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:280)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:342)
         at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
         at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:151)
         at com.sap.kw.framework.XMLConfiguration.<init>(XMLConfiguration.java:49)
         ... 9 more</b>

  • Error while executing Adobe forms

    Hi all,
    I need a small help regarding SAP Adobe Forms.
    I have created one adobe form but when i activate it, i get the following error:
    SOAP Framework Error: SOAP Runtime Exception: CSoapExceptionTransport: HTTP send failed with exception communication_failure(100.101).
    I am running in SAP IDES system client 800.
    Also i searches to fix this error by searching on Google and i found some of the posts related to this error on SDN but i could not understand that properly.
    So its my request if you could please guide me in solving this error, it would be a great help for me.
    Waiting for your answers.
    Hoping to get positive feedback...
    Best Regards,
    Mayur.

    Hi Liz,
    Thanks for replying back to my problem soon. Actually i am running this form in IDES system client 800 and it is my university IDES system that i am practicing adobe forms. If i contact the basis person, he wont allow to download the patch for a single student like me.
    Can you please provide me the link from where i can download this patch from.....
    I do have a SAP service marketplace ID and password which is my university's login but i can login as a student there. So if you please provide me the link to download tht patch it will be very generous and helpful...
    Waiting for your answer soon Liz.......
    Best Regards,
    Mayur.....

  • Error while accesing ADOBE Form in SFP over Citrix

    Hi,
    When I try to access the ADOBE Form from transaction code SFP over Citrix from home, I am getting the follwoing message and not allowing me to either display or change the ADOBE form.
    "Could not start Layout Designer"
    When I try to access the same ADOBE Form in my office, everything works fine.
    I have installed Adobe LiveCycle Designer 8.1 on my home system. Still I am getting the message that the Layout Designer could not be started.
    What could be the issue ?
    Kindly suggest, how can I overcome this issue.
    Thanks in advance.

    Hi ,
    Need to install Adobe Designer 8.1 in your Citrix server along with the SAP Logon Pad.
    Thanks
    Srikanth

  • Error while downloading  adobe form layout  in sap

    Hi all,
    When I try to download adobe form it is showing the following pop up boxes and not allows me to download the layout .Please suggest me how to solve this issue.
    Thank You,
    Suneel.

    Hi Suneel,
    it seems like its an issue with permissions.
    Make sure your user has permission to write (save) a file to your computer.
    Adam

  • Error while activating adobe form

    Hello All,
    I am trying to activate an Adobe Print Form, but I am getting the error "SOAP Framework error: SOAP Runtime Exception: CSoapExceptionTransport: HTTP send failed with exception communication_failure(100.101)"
    I tried with the reports, fp_test_00 and FP_CHECK_DESTINATION_SERVICE..both these reports are showing error as,
    'System Error : SOAP Runtime exception:CSoapExceptionTransport: HTTP send failed with exception communication_failure'
    Please suggest
    Thank You,
    Regards,
    Hasan

    Check the following:
    1. The adsuser in the java enviroment is created, the user password in the rfc is right, the user is assigend the right roles
    2. The path prefix is inserted in the RFC
    3. The service number is right
    4. The java server IP is right
    Regards,
    MaX
    Edited by: MaX_00 on Aug 24, 2011 11:14 AM

  • While transfering Adobe form to PS(Project system) getting Error.

    Hi Experts,
    I am getting error While transfering Adobe form to PS getting Error.
    The asdobe form we are using is DPR_STATUS_REPORT_AIF and enhancement implementation is DPR_STATUS_REPORT_AIF.
    I am getting the following error.
    Error occurred when generating the print preview (function module: /1BCDWB/SM00000006)
    ADS: com.adobe.ProcessingException: com.adobe.Processin(200101 )
    Please help me with this.
    Thanks in advance
    Subhaskar

    Hi Max,
    Yes its in Active. Even i can be able to see the print form in SFP transaction.
    But the problem is coming when we are transfering the adobe form to PS(Project System).
    Regards
    Subhaskar

  • "Access Denied" pop up error while opening adobe online form in IE8.

    "Access Denied" pop up error while opening adobe online form in IE8. I use crosslink to connect to client network and then open IE with App Tunnel. Tried to re-install Acrobat reader multiple times but issue still persist. Even tried to change the PDF properties (Edit-> Preference- General/Internet/Security Enhanced)

    Hello Adobe technical Team,
    I am struggling to fix the issue. Tried a lot of combinations to manipulate PDF preference, browser setting but failed to fix the issue. Can someone please look into the details and advise? Thanks in advance for any help.input.

  • Error occured while showing adobe form in abap webdynpro application

    Dear SAP-Masters ,
    This is the mail regarding the error occured while showing adobe form in abap webdynpro application .
    When i run the adobe form seperately it works fine but with abap web dynpro , i'll get following error .
    Pls tell me how to resolve this problem .
    The following error text was processed in the system D35 : WebDynpro Exception:
    The error occurred on the application server DV35_D35_00 and in the work process 2 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: UPDATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LADOBE==================CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LADOBE==================CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
    Method: CONV_VIEW_INTO_VE_ADAPTER_TREE of program CL_WDR_INTERNAL_WINDOW_ADAPTERCP
    Method: SET_CONTENT_BY_WINDOW of program CL_WDR_INTERNAL_WINDOW_ADAPTERCP
    Method: RENDER_WINDOWS of program CL_WDR_CLIENT_SSR=============CP

    Hi Arjun ,
                Thanx for ur reply ,
                i got following results in ST22 dump analysis :
    '  An exception occurred that was not caught ' .
            and
    Source Code Extract
    Line
    SourceCde
    79
    x_xml = get_wd_context_as_xml( data_source = data_source ).
    80
    m_pdf_object->set_data( formdata = x_xml ).
    81
    catch cx_fp_exception into lr_fpexc.
    82
    raise exception type cx_wd_general
    83
    exporting
    84
    previous = lr_fpexc.
    85
    endtry.
    86
    if fillable = abap_true.
    87
           if m_version is initial.
    88
             m_version = m_pdf_object->get_version_info( ).
    89
           endif.
    90
           if version < ''.
    91
             set_usage_rights( m_pdf_object ).
    92
           endif.
    93
    endif.
    94
    endif.
    95
    endif.
    96
    97
    only call the ads if requested
    98
    if execute_ads_call = abap_true.
    99
    try.
    100
          set document
    101
    m_pdf_object->set_document( pdfdata = pdf ).
    102
    103
          execute, call ADS
    104
    m_pdf_object->execute( ).
    105
    106
          get result
    107
    m_pdf_object->get_document( importing pdfdata = pdf ).
    108
    catch cx_fp_exception into lr_fpexc.
    >>>>>
    raise exception type cx_wd_general
    110
    exporting
    111
    previous = lr_fpexc.
    112
    endtry.
    113
    endif.
    114
    115
    endmethod. 
    and
    Error analysis
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_WD_GENERAL', was not caught and
    therefore caused a runtime error.
    The reason for the exception is:
    WebDynpro Exception:
    The occurrence of the exception is closely related to the occurrence of
    a previous exception "CX_FP_RUNTIME_SYSTEM", which was raised in the program
    "CL_FP_PDF_OBJECT==============CP",
    specifically in line 255 of the (include) program
    "CL_FP_PDF_OBJECT==============CM02Y".
    The cause of the exception was:
    ADS: com.adobe.ProcessingException: PDF is not interactive.  Data can only be
    |    imported into interactive forms.(201501).

Maybe you are looking for

  • PRINTING BLANK PAGE IN ORACLE REPORTS 6I

    I am Printing statement on a double-sided stationary capable printer. To ensure that each new statement starts on a new physical paper, I need to add a blank page if the previous statement had an odd number of page size. How can I do that. Please Hel

  • Resizing a multiple page document to crop around part of the existing info

    Hi guys I have a portrait document (182x398mm) with information near the bottom (ticket) I would like to resize the document to the size of the ticket (140x80mm) without having to move any of the objects. I have tried to use the liquid layout tool wh

  • Border Action

    Hi, Just wondering how to create an action that will create a border for images of multiple sizes. I know how to create an action that will create a border of a specific size, however i have different image sizes and want to create a border that is t

  • Symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64

    I'm trying to use mysql-query-browser and I keep getting this error: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64 Some searching in the forum shows that people previously fixed this by updating libxml2 and zlib.  I have done

  • Can Adobe Photoshop Lightroom do this?

    I need an adobe product that will digitally remove certain items in an urban landscape, such as: removing telephone polls and wiring, stop signs, etc., but still retain the colorization and detail of the overall image. Can Adobe Photoshop Lightroom d