Extract Signatures in PI Sheets

Hi,
I need to extract signatures from Co60 for a Custom report.As it is browser based output it became bit difficult .
Kindly let me know if you can help me in this regard.
regards
Vara
Message was edited by: Vara K

Hi Vikranth and Ferry,
Thank you for the messages.
I tried this FM PI_SHEET_GET_LIST & COCB_CONTROL_RECIPE_GET_DETAIL.
These did not suffice my requirement.I need to Extract Signatures Phase Wise.CR_CHARACS is not capturing my Signatures.
regards
Vara
Message was edited by: Vara K

Similar Messages

  • Extract Signatures from PI Sheets

    Hi,
    I need to extract signatures from Co60 for a Custom report. As per SDN members Suggestion I tried these FM's PI_SHEET_GET_LIST & COCB_CONTROL_RECIPE_GET_DETAIL.
    These did not suffice my requirement.I need to Extract Signatures Phase Wise.CR_CHARACS is not capturing my Signatures.
    As it is browser based output it became bit difficult .Kindly let me know if you can help me in this regard.
    Regards
    Vara

    Hi Vikranth and Ferry,
    Thank you for the messages.
    I tried this FM PI_SHEET_GET_LIST & COCB_CONTROL_RECIPE_GET_DETAIL.
    These did not suffice my requirement.I need to Extract Signatures Phase Wise.CR_CHARACS is not capturing my Signatures.
    regards
    Vara
    Message was edited by: Vara K

  • Digital Signatures in PI sheets

    Hi Guys;
                 Can anyone explain how to assign Digital Signatures to PI sheets & what are the settings required.
    Thanks in Advance;
    Rajesh

    Hi,
    For Including Digital Signature in Browser Based PI Sheet You have to configure below mention Steps,
    1) Authourisation Gourps
    2) Define Individual Signatures
    3) Signature Strategy
    Path For Above is
    SPRO -> Production Planing for Process Industries> Process Management -> Contorl Recipe/PI SHeet-> Digital Signatures.
    Now creating Signature Strategy you have to assgin that Strategy in your Process instruction Catagory followed by Process Massage Characteristic PPPI_SIGNATURE.
    Kindly followed The Below Link it will helpful to you for configuring Digital Signature,
    [Digital signature;
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0fbaa71-cd8d-2910-5982-e30626035400]
    Regards,
    Dhaval

  • Oracle function to extract data into excel sheet

    I have extracted data from a couple of tables onto a view. Basically I have got about 15 coloums in that view but i need to extract the data in the view into an Excel sheet.
    I just want to know if their is a function in oracle whereby i can export the data in the view onto an excel sheet, because this statements is going to be scripted and run every morning for the data to be processed.
    Oracle version: oracle 9i
    OS : Windows 2003

    There are at least three options.
    One is to use UTL_FILE or spool to write the results out as a comma separated file. Excel can then read the .CSV without a hitch. Only use spool you want to overwrite the file (on create a new one) each day.
    The second approach would still use UTL_FILE but use Tom Kyte's OWA_SYLK utility to write an Excel-readable file.
    The third approach would be to reverse the direction. Define your database as a DNS datasource and embed your query in the Excel spreadsheet. This obviates the need for the user to pfaff around with CSV files but does require a bit more work on the OS side.
    Which approach you choose rather depends upon your precise needs.
    Cheers, APC

  • Oracle function to extract data into excel sheet within a script

    I have extracted data from a couple of tables onto a view. Basically I have got about 15 coloums in that view but i need to extract the data in the view into an Excel sheet.
    I just want to know if their is a function in oracle whereby i can export the data in the view onto an excel sheet, because this statements is going to be scripted and run every morning for the data to be processed.
    Oracle version: oracle 9i
    OS : Windows 2003

    If this is a one-off then IDEs such as TOAD typically
    let you export the results of a query in an
    appropriate format for Excel.Note:
    because this statements is going to be scripted and run
    every morning for the data to be processedSo that won't be feasible in this case, but it was a good point to make.

  • Signature in PI sheet

    HI Guys,
    In PI sheet, we need to get signature during GI/GR and final confirmation. Can any one tell me related configuration in details?
    Thanks
    Krish

    Thanks Kesava.
    I am getting the below issue even after the settings
    Pls help

  • Office Control: Extract values from Excel sheet

    Hello,
    I would like to extract cell data of the excel office control.
    e.g. I create a excel office control with a plain sheet. The user enters some data (A1=Test).
    How can I extract the data of cell A1?
    the oposite direction (exporting cell data) works in the example IOS_TEST_SPREADSHEET_MS with method
    wd_this->document->activatexmlsource( EXPORTING xml = contentxmlsource
                                                           errorinformation = error_activatexmlsource_stru ).
    but how can I IMPORT the data (after the user has changed it) again?
    Thanks in advance!
    Tobias Horstmann
    Edited by: Tobias Horstmann on Jan 21, 2009 2:12 PM

    Providing you are using a windows based Oracle server and providing the Excel data is formatted as follows:
    Each sheet in the workbook represents a "table"
    The first row on each sheet gives the column names in each column.
    All subsequent rows are the data for those columns.
    You can use Oracle's Heterogeneous Services (HS) to connect to the spreadsheet as external database (via an ODBC datasource).
    1- Go to Control Panel>Administrative Tools>Data Sources (ODBC)>System DSN and create a data source with appropriate driver. Name it EXCL.
    2- In %ORACLE_HOME%\Network\Admin\Tnsnames.ora fie add entry:
    EXCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.12.0.24)(PORT = 1521))
    (CONNECT_DATA =
    (SID = EXCL)
    (HS = OK)
    Here SID is the name of data source that you have just created.
    3- In %ORACLE_HOME%\Network\Admin\Listener.ora file add:
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = <hs_sid>)
    (ORACLE_HOME = <oracle home>)
    under SID_LIST_LISTENER like:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = d:\ORA9DB)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = ORA9DB)
    (ORACLE_HOME = d:\ORA9DB)
    (SID_NAME = ORA9DB)
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = EXCL)
    (ORACLE_HOME = D:\ora9db)
    Dont forget to reload the listener
    c:\> lsnrctl reload
    4- In %ORACLE_HOME%\hs\admin create init<HS_SID>.ora. For our sid EXCL we create file initexcl.ora.
    In this file set following two parameters:
    HS_FDS_CONNECT_INFO = excl
    HS_FDS_TRACE_LEVEL = 0
    5- Now connect to Oracle database and create database link with following command:
    SQL> CREATE DATABASE LINK excl
    2 USING 'excl'
    3 /
    Database link created.
    Now you can perform query against this database like you would for any remote database.
    SQL> SELECT table_name FROM all_tables@excl;
    TABLE_NAME
    DEPT
    EMPOr refer to this Article...
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4406709207206

  • Signature in Excel sheet

    Hi all,
    My req. is to display the signature of different user as per the condiftion. how to do this?
    Thanks!
    Brunda.

    I forget to tell where to display,...I have to display in Excel sheet .

  • Extract Signature properties

    I need to extract the properties of the signature in a form. My companies signature has the email address within it as well as the certified lastname and first name.
    Is there a way to copy the contents of that property to another field or to memory? My intent is that when the person signs and submits the document, I can automatically extract that information to a spreadsheet?
    If the information is already contained in the signature, I didn't want the user to enter it again.
    Thanks in advance,
    John

    You can do this, but it would require you create a plug-in in C/C++.

  • Can BAM extract data from Excel Sheet?

    Hi,
    Thanks for seeing my message.
    We have huge data in the form of Excel sheet with large number of regular updates every day.
    Can BAM read Excel sheet so I can make a dash board reflecting lot of KPI's to track?
    regards,

    BAM Excel View is a report type in BAM. It does not retrieve data. You might be able to use a BPEL file adapter to read the file and publish data to BAM.

  • Periodic extract from RFBILA00 - Balance Sheet tx.

    Hi all,
    I'm trying to extract the periodic extract file from GLT3 table using Tx. F.01 for BSheet but after selecting all the entries and also entering that the logical file name to store in the presentation server should be ECCS_FILE I can not manage to get any file (and system doesn' populate any error message)
    I have found the following paths:
    ECCS_PATH
    FI-LC_EXTRACT
    FILC_DOWNLOAD
    FILC_EXTRACT
    FLEXIBLE_UPLOAD
    SEMBCS_FILE
    These seem to be related to consolidation  (FILC, ECCS and SEMBCS) but I must say that i do not manage to get any file.
    I must also say that I'm using ECCS-PATH for the import into ECCS of the flexible upload files sent from another ERP. Could it be due to I should use another path for periodic extract?
    Thanks in advance.

    Thanks Dan,
    it's been my fault. I finally got the key: There must be selected the output to "Classic List".
    But now I have another problem because my FI account has assigned a group account but on the extracted file only the FI account is informed. I must say that there can be an issue due to we are working on the New GL and for public sector, so the totals table is FMGLFLEXT. I'm not sure the system will support any other table but GLT0 or FAGLFLEXT...
    On tx. OB13 the Group chart of account is assigned to the operative one.
    On tx. OB58 exist a Group BSEstatatement where also Group ChAcc is assigned.
    On FS00 all the operative accounts have their group account...
    I thought It could be due to I run tx. CXNV to populate the balances form FI to GLT3 but did not select "Read from master data"and reread "transaction type", but I did another text flagging them and GLT3 remains the same and so does the extract file... is there any way a could reverse all the entries on GLT3?
    Thanks!

  • How to Verify digital signature in ABAP web dynpro enviroment

    Hi,
    I have few questions regarding, how we can Verify digital signature in ABAP WebDynpro ?
    Do we have class or function modules to verify digital signature on WAS once signed offline or online interactive form is uploaded back?
    can we use function modules in function group SSFG for validating authors signature? Or any other classes or interfaces are available in NetWeaver environment.
    I searched to find any sample for validating signatures in ABAP WebDynpro, however I could not find any thing. Any sample code will be very useful?
    Thanks,
    Nitesh Shelar.

    I Found that Interface IF_FP_PDF_OBJECT can be used to extract signatures from document.
    Thanks,
    Nitesh Shelar.

  • Data in Excel sheet

    hi abapers,
    I have extracted data into excel sheet,in which i have field MARD-LGORT. its having values for storage location like 0001,0002 etc.but in excel sheet i get values like 1,2 etc.it truncates leading zeros.but i want zeros in excel sheet also.
    i want this values without setting of excel sheet.
    plz help me.will reward points.
    thanks,
    Twinkal.

    Twinkal,
    Hi
    in that FM there is parameter called 'FILE TYPE'
    pass the value for it as 'DBF'
    it will work.
    data : begin of it_heading occurs 0,
    line(30) type c,
    end of it_heading.
    it_heading-line = 'ABC'.
    append it_headING.
    it_headING-line = 'XYZ'.
    append it_headING.
    call function 'WS_DOWNLOAD'
    exporting
    * BIN_FILESIZE = ' '
    * CODEPAGE = ' '
    filename = p_file
    <b>filetype = 'DBF'</b>
    mode = ' '
    * WK1_N_FORMAT = ' '
    * WK1_N_SIZE = ' '
    * WK1_T_FORMAT = ' '
    * WK1_T_SIZE = ' '
    * COL_SELECT = ' '
    * COL_SELECTMASK = ' '
    * NO_AUTH_CHECK = ' '
    * IMPORTING
    * FILELENGTH =
    tables
    data_tab = it_data
    fieldnames = it_heading
    exceptions
    file_open_error = 1
    file_write_error = 2
    invalid_filesize = 3
    invalid_type = 4
    no_batch = 5
    unknown_error = 6
    invalid_table_width = 7
    gui_refuse_filetransfer = 8
    customer_error = 9
    others = 10
    if sy-subrc eq 0.
    endif.
    Change all the fields not to be truncated, into character type in the internal table and then download it.
    Also use Function Module: CONVERSION_EXIT_ALPHA_INPUT
    Amit.

  • Is it possible to read digital signature owner information?

    Hi,
    Is it possible to fire an event after sign with digital signature and determine owner of it?
    If signature's owner has some condition submit button appear.
    thanks.

    Methods of the PDF Document Object:  http://help.sap.com/saphelp_crm60/helpdata/fr/46/13e426e96a424fe10000000a1553f6/frameset.htm
    SET_TASK_GETSIGNATURES:
    http://help.sap.com/saphelp_crm60/helpdata/fr/46/1ff6ee90685875e10000000a11466f/frameset.htm
    You use this method to extract signatures from a PDF document. You must first call EXECUTE. You then use the method GET_SIGNATURES to get the signatures.
    see the program FP_PDF_TEST_12 for sample usage.
    Greetings, BJagdishwar.
    The specified item was not found.

  • Signature on multistep approval process

    Hi,  
      We currently have a business process which has two step approvals. The requestor submits the hard copy of form to Approver 1, Approver 1 signs the forms and passes on to Approver 2 . The process is completed when Approver 2 signs the form.
    We are experimenting to make this process online by using Interactive forms and came across some questions which are not so detail in SAP Help. I tried to search previous posts but many were unanswered.
    1.  Can we extract signatures from the Form like data ?
    2.  How is it possible to render the Form with a signature if it is already signed? e.g. When Approver 2 logs onto his screen, the form should show that it was already signed by Approver 1 along with the signature details
    Any help is highly appreciated, thanks!

    if you implement digital signatures, your first approver can click on it and sign it. You can even specify that some or all of the input fields be made non-editable.
    you can email this form to the next approver for their digital signature.
    look in you object library for the digital signature object.
    I'm not sure how to extract that data from the form, though

