Creating a process which automatically generates Hiperlinks to a blog.

I would like to create a way to automatically generate hyperlinks to a blog from a pdf.
Example: In "A" pdf we have various articles from a magazine/newspaper, the generator analyze the pdf and creates links from tags linking to a (i. e.) blogspot blog where users may comment the article after reading it from the print/pdf .
I'm quite in difficulty and I really don't know where to start from...
if you have any idea what's so ever please help .
Thanks a lot.
ps. sorry for my english....italian learning schools are horrible!

Hi Tommaso,
Here's what you should do:
- have a source file that contains your tags (typically an MS Word file)
- process your MS word file using the COM object model: analyze your file content and replace every tag by a hyperlink.
- generate a PDF file from your MS Word file, using a PDF converter that is able to properly handle hyperlinks in Office docs (Adobe PDFGenerator is one of these, but some PDF converters that use a printer driver or use a temporary postcript file do not convert hyperlinks)
-jerome

Similar Messages

  • To create workflow process which periodically examines one database table??

    hi.......
    plz tell me the complete details that how to create workflow process which periodically examines one database table??
    also it will send email to specific address if certain condition is not fulfilled??
    help is really appreciated
    thanks nd regards
    manish singla

    Hi,
    I'd be wary of using a WAIT activity, since this will essentially have the workflow running forever in the same SQL session. If you ever need to shutdown the database, then you would have to kill the session (or do a shutdown abort), which will rollback all the Workflow transactional data.
    I would leave the polling logic to a process outside the Workflow engine. In an Applications environment, this should be a Concurrent request. If this is standalone Workflow, then schedule something using DBMS_JOB. The job should check the database, and if necessary, initiate a new workflow to send the notification.
    If the notification does not require a response, then I would be inclined to bypass Workflow competely, and have a job which calls UTL_SMTP to send an email.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com

  • How to create a process which is running in background?

    I am developing an application which creates a data file after some queries are done. The user sees a message saying that the data file is being preparing and a email notification will be sent to the user. I would like to have the process for creating data files run in background so the user does not wait till that process is done.
    Could someone give me some ideas or suggestions how this should be done?
    Thanks in advance!

    You could use a servlet and run a seperate thread to complete the process. An easier way is to use an IFRAME. You can direct a page to run in an IFRAME that is 0 width X 0 height. The user could then continue on without having to wait on the process to complete.

  • How to create accrual WT which is accrual monthly and auto generated?

    Hi Experts,
    How can I create accrual WT which can be automatically generated every month?
    E.g. A WT for Incentive Accrual = Basic Salary 1340/12)*80%
    How can I make this Incentive Accrual WT to be generated automatically base on the above formula and I dont need to input in any infotype?
    Appreciate with your help.
    Thanks!!!

    Hi All,
    If I create a WT and not assign to any infotype but just put in T54C3, and define the processing class 30 as cumulated in current year , will that WT  be cumulated automatically and store in CRT?
    Or do I have other alternatives to handle that?
    Appreciate with all your help.
    Thanks.

  • Generate a process which generates pdfoutput

    Hi
    i want to automate generating pdf with output..
    until yet i call as a web service OutPutService in my dotnet application
    in this application i merge a file.xdp with a file.xml. As there are several record in my file.xml the result is several file.pdf.
    until yet it is ok.
    But i want to automate this process by create a process in workbench.
    i want this process to generatePDFOutput with file.xml and file.xdp in input and i want this process to permit me to count all the pdf file which are generated, the date of creating file and at the end of the process, it should be send an email to user that inform the user of the number of pdf generated and the date of creating.
    i am a very beginner and i don't know (even with the quickstart creating process) what to do and how to begin.
    i created a process with generatingpdf operation but i don't know how to count the number of pdf generated.
    thanks for help

    it's ok when i call output service and i set render option generate multi file = true and recordname = name_element and i put <batch> </batch>
    in the beginning end end of my xml file it's running.
    My problem is that i want to create a process with operation generatepdfOutput and something in this process should count the number of pdf generate and when all is generate it should send a email to a user provide in input.
    actually i am far for that because just create a process with generatePdfOutput seems to be impossible!!!!
    when i invoke the process and give the parameter i have a probleme with one of them : dataxml which should give the path of the xml file which contain the data.
    in my process i define xmldata as a variable document input and i do that in my code :
    BLOB inData = new BLOB(); 
    String inPutFile = "C:\\creerPdf\\PurchaseOrder.xml"; 
    FileStream fs = new FileStream(inPutFile, FileMode.Open);
    int longueur = (int)fs.Length;  
    Byte[] byteArray = new byte[longueur];fs.Read(byteArray, 0, longueur);
    inData.binaryData = byteArray;
    BLOB generatePDFOutputMetaDataDoc = new BLOB(); 
    BLOB generatePDFOutputResultDoc = new BLOB(); 
    OutputResult outResult = new OutputResult();
    EssaiOutputService essaiOutput = new EssaiOutputService();essaiOutput.Url +=
    "?blob=base64"
    ;essaiOutput.Credentials =
    new System.Net.NetworkCredential("administrator", "password");generatePDFOutputMetaDataDoc = essaiOutput.invoke(
    "c:\\creerPdf", inData, "BonCmdeDynamiq.xdp", out outResult, out generatePDFOutputResultDoc);
    and it renders this error :
    ALC-DSC-127-000: com.adobe.idp.dsc.LongLivedInvocationException: The Long Lived Service EssaiOutput can not be invoked synchronously.
    is somoene knowing what it is wrong?

  • How to creat Process messages automatically through PI sheet saved?

    How to creat Process messages automatically through PI sheet to the Process message destinations.

    Hi Jessie,
    When you process instruction category PROD_3 in master recipe, the process message PI_PROD is created.
    After releasing process order, you have to create control recipe. Upon successful creation of control recipe, process instructions will get generated. Check the error log for control recipe creation for error if any. 
    Note that control recipe will be generated only with order status "Released".
    You have to sent this control recipe to process control (CO53).
    Hope it is helpful.
    Regards,
    Sachin

  • Automatically generate process documentation

    This is an off-the-wall question. I have 40+ processes that I need to produce AsciiDoc documentation for and I'm basically manually copy/pasting the variable names, inputs, outputs and descriptions. All this is stored in the CPO processes and I'm wondering if there's a way to access these variables on a per-process basis?
    Our team relies heavily on CPO and we have dozens of processes today, hundreds tomorrow. It would be super handy to have a way to automatically generate documentation based on existing information in the processes. This will also make it easy to update documentation in the future as processes are refined/changed/added. 
    Ex. document that I'm trying to achieve:
    <<processName.adoc>> filename
    <<Process Name and description from General > Description/Notes field>>
    <<List of variables and descriptions>>
    <<Process Trigger>> 

    I have met great success with this. I pulled the necessary info from ProcessOrchestrator.DBO.Configuration and used XPath Query and Read Table from XML to get all the necessary information. From there I dumped it into an AsciiDoc but really you could load that info into anything - send it to a CMDB SQL table or save to CSV or whatever.
    This will save us a tremendous amount of time creating and updating our documentation in the future. If such a function where to be built into future editions of CPO I'm sure it would be very well received. 

  • How to create a button which scrolls down with the page automatically?

    Hello,
    I wanted to create a button which takes u back to the top of the page when pressed on, but I was wondering how to make it scroll down with the page on the right side automatically when some1 scrolls down the page.
    An example I saw was on tumblr.com
    P.S I'm a newbie, so please explain it clearly ;d.
    Thanks.

    Create a button, position it as fixed at the top right say,
    a button{
              position:fixed;
              top:50px;
              right:50px; 
    <a href="#home"><button> Button</button></a>
    The <a> is the link to take you to the top of the page
    Just be sure to set the id home on an element at the top of the page

  • How do i create a closing which shows on every outgoing email automatically, please ?

    procedural question: how do i create a closing line which automatically appears on every outgoing email? thanx!

    Nope, nothing happens...
    I don't know how Apple does it but it is definetly something on the CD itself when you burn it; I've tried it with Disk Burner, Disk Utillity and Toast, but I can't trigger it.
    Anyone who knows how I can pull it off ?

  • Create a Rules Language process which add a XML payload

    how to create a Rules Language process which add a XML payload in to the ICEPAYLOADEXT table??

    Take a look at this post: How to send a request from MDM 1.6.1 to CC&B using JMS servers?

  • Automatically generated site connectors in Active Directory all default to the same site

    Greetings,
    I have a Single Forest/Single Domain configured with 17 sites. We are currently in 2003 native mode, but are upgrading to 2102R2. The schema has been upgraded and 3 site have been moved to 2012R2 domain controllers.
    Each site has one domain controller, most are 2003 but the FSMO roles are on a Windows 2008R2 domain controller in Site1.
    Our network is a mesh, but many site have different bandwidth speeds. In this case, Site3 has a 6mb connection to the network.
    When I upgraded site3, I couldn't add the renamed replacement server to the domain. The demotion proceeded properly and the objects were removed from sites and services. I found I had problems with duplicate SPNs which were solved by removing the old and
    new servers from AD. I still had problems with the new server and found that replication was now broken. We traced it down to to corrupt automatically generated site connectors that all still pointed to the now missing site3 domain controller. I was able to
    setup manual replication connectors and then regenerate the automatic connectors, which now pointed to the (in my opinion) proper servers. I only have one manually created site connector to minor site that is not part of the mesh.
    This behavior was noticed back in late 2012 when another replication problem occurred during maintenance and was fixed.
    This morning I was working on Site4 when I noticed that all the automatically generated site connectors switched back to the new Site3 domain controller.
    Can anyone help me determine why the system seems to prefer site3 as a hub. Is there some setting stuck or configured that would make site3 preferential? I want to avoid more down time if site3 has a problem.
    Thanks
    Derek

    Hi Derek,
    >>Can anyone help me determine why the system seems to prefer site3 as a hub. Is there some setting stuck or configured that would make site3 preferential?
    This should be decided automatically by KCC. The Knowledge Consistency Checker (KCC), a process running on each domain controller, automatically identifies the most efficient replication topology for our network, based on information we provide
    about our network in Active Directory Sites and Services.
    The KCC runs at specified intervals to adjust the replication topology for changes that occur in Active Directory, such as when new domain controllers are added and new sites are created. The KCC reviews the replication status of existing connections to
    determine if any connections are not working. If a connection is not working due to a failed domain controller, the KCC automatically builds temporary connections to other replication partners (if available) to ensure that replication occurs. If all the domain
    controllers in a site are unavailable, the KCC automatically creates replication connections between domain controllers from another site.
    Regarding Active Directory replication, the following articles can be referred to for more information.
    Active Directory Replication Concepts
    https://technet.microsoft.com/en-us/library/cc756899(v=ws.10).aspx
    Managing replication
    https://technet.microsoft.com/en-us/library/cc757117(v=ws.10).aspx
    KCC and Topology Generation
    https://technet.microsoft.com/en-us/library/cc961781.aspx
    Best regards,
    Frank Shen
    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]

  • Can I automatically generate documentation from Description and Tip entries?

    Is there a way to automatically generate documentation for a LV 6.1 VI from the Description and Tip fields for all the different nodes? Something like JavaDoc or something?
    I've seen another note here on the board saying you can do it from within the VI using property nodes, but that seems like a somewhat convoluted way of going about it, especially for a large modular VI.

    Also, the LabVIEW Help has step-by-step instructions for generating documentation for VIs. Here's an example:
    Generating HTML Documentation for VIs, Templates, and Objects
    You can import HTML files into most word processing applications, and you can use HTML files to create compiled help files.
    Complete the following steps to generate HTML documentation for a VI, template, or object.
    Open any VI, control, global variable, or template file and select File�Print to display the Print dialog box.
    In the Select VIs page of the Print dialog box, select the file or files for which you want to generate HTML documentation.
    Click the Next button to display the Print contents page.
    Select the components you want to include in the documentation.
    If you selected Custom, click the Next button to display the Custom details page and select the components you want to include in the documentation. Otherwise, continue to the next step.
    Click the Next button to display the Page setup page.
    Select the options to set the appearance of the documentation.
    Click the Next button to display the Destination page.
    Select HTML file.
    Click the Next button to display the HTML page.
    Select the options for the images.
    Click the Save button to display a file dialog box. The dialog box prompts you to name the HTML and image files and select the directory where you want to save the files. The default name of any HTML documentation is the name of the VI with a .html extension.
    You also can use the Easy Print VI Panel or Documentation VI or the Print VI to HTML method to generate VI documentation in HTML format programmatically.
    This topic in particular links directly to the topics that describe how to use the methods to achieve the same thing programmatically.
    If you have any feedback on the content of the LabVIEW Help, please let us know by emailing [email protected]
    Thank you,
    Kelly Holmes
    Kelly H
    LabVIEW Documentation
    National Instruments

  • How to automatically generate/build a uniqueID in Sun IM

    Hello,
    I'm unfortunately not able to automatically generate/build a unique identifier in IM according to my different data sources (resources) => the goal of this process is to manage the unique identifiers (accountID) through the Identity Manager, and then send back the corresponding accountIDs to the data sources (to keep the mapping between IM and the sources).
    => Each data source (DB, files, etc.) stores their own unique identifier (e.g. primary key, id, etc.).
    => I'm able to reconcile (or "Load from Resource") the data from the sources
    => Unfortunately the accountIDs from my "authoritative data source" (main data source) are used as "unique identifiers" (accountID) through IM :o( !!!!! and I would like to build a unique id (e.g. <firstnameFirstLetter>.<lastnameFirstLetter><6digits) for all the users (according to all the accounts from the different sources).
    Do you have any idea ?
    Thanks a lot in advance.

    Hi,
    Thanks a lot for this example.
    I didn't test it for the moment, because I still have a problem with the workflow....., which will call this rule at the end.
    Here is my problem about this workflow :
    My idea is to use this workflow (as a pre-account wrokflow through the reconciliation process) to automatically write the SIM accountIds into the Resource accounts (i.e. into my authoritative database => IAM_EXT_UID is used to store the corresponding SIM accountIds).
    When we use a "Pre-account workflow" through the reconciliation process, some variables are already available : accountId, resourceId, userName, initialSituation, finalSituation, etc.
    During my initial load process (e.g. using the reconciliation process), all the resource accounts use the following states :
    + initialSituation : AR_SITUATION_NAME_UNMATCHED
    + finalSituation : AR_SITUATION_NAME_CONFIRMED
    + accountId : name of the resource account that was reconciled => i.e. specific to the resource
    + userName (name of the Identity Manager User) : userName is NULL
    I'm just interested in this case (initial=UNMATCHED and final=CONFIRMED) in order to send back the SIM accountId into my database.
    My workflow uses the checkoutView Session Workflow Service to get some information about the newly created SIM users (e.g. his newly created accountId => created on the fly by using a rule).
    Unfortunately, the userName is NULL ! I think that this input is NULL because I use a rule to automatically generate the SIM accountIds !!!! Am I right ?
    Is there a way to get this userName ? Maybe the checkoutView Session Workflow Service is not the best solution !!!
    Here is my code snippet :
    <Extension>
    <WFProcess name='XYZ' maxSteps='0'>
    <Variable name='accountId' input='true' />
    <Variable name='resourceId' input='true' />
    <Variable name='resourceName' input='true' />
    <Variable name='userId' input='true' />
    <Variable name='userName' />
    <Variable name='initialSituation' input='true' />
    <Variable name='responseSuccess' />
    <Variable name='finalSituation' />
    <Activity id='0' name='start'>
    <Transition to='deleted from HR equals disable'>
    <eq>
    <ref>initialSituation</ref>
    <s>AR_SITUATION_NAME_DELETED</s>
    </eq>
    </Transition>
    <Transition to='ProcessUser'>
    <block>
    <and>
    <eq>
    <ref>initialSituation</ref>
    <s>AR_SITUATION_NAME_UNMATCHED</s>
    </eq>
    <eq>
    <ref>finalSituation</ref>
    <s>AR_SITUATION_NAME_CONFIRMED</s>
    </eq>
    </and>
    </block>
    </Transition>
    <Transition to='end'/>
    </Activity>
    <Activity id='1' name='end' />
    <Activity id='2' name='deleted from HR equals disable' audit='true'>
    <Variable name='WF_ACTION_ERROR'/>
    <Variable name='user'/>
    <Action id='0' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='disableUser'/>
    <Argument name='accountId' value='$(userName)'/>
    <Argument name='doWaveset' value='true'/>
    </Action>
    <Transition to='end'/>
    </Activity>
    <Activity id='3' name='ProcessUser'>
    <Variable name='user'/>
    <Action id='0' name='CheckOutUserView' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='checkoutView'/>
    <Argument name='type' value='User'/>
    <Argument name='id' value='$(userName)'/>
    <Variable name='view'/>
    <Return from='view' to='user'/>
    </Action>
    <Transition to='end'/>
    </Activity>
    </WFProcess>
    </Extension>
    </TaskDefinition>
    I hope that someone will be able to help me.
    Thanks a lot.

  • Error while creating a process chain

    Hello BI Gurus,
    I have activated the Business Content Scenario in Plant Maintenance for Infocube 0PM_C08(Measurement Results).
    It provides a datasource -> infocube flow,through DSO with transfer and update rules.(3.X scenario)
    I have two questions -
    1.When I am trying to create a process chain for this scenario for regular delta loads(Loading from the datasource - > DSO - > infocube),
    Start - >Execute InfoPackage->Activate DSO Data ->
    Then  when i insert the Execute Infopackage for the load step from DSO to Infocube in the process chain and check it, it is giving an error saying "InfoPackage ZPAK_D50AJ26831X6L4IIOTZTSXWAE is generated; NOT able to be used as loading variant ".
    I got this infopackage by right clicking on the context menu and going to Additional Functions -> Update 3.x data to Data targets.
    Why am I getting this error and how to resolve it, bcos when i load it manually it is working fine?
    2.If the error is because I did not use a infopack created by me, then how to create a infopack for loading to the infocube from DSO in BI7, because when i select from the Context Menu for creating infopack, it is taking me to the already generated IP ?
    Also instead of using the 3.X mechanisms, if I decide to create a DTP,  will the transformation created with it automatically map all the rules in the "Update Rules" for all fields?
    Waiting for your guidance.
    With Warm Regards,
    Vineeth
    Edited by: VINEETH SUBRAMANIAN.B on Jan 31, 2009 12:11 PM

    Hi,
    Check in  SDN
    Problem with process chain
    Re: Updating Data from ODS to IC using Process chains
    Indirect Spend Analysis
    Thanks
    Reddy

  • How to Automatically generate .XSL file of XML file ???

    Hello Everyone,
    I have UI which provide the facility to create own format by using drag and drop utility. I have also xml file which contains the data. Now task is how to automatically generate the .xsl file of the dynamically designed format for the data stored in xml form.
    If you have any idea about the solution of the above problem.
    I will thankful for any help regarding this…
    Thanks
    B. Kumar

    XSL stands for EXtensible Stylesheet Language, and is a style sheet language for XML documents. .xsl is the extension of the XSL file.Thank you, I am aware of all that.
    When we design any format by using drag & drop utility, System has to generate the .xsl file (extensible stylesheet for the xml document).Why? To accomplish what?
    And then .xsl file is used to display the data which is stored in xml document on the webpage with designed format.So you need to define the mapping between XML and HTML? and you're hoping to do that automatically?
    That's a job for a user interface designer. Not a tool.
    In brief we need to write a parson
    Parser
    which will take any designed format and generate the .xsl file for that design, to display the data which is stored in XML document.Doesn't make sense. It would make more sense if you started from a schema. Starting from an actual XML document, i.e. an instance of the schema, no, not even slightly.

Maybe you are looking for

  • Getting your RSS feed to work without .Mac

    OK, so there have been a few people asking about this and I have figured out a way around it. I must warn you it is not a simple solution, but if you are comfortable using Text Edit to modify the code of your pages, it is a piece of cake - but still

  • How to get the value a user  just enter into a table???

    hi i have a table that adds a new row when a user clicks ADD button. i was able to implement this part, now the user needs to enter some data into this row, i need this data to save into file. how can i get this data from the row?????? thank you.

  • Partial Budget C/F

    Dear All, I am carryforwarding Internal Order budget with Tcode : KOCO / KOCF and working fine. Now i want to transfer Part budget amount  to carryforward. i.e for e.g  i have balance budget Rs. 50000/- for F.Y 2009 and i want to transfer only RS. 20

  • Connection GP WebDynpro and KM

    Hi All, how can I get access to the KM API in a GP Web Dynpro form. NWDS doesnt show an Error in delepment mode. But when Im trying to Build the Application I got the following Error message: [javac] Compiling 22 source files to C:\Documents and Sett

  • Need Advice. N93i Video Mic Produces Frequency Noi...

    My N93i video recording is working well except that the sound in the recorded video is distorted by a hissing noise like that of a radio frequency noise. I have sent the phone to Nokia Care Center, they said its the mic, they change the on/of button