Signature of buyer on purchase order

I want to change signature of buyer on purchase order.
How can I change it ? Is it linked through smart form. Or I need to go to BASIS consultant ? Is it linked with purchase order group ?

You have to look at smart  Form  or SAP Script.
Check the NACE Transaction code -> select application EF -> output types.
here you can see list of forms .
Thanks
Seshu

Similar Messages

  • Approver time sheet - buyer purchase order

    Hi guru,
    I have the following problem.
    I'm the buyer of purchase order for external services. 
    The external employees compile the time sheet filling the field "sender purchase order" with my purchase order.
    When I use the transaction CATS_APPR_LITE, is there any way for extracting all the personnel number related to my purchase order, without using the field purchase order?
    Thanks
    Regards
    Raffaele

    not answered

  • How to add Signatre to Standard Purchase Order Template XSL-FO

    I need to add digital signature to the standard Purchase Order Template which is sent to supplier.
    could you let me know the process.
    thanks
    Edited by: 855902 on May 24, 2011 8:00 PM

    Thanks for your response.
    I tried to change the code in below format but it was giving error.
    Original code
    <xsl:value-of select="LINE_LOCATIONS/LINE_LOCATIONS_ROW/PROMISED_DATE"/>
    modified to
    <xsl:value-of select="xdoxslt:format_date(LINE_LOCATIONS/LINE_LOCATIONS_ROW/PROMISED_DATE,'dd-mmm-yyyy','dd/mmm/yyyy hh24:mi:ss',$_XDOLOCALE,$_XDOTIMEZONE)"/>
    also tried with
    <xsl:value-of select="xdoxslt:format_date(LINE_LOCATIONS/LINE_LOCATIONS_ROW/PROMISED_DATE,'dd-mmm-yyyy','dd-mmm-yyyy hh24:mi:ss',$_XDOLOCALE,$_XDOTIMEZONE)"/>
    also tried like
    <xsl:value-of select="xdoxslt:format_date(LINE_LOCATIONS/LINE_LOCATIONS_ROW/PROMISED_DATE,'dd-mmm-yyyy','dd/mmm/yyyy',$_XDOLOCALE,$_XDOTIMEZONE)"/>
    Tried above 3 methods but it didn't work.
    right now the date format in pdf file is 24-MAY-2011 21:56:24 i need to remove 21:56:24 and have only 24-MAY-2011
    any suggestions.
    thanks

  • Return nothing when run Open Purchase order report(by Buyer)

    We implement iPro/PO in Oracle. I finished the PO setup. But now user report that they are not able to generate any output for a particular Buyer when they run the Open Purchase Orders Report(by Buyer) report in the PO module. Even I leave the parameter wide open for the request, it also does not return any information.
    Does it relate to the PO setting in system? Anyone can kindly guide me how to check such problem?

    Hi Kyla,
    PO raised by the buyer is 'STANDARD','BLANKET','PLANNED' ? What is the PO Status..? It should be "OPEN"..
    Query used in this report is as below :
    Query - Company
    SELECT gsb.name c_company
    , fsp.inventory_organization_id c_organization_id
    , gsb.currency_code C_CURRENCY_BASE
    , gsb.chart_of_accounts_id STRUCTURE_ACC
    , mdv.structure_id STRUCTURE_CAT
    , mdv.category_set_id c_category_set_id
    , flo1.meaning c_yes
    , flo2.meaning c_no
    FROM gl_sets_of_books gsb
    , financials_system_parameters fsp
    , mtl_default_sets_view mdv
    , fnd_lookups flo1
    , fnd_lookups flo2
    WHERE gsb.set_of_books_id = fsp.set_of_books_id
    AND mdv.functional_area_id = 2
    AND flo1.lookup_type = 'YES_NO'
    AND flo1.lookup_code = 'Y'
    AND flo2.lookup_type = 'YES_NO'
    AND flo2.lookup_code = 'N'
    Query - Buyer
    SELECT distinct(pov.vendor_name||papf.full_name)
    , papf.full_name Buyer
    , pov.vendor_name Vendor
    , pov.vendor_id
    , papf. person_id employee_id
    FROM PER_ALL_PEOPLE_F PAPF
    , po_vendors pov
    , po_headers poh
    WHERE poh.agent_id = papf.person_id
    AND poh.vendor_id = pov.vendor_id
    AND poh.type_lookup_code in ('STANDARD','BLANKET','PLANNED')
    AND nvl(poh.closed_code,'OPEN') NOT IN ('FINALLY CLOSED', 'CLOSED')
    AND nvl(poh.cancel_flag,'N') = 'N'
    /* AND papf.full_name = nvl(:P_buyer,papf.full_name) */
    /* Bug#2453022 Commented out the above condition and replaced
    it as follows as the user parameter P_Buyer will now return the id and not the name */
    AND papf.person_id = nvl(:P_buyer,papf.person_id)
    AND pov.vendor_name BETWEEN nvl(:P_vendor_from,pov.vendor_name)
    AND nvl(:P_vendor_to,pov.vendor_name)
    AND EXISTS (select 'x'
    from po_lines pol
    , po_line_locations pll
    , po_releases por
    where pol.po_header_id = poh.po_header_id
    and pol.po_line_id = pll.po_line_id
    and nvl(pll.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    and nvl(pol.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    and nvl(por.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    and nvl(pll.cancel_flag,'N') = 'N'
    and nvl(pol.cancel_flag,'N') = 'N'
    and nvl(por.cancel_flag,'N') = 'N'
    and pll.shipment_type in ('STANDARD','BLANKET','SCHEDULED')
    and pll.po_release_id = por.po_release_id(+))
    AND PAPF.EMPLOYEE_NUMBER IS NOT NULL
    AND TRUNC(SYSDATE) BETWEEN PAPF.EFFECTIVE_START_DATE AND
    PAPF.EFFECTIVE_END_DATE
    AND DECODE(HR_SECURITY.VIEW_ALL ,'Y' , 'TRUE',
    HR_SECURITY.SHOW_RECORD('PER_ALL_PEOPLE_F',PAPF.PERSON_ID,
    PAPF.PERSON_TYPE_ID,
    PAPF.EMPLOYEE_NUMBER,PAPF.APPLICANT_NUMBER )) = 'TRUE'
    AND DECODE(HR_GENERAL.GET_XBG_PROFILE,'Y', PAPF.BUSINESS_GROUP_ID ,
    HR_GENERAL.GET_BUSINESS_GROUP_ID) = PAPF.BUSINESS_GROUP_ID
    ORDER BY papf.full_name
    , pov.vendor_name
    Query - PO
    SELECT distinct(pol.line_num) Line
    , poh.segment1 ||decode(por.release_num,null,'','-')|| por.release_num PO_Number_Release
    , poh.currency_code C_CURRENCY
    , plt.line_type Line_Type
    , &P_FLEX_CAT C_FLEX_CAT
    , &P_FLEX_ITEM C_FLEX_ITEM
    , pol.item_revision Rev
    , pol.item_description Description
    , pol.po_header_id
    , pol.po_line_id
    , poh.vendor_id
    , poh.agent_id
    , psp.manual_po_num_type
    , poh.segment1
    , por.release_num
    , nvl(por.po_release_id,-1) release_id
    FROM po_line_locations pll
    , mtl_system_items msi
    , mtl_categories mca
    , po_lines pol
    , po_releases por
    , po_headers poh
    , po_line_types plt
    , po_system_parameters psp
    WHERE poh.po_header_id = pol.po_header_id
    AND pol.po_line_id = pll.po_line_id
    AND pll.po_release_id = por.po_release_id(+)
    AND pol.line_type_id = plt.line_type_id
    AND pol.item_id = msi.inventory_item_id(+)
    AND msi.organization_id(+) = :c_organization_id
    AND pol.category_id = mca.category_id
    AND nvl(pll.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    AND nvl(pol.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    AND nvl(poh.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    AND nvl(por.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    AND nvl(pll.cancel_flag,'N') = 'N'
    AND nvl(pol.cancel_flag,'N') = 'N'
    AND nvl(poh.cancel_flag,'N') = 'N'
    AND nvl(por.cancel_flag,'N') = 'N'
    AND pll.shipment_type in ('STANDARD', 'BLANKET', 'SCHEDULED')
    ORDER BY decode(psp.manual_po_num_type,'NUMERIC',
    --bug#3614924
    decode(rtrim(poh.segment1,'0123456789'),NULL,to_number(poh.segment1))
    , null)
    , decode(psp.manual_po_num_type,'NUMERIC',null, poh.segment1)
    , por.release_num
    , pol.line_num
    Query - Shipment
    SELECT pll.shipment_num Shipment
    , nvl(pll.promised_date,pll.need_by_date) P_Date
    , pol.unit_meas_lookup_code Unit
    , DECODE (POL.order_type_lookup_code, /* <SERVICES FPJ> */
    'RATE', PLL.amount,
    'FIXED PRICE', PLL.amount,
    PLL.quantity) Ordered
    , DECODE (POL.order_type_lookup_code, /* <SERVICES FPJ> */
    'RATE', PLL.amount_received,
    'FIXED PRICE', PLL.amount_received,
    PLL.quantity_received) Received
    , DECODE (POL.order_type_lookup_code, /* <SERVICES FPJ> */
    'RATE', PLL.amount_billed,
    'FIXED PRICE', PLL.amount_billed,
    PLL.quantity_billed) Billed
    , pll.price_override Unit_Price
    , DECODE (POL.order_type_lookup_code, /* <SERVICES FPJ> */
    'RATE', (PLL.amount - NVL(PLL.amount_received, 0))/
    DECODE(NVL(PLL.amount, 0), 0, 1, PLL.amount),
    'FIXED PRICE', (PLL.amount - NVL(PLL.amount_received, 0))/
    DECODE(NVL(PLL.amount, 0), 0, 1, PLL.amount),
    (NVL(PLL.quantity, 0) - NVL(PLL.quantity_received, 0))/
    DECODE (NVL(PLL.quantity, 0), 0, 1, PLL.quantity)) * 100 Percent_Due
    , plc.displayed_field Open_For
    , pll.po_line_id
    , nvl(pll.po_release_id,-1) join_release_id
    FROM po_line_locations pll
    , po_lines pol
    , po_lookup_codes plc
    WHERE pol.po_line_id = pll.po_line_id
    AND nvl(pll.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    AND nvl(pol.closed_code,'OPEN') not in ('FINALLY CLOSED','CLOSED')
    AND nvl(pll.cancel_flag,'N') = 'N'
    AND nvl(pol.cancel_flag,'N') = 'N'
    AND plc.lookup_type = 'DOCUMENT STATE'
    AND plc.lookup_code = nvl(pll.closed_code, 'OPEN')
    AND pll.shipment_type in ('STANDARD', 'BLANKET', 'SCHEDULED')
    ORDER BY pll.shipment_num

  • Send E-mail to Buyer and Requisitioner while doing GR for a Purchase Order

    Hi All,
    I  would like to send automatic notification messages to buyers and Requisitioners when goods receipt is completed for Purchase orders (Document type ZE). Notification should be sent only for the purchase requisitions that are created manually.
    Notification message should contain the following info:
    u2022 Purchase order number
    u2022 Purchase requisition number
    u2022 Purchase requisition line item number
    u2022 Vendor
    u2022 Material Number
    u2022 Short Text
    u2022 Goods Receipt quantity
    u2022 Batch number
    u2022 Storage Location
    Notification messages should send to an email address, requisitioneru2019s SAP address and e-mail address that was maintained SAP user profile.
    If goods receipt document contains more than one line and those lines related to more than one requisition the system should generate one message per requisitioner.
    There is standard fonctionality in message determination that enables sending a message to the buyer when GR is performed on a PO. But not to requisitioner.
    would this require Worfklow or is there a user exit available at Goods Receipt time to do this kind of notification?
    Please let me know
    Thanx in advance.

    Hi,
    You can send the mail in the BADI MB_DOCUMENT_BADI.
    But i suggest to check with your functional consultant to set up a routine in output determination.
    In this routine you can add the code to send the mail.
    Regards,
    Ankur Parab

  • To print Digital signature on the Purchase Order

    How to print Digital Signature, on the PO Print copy (PDF).
    It will be based on release strategy. Whoever is approving the PO, his signature should be printed automatically on the Purchase Order.
    How to achieve this ??
    Please let me know in detail
    thanks
    amit

    Hi Amit,
    I am not sure on how to get the the signature of the person who released the PO, because as per my understanding the Relase Strategy i.e the Relase code is attached to a Basis profile.
    What I would suggest is if you can get all the guys who can release a PO and define him as a Purchaser ie. a Purchasing group then it would be easier to print his signature in the PO.
    Here are the Highlevel steps
    1. Just have the Signature you want to print in a Tiff format.
    2. You can upload the signature as a standard Text using program RSTXLDMC to upload and give a text name.
    3. call the text name in your sap scripts.
    reward if useful.
    Thx,
    MJ

  • Purchase Order Print out with Digital Signature

    Dear Gurus,
    1) we are going to implement release strategy, but still business requirement to have a digital signature, Meaning, if only upto Supervisor release, then PO print should come with Supervisor digital signature, if PR value upto Supervisor & manager release, then PO print should come with Manager digital signature, if PR value upto Supervisor, Manager, GM Reelease, then PO print should come with GM digital signature, Whoever approves last, then their signature should appear in the PO printout - How to Achieve this?
    2) If any amement in the Purchase order, then is it possible to reflect in the PO print out as Rev1 , Rev 2...?
    Please advice
    Thanks
    RS

    Dear,
    Check : http://help.sap.com/saphelp_nw70/helpdata/EN/18/ecb69017ad4765855425b97f666470/content.htm
    May be helpful.
    Another is scan the signature to bmp and attach the bmp through smartform or sapscript - But this is not digital signature.
    Regards,
    Syed Hussain.

  • Buyer of shopping cart, purchase order and contract

    Hi
    I wanted to ask about buyers. Are buyers usually a purchasing group/organisation? I am not sure if my thinking is right but wouldn't a buyer of a shopping cart and purchase order be the same. And a buyer of a contract would or can be different to the shopping cart because a contract is a source of supply and is probably linked to many purchasing groups/organizations.
    Is this reasoning right? Buyers are different to approvers too isn't it? Please could someone explain this to me?
    Kind regards

    Hi Deepa,
    Are buyers usually a purchasing group/organisation?
    Ideally each buyer should ahve a unique purchasing group. In thsi case we can say that each buyer is a purchasing group. However, in some companies, its a possiblity of sharing a purchasing group. In that case multiple buyer users will be assigned to purchasing groups in the SRM organizational structure.
    buyer of a shopping cart and purchase order be the same.
    Normally, if a PO is created w.r.t. SC, the purchasing group is copied. So its the same. However we can change the purchasing groups in sourcing cockpit using workload reassignment option or direcly in the PO/contract document.
    So we can say that its necessary to have PO/contract purchasing group same as that in SC.
    Regards,
    Prashant
    Do reward points for helpful answers

  • How to go about Digital Signature/Encryption for Purchase Orders

    Hi
    We would like to send the Purchase Orders through E-Mail to suppliers in SAP. As per our legal department recommendations, we must implement the digital signature/Encryption mechanism in SAP prior to send the PO's through email.
    I have no knowledge about available features, configuration requirements in SAP and required decryption machanism from Supplier side.
    Appreciate, if you could share your expertise on the above requirements.
    System details:
    SAP : 4.7 (MySAP ERP)
    WAS: 6:20 (Netweaver 2003 Oct)
    Regards
    Kumar

    Guess these documents will be very helpfull..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/55ba9790-0201-0010-aa98-ce8f51ea93cd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7f52fd28-0b01-0010-afb0-cc70884fa369
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a09f3d8e-d478-2910-9eb8-caa6516dd7d9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1c51c590-0201-0010-ffbc-b2bef1c57385
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1c51c590-0201-0010-ffbc-b2bef1c57385
    Reward points if found helpfull.........

  • Adding electronic signatures to the purchase order layout

    Hi Experts
    I want to add the signatures to the purchase order layout based on the approvals that has been obtained by that purchase order.
    What are the possibilities of doing this in SAP B1.
    Thanks & Regards
    Kanishka Wickrama

    Hi Kanishka,
    IF you need to print the signatures to the purchase order layout based on the approvals.
    Try this,
    ->> Scan your signature or require person signature
    than paste that signature image to Bitmap Folder on Server.
    ->> Open the PO PLD.
    ->> Create 1 Database field and 1 Picture Field in End of Report on PLD.
    for Signature
    ->> Create 1 Picture Field in End of Report on PLD.
    ->> Click the Browse button and Browse the image File for Signature.
    Save and Run the Print Preview.
    OR IF you need to print that Signature only based on the Approvals.
    Do this,
    for ex. Field ID -> F_100
    Table -> OPOR - Purchase Order
    Column ->  WddStatus -Authorization Status
    F_100='P'
    => Link to F_100 to Picture Field at General Tap on Properties Window.
    Regards,
    Madhan.

  • Purchase orders - confirmation email to buyer

    Hello experts.
    What should I do to the buyer receives an email confirmation of purchase order?
    thanks,
    AlePaes
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Nov 21, 2011 6:14 PM

    You need to configure Output determination on the Sales order type, so that a Order response output type (like BA00) with email is triggered once the order is saved in the system.
    Search on these forums on how an outbound Order response output is configured

  • Purchase orders created by buyer only can be viewed

    Dear All,
    Can it possible that Purchase orders created by buyer only can be viewed by him not the ones created by other created under same operating unit.
    Regards

    Hi DInesh,
    Can you explain how it can be achieved by coding in Custom.pll. If you have a example code that would help. I think it is WHEN-NEW-FORM-INSTANCE trigger, the code should see the login/employee of the person and get the buyer id and should restrict the query to only those records created by this buyer id. This is just my thinking without verifying the entire process in applications.
    I think its a bit complex. Can you clarify it a bit detail
    Thanks,

  • Signature on Purchase order

    Hell All,
    Can anyone tell me whether the Digitial or scanned signature is allowed in India for the purchase order print out which has been created in SAP.
    If yes then could u please tell me which company is having such kind of practice.
    Thanks in advance.
    Shailesh

    Hi Shailesh, 
    Scanned Signature  & Seal makes it possible to digitally sign, securely seal, encrypt and deliver any documentation over the Internet using e-mail. Itu2019s simple, legally enforceable and approved by the laws of India.
    They have the same legal STANDING as handwritten signatures on paper.
    It is an acceptable form of delivery for any entity in India for commercial, legal and government use.
    Government use
    During imposing president rule in Bihar under Lallu prasad Regime the documents were signed and sent by the president in scanned format as he was outside India at that time
    This information i have obtained by browsing a couple of legal websites on Google
    Regarding companies i could not get the information
    Hope this information resolves your query
    Any other additional information needed do ping again 
    If found useful reward accordingly
    Thanks & Regards
    Pavan
    Edited by: venkata pavankumar on Jun 5, 2008 5:02 PM

  • Not Be able to Close Purchase Orders with different Buyer ID

    We have open Purchase Orders in system created by different buyers & now these Buyers are no more exist or there User ID has been disabled, now pls guide us how we can close those Purchase orders by using single User ID.
    Pls note that we have many open PO's in system of of those period (inventory, Purchase & GL) which are closed.
    Pls note that we cannot enable the those buyer ID which are disabled.
    Regards
    Umair

    Hi, conc. request "Mass update%Document%" has worked & it replace the Buyer ID to newer one but still we arefacing problem in those Purchase Orders whose state is Pending for approval or Buyer has forwarded for approval but again those approver's who are also setup as buyer has left the company. Now pls advise how we handle those Purchase Orders or revert back their state from Pending for approval to initial state
    Regards
    Umair

  • How to see Planned Purchase Order in Buyer Work Center

    Hello,
    I need to see Planned Purchase Order
    (created in Purchasing Super User(responsibility) => Purchase Order -> Purchase Order , Type (Planned Purchase Order))
    in Buyer Work Centre.
    I can see Standard Purchase Order in Buyer Work Center (under Orders Tab).
    I can see Contract Purchase Agreement in Buyer Work Center (under Agreement Tab).
    I can see Blanket Purchase Agreement in Buyer Work Center (under Agreement Tab).
    But can not see Planned purchase Order in "Buyer Work Center".
    Is this intentional ? If yes, then why.
    if no, then where we can see Planned Purchase Order in HTML pages.
    Thanks,
    Vishal Garg
    Mb: 9985803224
    Email: [email protected]

    hi
    there is no standard report which shows the expenditure/conditional value in po. you have to develop your customs report./

Maybe you are looking for

  • Is there a way for a user to specify a page within a flip book that they wish to view?

    We would like to post our weekly publications online for our customers to view.  I have exported and created swf files before and I understand the most of the navigation buttons that are in InDesign but I have not been able to find a solution to this

  • Dual boot for lion and SL

    BHow do I set up the dual boot for Lion and snow leopard oon the same internal hard disK What does Time machine do  under the dual boot?

  • My PDF Document can't open properly in Acrobat Reader XI, But properly open in Acrobat Reader X

    Hi ~~ As the topic, My customers using Acrobat Reader XI Can't open My Pdf file, But, same file can be opened properly in Acrobat Reader X, Acrobat Reader XI shows Error Message: Can't Capture Embeded Font Is there any update of Acrobat Reader XI can

  • Lost site definition in CS5.5

    My IMac crashed and now l the Site Definitions file is lost, I have tried to do a restore from my Time Machine but I am unable to find the Site Definitions Folder I have even tried reinstalling Dreamweaver as per the instructions in the Adobe support

  • USB Ports Insufficient Power Supply

    There are problems with my USB Ports (Macbook late 2011, 13"). I will break it down: The rear USB port suddenly stopped working last week. I can confirm this becaues (1) my mouse does not work, and (2) I cannot charge any iPhones, iPods, or Blackberr