How to Hide BP Functions - Points will be awarded

Dear Guru's,
I would need to Block CRM Business Partner Functions which are not required to list out. I through with the following steps to block:
(CRM 4.0)
IMG --> CRM --> B.Functions --> Partner Processing --> Define Partner Functions.
Here I Checked the Check box to Block the Functions. but i was wondering that the Functions are still visible in the Functions Field of Activity. How can i hide those.
Kindly suggest me.. Points will be awarded for atleast help ful answer..
Srujan

Hi Srujan,
The Block Check Box in the partner function definition is not meant to hide a partner function. If only changes the way of determination of partners. (as wriiten in the helps - Defines whether the source partner is added during partner determination for the resulting Quantity).
What I understand is you do not want few partner function to be visble in the partner tab of the activity. For this in your partner determination procedure (which is assigned to the transaction type of activity) just add the partner function you want to be visible and put permitted functions as A Only Functions Assigned to the Procedure.
Steps:
1. Check the Partner determination procedure assigned to the Transaction Type of activity
TCode: SPRO
Customer Relationship Management --> Transactions --> Basic Settings --> Define Transaction Types
2. OPen the Patner Determiantion Procedure
Customer Relationship Management --> Basic Functions -> Partner Processing -> Define Partner Determination Procedure
Here check the Partner Procedure and change the Permitted Function as A.
Wish this helps.
Regards,
Shalini Chauhan

