Linking a manually created PO with a PR

Hi
Is it possible to link a manually created purchase order with a PR in database?
regards,

Hi,
Please refer the below MOS Note : How to Get the Purchase Order (PO) Number From a Requisition Number Via the Tables (Doc ID 169095.1)
To get a PO number from a Requisition number via the tables, run the following
script:
SELECT poh.segment1, pol.line_num, poll.shipment_num
FROM po_headers_all poh, po_lines_all pol,
po_line_locations_all poll,
po_requisition_headers_all porh,
po_requisition_lines_all porl
WHERE porh.requisition_header_id = porl.requisition_header_id
and porl.line_location_id = poll.line_location_id
and poh.po_header_id = pol.po_header_id
and pol.po_line_id = poll.po_line_id
and porh.segment1 = ####;
If you check the above query, you will understand- how they are linked.
porl.line_location_id should be equal to poll.line_location_id.
However, I wont suggest you to manually create the link, as it may cause few problems:
The approved requisition will have separate entry in Supply tables (mtl_supply) and PO will have separate entry . (ideally, if it is autocreated - it should have a single entry).
If you have encumbrance enabled, it might cause other issues with requisition encumbrance and po encumbrance
If you cancel the PO, not sure whether the backing requisition too will get canceled without any issue.
Personally i feel, it is not the good practise to establish the link manually.

