Documents needed for Report

Hi Experts,
                To build a report  what are the documents that you are needed or prepared from Functional spec to UAT (User Acceptance Test) like busines Blue print..we had 4 only .Can u share your experience with me..
Thanks & Regards,
Swathi.d

Surely Swathi.
High level Design Document will briefly specify the steps to be followed to followed to achieve the business requirements without getting much into the technical specification.
For example suppose the report is going to be developed on a multiprovider which is built on two cubes, then the HLD will simply give you the flow saying that Build a multiprovider on two cubes, then build report on that multiprovider and give the data flow. Then it will also briefly explain the structure of the report - giving idea whether it will have free chars, filters etc.
Detailed design Document will be a very comprehensive doc. It will give all the minute details of the technical changes which are made. It will follow the Technical Requirements Doc basically.
For the same example above - The DD will give the technical names of all backend structures, give the details of all dimensions present in the Multiprovider and the Chars present in them. Also the itechnical names of all Nav. Attributes present.
Then about the report, every single detail like the technical names and description of all objects present in free chars, rows etc., names of the variables and on which char it is built, RKF and CKF if they are present, basically every technical info if present.
Hope this helps.
thanks,
rahul

Similar Messages

  • Document templates for report program argent

    hi ,
    Any body plz send me some documentation templetes for report program

    There are plenty of sample programs available on the web, and in SAP itself.
    Use the SE84 transaction (Information system) and search for programs using BCALV* for SAP demo programs using ALV.
    Search SDN.  Search google.
    Here is one example.
    http://www.erpgenie.com/abap/controls/alvgrid.htm
    Good luck
    Brian

  • Tables needed for report

    Hi Experts,
    I need to build a report for the following requirement.
    Based on the input parameters: <b>MATERIAL NUMBER</b>,
                                      <b>BATCH</b>.
    I need to see in the output: <b>CUSTOMER SOLD-TO,
                                       SHIP-TO,
                                       QUANTITY,
                                       INVOICE DATE,
                                       PO,
                                       ORDER NUMBER.</b>
    Could you please let me know what are the tables i can used for this.
    Thnx a ton.

    You can get material and batch from table MCH1.
    Sales Document data comes from VBAK, and VBAP.  You can get the ship-to partner from VBPA, and you can get the invoice date via document flow table VBFA, or VBUK, VBUP.
    REgards,
    Rich Heilman

  • Help needed for Report Generator in B1 2005

    Hi,
    I have upgraded to B1 2005 and I would like to know where I can find Help files for the report generator (used to customize invoices ...). In particular, I would like to know where I can find information about the system functions available e.g. currentpage().
    Thanks in advance for your help!
    JP

    Use this link.
    <a href="https://websmp102.sap-ag.de/form/sapnet?_FRAME=OBJECT&_HIER_KEY=701100035871000437965&_SCENARIO=01100035870000000183&">https://websmp102.sap-ag.de/form/sapnet?_FRAME=OBJECT&_HIER_KEY=701100035871000437965&_SCENARIO=01100035870000000183&</a>
    In Customization section you can find a document based on PLD

  • Help needed for report on tables vbak and vbap

    Hello,
    I needed help in one of my work issues, this is my first project and Iam still learning. kindly help.
    I was asked to take erdat,vbeln,posnr from selection screen and compare it with the data already in tables vbap,vbak. If the data
    already exists and exception needs to be raised saying that the 'data exists',but if the data is not present in the tables the
    tables have to be updated. This has to be done using function module only.
    Then I have to write a REPORT calling the above function module and finally displaying the number of records updated and the
    list of them.
    I have started writing a function module:
    FUNCTION z_tableupdate.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(DATE) LIKE  VBAK-ERDAT DEFAULT SY-DATUM
    *"     VALUE(SALESORDERNO) LIKE  VBAK-VBELN
    *"     VALUE(ITEMNO) LIKE  VBAP-POSNR
    *"  EXPORTING
    *"     VALUE(EX_VBAP) LIKE  VBAP STRUCTURE  VBAP
    *"     VALUE(SYS) LIKE  SY-SYSID
    *"     VALUE(EX_VBAK) LIKE  VBAK STRUCTURE  VBAK
    *"  EXCEPTIONS
    *"      DATA_UPDATED
    *"      DATA_EXISTS
      SELECT * FROM vbak INTO vbak_wa WHERE erdat = date
                                        AND vbeln = salesorderno.
      ENDSELECT.
      SELECT * FROM vbap INTO vbap_wa WHERE posnr = itemno.
      ENDSELECT.
      IF sy-subrc EQ 0.
        ex_vbap = vbap_wa.
        ex_vbak = vbak_wa.
      ELSE.
        RAISE data_exists.
      ENDIF.
      sys = sy-sysid.
    ENDFUNCTION.
    How is the above code for function module, will this work??
    Now can I write a report to call the above function module and update the record?? if so, how to update ??? please help...Lots of thanks in advance.

    Hi
    Welcome to SDN forum
    Whay can't you write a simple report in SE38.
    why you are using Fun module
    Nothing wrong in it.
    But first become perfetc in reports in SE38 and then do using the fun modules
    write a simple select statement like
    SELECT AVBELN AERDAT BPOSNR BMATNR
    INTO TABLE ITAB
    FROM VBAK AS A JOIN VBAP ON
    AVBELN = BVBELN
    WHERE A~VBELN  IN  S_VBELN AND
                 A~ERDAT  IN  S_ERDAT AND
                 B~POSNR IN S_POSNR.
    IF SY-SUBRC <> O.
      WRITE: / 'No data found'.
    ENDIF.
    First write this in SE38 by defining a proper selection screen and internal tables
    then do as fun module
    see the doc for fun module
    Function Modules;
    Check this matter.
    Function Modules are Global ABAP programs created by SAP for reusable purpose.they have IMPORT,EXPORT and TABLE parameters, and EXCEPTIONS to through when error occurs.
    You can create them from TCode SE37.
    Go through the following doc:
    Function modules are cross-program, reusable procedures that are organized into function groups, and whose functions are implemented between the statements FUNCTION and ENDFUNCTION. Function modules and their interfaces are created in the Function Builder.
    Function Module Interfaces
    The parameter interface of a function module is defined in the Function Builder. It includes the definition of interface parameters and the specification of exceptions that can be triggered by a function module. The Function Builder automatically generates comment lines below the FUNCTION statement in the source code of the function module, which represent the interface of the function module with the following syntax:
    Syntax
    ... [IMPORTING parameters]
    [EXPORTING parameters]
    [CHANGING parameters]
    [TABLES table_parameters]
    [{RAISING|EXCEPTIONS} exc1 exc2 ...]
    The syntax and semantics of IMPORTING, EXPORTING, CHANGING, RAISING, and EXCEPTIONS mainly correspond to the definition of method interfaces with [CLASS-]METHODS. The additional option of defining table parameters using TABLES is obsolete.
    Interface parameters
    The interface parameters are defined on the relevant tab pages in the Function Builder.
    IMPORTING parameters are input parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input parameter. The content of the actual parameter is passed to the input parameter when the call is made. The content of an input parameter for which 'pass by reference' is defined cannot be changed in the function module.
    EXPORTING parameters are output parameters. When the function module is called, a suitable actual parameter can be specified for every output parameter. The content of an output parameter that is defined for 'pass by value' is transferred to the actual parameter if the function module is completed without errors. An output parameter that is defined for pass by reference is not initialized when the function module is called.
    CHANGING parameters are input and output parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input or output parameter. When the function module is called, the content of the actual parameter is passed to the input/output parameter, and when the function module is completed, the content of the input/output parameter is passed to the actual parameter.
    TABLES parameters are table parameters. Table parameters are obsolete CHANGING parameters that are typed as standard tables with a header line. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.
    Exceptions
    The exception of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception are defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS.
    The addition RAISING is used to declare class-based exceptions that can be propagated from the function module to the caller. Exceptions in the categories CX_STATIC_CHECK and CX_DYNAMIC_CHECK must be explicitly declared, otherwise a propagation can lead to an interface violation. A violation of the interface leads to the treatable exception CX_SY_NO_HANDLER. Exceptions of the category CX_NO_CHECK are implicitly always declared. The declaration of exceptions of the category CX_STATIC_CHECK is statically checked in the syntax check. For exceptions of the category CX_DYNAMIC_CHECK, the check is not performed until runtime. In a function module in which class-based exceptions are declared with the RAISING addition, the statement CATCH SYSTEM-EXCEPTIONS cannot be used. Instead, the relevant treatable exceptions should be handled in a TRY control structure.
    The addition EXCEPTIONS is used to define a list of non-class-based exceptions that can be triggered in the function module using the statements RAISE or MESSAGE RAISING. Exceptions defined in this way - as with formal parameters - are bound to the function module and cannot be propagated. If an exception of this type is triggered in a function module, and no return value has been assigned to it with the homonymous addition EXCEPTIONS of the CALL FUNCTION statement when the call was made, this leads to a runtime error.
    Note
    For new developments after release 6.10, SAP recommends that you work with class-based exceptions that are independent of the function module.
    RFC is a technology which is used to access a functions (Modules) from
    the remote systems.
    If a function module is set as remote enabled which can be access from
    the remote system via RFC.Eg: U can access the Remote enabled function modules in ur VB,Webdynpro,Java,Visual composer program.
    A function module can be set as remote enabled by SE37->Go to ur FM->click the option Button "remote enabled".
    But Normal function modules can not accessd from the remote system.
    Good Example for RFC enabled function module is : BAPI(Business Application Programming Interface)
    Note: All BAPIs are Remote enabled but not all remote enabled function modules are BAPI.
    CALLING A FUNCTION MODULE:
    1)In U ABAP Editor --> Click "Patter" ---> Selection Option Button "Call Function"
    --> Write the Corresponding FM name --> Hit Enter
    2)The appropriate import ,export Parameters will be displayed in ur editor
    3)Pass the Values Here.
    Also check these links.
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    See the following links:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    Regards
    Anji

  • Taxonomy - how many training documents needed for automatic classification?

    Greetings,
    I have an example based taxonomy.
    I have trained the taxonomy manually with about two documents and expected it to classify automatically after that which it has not done.
    According to the URL below
    http://www.scribd.com/doc/7234683/Retrieval-and-Classification-TREX-Features-and-Functions
    it is mentioned that "You can also classify documents automatically. A prerequisite for this is that there are existing document classes with sufficiently correctly classified documents that meet the classification criteria"
    Please advise if training the taxonomy with only two documents which I did was too little - exactly how many documents are needed? (the above URL does not give an indication of a number)
    Regards,
    Keith

    Still trying to solve the problem, adding and tailoring documents as best as I can.

  • Documents Needed for cFolder integration with SRM50

    Hello SRM Experts,
    I am in need of some info about the cFolder integration with the SRM system. Can anybody help me by sending some documents regarding the same. my email id is [email protected]
    Our system is SRM50 SP11.
    Thanks & Best Regards
    Raj

    Hi,
    Do you have cFolders on the same server as SRM ?
    Foll are the settings reqd:
    --.define a LS for cFolders( you have to duplicate SRM LS if it is on the same server)
    -->define an RFC destination for this system (even if same as SRM)
    -->define a backend system of type cFolders in SRM SPRO
    -->activate SICF cFolders service (with external alias)
    Normally the collaboration area should be displayed in document tab.
    See these related links;
    http://help.sap.com/saphelp_srm50/helpdata/en/c1/c3fe3930a34b2ae10000000a114084/frameset.htm
    http://help.sap.com/saphelp_ppm400/helpdata/en/e7/1fc30727cd4ddeb7f6351416ebf591/frameset.htm
    BR,
    Disha.
    Pls reward points for useful answers.

  • Help needed for report generation using java technologies

    May i get some idea about report generation api available. some report generation tools that can be downloadble. can you please suggest how to use scheduling the printers or report generation by scheduling.

    e.g. for one of my school project which generate reconciliation report (banking project) we add in a letterheader and the rest of the information presented below.
    but there is some problem here.
    either you "catch" no. x row where the printing will be trancated then prevented it from trancated by formatting your pages such that data will not be printed in that region.

  • Help Needed For Report creation

    Hi
    i am new to flex and i want to know that how we can create
    the simple grid/freeform reports in flex 2.
    Please help me.
    Jayesh

    Use this link.
    <a href="https://websmp102.sap-ag.de/form/sapnet?_FRAME=OBJECT&_HIER_KEY=701100035871000437965&_SCENARIO=01100035870000000183&">https://websmp102.sap-ag.de/form/sapnet?_FRAME=OBJECT&_HIER_KEY=701100035871000437965&_SCENARIO=01100035870000000183&</a>
    In Customization section you can find a document based on PLD

  • Logic needed for report: Parameter Group

    hi..friends,
    im dev a report: refernce std report - "S_ALR_87012178" is the tcode.  there they are giving 5 slabs: ie. under 'Output control Sel Scrn - in "Due date sorted List" '. but my requirement is to do same like that for 10 slabs.
    the values are dynamic. Accordingly we should display the amount falling in that specified period.
    i hav already fetched the data. but to display them, i hav struck.
    how to access the input and print them.
    i hav to use alv hierarchical seq display format.
    My decl:
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(30) text-050 for field p_slab1.
    SELECTION-SCREEN POSITION POS_LOW.
    PARAMETERS: p_slab1 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '15',
                p_slab2 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '30',
                p_slab3 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '45',
                p_slab4 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '60',
                p_slab5 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '75',
                p_slab6 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '90',
                p_slab7 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '115',
                p_slab8 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '130',
                p_slab9 LIKE rfpdo1-allgrogr OBLIGATORY DEFAULT '145'.
    SELECTION-SCREEN END OF LINE.
    suggest me logic pls.
    regards,
    Padmashree.

    Hi,
    Try out this.
    declare all the parameters in the block.
    selection-screen begin of block b2 with frame .
    parameter:  declare all the parameters.
    selection-screen end of block b2.
    hope it may help you.

  • API documents needed for ICacheService interface

    Hi ,
    Can anyone tell me where can i find the documents for all the API's or for atleast for ICacheService interface.
    Regards,
    Saravanan

    Hi Saravanan,
    Here is the link for the API
    <a href="https://media.sdn.sap.com/javadocs/NW04/SPS15/km/com/sapportals/wcm/service/cache/ICacheService.html">ICacheService</a>
    Regards,
    Saravanan

  • Documents needed for Process chains

    Hi all,
            Can any one provide the documents for PC.I know creating PC.
    But what type of errors that will come while running the pc?
    how to solve that errors/
    Thanks
    Sinha

    hi
    you can find all details abt process chain in these links
    http://help.sap.com/saphelp_nw2004s/helpdata/en/8f/c08b3baaa59649e10000000a11402f/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8da0cd90-0201-0010-2d9a-abab69f10045
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/19683495-0501-0010-4381-b31db6ece1e9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/36693695-0501-0010-698a-a015c6aac9e1
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9936e790-0201-0010-f185-89d0377639db
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3507aa90-0201-0010-6891-d7df8c4722f7
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/263de690-0201-0010-bc9f-b65b3e7ba11c

  • Documents needed for Configuration of BCS

    I want to configure a system for BCS.
    Pls let me knwo the documents for Configuration.

    Actually there are a lot of documents of ESS/MSS on help.sap.com
    Also you can find some information on SAP notes, example  1007341, 197746
    Hope that helps, take care
    Márcio Leoni

  • Document need for ALE-IDOC's

    Hi  folks,
    I am new to the area of ALE-IDOC's .
    could you please provide the document for that if possible.
    I want the manual steps for that with transaction codes.
    Could you please provide the documentation alone for the IDOCS.
    Thanks & Regards,
    Surendra

    Hi,
    Please refer following links,
    https://wiki.sdn.sap.com/wiki/display/ABAP/ALE%2CIDOC
    https://wiki.sdn.sap.com/wiki/display/ABAP/ALE+IDOCS
    http://wiki.sdn.sap.com/wiki/display/ABAP/OutboundIdocThrough+ALE
    Thanks & regards,
    ShreeMohan

  • Workflow documents needed for beginners to advanced level

    Hi,
    I am new to Workflow.  Can anyone help me to get good understanding and start up with Workflow.  Please give me some beginners documents with screen shots explaining step by step process and also interview questions regarding WF.
    Regards,
    A2

    1] Workflow is Simulation of Business processes automated through SAP.
    May be you can take a process for applying for leave Leave.
    In this Leave scenario we can automate it stepwise,
    1) Employee apply for leave with dates
    2) mail shoot to Manager
    3) He can accept ot reject, May be he can approve with modified dates.
    2] As you can see Applying for leave is 1st step so it can be a trigeering event for workflow. Means Workflow starts with event.
    check these links.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/c14a9b55103116e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://www.erpgenie.com/workflow/index.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    http://www.insightcp.com/res_23.htm
    http://www.****************/Tutorials/Workflow/Workflow.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Workflow tutorials with step-by-step and with screenshots are available at http://www.****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/c14a9b55103116e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    Debug a workflow.
    This has a step by step procedure :
    http://fuller.mit.edu/workflow/debugging.pdf
    www.erpgenie.com/sap/workflow/debugging.htm
    http://www.erpgenie.com/workflow/debugging.htm?2b5de440
    Workflow tutorials with step-by-step and with screenshots are available at
    http://www.****************/Tutorials/Workflow/Workflow.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/WORKFLOW_tutorial.html
    http://****************/Tutorials/Workflow/Form/Demo.htm

Maybe you are looking for

  • Invoice Block - Price Variance (PP)

    Hi Folks, I have a question in Invoice block for Price variance (PP) I have maintained the following upper limits Absolute Check limit Value - 5 Percentage Check limit 5% I am creating PO for 1MT with a price of 4,720 INR, i have done GR Now Invoice

  • Want to download the segment structure into xsd or wsdl

    Hi Guys, I want to dwonload the segement structure (E1KNA1M) into XSD or WSDL. Then i can import into XI as datatype, How can i download the segment structure into XSD? Thanks Srinivas

  • Launch appication in new window.

    Hi, In ITS i am trying to launch the PDF file from the click of the button. It is correctly opening the PDF file. Problme is it is opening in the same window. I need the appication to be launched in different window. Is there a way i can open a file

  • Viewing/setting java security properties

    I am using a thrid party utility that is calling InetAddress.getLocalHost(). After checking the performance from JProfiler, I observed that this method poor at performance. Javadoc mentions that INetAddress is cached which is controlled by two java s

  • Images in tree control

    Hey... any of u know... how to assign symbols to each of the tags in the tree control.... i saw an example "Traverse Tree Control and set custom symbols.vi" in LabVIEW examples and tried to do in the same way but its not wrking.... nomore symbol is a