PCR: Characteristics vs form interface

Hi,
While creating a new PCR or modifying an existing PCR,
I am not sure what to do with the Characteristcs in QISRSCENARIO. Is this the one used in SFP to do the drag and drop. In that case, what for is the interface. Can anyone pl explain.
Regards
Srini

Starting a new thread

Similar Messages

  • Creating a Purchase Order Smart Form (Form Interface)

    After reading up on all the posts about making a PO smart form I know this:
    - An SAP script "medruck" is the current output
    - A smartform exists for PO's named "/SMB40/MMPO_L" or "/SMB40/MMPO_A"
    - You need to install an update to get those smartforms if you are using ECC 6.0
    So my dilemma is that the SAP administrator is on vacation for a week, so I can't install the update to our system.  I'm trying to just create it from scratch using the medruck SAP script as a reference, but I am a little confused.
    Basically all I need to know is what form interface parameters do I pass in?  Meaning how do I find out what structures and tables are imported into the function module when print preview is called from t-code ME22N?  Can you please provide proper syntax for form interface solution or instructions on how to determine imported variables into the smartform?

    Hi
    If the smartform purchase order is not available in your system
    means you can download the form IDES and you can upload the form in ur ecc 6.0 system.we faced a similar kind of problem in our system and we did as i said.
    Once you uploaded the things you can easily view the form interface and rest of the things related to smartforms.
    Thanks and Regards
    Arun Joseph

  • Form interface import parameter cannot be used in smartform

    Hi,
    When I try to use the standard parameter HEADER in a routine in a smartform, I get the error: "HEADER" expected, not "...".
    I have put the HEADER definition in the Input parameters of the routine and I have tried other form interface import parameters and I do not get any error with those. So I cannot see why HEADER woudl be any differnt?
    Any suggestions? Thanks.

    Hi,
    Thanks for your reply.
    There's a smartform with this definition in the Import tab of the Form Interface:
    HEADER     TYPE     BAPIBUS2000110_HEADER_DIS
    I've created a Program Lines routine. In the Input Parameters under the General Attributes tab, I entered HEADER. This is so I can reference the table in the code. However if I do a syntax check, I get the error described "HEADER" expected, not "...".
    Hope this clarifies the problem.

  • PDF Form interfaces for invoice

    Hi experts,
    I`m implementing company forms (e.g. invoices) in PDF Forms. But I have found, that there are 2 form interfaces predefined for invoices
    IS_U_BILL_IF
    and
    IS_U_BILL_PDF2_IF
    Why there are 2 interfaces for invoice? I cannot find any references of use cases, when to use first or second one.
    Thank you
    Vlado

    As noted there has to be a special folder level script installed on each user's system. This script can be written to access individual properties of the identity object or only a specific property. One can also create a function to access the identity object or even create new properties.

  • SMARTFORMS - Change an import parameter in form interface

    Hello everyone,
    I don't know if it's possible, but I put some program lines in my smartform to clear some fields if the last page is not reached. The problem is that these fields are from a table that's stated as an import parameter in form interface, which means that data is taken from the program, right?
    Am I able to clear these fields anyway? If so, which way?
    In my code I'm comparing the systems fields sfsy-page and sfsy-formpages, if they're different I clear the fields, otherwise I don't, actually I did it because the conditions don't get the result as I wish. If I check "only after the end of main window" the whole table doesn't appear in my form and I don't want that.
    PS: I didn't set this condition on table, I set it in the text.
    Any ideas?
    Thanks in Advance.

    Hi,
    You can do one thing.....create an internal table in the smartform itself....transport those values in this table and display the fields using this table only.
    Now if the last page is reached u can use the main table (that is imported from the program). This way the original data is not cleared.
    I hope it helps.
    Regards,
    Shraddha

  • Error in the  import tab of form interface with parameter name

    Hi Experts,
                    in the import tab of form interface i have define the following..
              Parameter Name               type assignment                  Associated Type
             t_vbrk                                    type                                         vbrk
    and then in a loop i am using this as follows...
    t_vbrl into fs_vbrk
    after executing check i am getting the error 'T_VBRK" is neither specified under "TABLES" nor defined as an internal table.'
    plz help me out with this.....
    why this error is occuring?
    thnks n reagrds,
    Ashmita

    Hi,
    U cannot loop the import tab i think....Give tat one in tables statement and execute..
    t_vbrk type vbrk in Tables tab...
    I think it will solve ur issue..

  • Error in form interface

    Hi,
    I had an error in form interface.I declared as,
    IN_VOICE      TYPE            VBRK-VBELN  for parameter.
    error: "VBRK-VBELN" is not a pre-defined type or a type from a type group.

    Hi dilip,
    Declare in the Import tab in the global definitions:
      t_vbrk type y_ty_vbrk.
      t_vbrp type y_ty_vbrp.
    Create the table types for these two parameters (t_ vbrk and t_vbrp) in se11.
    In the driver program declare:
      fs_vbrk LIKE LINE OF t_vbrk,         
      fs_vbrp LIKE LINE OF t_vbrp.        
    Regards,
    Sravanthi

  • BarCode Scanning - PO Receipts in Forms Interface

    Hi Everyone,
    Need a clarification on whether the following scenario is available as standard functionality in a Forms Interface (NOT using MSCA Devices)
    The supplier has shipped the entire quantity of the item ordered in say, 10 Boxes.
    I shall be scanning the Item Number, Quantity, PO number from the boxes, one by one.
    In the PO Receipts form, while scanning the second box, I need the quantity to be added to the already scanned quantity available in the field.
    I am assuming this is a standard feature available when scanning with MSCA devices.Kindly correct me if i am mistaken.
    regards,
    Karthi Sankar!

    I think you have covered it all.
    Just add PO_VENDORS and PO_VENDOR_SITES views to get the supplier and site name/codes.
    Thanks,
    PS.

  • Difference between Form Interface and Global definitions in Smartforms.

    Hi guys!
    I'm learning about Smartforms.
    I would like to know which is the difference between Form Interface from the Global Settings and Global Definitions from Global settings as well, because in both of them I have to declare tables, structures, variables, etc. Could you please explain to me when should I use them?
    Thanks!
    Gaby

    Two ways to use Smart Form:
    1.     by using Application Program
    2.     By coding in Smart form itself.
    Now, if the 1st method is used then same interface can be used  for multiple requirements. For eg two different programs Z1 and Z2, may use same interface. Hence a lot of efforts are reduced.
    On the other side in 2nd method, multiple forms have to be created to fulfill different requirements.
    Now, Global Definiton is something that is irrespective of which Program is being used, the form nodes can use the Global definition in all cases.
    Also all tables etc must be declared in the Global setting.
    Regards,
    Sana

  • Re: Adobe forms - interface type

    Hi...
        When Iam creating the interface ... it is asking  Description and
                                               interface type as         ABAPDictionary- Based interface
                                                                                XML Scheme- Based Interface
                                                                             Smartforms-Compatible interface...    Have to select one option.. In some Examples I didnt see this interface type Option... what is the use  of this interface type...
    Thanks & Regards,
    Abaper..

    hello again,
    i tried to list all the things u need to know to create your interface:
    1.      Open the required interface in the Repository Browser of the ABAP Workbench.
    2.      The Interface tab is displayed. Under Form Interface, double-click the Import node
    3.      You see a screen for entering import parameters. This screen also shows the standard parameter /1BCDWB/DOCPARAMS. You cannot change this parameter.
    You use this parameter in your application program, to specify the value for the language setting, for example. To display this structure in the ABAP Dictionary, double-click the SFPDOCPARAMS type.
    4.      XML schema-based interface
    ○     The standard parameter /1BCDWB/DOCXML with the type XSTRING is used for sending data from the application program.
    ABAP-based or Smart-Forms-compatible interface
    ○     To insert a new line, choose Insert Line (This graphic is explained in the accompanying text). Enter the parameter names of the data you want to import. These names are valid for the whole form and do not have to match the variable names in the data collection program. All data types are valid. TYPE can be selected under Type Assignment.
    5.      When you double-click Export, you see the standard parameter /1BCDWB/FORMOUTPUT of the generated function module. You cannot change this parameter.
    Note: You use this parameter in your application program, to make the generated form available as a PDF for further processing, for example.
    6.      To display the exceptions used by the generated function module, double-click Exceptions.
    7.      Activate the interface.
    Note: At runtime, the application program must provide the parameters. If a parameter has been defined in the form, but is not defined when the application program is called, then the output of the form ends with the program crashing (hex dump).
    However, it is also possible that the application program provides parameters that the form does not need. You do not need to mention these parameters in the form; they can also be specified in a different order from the code of the application program. This has the advantage that an application program can work with several different forms.
    Hope this helps
    Cheers

  • Service Form interface with RACF DB2 Databases

    We are looking for a way to have service form interface with RACF using DB2 connect. This function is needed to perform data validation against mainframe system. Any advice or instructions of how to implement this is greatly appreciated.

    I am using Weblogic workshop test browser to test this code. My Ws code looks like this.
    package WebServ;
    public class AsyncWebServ1 implements com.bea.jws.WebService
    * @common:control
    * @jc:timer repeats-every="30 s" timeout="60 s"
    private com.bea.control.TimerControl MyTimerControl;
    * This member variable stores the client choice to be sent a callback or not.
    public boolean m_useCallback;
    * When the callback handler is fired, this boolean is set to true.
    * Clients that don't want callbacks check this boolean to see if their result is ready.
    public boolean m_messageIsReceived;
    public Callback callback;
    * @common:control
    private Control.xmlDocWSControl xmldocwscontrol;
    static final long serialVersionUID = 1L;
    private String xmlString = "";
    private String strName = "";
    * @common:operation
    * @jws:conversation phase="start"
    public void getWSEmplyeeInfoCON(String aName)
    MyTimerControl.start();
    xmlString = xmldocwscontrol.getEmplyeeDtlsCon(aName);
    return ;
    public interface Callback extends com.bea.control.ServiceControl
    * @jws:conversation phase="finish"
    public void testCallback(String result);
    * @common:operation
    public void MyTimerControl_onTimeout(long time)
    //xmlString = xmldocwscontrol.getEmplyeeDtlsCon(aName);
    if(!m_useCallback)
    m_messageIsReceived = true;
    else
    callback.testCallback(xmlString);
    MyTimerControl.stop();
    return;
    * @common:operation
    * @jws:conversation phase="continue"
    * @jws:protocol form-post="false" form-get="true"
    public boolean checkStatus()
    return m_messageIsReceived;
    * @common:operation
    * @jws:conversation phase="finish"
    * @jws:protocol form-get="true" form-post="false"
    public String getMessageResponse()
    return xmlString;
    * @common:operation
    * @jws:conversation phase="start"
    public void requestMessage(boolean useCallback)
    m_useCallback = useCallback;
    // Start the delay timer.
    MyTimerControl.start();
    return;
    The value of xmlString can be hard coded.
    Saju

  • API to generate Form Interface

    Hi,
    Is there any API in ABAP using which i can generate a form interface? I know the ABAP structures that will be used in the form context. So, i want to generate the form interface programatically. Is this possible? If so, what are the APIs to be used?
    Thanks in advance for the help.
    Regards,
    Ram

    Just a clarification needed - Do you want to generate RTF Template using APIs or do you want to generate outputs (RTF, PDF etc) using APIs ?
    BI Publisher provides Oracle Report Conversion Utility which creates RTF template from the RDF file/ RDF XML. However there is no generic API to create the RTF Template.

  • Accessing form interfaces with ABAP?

    Hi experts!
    I'm developing an email inbound class and i have to parse the incoming xml-file. To make it generic and more flexible, I want to read all my import fields out of my form interface to process it to my xml-file.
    Can I access my form interface in any way or is that just impossible?
    Thanks & greets,
    Philip

    One can access struct members either via dot-noation if the keys are "valid variable names", or via bracket notation, eg:
    myStruct["myKey"]
    Using bracket notation does not have the valid-variable-name restrictions that dot notation has.
    Adam

  • Form interface problem

    i have declared a internal tale in driver program and it is like this
      data : begin of itab occurs 0,
                    vbeln TYPE vbak-vbeln,
                    audat TYPE vbak-audat,
                    auart TYPE vbak-auart,
                    vkorg TYPE vbak-vkorg,
                    vtweg TYPE vbak-vtweg,
                    spart TYPE vbak-spart,
                    posnr TYPE vbap-posnr,
                    matnr TYPE vbap-matnr,
                    matkl TYPE vbap-matkl,
        end of itab.
    i am passing to smartform
    call function I_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        itab_end                    = itab
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5.
    In the smartform i am trying to create  itab_end so that i can capture the data from the program.
    in the form interface in tables option i am declaring like this
    itab_end type itab.
    I am getting the error like  'type itab  does not exist'.
    please tell how to solve this.

    Hi,
    Ramesh kumar
    Your check this code.
    data : begin of itab occurs 0,
    vbeln TYPE vbak-vbeln,
    audat TYPE vbak-audat,
    auart TYPE vbak-auart,
    vkorg TYPE vbak-vkorg,
    vtweg TYPE vbak-vtweg,
    spart TYPE vbak-spart,
    posnr TYPE vbap-posnr,
    matnr TYPE vbap-matnr,
    matkl TYPE vbap-matkl,
    end of itab.
    data:
    t_itab type standard table of itab.
    Working fine .
    Regards,
    Ansari.

  • Tables in form interface in Smartforms

    Hi
        Generally for creating Tables in Form Interface in smartform , We have to create a Zstructure Or ZTable Type in SE11 and then we refer this structure in form interface. My requirement is how can we create Tables In Form Interface in smartforms
    without creating Zstructure In se11. Can you please tell me is it possible , If possible then how can i do it.
    Thanks & Regards
    Girdhari

    Hi friend,
    If you have a driver program and you need to pass data from the driver program to the smartform then during Form interface declaration you need to specify a global parameter. Which you will be creating using SE11.
    With out creating a global structure or global table type we cannot declare it. If you have all the logic with in the smartform then you can declare the table type or structure with in the form then declare it.
    But once if data comes from outside then we should go for global.
    So i hope you will be clear and got the answer for your question.
    Thanks,
    Sri Hari
    Edited by: srihari.kumar on Feb 8, 2012 12:06 PM

Maybe you are looking for

  • Datasource related to FI and Cash Flow

    Hi ,can anyone please give me information on FI and Cash Flow management and it's datasource as well. Regards Arjun

  • How to filter duplicates from XMLListCollection

    I have been trying to filter duplicates from XMLListCollection using FilterFunction.  However, it filters on the main XML tag, which happens to be the same value on all tags in this particular XML.  The values only vary in the parameters, and I need

  • Can you use Mac OS X Lion multi touch gestures in Firefox?

    On Wednesday, Apple release the new OS X Lion and there are now Multi Touch gestures using the trackpad. I am able to use those gestures in Safari, but I was wondering if there is a way I can use the multi-touch gestures in Firefox.

  • Question about blocklist.xml

    OK so I was browsing thru my AppData\Roaming\Mozilla\Firefox\Profiles\********.default and I acdently clicked blocklist.xml and it opened in IE would have this infected my pc i noticed it had alot of blocked urls? or emails or somthing in there. plz

  • When I place an image it comes up as a solid colour instead

    Hello, Hope someone can help. I have downloaded images on iStock and placed them into my layout inDesign. So far so good. However, these are for print so I need to make some adjustments in Photoshop. I open up the jpg in Photoshop then make adjustmen