Regarding sap help in badis

Hi all,
Can anyone give me information on BADI.We have urgent requirement in project for implementation of badis for various functionalities .An overview of badi implementation .
Thanks  in anticipation.
Regards,
Rajashree

Hi Rajashree,
You can go through these documents that I have uploaded..
http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
<b>Award points if found useful.</b>
Regards,
SP.

Similar Messages

  • Help regarding SAP SCRIPT

    Hi!
      can any one help me regarding SAP SCRIPT. i unable to write a print program for sap script . can any one can send me sample code using ITCSY structure.
    Thanks in advance.
    Thanks & Regads,
    DurgaPrasad.k

    Hi,
    refer this to write print program:
    <b>The Print Program</b>
    Structure of a print program
    OPEN_FORM function
    CLOSE_FORM function
    WRITE_FORM
    START_FORM function
    END_FORM function
    CONTROL_FORM function
    The print program is used to print forms. The program retieves the necesary data from datbase
    tables, defines the order of in which text elements are printed, chooses a form for printing and
    selects an output device and print options.
    <b>Function modules in a printprogram:</b>
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine
    forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed,
    is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you
    can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    <b>Structure of a print program</b>
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each
    form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>Some important parameters:</b>
    FORM Name of the form
    DEVICE PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT Returns status information and print/fax parameters after the form has been printed.
    RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT Specifies which textelement is printed
    WINDOW Specifies which window is printed
    TYPE Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    <b>The print program</b>
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'INTRODUCTION'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'SET'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT               = 'ITEM_LINE'
    FUNCTION              = 'SET'
    TYPE                  = 'BODY'
    WINDOW                = 'MAIN'
    EXCEPTIONS
    OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'ITEM_HEADER'
    FUNCTION                 = 'DELETE'
    TYPE                     = 'TOP'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    ELEMENT                  = 'CLOSING_REMARK'
    FUNCTION                 = 'SET'
    TYPE                          = 'BODY'
    WINDOW                   = 'MAIN'
    EXCEPTIONS
    OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within
    an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    COMMAND = 'ENDPROTECT'.
    rgds,
    latheesh
    Message was edited by: Latheesh Kaduthara

  • Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Hi i am new to SCN. I want a help regards SAP-PM . Where to post any query regards SAP PM

    Please check this link SAP Portfolio and Project Management (SAP RPM, cProjects) and cFolders
    Please check scn index to find relevant forum link.
    SCN Site Index

  • Please tell me about Enhancement Techniques used in SAP Other then BADI/Usr

    Hi Experts .
    Please guide me about Enhancement Techniques used in SAP apart from BADI/User-Exit .
    1.) what is set and how to create it ?
    2.) What is formula is SAP and How to set it for Enhancement Pupose .
    3.) What is BTE (Buisness Transection Events) ? How to create it for Enhancement Pupose ?
    Please Elabarate the reply with step by step procedure .
    Thanx .
    Regards : Rajneesh

    Hi Raj,
                  Check these links
       help.sap.com/saphelp_nw04/helpdata/en/eb/3e7ceb940e11d295df0000e82de14a/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/207835fb-0a01-0010-34b4-fef1240ba9b7
    Regards,
    Sana.
    reward for useful answers..

  • Help about BADI

    Can anybody help me with some link/ documentation of BADI?
    Regards,
    Subhasish

    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    http://www.esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
    http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    Regards
    - Gopi

  • SAP Biller Direct Badi's

    Hi ,
    Can any one help me on how to implement SAP Biller Direct badi's. i.e. APAR_EBPP_GET_DATA & EBPP_INVOICEDETAIL.
    Pls ur help is urgently need.
    I will appreciated if you can also provide the source code for various functions.
    regards
    Gajendra

    Hello ,
    Goto SE19 provide Implementatin name as per u r coding standards
    and say Create
    It will ask the BADI name then proide u r BADI names ....
    then go the appropriate method to implement it based on the Interface parameters of the metod.
    Still if u r not clear
    Please search in SDN you will get numbers of Solutions for HOW TO IMPLEMENT BADIS
    Regards

  • SAP Biller Direct Badi.

    Hi ,
    Can any one help me on how to implement SAP Biller Direct badi's. i.e. APAR_EBPP_GET_DATA & EBPP_INVOICEDETAIL.
    Pls ur help is urgently need.
    I will appreciated if you can also provide the source code for various functions.
    regards
    Gajendra

    I think this [Link to SAP Help on using the badi APAR_EBPP_GET_DATA|http://help.sap.com/erp2005_ehp_05/helpdata/en/43/5c31bef1183e2be10000000a1553f6/content.htm] might help you.

  • Usage of CRM_ORDER_MAINTAIN SAP Help Link and Suggestions Required

    This is regarding CRM_ORDER_MAINTAIN fm
    Currently we are using function module crm_order_maintain outside Loop i.e calling once for all the contracts as sap crm performance standard ,
    Is there any standard documentation where we can find that states CRM_ORDER_MAINTAIN should be only used outside loop,
    As some are telling us to use in Loop Endloop because of timeout error in background job with contract having 180 line items,Which i feel that this create unneccessary load on execution (Not Recommendable)
    Please share any comments and suggestion this and also provide me the SAP Help Link on this

    Hi,
    for example to you, look for FM CRM_LRP_APPOINTMENTS_GET_DIAG which using CRM_ORDER_MAINTAIN and parameter  it_appointment.
    Hope this helps.
    Regards, Kostya Khveshchenik

  • Regarding SAP PI 7.0 Configuration of Integration Engine

    Hi Experts,
    We Installed SAP PI 7.0 Successfully.After that We Run the Template Installers for PI.
    Here We Selected <u><b>PI Post Install Process</b></u> Option in the Template Field.
    <b>Q1)</b>  After Completion of this Should we Configure All   IE , IS, AE  Or Those wil be Configured Automatically ????
    <b>Q2) </b> What are the Necessary Steps to Do Even We Run the Template Installer, To execute a Scenario  Successfully.?????
    Please Let me Know
    Regards
    Khanna

    Here is an extract from the OSS note. I guess,this should answer your second question
    Reason and Prerequisites
    To avoid problems while using the configuration wizard (template installer )please check prerequisites for post-installation in SAP documentation. That information can be found in SAP Help Portal (http://help.sap.com --> SAP Netweaver --> Installation and Upgrade guide --> Installation --> 2 - Installation - SAP Netweaver 2004s --> SAP NetWeaver 2004s Installation Documentation).
    Select your Operating System and Database and look for 'Post-Installation Steps for Usage Type *' in the dedicated document.
    Important: You cannot use the configuration wizard after
    Upgrade
    Add-In installation (Exception: Configuration of Usage Type BI-Java can be executed after Add-In Installation)
    Additional usage type enablement
    System copy
    Always install the latest available SPS + Patches before running the CTC.( You can find the latest LMTOOLS Patch at http://service.sap.com -> SAP Support Portal -> Downloads (Tab) -> Downloads (Menue) -> Support Packages and Patches -> Search for Support Packages and Patches -> Search for: LMTOOLS*P -> Download and Save the .sca. Apply the patch by using the SDM.)
    The sequence is:
    1. Installation
    2. Install latest SPS + Patches (if available)
    3. Run configuration wizard.
    You can run the configuration wizard only once for initial configuration.
    In these cases, you need to perform the corresponding configuration steps as described in the configuration documentation.
    For more information on how to access the configuration documentation, see 'Accessing Configuration Documentation in the SAP Solution Manager'.

  • Search method in SAP help.

    hello expert:
             I am looking for "0EC_PCA_3" datasource in SAP help,  in the advanced search,  select "SAP Enterprise Resource Planning ", no result for this earching,  am I wrong for setting this search?
    Many thanks.

    Hi,
    DataSource 0EC_PCA_3 documentation can be found at:
      http://help.sap.com/saphelp_nw04/helpdata/en/5d/ac7d8082a27b438b026495593821b1/content.htm
    In SAP help search, you should use the following options:
      Product type: SAP NetWeaver
      Area: SAP NetWeaver
      Application: BI Content
    Please, do not forget to give feedback about the answer.
    Regards,
    Maximiliano

  • SAP Help - Scenario of posting to PRD account

    Please refer link ( SAP help)
    http://help.sap.com/saphelp_erp2005/helpdata/en/cf/73c5376a23a467e10000009b38f889/frameset.htm
    If we see example 1. I donot agree with accounting enteries depicted here.
    1. 100 pc @ 10 Inr
    2. 50 Pc so acounting entry will come
    Dr. stock account   500
    Cr.  GR/IR account 500
    3. Invoice 50 pc @10 inr
    DR. GR IR account 500
    CR. vendor account 500
    4. Invoice 50 Pc @ 11 inr
    DR. GR IR account 550
    CR. vendor account 550
    5. Reversal of first invoice that ( ref point 3)
    DR. vendor account 550
    CR. GR/IR Account 500
    Cr. Price difference 50
    I donot agree with point 4 enteries & point 5 enteries.
    As in my opinion it should be
    Dr. Stock account    50
    DR. GR IR account 500
    CR. vendor account 550
    Can some one elaborate it why this happening. Is it correct

    Hi,
    it is possible, first what material type is using whether moving price or standard price.
    if you r creating a po with 150 Rs.
    entries : COGS A/c Dr 150
                   Gr/Ir A/c Cr         150
    if po is amendent for 160 Rs.
    entries:
    COGS A/c Dr   160
    Gr/Ir A/c Cr           150
    Price difference A/c Cr 10
    pls check ur G.L A/c's for PRD A/c
    in miro u can find in header level details tab in that u can mention the value with negative figure
    Regards
    Raj

  • SAP help-Efficient way to look

    Hi all,
    Iam really surprised by the way people post links to "sap help" when posting questions.
    Is there an efficient and quick way to look the SAP-help when one is looking for special things.
    I only got this far
    http://help.sap.com/
    Pressed the "SAP NetWeaver" link on the left side
    pressed "English" documentation
    Then SAP NetWeaver Library -clicked "Developers Guide"
    I hope up to this poing Iam right,From here on If Iam looking for XI topics like message mapping or BPM;how should I proceed to find it...
    Thanks
    P
    Edited by: pazzuzu on Nov 8, 2009 4:46 PM

    I only got this far
    http://help.sap.com/
    Pressed the "SAP NetWeaver" link on the left side
    pressed "English" documentation
    Then SAP NetWeaver Library -clicked "Developers Guide"
    everybody goes this far only ..... once you get on the above page you need to type in the words in the Search option so that you get to the related results.... it is on the Top-right portion of the page
    In addition to normal search you can also opt for Advance Search option to filter your search area.
    Please note that the search results will contain many additional (un-related) results, so you need to select the required one.
    Regards,
    Abhishek.

  • Unable to view SAP Help files --Cannot Open Frameset.htm Files from 'help.s

    Unable to view SAP Help files --Cannot Open Frameset.htm Files from 'help.sap.com'
    Open Internet Explorer
    Types in http://help.sap.com/
    Click on mySAP ERP
    Click on English
    The webpage goes to
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    It shows the status done but what I see is just a blank page
    I tried going to different areas of SAP Help files but no success
    I cannot even open Help on Help http://help.sap.com/saphelp_erp2004/helpdata/en/3f/a42938955df162e10000009b38f842/frameset.htm
    None of the other users have this issue

    Hi
    I am able to open your links. I think there is some problem in your internet explorer. please check
    regards
    Srinivas

  • Printing SAP Help (using PDF or anything except HTML)

    Printing the HTML version of SAP help is time-consuming and the pages don't come out correctly.  There used to be .pdf versions of all of the help files at help.sap.com/docuprint, but that seems to have gone away.  How can I print SAP help topics quickly and conveniently?
    Thanks for your assistance.

    Hi,
    if you have access to SAP Service Marketplace, you can download the CD/DVD image of more or less all of the documentation CDs/DVDs. All these CDs contain the SAP Library in HTMLHelp format which offers a functionality to print all topics starting from the selected node in the structure tree.
    Proceed as follows:
    1. Goto http://service.sap.com/swdc
    2. In the tree, choose "Search for all categories"
    3. In the search field, enter the material number of the desired CD (this is the only reliable way to get the desired results; searching for a string contained in the material name yields unpredictable results!)
    4. If the image exists, you will be presented a link for immediate download, or you can assign it to your download basket.
    HTH.
    Regards, Claus

  • SAP HELP Library

    is there anyway to download only the SAP Library for SAP 4.6c?
    or is it available in PDF Format? for example SAP Help for MM?

    Go to the Below Link and Click on Down load Steps to Configure SAP Help Library
    http://www.sap-img.com/b1002.htm
    Regards,
    Ashok

Maybe you are looking for

  • How Can I Add mod_ssl to Built In Apache Server?

    Hi, I would like to add mod_ssl as a DSO module to the Apache web server that comes with Solaris 9. However I have been unable to find any decent instructions on how to do so. Any help would be appreciated. I have included below a post I have made to

  • My wifi is not working since the last update to 8.2 on iphone 4s

    after update ios 8.2 in 3days my wifi is greyout and not working i have try the reset networking setting but still itz like the same plz help me to turn on wifi back i have wifi connetion in my office and home too but i cant access the wifi through m

  • [SOLVED] Thinkpad T510 - Intel Core i7 - Integrated Graphics

    Hi, i recent bought a ThinkPad T510 4349-2RG with an Intel Core i7 M 620 built-in. There is also an NVIDIA  NVS 3100. According to the Intel-Homepage, my CPU should have an integrated GPU (http://www.intel.com/products/processor … ations.htm). The NV

  • IDOC-BPM-FILE scenario ERRORS

    Hi gurus, I am trying to send IORDER01(pm order) from an R/3 system to a file, which works fine. but when i try to use some business logic like if order type = 'PM01' then only i have to write to the file, using ccBPM, it fails... this is my first BP

  • Problem with output format

    Hi , Whle submitting AP prepayment balance report able to get the output in XML format. But, if for the same report when the output format is changed to PDF or Text not able to get the report. Anybody pls suggest any changes to be done in setup to re