Similar Messages

  • How to hide some functions in the menu bar of flash paper

    Do anyone know how to hide some functions in the menu bar of
    flash paper? As I want to show a swf file(converted from pdf) on
    the website without printing function. How can I do it?
    Also, if possible, can anyone know how to hide all functions
    on the menu bar except the logo of flash paper?
    Thank you very much, it is very urgent.

    Here is an article about how to integrate flashPaper into
    Director. It has most of the functions that can be executed on
    flashPaper. Maybe it will help?
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    and here is all his code
    http://www.mediamacros.com/item/item-1006687373/
    Note: it is for 1.01, but works with 2.0

  • How to hide F8 function on selection screen.

    Hi,
    How to hide F8 function on selection screen.

    Just create a customer status and SET this status in your INITIALIZATION block.
    <i>You can copy the standard status from program RSSYSTDB status %_00.</i>
    Regards

  • How to hide the mouse pointer

    How can I hide the mouse pointer in an application that I don't want to use the mouse?
    thanks

    what about
    somecomponent.setCursor( null );but i think the user is still able to click on components, without seeing where the user clicks. ;-)
    sorry, i don't know for sure how to do this.
    tobias

  • Adding a column to Tcode F-03 ( Points will be awarded)

    can some one please help me solve this query as its urgent.....
    I want to add a new column to the standard table control of the Tcode F-03  ......i could not find a solution to this any where......
    Points will surely be awarded...

    hi,
    basically this is job of module expert, not ABAP guy (you don't have to do any development). You have to start transaction O7Z1 and create a new line layout (or choose an existing one to change). Insert the fields you need (selecting from list) and when ready save and transport to target system. Each user who wants to use this, has to choose this layout for herself in transaction FB00.
    ec

  • How to hide Procedures,Functions,Packages source code?

    Hi,
    I tried to find a way to hide all our application oracle
    database's all Procedures, Functions, Packages PL/SQL Source
    code. But I haven't find the way. Could Oracle do this? ( MS SQL
    Server can)
    Thanks in advance,
    Cheng
    null

    cheng (guest) wrote:
    : Hi,
    : I tried to find a way to hide all our application oracle
    : database's all Procedures, Functions, Packages PL/SQL Source
    : code. But I haven't find the way. Could Oracle do this? ( MS
    SQL
    : Server can)
    : Thanks in advance,
    : Cheng
    Hi Cheng,
    You may be interested in what Quintessence Systems (Berkshire,
    United Kingdom - http://www.quintessence.demon.co.uk) have
    developed.
    Addressed at precisely this kind of problem area, we've
    developed a technology called F2J (Formula to Java). F2J
    automatically converts stored PL/SQL (Procedures, Functions and
    Packages) to Java classes which can be loaded and run as Stored
    Procedures in an Oracle8i database.
    If you think this may be able to assist you then check out the
    website for further info or email me directly.
    How this is helpful.
    Elton Barendse
    null

  • How to call a Function that will return me boolean value

    Hi all ,
    I am try to call a function that is included in my ApplictionModule the following is my method code
    public boolean callUpdateDepartmentNameFunction(int deptNo,String newName)
    boolean result=false;
    System.out.println("first");
    CallableStatement plsqlBlock =null;
    System.out.println("sec");
    String statement="BEGIN :3 = update_dname_func(:1,:2); END;";
    System.out.println("third");
    plsqlBlock=getDBTransaction().createCallableStatement(statement,0);
    try{
    System.out.println("forth");
    plsqlBlock.registerOutParameter(3,OracleTypes.BOOLEAN);
    plsqlBlock.setInt(1,deptNo);
    plsqlBlock.setString(2,newName);
    plsqlBlock.execute();
    result=plsqlBlock.getBoolean(0);
    catch(SQLException sqlException)
    throw new SQLStmtException(CSMessageBundle.class,CSMessageBundle.EXC_SQL_EXECUTE_COMMAND,statement,sqlException);
    finally
    try{
    plsqlBlock.close();
    catch(SQLException e)
    e.printStackTrace();
    } return result;
    while am runing my page is am getting error like
    Error
    1. JBO-29000: Unexpected exception caught: oracle.jbo.SQLStmtException, msg=JBO-27121: SQL error during statement execution. Statement: BEGIN :3 = update_dname_func(:1,:2); END;
    2. JBO-27121: SQL error during statement execution. Statement: BEGIN :3 = update_dname_func(:1,:2); END;
    3. Invalid column type
    callUpdateDepartmentNameFunction_deptNO          
    callUpdateDepartmentNameFunction_newName          
    callUpdateDepartmentNameFunction
    regards,
    Prabeethsoy P

    Hi,
    http://download-uk.oracle.com/docs/html/B25947_01/bcadvgen005.htm#sm0297
    has an example of how to call a stored procedure with out parameters. Please correct your code accordingly
    Frank

  • How to create a function that will return a value of a JComboBox PLEASEHELP

    this is my psuedo code,. but it's still not worked. Plase help..
    String vpText;
    String abc = getit();
    String s_alert[] ={"WARNIGNS","CAUTIONS","NOTES"};
    JComboBox CBweapon = new JComboBox();
    for (int i=0;i<s_weapon.length;i++) {
    CBweapon.addItem (s_weapon);
    private String getit(){
    CBweapon.addActionListener(new ActionListener (){
    public void actionPerformed(ActionEvent e){
    wpText = (String)CBweapon.getSelectedItem() ;
    return;
    return wpText;

    Maybe I'm missing some subtle point here, but why not just do this:
    private String getit(){
    return CBweapon.getSelectedItem() ;
    It doesn't make sense to me to have a method which calls actionListener like this, as if you are going to be calling it over and over again. You want to only call actionListener(...) ONE time, and every time an event is triggered, that code will be executed automatically.

  • How can I handle function pointer in Java?

    Is there any class/methods which can be used to implement function pointers in java.? If yes pliz, help me to get in.

    The java equivalent of function pointers is the one-instance class, as used to pass handlers to swing components, for example. Often an anonymous class is used.
    Put your function signature in an interface, and pass an object that implements that interface:
    public Class1 {
      public interface CallBack {
        void myMethod(String arg1);
      CallBack callb;
      public Class1(CallBack callb) {
       this.callb = callb;
      callb.myMethod("A string");
    class2 {
       first = new Class1(new Class1.CallBack() {
         public void myMethod(String arg1) {
           ... do something ...

  • Upgrade from 4.6C to ECC-6 Points will be awarded.

    Dear Guys
    Can any body provide me documentation for the preparation of upgrade from 4.6C to ECC-6.We have done many modification in standard system and exits how can we upgrade those in ECC6.
    Thanks

    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9cfdd546-0d01-0010-6688-ba8ddc48edc9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7436ba46-0d01-0010-dca3-c03c34be2c3c
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/82c445c2-0d01-0010-4ab2-fc7e1a25bea2
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5bd723c2-0d01-0010-97a5-cb14fe7f2810
    http://help.sap.com/saphelp_nw2004s/helpdata/en/62/3f2cadb35311d5993800508b6b8b11/frameset.htm
    Regards,
    RIch Heilman

  • Error in smartform ( Points will be awarded )

    hi....
    i get the following error when i paste the code mentioned below... i have a similar code in the else part for plant 1500 but that does not give this error.....
    Field "IS_BIL_INVOICE-HD_GEN-BIL_NUMBER06" is unknown. It is neither in one of the specified tables nor defined by a "DATA" stat
    the code.....
    ELSEIF
    ZWERKS = '1200'.
    footertext11 = 'GST TIN - 08122608574 dt 15.06.06 '.
    footertext12 = 'CST TIN - 08122608574 dt 15.06.06'.
    footertext21 = 'I/We hereby certify that our registration certificate under the Rajasthan Value Added'.
    footertext22 = 'Tax Act, 2003 is in force on the date on which the sale of the goods specified in this'.
    footertext23 = 'Invoice is made by me/us and that the transaction of sale covered by this Invoice'.
    footertext24 = 'has been effected by me/us in the regular course of my/our business.'.
    footertext25 = '  '.
    footertext26 = '                                      E. & O.E.'.
    FOOT30 = 'Range: Pali II'.
    *foot31 = 'Division: Jodhpur, Add: C-1-A, Panchwati Col Ratanda, Jodhpur HO'.
    foot31 = f_31.
    FOOT32 = 'Commissionerate: Jaipur II'.
    Foot33 = 'PAN : AAACS5473J'.
    FOOT34 = 'C.EX.REGD.NO: AAACS5473JXM001'.
    FOOT35 = 'ECC NO: AAACS5473JXM001'.
    *foot41 = 'AT Post Vavdi National Highway '.
    *foot42 = 'Rajkot 360004'.

    thnx for ur reply guys .....
    i have defined IS_BIL_INVOICE-HD_GEN-BIL_NUMBER in the global decalaration .... the prob is i have a similar code in the else part for a different plant which runs fine.... since we have a new plant now we had to add it to the existing smartforms with just few words changed...but this gives an error
    from the above code if i comment the following....
    footertext11 = 'GST TIN - 08122608574 dt 15.06.06 '.
    footertext12 = 'CST TIN - 08122608574 dt 15.06.06'.
    then i get an error.. The text literal is longer than 255
    characters. Check whether it ends correctly.
    i have checked if the strings ends correctly n they do....can the error be because there are too many elseif part for diffetent plant.....

  • How to call a C pointer from call library function node

    I have a client/server application which the client I am trying to develop using Labview.  When I use to communicate the server and the client using the program provided by the manufacter, the system works perfectly.
    Now, I am trying to develop a system using labview, because I need to get another things.
    I have the DLL provided by the manufacter and the .h too, so I can check the functions parameters. One of these functions needs to be called using a struct element. Probably, the function's DLL instantiates the elements of this struct.  I use the call library function node to do it.
    When I receive the data, the function returns to me the struct that I passed as a parameter before, and then I can read all the elements of the struct, except the string element that returns nothing. The struct elements that are numerical, I can read them perfectly.
    Another thing that is important to say, is that the string data was not returned in fact by the DLL function that the system calls. I have to pass a pointer (I use it as unsigned 16 in Labview, but I tried before as string and unsigned 8) as a parameter, and this pointer will point to the memory location that the string is. When I try to read what is returned by the function, I can read nothing. The same function returns that the size of data that is returning is 17 bytes.
    How can I solve it?
    Thank you in advance

    Did you take a look at the example that ships with LabVIEW that shows how to do all sorts of data passing to DLLs. I believe your situation is one of the examples listed. You can find the example VI in the "<LabVIEW install directory>\examples\dll\data passing" directory.

  • Need to understand how shipping point will get determin in the STO.

    Hi MM Gurus,
    Please let me know how shipping point will get determin in the STO, and  other shipping tab details like shipping condition loading group get determine in the STO.
    Thanks and Regards,
    SHARAN.

    Hi ,
    At first the customer no is picked from the receiving plant in Define Shipping data from plant.
    In the customer data, against the sales area you get the shipping condition.
    The following path gives u the shipping point:
    Logistics Execution>Shipping>Shipping Point and Goods Receiving Point Determination-->Assign Shipping Points
    Loading grp , Trans.Grp will be taken from Material Master.
    Regards
    Ramesh Ch

  • How to identify which key figure will the numeric pointer for deltas?

    Hi All,
    I have created a numeric pointer for generic extraction ? but how to identify which key figure will the numeric pointer will use for deltas ?
    how to identify the key figures which is suitable for numeric pointer. And the generic extraction is based upon the copa table?
    Can anyone suggest me how the numeric pointer works and how to identify deltas are carried out at numeric pointer?
    Thanks
    Pooja

    Pooja,
    If you are using a generic extractor which is based on COPA table, then numeric pointer may not be the suggested delta extraction mechanism. 
    A time stamp would be the better one to use.  In a time stamp, you can give a lower limit value of 300 seconds.. so that it will try to fetch the missed records.
    Moreover, a delta would be based on a character, preferably a time char.
    In your requirement, try to figure out the character on whichdeltas will be based.
    Sasi

  • How many touch points will there be in JavaFX 2.2

    I know 2.2 will support multi-touch. Exactly how many touch points will be possible?

    Hello, maximum number of touch points is limited only by capabilities of the used hardware and underlying operating system, there is no such limitation in FX itself.

Maybe you are looking for

  • SAP JRA

    HI everyone,          i want to know about the advantages of sapjra          com.sap.mw.jco.jra.JRA            what is the use of this above package ...          currently i am doing bapi via jco to access the sap r/3 tables...         i have seen a

  • PO release data table

    Hi Is there any table where for a particular PO it should display the different levels of  approval of the PO? Regards, Kumar

  • URGENT : REP-0999 Unimplemented error

    I have a problem in reports when i generate the report to another format (for example PDF or HTML) using the generate option in the menu of report output from an application..i get an error "REP-0999 unimplemented error" but if i generate the report

  • Data minig and ABC classification

    Hy, the classification rules on ABC model consist of any threshold and  corresponding classes. The question is: a final user can modify these threshold without enter on Mantaning Data Mining Models? Thank's a lot. Sincerely yours, Andrea

  • Les propriétés de VI Compilé... n'apparais​sent pas

    Bonjour, j'ai la version une version LV 2012 FULL et je ne trouve pas les propriétés liées à la compilation de VI (noeud de propriété de VI / Compilé / Complexité & dernière compilation) Propriété Compilé : complexité du code Nom court : Compilé.Comp