Maybe you are looking for

  • How do I install a Globalsign certificate?

    I just do not understand the ServerAdmin Certificate management. I ordered a new DomainSSL certificate for my web server. So far so good. When I click on import certificate, ServerAdmin wants my certificate file, a private key file, a CA file (option

  • Issues with Macbook Pro display.

    Hi. Recently, I haven't been having too much luck with Apple products. It started with my Macbook pro Core 2 duo 2.16. It had screen issues, leading to the screen being replaced (replacement screen contained several dead pixels), alongside a logic bo

  • Copying movies and films from external HDD to new Momentus XT

    I have recently installed a new Momentus XT 500 drive on a mid 2010 macbook pro 13" Drive model - ST95005620AS revision - TD24 Drive seems to be working fine with very fast boot times ect.  However, if I copy across movies from my external drive to t

  • Transferring adobe photoshop elements 8 onto a new mac, not working!

    Trying to transfer my photoshop onto my new mac, from my old one I have used a hard drive to transfer the application across, and when i try to open it Error: 6 appears I have restarted my computer as it says and still its not working How can I get i

  • Adobe X (10.1.4) Cannot use docs on screen

    I have a laptop and another screen.  When I open my documents in Adobe reader the first screen fills up with my open documents, when the document then moves onto the laptop screen I am unable to maximise, minimise or use the document.