Whats the Need Of Customer Code Block

Hi All,
Whats the need of Block the customer code ,
wats the process? is there any standard bapi for block and unblock the customer? where the data will be stored?
thanks in advance

Customer can be blocked if no more need for buisiness transactions to be done..or ther can be various other reasons as well.
You can block or unblock the customer with transaction XD05. and mark it for flag for deletion in XD06.
Hope this will help you.
Deepak.

Similar Messages

  • Can we have approve/reject action button in email sent using SharePoint designer or do we need to custom code it?

    Hello,
    for particular item approval, when user receives an email, can email contain button of approve/reject or if user just replies to that mail using one word "Approve/Reject", so that item value should get updated in list and also get approved.
    Is it possible using SharePoint designer workflow or custom code workflow or Nintex workflow?
    Please guide.
    Thanking you in advance.
    Regards,
    Jayashri

    Follow these steps:
    You can create custom page with code to approve/reject item.
    Then you should pass item id (and other information if needed) in a query string.
    In a workflow you can generate a link to the created page and add it to email body.
    When a user will receive email, he/she will click on the button (link), then new tab with created page will be opened, where your custom code will approve an item.
    [custom.development]

  • Whats the purpose of reason codes?

    Hi Experts,
    In many scenarios we add reason codes e.g. all the actions like terminations, new hire, rehire, change in position etc. Now our organization is adding a new reason code for termination action with reason code "termination due to LOA".  And they are calling meetings and stuff. Is it really that important of an issue. I was wondering reason code is there but is that this big of a deal. Please explain.
    Thanks,
    Rashmi

    One are is for reporting purposes.
    Also, based on the purpose code you can change which infogroup is called (feature).
    Then you don't need to maintain so many actions.
    Kirsten

  • I'm in the process of getting my first iPhone and was wondering what the need of additional memory is for to a general user?

    I'm ready to join the iPhone faternity from years of android use, and I don't use my phone for work.  What advantage would having 32G or 64G be to me?

    Since the iPhone's storage cannot be increased, buy as much as you can afford.  Better to have and not need than need and not have.  Plus it will be worth more when you sell it.

  • What the need of environmental variables

    when we are writing shell scripts which contains sql relative statements
    why we need to have these environmental variables
    ORACLE_HOME=........; export ORACLE_HOME
    LD_LIBRARY_PATH=$ORACLE_HOME/lib;
    export LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$PATH;
    export PATH
    unset ORA_NLS33
    export NLS_NUMERIC_CHARACTERS=,
    please tell me
    if possible each one in detail and any link contains these things

    As already mentioned, they are pointers which allow the script to find programs and files. For example, if you set ORACLE_HOME=/app/oracle/product/10.2.0 and then PATH=$ORACLE_HOME/bin:$PATH then when you call sqlplus, the operating system can find the sqplus program because it searches down the $PATH directory structure. Some of the Oracle code itself relies on these being set - try not having ORACLE_HOME or PATH set and then executing sqlplus from the oracle installation bin directory - you get an error stating a message file cannot be accessed - this is becuse the internal code it using the ORACLE_HOME and PATH environment variables.
    Also, setting the variables makes your scripts much easier to maintain - if you move your script to another server where the filesystem is different or you upgrade Oracle so that the $ORACLE_HOME changes, you only need to change these lines, rather than trawl your whole script. It's basically good coding practice to do this.
    Cheers,
    James

  • How do I solve the following message from Code Blocks on a OS X (10.10.2): "Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo." ?. It appears when I try to compile any code.

    Whenever I try to compile any code the following messagem appears: "greeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo."
    I'm using CodeBlocks v. 13.12. Its file (codeblocks-2.app) is inside the App folder.

    I suggest you ask whomever makes CodeBlocks.
    They would be the most knowledgeable.

  • Whats the problem with this code?

    import javax.swing.JOptionPane;
    public class change{
      int coins[] = {1,5,10,25,50};
      int change=0;
      public void backtracking(coins,change){
        int b=0;
        for(int i=0; i<=4; i++){
          if (coins[i] <= change){
            b = max(b, coins[i]+backtracking(i, change - coins));
    System.out.println("Output: "+b);
    public static void main(){
    int input = JOptionPane.showInputDialog("Amountof the change? ");
    backtracking(coins, input);

    Here's a few, for starters
    import javax.swing.JOptionPane;
    public class change{
    //class names should start with capital letters
      int coins[] = {1,5,10,25,50};
      int change=0;
      public void backtracking(coins,change){
    //this is a method signature, needs type identifiers etc, something like public void backtracking(int[] anyIntArray,int anyInt)
        int b=0;
        for(int i=0; i<=4; i++){
    //here, 4 is a magic number, if you mean <= all the elements of coins[], use < coins.length
          if (coins[i] <= change){
    //coins[i] will never be less then change(which is 0)
            b = max(b, coins[i]+backtracking(i, change - coins));
    //there is no method max declared anywhere
    System.out.println("Output: "+b);
    public static void main(){
    //main method signature is incorrect, will compile, but will error
    int input = JOptionPane.showInputDialog("Amountof the change? ");
    //you're trying to put a string into an int
    backtracking(coins, input);
    //you have not created an instance of class Change, to use this method

  • Whats The Problem in this code

    IF :DEMAND_ORDER_DET.PART_ID = ANY (SELECT ALL PART.CATEGORY_ID||'-'|| PART.TYPE_ID||'-'|| PART.SIZE_ID||'-'|| PART.PART_ID FROM PART) THEN
         MESSAGE('THIS IS ALREADY ORDERED..');
         MESSAGE('THIS IS ALREADY ORDERED..');
    END IF ;
    Is this correct or no?

    select count(*)
    into local_variable
    from PART
    where :DEMAND_ORDER_DET.PART_ID == PART.CATEGORY_ID||'-'|| PART.TYPE_ID||'-'|| PART.SIZE_ID||'-'|| PART.PART_ID;
    IF local_variable > 0 then
    MESSAGE('THIS IS ALREADY ORDERED..');
    MESSAGE('THIS IS ALREADY ORDERED..');
    END IF ;
    I believe you cant use select statement in if statement.
    With Regards,
    yathish

  • Custom code throws error with email subscription. Otherwise, the report works fine.

    I have a SSRS report that parses RTF to TXT and displays it in a report.  The report works fine and everything displays correctly.  The subscription email, however, contains a report with errors: Request for the permission of type
    'System.Security.Permissions.UIPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
    The report contains embedded code as well as references to System.Security and System.Windows.Forms.  I've updated .....\Reporting Services\ReportServer\rssrvpolicy.config and ....\Reporting Services\ReportManager\rsmgrpolicy.config to change permissions
    to FullTrust.  Not sure what else I need to do.  Please help.

    Hi Chimuelo,
    According to your description, if the report contains custom code and assemblies, the subscription email contains an error “Request for the permission of type 'System.Security.Permissions.UIPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
    failed”.
    In your scenario, the issue could cause by that the report can’t access those assemblies. Please modify the policy configuration files to grant additional permissions for those assemblies. For more information, please refer to this article:
    How to grant permissions to a custom assembly that is referenced in a report in Reporting Services.
    Similar thread for your reference:
    Custom assembly throwing #error in reports with subscriptions
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Need to create a block based on view

    We can create a block based on procedure...but whats the need to do so...please can anybody explain.

    create the block with the data block wizard. Use your View as Data-Source.
    After that set all items to QUERY-ONLY, when they are not updateable. E.g. if you create a view from EMP to DEPT. Then it is not allowed to update DNAME. DNAME is set to QUERY-ONLY.

  • Need to create a block based on procedure

    We can create a block based on procedure...but whats the need to do so...please can anybody explain.

    There are several recent posts on the topic with a lot of good help & documentation.
    The Metalink note: 66887.1
    Re: Form on a procedure
    If you can't access Metalink, search here on that note. Someone posted the full text a couple days ago.
    This is also very good reference:
    Block based on procedure
    Essentially, you have a procedure, returning a table-of-records type variable, called by the block "Query Data Source..." properties.
    Name = procedure name
    Arguments = procedure parameters (IN parameter(s) Value is :block.item)
    Source Columns = the record type columns for your table-of-records
    Datatypes & sizes must match all around.
    Start very simple & get it to work first, then expand.
    You must follow the documentation very carefully. If it doesn't work at first, go through everything to verify. Also, read the Tip & Issues at the end of the Metalink note.
    Have fun. It works awsome once you get the hang of it.

  • Need of Process code in ALE Inbound Processing?

    Hi All,
      What is the need of process code in ALE Inbound Processing? Why do we need to reach the function module through process code? we can as well directly point to function module.

    Hi Ravi,
    Please chcek this link perhaps it may help.
    http://help.sap.com/saphelp_erp2005/helpdata/en/dc/6b804043d711d1893e0000e8323c4f/frameset.htm
    Regards,
    Ferry Lianto

  • How to find unused ABAP custom code?

    Hi,
    how can I identify the unused ABAP custom code  outside of  the SAP Solution Manager?
    Thanks in advance.
    Nora

    Like a Google for ABAP, the Salt Code Ferret app provides incredibly fast searching of custom ABAP programs or modified standard SAP programs across all your SAP systems. Sniffing out specific pieces of code, Code Ferret is a huge timesaver in locating multiple instances of potentially conflicting code, code errors, or code that developers want to access or replicate. www.saltapps.com
    Try Salt free for 90 days – it’s a suite of eight virtual appliances running on VMware or Hyper-V for understanding what’s happening in SAP systems and across SAP landscapes.

  • How do I tell what the latest software versions is...

    Hi There,
    I have a Nokia Sapphire Arte and was wondering what the latest rev of code is available for it? I am awaiting a new USB cable in the mail, so, I can't hook it up to Nokia Updater right now to determine this.
    Thanks!
    Lumia 920/N9
    Previous Life: N8, N95, 8600, 8800 Sapphire Arte, N97, N97-Mini, 5800 and a few older ones
    Solved!
    Go to Solution.

    Please close this thread, I found my answer
    Lumia 920/N9
    Previous Life: N8, N95, 8600, 8800 Sapphire Arte, N97, N97-Mini, 5800 and a few older ones

  • Can't restore apple id ,you were blocked for security reasons, but to restore the need to enter the key after typing it sends a 4-digit code on the ipad , but at ipade I am not connected to icloud ,and to connect you need to recover your account

    can't restore apple id , because apple were blocked for security reasons, but to restore the need to enter the key two- step werification . after typing it , apple sends a 4-digit code on the ipad , but at ipad I am not connected to icloud ,so i cant get code . but if i want to recover apple id, i need to  connect icloud, so what to do? help !

    I have (sorry forgot to add that). I was switched around and finally I was told I would be put through to a supervisor but after being on hold for about 10 minutes the phone went dead, I did not lose connection so I do not know if I was hung up on or there was some technical difficulty. I called again yesterday and did in fact speak with a supervisor for Account Security but he told me he did not know why it was happening and put me through to a different number but that ended up not being any helpful either. That's when I decided to give it a shot on here!

Maybe you are looking for

  • Time Machine after migration to new Mac

    So, I just got a new Mac, and used the option to copy settings and files from a Time Machine volume to the new machine. Now that everything's run, though, I can't use Time Machine to backup the new Mac -- it says "Volume not found". I've Googled a bi

  • Problem with Add Aonther Row in advanced table

    Hi I have requirement create the Region(not a page) ,it displays the all the data from the DB table(t_tbl_personDetails),I created the EO and VO . so plz give me the steps for display entire data and add another row in the advanced table. Advanced th

  • Certificate Problem--can't install

    I am trying to install Creative Cloud trial version on my Mac. I get this message:  The application cannot be installed due to a certificate problem.  The certificate does not match the installed application certificate, does not support application

  • How can i use 3D Features with 256 VRAM

    How can i use 3D Features with 256 VRAM

  • Save animation as AVI

    Hi, I have downloaded a trial version of Acrobat 9 Pro Extended on my PC and are playing around with the animation function. I did an animation that I saved as an .avi file with the preset configuration. I opened it in Windows media player and it wor