ECATT Scripts for Creating Bussiness Partners

Hi CRM Experts
Can anyone guide me how to create a eCATT Script for Creating Mass Business Partner (Tcode: BP).
While iam trying to create eCATT i was getting the error: Scripting not permitted on this server
I talked to by Basis team, and they couldnt find flaw with eCATT settings.
Thanks for Reading.
Thanks
Srinivas

Hi
This is to setup CIC users. All the user who would be accessing the CIC are TELESALES AGENTS. For provideing CIC access to Telesale end user we need to perform a series of steps to ensure all the order transactions made by agents are maped to salesareas and profitcenters.
When an Sales Agent is to be created he would need to be linked to salescodes. Functional Team Set's up a sales code and map it profit centers in R/3 and this sales code data would be replicated from R/3 to CRM.
In CRM(CIC) for Setting up a End user i need to perfrom 3 steps. The inputs i have for setting up the user is (User ID,Sales Code, User Job Position)
1. create a user ID using su01 with required roles.
2. In Tcode:BP (business partner) i need to search with the sales code and assign the USER ID to sales code.
3. Using Tcode:PPOMW assign the USER ID to the Job Position (or) Company Hirearchy (or) Org Structure. 
I want run eCATT to complete the step 2. The process involved is.
1. Execute BP screen
2. Enter Salescode in feild "BusPartner"
3. Click Start
4. You will find the one bus partner details that i replicated from R/3.
5.Double click on the details shown in the Rectangle below the start button.
6. select "Identification" TAB
7.you will find a blank Feild in Employee data / USER
8. input the user ID.
9.save
These are the process steps i need to recored for step 2.
Thanks you for spending time on this.
Srinivas