Similar Messages

  • Manually creating DB with scripts question

    As mentioned in admin guide, these are the steps to manually creating DB
    Step 1: Decide on Your Instance Identifier (SID)
    Step 2: Establish the Database Administrator Authentication Method
    Step 3: Create the Initialization Parameter File
    Step 4: Connect to the Instance
    Step 5: Create a Server Parameter File (Recommended)
    Step 6: Start the Instance
    Step 7: Issue the CREATE DATABASE Statement
    I am not sure about step2, can somebody send me quick command what to do here, which are mentioned in
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#i1008823

    C:\Documents and Settings\Ar>set ORACLE_SID=test1
    C:\Documents and Settings\Ar>orapwd FILE=test1.pwd
    PASSWORD=test ENTRIES=30
    = your password file should be named
    = %ORACLE_HOME%\database\orapwORACLE_SID.ora
    C:\Documents and Settings\Ar>sqlplus /nolog
    SQL*Plus: Release 9.2.0.1.0 - Production on Wed May 2
    10:59:01 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All
    rights reserved.
    SQL> connect sys/test as sysdba;
    ERROR:
    ORA-12560: TNS:protocol adapter error
    = First, point to your instance, set the ORACLE_SID environment
    = variable from the OS:
    = set ORACLE_SID=YourInstanceName
    = Next, make sure you use proper authentication method.
    Now how can i run creat database scripts here???= Just before creating your database, in windows, you must first create the service, with the oradim command, this command creates the password file automatically:
    oradim -new -sid YourInstanceName -intpwd YourSYSDBAPassword -startmode A
    = Once you have been properly authenticated, and you had made sure everything is OK, issue your CREATE DATABASE command.
    = I suggest you to use the dbca to create the scripts, this is the easiest way to create the create database scripts, and the least prone to human error.

  • Create Folder with the name of expense report number in SHAREPOINT ?

    Hi All,
    iExpence - In expense report confirmation page. There is custom link.
    Requirement
    When user click on link, system should create folder with the name of expense report number in SHAREPOINT and copy copies of expense receipts in the created folder in SHAREPOINT.
    Please suggest.
    Thanks,

    OAF no api as such for this kind of customization. Rather try developing some web service or something similar which can be invoked from the custom link to do the job.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                   

  • How to Manually Create Wi-Fi Profiles with Open Authentication & WEP Encryption

         I clicked Control Panel > Network and Internet > Network and Sharing Center> Set up a new connection or network > Manually connect to a wireless network, but I wasn't able to select WEP for Encryption type when I selected
    Open System for Security type. Why not? I hear Open authentication & WEP encryption is more secure than WEP authentication & encryption. Doesn't Windows support Open authentication & WEP encryption?
         I tried it on several computers: Win8.1/8/7, hp/DELL/ASUS/acer, but on neither of them was I able to select Open authentication and WEP encryption at the same time. Wi-Fi is enabled, and every user account that I tried it from is admnistrator
    one.
         I can manually create Wi-Fi profiles with WEP authentication and WEP encryption. What I wanted to create is, however, those with Open authentication and WEP encryption.
         I'll appreciate your help.
    cf. http://answers.microsoft.com/en-us/windows/forum/windows8_1-networking/how-to-manually-create-wi-fi-profiles-with-open/20306f4a-6909-44a5-a715-745a922b97e0?rtAction=1420438873802

    Hi,
    Acctually speaking, Both type of WEP encryption is not secure. I'm agree with SenneVl's opinion, it would be better to use WPA encryption. You can refer to the contents of the link belwo for more details:
    Set up a security key for a wireless network:http://windows.microsoft.com/en-hk/windows/set-security-key-wireless-network#1TC=windows-7
    Roger Lu
    TechNet Community Support

  • Help with validation on a manually created tabbed form

    version 4.1.1.00.23
    Hello,
    I have a manually created tabbed form that I'm having trouble creating validation on.
    The page is a Resource Staffing page where PM's can forecast the Resources that will be needed for various projects. The forecast can be for 12 - 18 months.
    The requirement is to display a message to the user if they are trying to save a row without forecasting any time. It's possible they may not know how may Resources or the length of time needed when the row is created.  If they respond that they want to save the row without time the MRU will create the record. If they answer that they do not want to save the row they are returned to the page without loss of information.
    The month fields on the page are defaulting to 0 (zero).
    I've updated the Save button to Redirect to URL and in the URL Redirect I have: javascript:confirmNoTimeSaved()
    The javascript:
    [code]
    function confirmNoTimeSaved()
        var arr_jan,arr_feb,arr_mar,arr_apr,arr_may,arr_jun,arr_jul,arr_aug,arr_sep,arr_oct,arr_nov,arr_dec = new Array();
            arr_jan = document.wwv_flow.f07;
            arr_feb = document.wwv_flow.f08;
            arr_mar = document.wwv_flow.f09;
            arr_apr = document.wwv_flow.f10;
            arr_may = document.wwv_flow.f11;
            arr_jun = document.wwv_flow.f12;
            arr_jul = document.wwv_flow.f13;
            arr_aug = document.wwv_flow.f14;
            arr_sep = document.wwv_flow.f15;
            arr_oct = document.wwv_flow.f16;
            arr_nov = document.wwv_flow.f17;
            arr_dec = document.wwv_flow.f18;
        for(i = 0; i < arr_jan.length; i++)
            if(arr_jan[i].value == 0 && arr_feb[i].value == 0 && arr_mar[i].value == 0
                && arr_apr[i].value == 0 && arr_may[i].value == 0 && arr_jun[i].value == 0
                && arr_jul[i].value == 0 && arr_aug[i].value == 0 && arr_sep[i].value == 0
                && arr_oct[i].value == 0 && arr_nov[i].value == 0 && arr_dec[i].value == 0)
                txt = 'You have no time assigned to your Forecast. Do you want to save this Forecast without time entered?' + '\n' + '\n' + '"Yes" to save the Forecast.' + '\n' + '"No" to return with no changes.';
                caption = 'Confirm Saving With No Time';
                vbMsg(txt,caption)
                switch (isChoice)
                    case 6:
                        doSubmit('SUBMIT');
                        break;
                    case 7:
                        doSubmit('CANCEL2');
                        break;
            else
                doSubmit('SUBMIT');   
                break;
    </script>
    <script language="VBScript">
    <!--
    //Yes    = 6
    //No     = 7
        Function vbMsg(isTxt,isCaption)
            testVal = MsgBox(isTxt,vbYesNo,isCaption)
            isChoice = testVal
        End Function
    //-->
    </script>
    [/code]
    The 'CANCEL2' is just a Branch I'm using to branch back to the page without clearing Cache. I do have 'Cancel' button on the page and the Branch created for that clears the Cache.
    While debugging the javascript I get into the VB Script on the testVal = MsgBox(isTxt,vbYesNo,isCaption) line and the browser crashes.
    Can someone help with this requirement?
    What additional information can I provide?
    Thanks,
    Joe

    The code above is my attempt at this requirement, however, the browser crashes when it gets to the VBScript on the MsgBox call. I don't have to use this approach. Does someone have an idea how to solve this?
    Thanks,
    Joe

  • Sync with manually created tables or selected publication items

    HI
    I have the following situation :
    Server side:
    Table1, Table2,Table3,Table4,Table5,Table6
    Client type1 :
    Table1, Table2,Table3,Table4
    Client type2:
    Table3,Table4,Table5,Table6
    so i cant create two different publications for clients.
    I have 1 publication with Table1, Table2,Table3,Table4,Table5,Table6
    In this situation, is it possible to synchronize with manually created lite database and tables, or mobile server knows how to sync only with snapshots created by his own ?
    Sync process reports "sync ok" but nothing happens
    And one more question is :
    can i use some sync api to create database with snapshots
    1,2,3,4 for client1 and snapshots 3,4,5,6 for client2?
    Today it works in following way:
    1)install mobile client on mobile devices
    2)install mobile application type 1 and 2 on mobile devices
    3)call msync to create database with snapshots 1-6 on all devices
    4)client type 1 do not use tables 5,6 sync only tables 1,2,3,4
    5)client type 2 do not use tables 1,2, sync only tables 3,4,5,6

    only tables defined in the application and synchronised down to the client will be synchronised - manually created tables on the client are ignored (list of tables to be synchronised is controlled by the table c$table_list in the concli database)
    for your requirement, either
    use one application for both client types, but ignore the 'unused' tables in the client software - advantage=easy, disadvantage overhead in synchronising and composing data not needed
    or
    create two seperate applications .no problem about using the same table in multiple applications, we do that for reference data all of the time, sequences cannot be shared (but there is a work around for that), and then associate each client user to one or the other application - advantage=better meets the requirement, disadvantage=maintenance and different database names in the client configuration

  • Problems with a manually created Classic BADI

    Hello.
    When Implementing note 1632640, we manually created a Classic BADI named HRPAYPT_CA_SURCHARG (instead of the correct name HRPAYPT_CA_SURCHARGE).
    When we realized this, we've deleted the implementation ZHRPAYPT_CA_SURCHARG and the BADI
    Definition. However, when asked to delete (or not) the interface IF_EX_HRPAYPT_CA_SURCHARGE we choosed "NO".
    Now, we cannot create the new BADI definition because it's says that interface IF_EX_HRPAYPT_CA_SURCHARGE already exists.
    we also cannot delete manually the interface in SE24, because it says that it can only be mantained via Addin Builder.
    How can we solve this issue?
    Regards,
    Valter Oliveira.

    Hi Valter,
    Try going to SE24 and put in the class name "CL_EX_HRPAYPT_CA_SURCHARG" and then choose "Utilities" -> "Versions" -> "Version Management" -> "Public Section" and see if you can retrieve the old version of the class that was generated when you created the definition.  If you are able to retrieve it then you might be able to delete it along with the interface itself.  If that doesn't work you may have to resort to some sort of debugging trick to get by the issue.
    Regards,
    Ryan Crosby

  • Creating PDF with links in Table of Contents

    How do I convert a Word file (in which the page numbers in the Table of Contents are links to their corresponding headings) to a PDF file so that the page numbers in the Table of Contents are still liinks to their corresponding headings?  I am working with Adobe Acrobat 9 Pro.  Thanks!

    Hmmm. I hadn't heard of this limitation. Indeed, http://www.pdfa.org/2011/08/pdfa-–-a-look-at-the-technical-side/ says "With regard to hyperlinks, the special ‘Link’ annotation type is permitted with or without activated ‘Appearance’. "  Maybe this document is being generated with a different kind of annotation.

  • Broken Link - Offline - Day 4 - Creating "Pages" with Flex states

    Hi,
    This is an excellent series!!
    When accessing the Day 4 - Creating "pages" with Fex States in offline mode, Adobe Media Player, complines "Playback failed - This media file is corrupt or malformed". Can you please fix it and let me know so that I can restart the download?
    Thanks.

    Hi,
         I'm also pacing the same issue. if click on the video in the Day 4 exercises. i don't know, what is the issue with that particular videos. and also pacing one more issue that design mode is not showing in my flash builder 4. if u have any ans plz help me out. PFA

  • Update links in file created based on the template page

    Hello everyone:
    a) I have problems when update links in files crated based on
    a template page.
    I read Dreamwaver (DW) help menu. Seems to me Dreamwaver is
    smart enough to update links based on correct file structure.
    I created a template file based on a sample page. Template
    file saved to the template folder. Then I crated few pages based on
    the template. I checked links in new files and found that link
    structures are based on template folder, not based on files current
    folder position.
    Please give me some suggestions on how to correct this
    problem. If you know some good online tutorial or documentations
    please share with me.
    b) Can DW template update Navigation bar links correctly
    based on relative document path?
    I have Navbars imported from Fireworks into DW. Files crated
    based on template are not updating pop-up menu links correctly. I
    manually updated every links. It is time consuming and

    > I created a template file based on a sample page.
    Template file saved to
    > the
    > template folder. Then I crated few pages based on the
    template. I checked
    > links
    > in new files and found that link structures are based on
    template folder,
    > not
    > based on files current folder position.
    This means that you are entering the links manually, not
    using the Property
    inspector and browsing to the target file. You should do it
    this way until
    you understand how templates work. All links in a template
    file should
    (usually) be one of three kinds -
    1. Document relative BASED ON THE TEMPLATE, e.g.,
    <a href="../whatever....
    2. Root relative, e.g.,
    <a href="/whatever....
    3. Absolute, e.g.,
    <a href=''
    http://www.example.com/whatever....
    Anything else will always result in the Template folder being
    placed in the
    path for the link when you create a child page.
    > b) Can DW template update Navigation bar links correctly
    based on relative
    > document path?
    Yes, of course.
    > I have Navbars imported from Fireworks into DW.
    This could easily be one of your problems. Those menus are
    definitely
    broken and should never be used.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "sjmacro" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello everyone:
    >
    > a) I have problems when update links in files crated
    based on a template
    > page.
    >
    > I read Dreamwaver (DW) help menu. Seems to me Dreamwaver
    is smart enough
    > to
    > update links based on correct file structure.
    >
    > I created a template file based on a sample page.
    Template file saved to
    > the
    > template folder. Then I crated few pages based on the
    template. I checked
    > links
    > in new files and found that link structures are based on
    template folder,
    > not
    > based on files current folder position.
    >
    > Please give me some suggestions on how to correct this
    problem. If you
    > know
    > some good online tutorial or documentations please share
    with me.
    >
    > b) Can DW template update Navigation bar links correctly
    based on relative
    > document path?
    > I have Navbars imported from Fireworks into DW. Files
    crated based on
    > template are not updating pop-up menu links correctly. I
    manually updated
    > every
    > links. It is time consuming and
    >
    >

  • Canon 860 Series (Pixma) Printer Problems with OSX 10.8 (Mountain Lion) – links to Canon Support Site with Drivers and Software with install tips

    After spending several hours sorting out Canon Pixma OSX problems here are my thoughts:
    Canon 860 Series (Pixma 868) Printer Problems with OSX 10.8 (Mountain Lion) – links to Canon Support Site with Drivers and Software with install tips
    Problem:
    - New imac and MacBook Pro 2012 (OSX 10.8.2) had a problem using Canon Pixma 868 printer on network and would not scan or print using Canon Pixma software (Pixma MP Navigator 2.1 & Photo Print), which has advanced scanning and photo printing functions. 
    - When I connected the canon printer to my imac, OSX 10.8.2 automatically downloaded and installed drivers for Canon 860 series printer. I could then add the new printer (select ‘apple menu’ / ‘system preferences’ / ‘print and scan’ / “+”) and printer would work while connected via USB but could not get to print or scan over network wifi. 
    - The original Canon 860 Series CD does not work with 10.8 and the manual / online instructions did not make sense (as based on CD install). 
    Solution:
    1) Install Canon Printer Drivers and Software (from official Canon site)
    Go to canon support site, review FAQ, then download and install following Pixma 860 Series software & drivers for OSX 10.8 (links see below). The version I downloaded is in brackets but check for updated version. Full instructions are below.
    Canon 860 Series Drivers & Software  for OSX 10.8 Mountain Lion:
    The base software and drivers needed for using Canon 860 Series on Mac OS X 10.8 (USB) are
    1 Printer Driver
    (Canon MX860 series CUPS Printer Driver Ver. 10.67.1.0 (03-Aug-2012))
    2 Scanner Driver
    (Canon MX860 series Scanner Driver Ver. 14.11.4a (03-Aug-2012))
    3 Network Tool
    (Canon IJ Network Tool Ver. 4.1.0 for Intel Mac (27-Dec-2012)
    Canon Software for using advanced printing and scanning functions (while connected to network)
    4 Solution Menu
    (Canon Solution Menu Ver. 1.4.1 (27-Jul-2012 ))
    5 MP Navigator EX
    (Canon MP Nav EX Ver. 2.1.3 (02-Auf-2012))
    6 Easy-PhotoPrint EX
    (Canon Easy-PhotoPrint EX Ver. 4.1.6 (21-Jan-2013 ))
    Canon Support (HK) – check your local site
    http://www.canon.com.hk/en/download/main/index.do
    Select Product and drivers from support site eg http://support-hk.canon-asia.com/
    1. Choose a product category
    Multifunctional Printers
    2. Choose a product series
      Pixma
    3. Choose a product model
      Pixma MX868
    4. Choose type of document
    Downloads or FAQ
    If you have problems installing the software under 10.8, see the FAQ on Canon site. You will need to allow software installs from “unidentified developers by using “Control” Key or by changing your system preferences)
    2) Check Canon Printer and Software Working while connected via USB
    Once you have downloaded and installed drivers and software and restarted computer, check that the printer and Canon Pixma software (Pixma MP Navigator 2.1 & Photo Print) are working via USB.  Open the Canon IJ Network Tool App (Applications / Canon Utilities /IJ Network Tool / Canon IJ Network Tool App) and make sure you can see the Canon MX 860 series (xx.xx.xx.xx.xx.xx) and that it shows the correct SSID Wifi settings (under the Canon IJ Network Tool App ‘Setup menu’).  This is normally done as part of the automatic install but worth double checking
    3) Add new network printer using ‘apple menu’ / ‘system preferences’ / ‘print and scan’ / “+”).
    After you have checked USB printing turn off printer, unplug the USB cable and shutdown the Canon IJ Network Tool App.
    Then turn the printer back on and wait 30s. Then add a new printer using ‘apple menu’ / ‘system preferences’ / ‘print and scan’ / “+”). Once you select “+” (add new printer), wait 10-30s for the Wifi Networked Canon MX 860 Series printer to appear in the new window eg Canon MX 860 series (xx.xx.xx.xx.xx.xx) (Kind: “Canon IJ Network”)
    DO NOT ADD THE MX 860 SERIES BONJOUR SCANNER (the Bonjour Scanner is the built-in software, is not needed and often appears first on the add printer list).  The Canon scanner can be accessed used through the MP Nav EX Ver. 2.1.3 software (which has much better functions)
    You will now have two Printer Canon MX860 (USB) and Canon MX860 (Wifi / Network). Set the Canon MX860 (Wifi / Network) as default and test print and scan
    If the Wifi Networked Canon MX 860 Series printer does not appear, check the printer and make sure that the printer can see the wifi network. On the printer select Menu / Settings / Device Settings / Lan Settings / WLAN Setting List.  It should say WLAN Active, identify the SSID and have an IP address
    If the printer can not see the Wifi Network, plug the USB cable back in, then open the Canon IJ Network Tool App (Applications / Canon Utilities /IJ Network Tool / Canon IJ Network Tool App). Make sure you can see the Canon MX 860 series (xx.xx.xx.xx.xx.xx) and that it has your SSID settings (under setup), if it has this info, restart the computer and the printer and try again

    Hi, thaks for response, meant to post as a discussion (not question), wanted to save others time if they get the same problem

  • Need to personalize the Remittance screen making 'Manual Create' Button invisible

    Dear All,
    I highly appreciate you people responding to my before questions. All are solved/clarified.
    Below is the requirement from my friend, I am trying to help him. Please suggest.
    In Receivables>Receipts>Remittance screen
    Need to disable the 'Manual Create' button, if the user selects the 'Receipt Method' field as 'XX_REC_METH1'.
    I tried just to disable the 'Manual Create' without the receipt Method condition, even that also doesnt work.
    Version : R12.1.3
    Function Name: AR_ARXRWMAI_REMITTANCES
    Form Name: ARXRWMAI
    Manual Create Button: AR_BATCHES_SUM. REMIT_MANUAL_CREATION                               <block>.<field>
    Receipt Method: AR_BATCHES_SUM.M_REMIT_RECEIPT_METHOD_NAME                            <block>.<field>
    Kindly suggest any work around.
    Thanks a lot in advance.
    Regards,
    Afzal.

    Hi Afzal,
    your question is about an eBusiness Suite form.  Our forum here (and the team that moderates it) deals with Fusion Applications questions.
    Please repost this question in one of these forums that deal with EBS:
    Technology - General Discussion
    Financials
    Thanks for your understanding.
    Regards,
    Oliver
    Fusion Apps Developer Relations
    https://blogs.oracle.com/fadevrel

  • Manual Excise duty with fixed amount in Sales order

    Dear Sir/Madam.,
    This is regarding manual excise duty with fixed amount in SD Module . I
    have created three conditon type ZEXP,ZECS,ZA1X for BED ,CESS and HSED for manual excise duty with fixed amount, other than the standard condition type JEXP,JECS,JA1X , because  my TRADING SALE scenario needs both condition type with fixed percentage and fixed amount conditions also.  After the pricing procedure updation for trading sale, I have tried to create the sale invoice with VF01 , it is ok till  the VF01 for manual excise duty but when ever I tried to excise posting with J1IIN. the manual excise duty show only zero, whiile we used the  standard Condition type JEXP, JECS, AND JA1X with fixed percentage  8% -2% -1%  our over all steps are ok till J1IIN for excise invoice, mean BED ,CESS and HSED shown correctly.
    I have done some experiment with the TAXINN tax procedure in (Logistics general > tax on good movments> india> basic settting>determination of excise duty> Maintain excise default), I have replaced the condition types  JEXP, JECS and JA1X with the ZEXP, ZECS and  ZA1X in the corresponding filed. then after my manual excise duty with fixed amount data  was reflecting
    in the J1IIN and it start to work properly with the excise duty but my fixed percentage condition type stop to working mean, it was now showing the duty at the time of  excise duty posting J1IIN .
    I want to use both the condition types in the same TRADING SALE scenario. May anybody help me to solve this issue.
    With Regard
    Vijay Kumar

    Dear Mr. Siva,
    Sorry for the late reply, actually I was out of touch from this issue for few days. I am sending you the detail about my configuration----
    I have assigned this condition type as following ... 
    TAXINN     ZA1X     A/R AT1 Quantity based
    TAXINN     ZECS     A/R Cess Quantity Based
    TAXINN     ZEXP     A/R BED Quantity based
    Condition type information
         Control data 1
    Cond. class       D  Taxes
    Calculat.type     Q  Commodity
    Cond.category  D  Tax
    Rounding rule         Commercia
    StrucCond.
         Change which can be made---
    Manual entries      C       Manual entry has priority
    Still it is not showing the duty at the time of (J1IIN)
    It may be I am missing some configuration or wrong configuration.
    give me some hints...
    thank you
    Vijay

  • Links in PDF created by MS Access work fine in Chrome and Foxit, but seem corrupted in Adobe Reader XI

    I am using version 11.0.09.29 of Reader which I understand to be the latest, and version 6.1.4.0217 of Foxit.
    The document is Dropbox - D00769 Parish Register Reconstructed.pdf  and I have created this with an MS Access repoort exported as PDF to Dropbox.
    If I download this and open in Foxit and click on the first camera icon on page 1 I am taken to the correct URL with no problem http://hcnhistory.org.uk/PDC/showJboximages.php/?T=HcN%20Parish%20Register%20of%20marriage s%201837-1963&S=600&X=D00769&N…   (Note that the full URL is correct and ends N=7, but this forum has shortened what is shown here with an ellipsis.)
    Similarly clicking on the second camera icon on page 1 also correctly takes me to http://hcnhistory.org.uk/PDC/showJboximages.php/?T=HcN%20Parish%20Register%20of%20marriage s%201837-1963&S=600&X=D00769&N…
    All the links behind all the other camera icons are also correct in Foxit (and incidentally in Chrome).
    If I open the same document in Reader and click on the first camera icon I am taken to http://hcnhistory.org.uk/PDC/showJboximages.php/?T=HcN%20Parish%20Register%25On - which is not correct and comes up with an error (a).
    Interestingly the second camera icon in Reader takes me to http://hcnhisotonr/ which is very wrong, as does every other camera icon on the same page (b).
    It seems that in Reader the first link on each page is as at (a) above, and every other link is as (b) above.
    There is no problem with the link in the footer of each page.
    I have checked on the forum entries that might have helped (e.g. https://forums.adobe.com/thread/1133628) but these seem to be about %20 being encoded as %2520 thereby causing errors, and were solved with a new version of Reader last year. It looks like mine may be a similar but not identical issue.
    Any ideas what is going on?
    Thanks

    There's something very strange going on with this file. It doesn't actually contain any links (except for in the footer), but the URLs in transparent text located behind the camera icon and the first line of each item.
    So if you have the option set to create links from URLs then Acroabt/Reader will recognize that text and convert it into a clickable link...
    There are many problems with that, mainly that the URL text overlaps with the actual text of the document. So if you copy the first lines of the first page, it looks like this:
    HcN Parish Register of marriages 1837-1963
    Page 1
    http://hcnhistory.org.uk/PDC/showJboximages.php/?T=HcN%20Parish%20Register%On 19 Sep 1837 John Munns (Labourer; aged 19 Years; signed) of 2H0oolfy%w2e0mll wararisa gMesa%rr2i0e1d8 b3y7 -H19u6g3h& FSo=r6d0 0B&aXc=oDn0 b0y7 6B9a&nNn=s7 t&oN A=
    Sophia Mann (of Full age; signed) of Holywell
    As you can see, the URL string is cut in the middle by the actual text, and is therefore broken when clicked (it happens in the forum system as well, just the same).
    Other problems are that it screws up the text, and also that it won't work at all if the setting mentioned above is disabled.
    If possible, I would recommend abandoning this weird system altogether and sticking with creating actual Link objects, like you did in the footer.
    That is a much more reliable and consistent method of inserting clickable web-links into your file.

  • Unable to create PR with Service Line & also no entry in ESLH table using

    Hi Experts,
    I am using BAPI => BAPI_REQUISITION_CREATE to create PR and it is successful to create PR but when I try to create PO is become fail (proably missing entry in ESLH table).
    Now my requirement is to create PR with Service Line and an entry in ESLH table (should be filled by SAP automatically). I have been passing the service related/account assigment tables into BAPI but still not working.
    Will you please give a solution to create PR with Service Line and also need an entry in ESLH table (its important to my req)?
    Also provide some input on Service Line, if possible(How to check Service Line for PR + Account Assignment to Service Line + etc.)?
    Note that: If I create PR manually then there have entry in ESLH and hence I can create PO.
    Definately the quick solution help me lot...
    Thanks
    AKG

    Hi Experts,
    I am using BAPI => BAPI_REQUISITION_CREATE to create PR and it is successful to create PR but when I try to create PO is become fail (proably missing entry in ESLH table).
    Now my requirement is to create PR with Service Line and an entry in ESLH table (should be filled by SAP automatically). I have been passing the service related/account assigment tables into BAPI but still not working.
    Will you please give a solution to create PR with Service Line and also need an entry in ESLH table (its important to my req)?
    Also provide some input on Service Line, if possible(How to check Service Line for PR + Account Assignment to Service Line + etc.)?
    Note that: If I create PR manually then there have entry in ESLH and hence I can create PO.
    Definately the quick solution help me lot...
    Thanks
    AKG

Maybe you are looking for