Could any one pls tell me abt filter concept in badi

Hi Experts,
I implemented a badi for xd01. How to see filter for that.
Thanks in advance..

It depends what BADI you did implement. Not all Badis allow Filters.
Go to Attributes and check if the 'Filter-Depend.' checkbox is set. If it is not this is not a filter BADI. If it is you should see a filter type. By double clicking on the entry you should be able to get to the data element and the domain to check for domain values.
Hope that helps,
Michael

Similar Messages

  • Can any one pls tell me the mandatory fields for BAPI_ACC_DOCUMENT_POST

    hi all ,
    Can any one pls tell me the mandatory fields for BAPI_ACC_DOCUMENT_POST
    what all data i need to give to post a document.
    Thanks and Regards
    JK

    Hi...
    part of my source code:
    ** Header Data " Sending comp code
    wa_documentheader-comp_code = 'XXXXX'.
    wa_documentheader-doc_date = '20060620'.
    wa_documentheader-pstng_date = '20060620'.
    wa_documentheader-doc_type = 'XX'.
    wa_documentheader-username = sy-uname.
    wa_documentheader-ref_doc_no = 'XXxxxxxx'.
    wa_documentheader-header_txt = 'Text Header.
    wa_documentheader-bus_act = 'XXXX'.
    *it_currencyamount
    wa_currencyamount-itemno_acc = '1'.
    wa_currencyamount-currency = 'COP'.
    wa_currencyamount-amt_doccur  = 1943.
    APPEND wa_currencyamount TO it_currencyamount.
    *it_accountpayable
    wa_accountpayable-itemno_acc = '1'.
    wa_accountpayable-gl_account = '1234567890'.
    wa_accountpayable-bus_area = 'DIV'.
    wa_accountpayable-item_text = 'Text 1 XXxxxxx '.
    wa_accountpayable-pmnt_block = ''.
    APPEND wa_accountpayable TO it_accountpayable.
    *it_accountgl
    wa_accountgl-itemno_acc = '2'.
    wa_accountgl-gl_account = '1234567890'.
    wa_accountgl-item_text = 'Text 2 XXxxxxx'.
    wa_accountgl-bus_area = 'DIV'.
    APPEND wa_accountgl TO it_accountgl.
    wa_currencyamount-itemno_acc = '2'.
    wa_currencyamount-currency = 'COP'.
    wa_currencyamount-amt_doccur  = ( 1943 ) * -1.
    APPEND wa_currencyamount TO it_currencyamount.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_CHECK'
      EXPORTING
        documentheader = wa_documentheader
      TABLES
        accountgl      = it_accountgl
        accountpayable = it_accountpayable
        currencyamount = it_currencyamount
        return         = it_return.
    clear it_return.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
          EXPORTING
            documentheader = wa_documentheader
          TABLES
            return         = it_return
            currencyamount = it_currencyamount "currencyamount
            accountpayable = it_accountpayable "accountpayable
            accountgl      = it_accountgl "accountgl
          EXCEPTIONS
            OTHERS         = 01.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

  • I am new to Java, can any one pls tell me what exactly is "Build Path".

    Hi Techies...
    i am new to Java, can any one pls tell me what exactly is "Build Path".
    thanx in adv.
    Regards
    Nitin.V
    Edited by: Nitin.V on Feb 12, 2008 11:08 PM
    Edited by: Nitin.V on Feb 12, 2008 11:09 PM

    The "BuildPath" is a place where all the "resources" referenced by your java program exists.
    please visit http://www.u.arizona.edu/~jtmurphy/H2R/java.htm for more info

  • Can any one pls tell me the procedure of crm datasourse data extraction r/3

    hi
    pls can any one pls tell me the procedure of crm datasourse data extraction from r/3
    regards
    subbu

    Subbu,
    First off please don't post the same question twice.  I have locked your other question due to it being a duplicate.
    Second off:  don't expect an answer to your question immediately.
    Third off:  You need to read the rules of engagement before posting any more questions here:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    Fourth:  You question is way too vague and honestly if you would have done a search or read some introductory material on CRM, you would have learnt that the CRM middleware handles the data transfer.
    Last:  I'm locking this thread because your question is way too vague, please take a look at the CRM wiki and help.sap.com and read all the associated documentation about CRM on those sites.
    CRM wiki
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/crm/home
    Then you can come back here if you have a detailed question after reading those materials.
    Take care,
    Stephen
    CRM Forum Moderator

  • Could any one tell me that How can i create the service User ie j2ee SID

    hi all,
    In the implementation of SPNego Authentication schem in my portal system.
    i want to create the service user ie .j2ee-<SID>.
    <b>could any one tell me that How can i create the service User ie j2ee-<SID> in my visual administrator??</b>.
    any help will be highly Appretiated .
    thanks and regards.
    vinit soni.

    Vineet,
    the user management tab opens in Read Only mode - thats why the button is coming as disabled. There is a button for switching into Edit mode - it looks like a pen / pencil on the top bar. Click on that - your "Create User" button would be enabled.
    Also regarding creation of Service User via code level you can see <a href="https://www.sdn.sap.com/irj/sdn/thread?messageID=1057074">THIS</a> thread. And <a href="http://HERE">http://help.sap.com/saphelp_nw04/helpdata/en/f9/e3162ec55f4df6922d161f3785012a/frameset.htm</a>HERE[/url] is the SAP Help documentation on required permission settings.
    Regards,
    Shubhadip
    Message was edited by:
            Shubhadip Ghosh
    Message was edited by:
            Shubhadip Ghosh

  • Could any one tell me what is the difference between swfloader and module loader?

    Hi  All,
                          Could any one tell me what is the difference between SWFLoader and Module Loader in Flex3 in detail?

    Hi,
    ModuleLoader is a kind of strange API that is really just intended to look like SwfLoader for modules that contain a single visual component, and hides most of the module loading infrastructure, which is all about class factories.
    What I mean by "only loaded once" is that if you have several places in the code that call the ModuleManager.getModule("url").load() call, it will only ever get loaded over the wire and interpreted once, subsequent "loads" will just re-dispatch pseudo-load events to the new client.  In other words, the class factory is a singleton for a given url. Unloading is a totally different story.  As you note, not everything is truly unloadable, because there may be lots of references to stuff in
    the module that will keep it alive and un-GC'ed.
    I suggest playing with the low-level API so that you understand the backing implementation, and this should help you understand the limits of ModuleLoader.
    The main difference between modules and applications is that modules have lower overhead, and they only ever get loaded once, no matter how many times you load them. If you're using the ModuleLoader API, keep in mind that you're losing about half the functionality of the module system.  I will assume that you are, because otherwise it would be obvious where to expose methods.  You might want to play around with the lower level ModuleManager API just to get a hang of what's going on - ModuleLoader is a pretty thin veneer over the lower API.                
                    Basically, what you want to do is to have your module implement an interface, say IModuleWhatever.
    Also try and refer to this link which was previously discussed in this forum..
    http://forums.adobe.com/message/74404
    Thanks,
    Bhasker

  • Hi , Could any one tell me how to set icloud on iphone simulator (is it possible ?)

    Hi Developers, Could any one tell me how to set icloud on iphone simulator (is it possible ?).

    This is the iPhone user-to-user tech support forum.  You shoudl post this question in the iPhone developers forums.

  • Hi could any one tell me if the proxy configuration is a must for file to

    hi could any one tell me if the proxy configuration is a must for file to  mail scenario

    Not needed at all.
    Proxy are used when integrating with a SAP system and in the case of a file to mail scenario all you need is a sendr file adapter and receivr mail adapter and a mail server in the same netwrok as you XI server.
    Regards
    Bhavesh

  • Could any one tell me how to do the left outer join or right outer join?

    Could any one  tell me how to do the left outer join or right outer join in Webi Rich Client? thanks.

    we can do it in two ways
    1.  In  web intelligence level  on the query panel click the sql query and write the statement what ever u want there by modifying the existing statement.
    2.  In universe level select the fields in the two tables that you want to make join and create the join between two tables directly by joining field in table 1 to the field in the table 2 by drawing a line and double click on the line to view the join properties,then on join properties if we check the table 1 outer then it is left outer join if we check on table 2 outer then it will be the right outer join.after exporting the universe to the central sever we are now ready to use in web intelligence with out being changed anything in the sql query.
    endorse me if it is useful.
    thanks & regards
    Sreekanth.

  • Could any one explain me this code pls

      IF sy-subty O print.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
              mode                   = 'BATCH'
             no_dialog              =  'X'
            IMPORTING
                 out_archive_parameters =  arcpar
                 out_parameters         =  pripar
            EXCEPTIONS
                 archive_info_not_found = 1
                 invalid_print_params   = 2
                 invalid_archive_params = 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.
        SUBMIT zhterot1 TO SAP-SPOOL
                             WITHOUT SPOOL DYNPRO
                             SPOOL PARAMETERS pripar
                             ARCHIVE PARAMETERS arcpar
    *                   SPOOL PARAMETERS %_print
    *                   ARCHIVE PARAMETERS %_archive
                       WITH pchplvar        =   pchplvar
                       WITH pchotype        =   pchotype
                       WITH pchobjid        IN  pchobji3
                       WITH pchseark        =   pchseark
                       WITH pchobeg         =   pchobeg
    *                    with PCHZTR_D        =   PCHZTR_D
    *                    with PCHZTR_M        =   PCHZTR_M
    *                    with PCHZTR_Y        =   PCHZTR_Y
    *                    with PCHZTR_A        =   PCHZTR_A
    *                    with PCHZTR_P        =   PCHZTR_P
    *                    with PCHZTR_F        =   PCHZTR_F
                       WITH pchbegda        =   pchbegda
                       WITH pchendda        =   pchendda
                       WITH pchwegid        =   pchwegid
                       WITH kurs            =   kurs
                       WITH kurst           =   kurst
                       WITH kugrp           =   kugrp
                       WITH pchobji2        IN  pchobji2
                       WITH expand          =   expand
                       WITH  s_shwfld       IN  s_shwfld
                       AND RETURN
      ELSE.
        SUBMIT zhterot1  WITH pchplvar        =   pchplvar
                          WITH pchotype        =   pchotype
                          WITH pchobjid        IN  pchobji3
                          WITH pchseark        =   pchseark
                          WITH pchobeg         =   pchobeg
    *                    with PCHZTR_D        =   PCHZTR_D
    *                    with PCHZTR_M        =   PCHZTR_M
    *                    with PCHZTR_Y        =   PCHZTR_Y
    *                    with PCHZTR_A        =   PCHZTR_A
    *                    with PCHZTR_P        =   PCHZTR_P
    *                    with PCHZTR_F        =   PCHZTR_F
                          WITH pchbegda        =   pchbegda
                          WITH pchendda        =   pchendda
                          WITH pchwegid        =   pchwegid
                          WITH kurs            =   kurs
                          WITH kurst           =   kurst
                          WITH kugrp           =   kugrp
                          WITH pchobji2        IN  pchobji2
                          WITH expand          =   expand
                          WITH  s_shwfld       IN  s_shwfld
                          AND RETURN
      ENDIF.
    In the above code the Pirnt is having the Default '02'
    Now when we place 0 comparision it is going to validate by converting into binary mode ...
    So what is expecting is to
    when the condition will come true?
    what is the use of submit program name calling those spool ?
    Could any one having any idea pls revert back asap!
    Regards
    Sas

    Hi Friend,
    The operator O is a byte logical opertaor, it checks after converting into bit.
    In your case if SY-SUBTY field contains value 0 or 2 will be true.
    After that it is taking the current client's printer setting and other parameters, which is used to pass in submit program.The submit program having some output which is generating the spool.
    Hope it will help you.
    Regards
    Krishnendu

  • Pls any one can tell about sql loader in linux?

    Pls any one can tell about sql loader in linux

    Hi,
    I don't think it matters which OS, sqlloader works the same for all OS. If you want more information, read first the manual: http://download.oracle.com/docs/cd/E11882_01/server.112/e16536/ldr_concepts.htm#i1005437
    Herald ten Dam
    http://htendam.wordpress.com

  • I just did update of software and i lost all of my picture and songs from itune which is un usual .could any one tell me how could i get iphoto working again?

    i just did update of software and i lost all of my picture and songs from itune which is un usual .could any one tell me how could i get iphoto working again?

    What did you update with what?  Are we talking a computer?  A device like an iPhone?  You updated iTunes?  You updated the operating system?
    If you updated the iOS on a device, I believe it warns you it will erase the device and you should make a backup first.  Restore from the backup.
    iPhoto is an application pretty much separate from iTunes.  There is an iPhoto forum if you are having problems with that application.

  • The camera app on my iphone 4S is crashing and while using the rear video cam black wavy lines are appearing but only when exposed to flurescent light in addition to the front cam... can any one please tell me what is happening???

    the camera app on my iphone 4S is crashing and while using the rear video cam black wavy lines are appearing but only when exposed to flurescent light in addition to the front cam... can any one please tell me what is happening???

    Try resetting your phone by holding down the home and off button until the apple symbol comes up. Then if still doing, restore your phone in itunes from your backup.

  • Can any one please tell me why this e-class is not working

    Hi
    I want to listen the following e-class. But its not running. Can any one please tell me why its not working
    I have windows media player 11 in my system
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/34b9359e-0701-0010-f59d-ee014d5079b3?prtmode=navigate"></a>
    Best Regards
    Ravi Shankar B

    Hi
    I want to listen the following e-class. But its not running. Can any one please tell me why its not working
    I have windows media player 11 in my system
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/34b9359e-0701-0010-f59d-ee014d5079b3?prtmode=navigate"></a>
    Best Regards
    Ravi Shankar B

  • Friends Could any one give Que on PD

    Hi
    Experts
    Could any one give the interview questions on PD.
    Thanks in advance

    Hi,
    PD is also very vast ..
    You have to be prepare on Qualificarion Catalogs, Qualifications snd qualification groups . Career Planning and Sucession Planning . Individual Development. Integration of  PD with TEM. Performance management as well can be asked in PD . Qualification Deficits. Profile Matchup
    Best Of Luck
    Regards,
    Kapil

Maybe you are looking for