Similar Messages

  • Create ecatt script for one sales order creation with multiple line items

    Hi ,
    I want to create a ecatt script for one sales order creation with multiple line items. Preferably SAP GUI.
    This selection of data will be from an external file/ variants which will have only one row of data in it.
    Firstly: I have to sort the external file having same PO Numbers in an order.Group them together.
    Second: I have to create sales order for those many line items having same PO Number.
    Best Regard
    Taranum

    Hi Micky
    Firstl you should upload the Line items for a particular sales Order in an Internal table
    and then pass that internal table to your BAPI during your coding corresponding to a particu;lar sales order
    In case of any issues pls revert back
    Reward points if helpful
    Regards
    Hitesh

  • Example WLST scripts for creating clustered domain for soa suite 11.1.1.4?

    Hello,
    does anyone know sample wlst scripts for creating domain for soa suite 11.1.1.4 on top of weblogic 10.3.4?
    I try to create a domain having a cluster with two managed servers in two linux machines.
    Any help appreciated.
    regards, Matti

    Please refer -
    http://download.oracle.com/docs/cd/E17904_01/web.1111/e13715/domains.htm
    http://download.oracle.com/docs/cd/E17904_01/web.1111/e13715/intro.htm#WLSTG112
    Regards,
    Anuj

  • TIPS(42) : SCRIPT FOR CREATING ROLES

    제품 : SQL*PLUS
    작성날짜 : 1997-02-10
    TIPS(42) : SCRIPT FOR CREATING ROLES
    ====================================
    REM
    REM SCRIPT FOR CREATING ROLES
    REM
    REM This script must be run by a user with the DBA role.
    REM
    REM This script is intended to run with Oracle7.
    REM
    REM Running this script will in turn create a script to build all the roles
    REM in the database. This created file, create_roles.sql, can be run
    REM by any user with the DBA role or with the 'CREATE ROLE' system privilege.
    REM
    REM Since it is not possible to create a role under a specific schema, it is
    REM essential that the original creator be granted 'ADMIN' option to the role.
    REM Therefore, such grants will be made at the end of the create_roles.sql
    REM script. Since it is not possible to distinguish the creator from someone
    REM who was simply granted 'WITH ADMIN OPTION', all grants will be spooled.
    REM In addition, the user who creates the role is automatically granted
    REM 'ADMIN' option on the role, therefore, if this script is run a second
    REM time, this user will also be granted 'ADMIN' on all the roles. You must
    REM explicitly revoke 'ADMIN OPTION' from this user to prevent this from
    REM happening.
    REM
    REM NOTE: This script will not capture the create or grant on the Oracle
    REM predefined roles, CONNECT, RESOURCE, DBA, EXP_FULL_DATABASE, or
    REM IMP_FULL_DATABASE.
    REM
    REM Only preliminary testing of this script was performed. Be sure to test
    REM it completely before relying on it.
    REM
    set verify off
    set feedback off
    set termout off
    set echo off
    set pagesize 0
    set termout on
    select 'Creating role build script...' from dual;
    set termout off
    spool create_roles.sql
    select 'CREATE ROLE ' || lower(role) || ' NOT IDENTIFIED;'
    from sys.dba_roles
    where role not in ('CONNECT','RESOURCE','DBA', 'EXP_FULL_DATABASE',
    'IMP_FULL_DATABASE')
    and password_required='NO'
    select 'CREATE ROLE ' || lower(role) || ' IDENTIFIED BY VALUES ' ||
    '''' || password || '''' || ';'
    from sys.dba_roles, sys.user$
    where role not in ('CONNECT','RESOURCE','DBA', 'EXP_FULL_DATABASE',
    'IMP_FULL_DATABASE')
    and password_required='YES' and
    dba_roles.role=user$.name
    and user$.type=0
    select 'GRANT ' || lower(granted_role) || ' TO ' || lower(grantee) ||
    ' WITH ADMIN OPTION;'
    from sys.dba_role_privs
    where admin_option='YES'
    and granted_role not in ('CONNECT','RESOURCE','DBA', 'EXP_FULL_DATABASE',
    'IMP_FULL_DATABASE')
    order by grantee
    spool off
    exit
    REM ---------------------------------------------------------------------------

    One thing that stands out as being undesirable as far as best practices go is that you are placing code on objects (using the on() approach).  The proper approach is to assign instance names to your interactive objects and use them to place all of your code on the timeline where it is readily visible.  In doing so you may just find that alot of the code you show can be modularized into functions that can be shared by different objects rather than having each one carrying a full load on its back. You may find you can pass arguments to shared functions that make the same functions capable of supporting interactions with different objects
    Your on(press) call performs an unnecessary conditional test.  If you change the condition to be   if (project._currentframe != 25) you can avoid this.
    In your on(rollOver) call's set of conditionals, you have some lines that repeat in each condition, so they can be moved to the end outside the conditionals.
    Your on(release) call has the same issue as your on(press) call.  Also the overrun use of the _parent target is an indication that most of the code in this call would likely serve you better sitting in the _parent timeline, and your button could just call that function

  • Shell script for creating,altering, etc ., a database

    hi there,
    Please help me to find shell scripts for creating,altering, etc a database..
    Thanks & Regards,
    Balu.

    Thanks to all , but dbca generates XML files :
    <DatabaseTemplate name="MYDB" description="" version="10.2.0.0.0">
       <CommonAttributes>
          <option name="ISEARCH" value="false"/>
          <option name="OMS" value="false"/>
          <option name="JSERVER" value="true"/>
          <option name="SPATIAL" value="true"/>
          <option name="ODM" value="true">
             <tablespace id="SYSAUX"/>
          </option>
          <option name="IMEDIA" value="true"/>
          <option name="XDB_PROTOCOLS" value="true">
             <tablespace id="SYSAUX"/>
    ..................I need a file.sql script to launch in sqlplus. Something like the following :
    CREATE DATABASE MYDB
    USER SYS IDENTIFIED BY ***
    USER SYSTEM IDENTIFIED BY ***
    LOGFILE GROUP 1 ('/home/oracle/oracle/instances/oradata/MYDB/redo1/redo01.log') SIZE 15M,
    GROUP 2 ('/home/oracle/oracle/instances/oradata/MYDB/redo2/redo02.log') SIZE 15M,
    GROUP 3 ('/home/oracle/oracle/instances/oradata/MYDB/redo3/redo03.log') SIZE 15M
    ......................

  • Error for linking ecatt Script for exporting parameter

    Hi,
    We have 2 SAPGUI scripts, one is transaction CO01 to create the production order. The other is CO02 to release the production order. In the first script I get production order number as parameter 1 in the message field. I need to export this field to second script for releasing order.
    I am not able to pick the order.
    Tried to use ABAP code
    ABAP.
    DATA: z_aufnr like CAUFVD-AUFNR.
    get parameter id 'ANR' FIELD Z_AUFNR.
    ENDABAP.
    Still export parameter in log comes as empty. So if I create thrid script using ref# it errors out at second script start.
    Your help is greatly appreciated.
    Thanks,
    Gajanan

    Hi
    you don't have to use abap for this .
    in the command editor
    choose first script recording interface and double click it ,observe the screen list on right side and now select the last screend and double click field and parameterize it say give it a  name as variable1 by entering this in valin column.
    Create a parameter and by param1 name and export type and default values as variable1.
    Now for the second script create a parameter as import type and set it's value as &param1&.
    Also pass this value to second script by the same as you done for first script.
    This will work for sure.
    To know more how to parameterize follow the links,
    /people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation-150-tcd-mode-part-ii
    http://www.sapecc.com/tutorials/secat_create.htm
    Please reward points.

  • Possi. for ABAP code instead of JAVA Script for creating searachhelp in BSP

    Hi Consultants i have a doubt that is there a possibility to use ABAP coding in BSP object for creating search help
    instead of JAVA Script if so please reply me with the procedure or else with some sample coding.

    Hi Consultants i have a doubt that is there a possibility to use ABAP coding in BSP object for creating search help
    instead of JAVA Script if so please reply me with the procedure or else with some sample coding.

  • XI 2.0 installation script for creating XI Sandbox Demo System

    Does any have a Windows2000 XI 2.0 installation script designed to create minimal XI Sandbox?  Brief installing instructions.

    Hi Dan
    There is no Installation Script for XI-2.0. The document you have to check is the XI 2.0 installation guide.
    Regards
    Prasad
    SAP Netwaver RIG-XI
    SAP Labs LLC, USA

  • Script for creating grid spreads of photos from the Adobe Bridge

    Hi,
    Someone once showed me a script for being able to select multiple images while looking at them in the bridge and making grid layouts on pages from them. Does anyone know how to do that? Thanks!

    The only code that I have seen that does this sort of thing is to be found here. http://forums.adobe.com/message/5713633

  • Approval for exceeding credit limit for particular bussiness partners

    Hi Experts,
    I am trying one approval for the Business partners for credit limit exceed.I have tried through standard Approval process by using the terms deviation from credit value as described but what should be done if  i need to set it for particular business partners.
    Also, in this standard query which i have tried i have defined the terms as :-
    Deviation from credit limit greater than or equal to 50,000 . I have set this terms for A/R Invoice. Now when i have made the invoice for rs.5000 then also it is asking for Approval.Since the Value is defined so system should not ask for approval.
    Regards-
    Mona.

    Hi Mona,
    You may try this. It may help you..
    select true from ocrd where 
    ((balance < 0) or (balance + $[$29.0.NUMBER]) < 0) and cardcode = $[ordr.cardcode]
    use squere brackets near $ sign open and close both brackets insted of round brackets.
    Regards,
    Chintesh Soni
    Edited by: Chintesh Soni on Sep 7, 2009 2:53 PM
    Edited by: Chintesh Soni on Sep 7, 2009 2:54 PM
    Edited by: Chintesh Soni on Sep 7, 2009 2:55 PM
    Edited by: Chintesh Soni on Sep 7, 2009 2:57 PM

  • CATT script for creating Contract Detail lines

    In my requirement I have to use the transaction SCAT and record the transaction ME31K for creating the line items. But when adding more than 1 line item the function is not working only the first detailed line item is added, no more. Please help.

    Hi shashikant
    Use  Message type BLAORD .. FM: IDOC_OUTPUT_BLAORD (Process code is ME15 (Not sure)  in AFS it is /afs/md15- BLAORD:  AFS Contract via EDI)
    Thanks
    Ramesh
    302 290 5677

  • OMB Plus Script for creating a project

    Hi,
    I am totally new to this OMB Plus.
    Ok. My concern over here is we have been working on some new Mappings. However now for the testing purpose these Maps would be deployed on some other schema with pure Deployment process.
    So i found that while importing the Maps it encountered me an error, the reason was that it was trying to find a project which doesnot exists as its new Source. Ideally importing the Mpas would have created the project automatically but it gave me error.
    Now, to overcome this i thought why not use the OMB Plus script in order to overcome this issue. So i want to creat a .tcl script which will run and will create a project and then once created i may able to import the maps or the complete project without any error.
    So could you please help me with some commands, because on the internet nowhere is mentioned how to create a project or to import a non-existing project.
    Please Help!!!!

    Hi Experts,
    I tried the above link it is really usefull.
    However, when i execute the below statement i m getting an error at the step 2.
    Step1:
    OMBCONNECT <USER_NAME>/<PASSWORD>@<HOST NAME>:<PORT NO>:<SERVICE NAME>
    Step2:
    OMBCREATE PROJECT 'CPP_CPEPLUS'
    Error: oracle.wh.repos.sdk.exceptions.WBException: OWB_NS_FATAL_ERROR100ORA-01403: no data found
    PS: I successfully connected the Step1.
    Please Help!!!!
    Regards,
    BB

  • What is the script for creating a word count text box that references a specific text box?

    I am working in Adobe LiveCycle Designer.
    I am trying to create an auto populated word count box that provides the word count for a given text box.  For background, it'll be used on a form for blog posts and the posts needs to be specified word lengths but will probably be edited in form as it is passed around a committee.
    I found this script: var wordCnt = new Array();var str = this.rawValue;wordCnt = str.split(" ");xfa.resolveNode("wordcount").rawValue = "There are " + wordCnt.length + " words."; and created a textbox named wordcount but when I use it I get an error stating unfound Array.
    Any help would be greatly appreciated!

    Try the LCD forum.

  • Using Java Script for creating UI in R12

    hi,
    I read that Java Script can be used to create UI in R12 which is its new feature. Please can any one tell me how that can be done and which UI elements are to be used to do so?
    Please Help
    thanks & regards
    Edited by: user11225154 on Aug 25, 2009 12:50 AM

    hi,
    I read that Java Script can be used to create UI in R12 which is its new feature. Please can any one tell me how that can be done and which UI elements are to be used to do so?
    Please Help
    thanks & regards
    Edited by: user11225154 on Aug 25, 2009 12:50 AM

  • Script for creating ALL_OLAP2_CUBE_MEASURES and MRV_OLAP2_AW_CUBE_MEASURES

    Hi
    Would someone please kindly tell me the script used to create the views ALL_OLAP2_CUBE_MEASURES and
    MRV_OLAP2_AW_CUBE_MEASURES.
    Many thanks.
    alfchan

    Hi
    In which version of the db are you?
    Regards
    Joslyn Flores
    www.atconsuting.com.mx

Maybe you are looking for

  • Itunes error when downloading album err=-100008

    Hello.. I almost finished downloading a well anticipated album. All songs downloaded except 1. I keep getting the error above, and when i check purchases it starts but then continues to give me the msg error . Unable to finish download of Song, the f

  • HT1751 I have done the above steps but I would like to know if everytime I sync will it create a backup on my external harddrive

    I have windows 7 64 bit and followed the steps in the article.  What I would like to know is if I was to sync my ipad would the backup file be created on the external harddrive automatically or do I have do these steps at least once a week. Everytime

  • No PReq Item Category for 3rd Party Order

    Hello, I am trying to set up the 3rd party process but having a problem with the item category in the generated purchase requisition. I know that my sales order item has a schedule line category of CS. This should create a purchase requisition item w

  • Change Hostname of an AIX system running Solman 4.0 and Oracle 10

    Hello all, I need to change the hostname of a server running SAP Solution Manager 4.0. The server, OS, IP address will be the same. I don't know what are the steps to make this correctly. I think that I need to make changes on Oracle and SAP files. M

  • Problem with playlist in Jikebo

    When I reboot after shutting down the Jukebox 3, it does not emember where it left off on any of my playlist, is there a fix for this. I have the latest firmware. I have to assume that other owners have had this problem, or is this just the way it is