CRM Experts, Please help me on following queries!!!!

Hi CRM Experts,
While creating the ERP Sales Order in web-IC
we have bumped into following error:
"The IC WebClient profile does not have a component 'ERP Sales Order'".
And also we are not able to see sales area data and Plant data in the drop down lists.
we have done the following settings:
1) ERP Sales Order Profile:we have defined ERP Sales Order profile,maintained RFC destinatin and assigned document type to ERP Profile.
2) Business Transaction Launcher: We have defined the Business Transaction Profile and assigned dependent business transaction.
3) We have assigned the Business Transaction Profile to the Navigation Bar Profile.
Please suggest me regarding above error also let us know did we miss any configuration?
Waiting for your valuable inputs.
Regards,
Sree.

Hi Sree
You can create multiple follow up activites for the given activity
ERP Sales Order and ECC Sales order is same when the backend is ECC. Basically ERP Order refers to the Order of the backend system
Hope this will help
Regards,
Rekha Dadwal
<b>You gain a point for every point that you reward. So reward helpful answers generously</b>
<b></b>

Similar Messages

  • Please help me on following Queries!! (Activities, Web-IC)

    Hi CRM Experts,
    Please help me on following queries.
    1)Can we create multiple follow-up activities for given activity by using action profile?
    2)What is the differance between ERP Sale Order and ECC Sales Order in Web-IC?
    3)Is there any relationship between Status and Result in Activities?
    4)How to activate Multilevel categorization in WEB-IC? When we have multiple subject profiles? How to deactivate existing one?
    Please help me..
    Points will be rewarded.
    Thanks in advance.
    Regards
    Sree

    Hi Sree
    You can create multiple follow up activites for the given activity
    ERP Sales Order and ECC Sales order is same when the backend is ECC. Basically ERP Order refers to the Order of the backend system
    Hope this will help
    Regards,
    Rekha Dadwal
    <b>You gain a point for every point that you reward. So reward helpful answers generously</b>
    <b></b>

  • Please help me on following Queries on Web-IC)

    Hi CRM Experts,
    Please help me on following queries...
    1)How to enter data in ERP-Sales order in IC-Web Client?
    2)How to assign Sales areas in ERP-Sales order in IC-Web Client?
    3)How to Activate Incompletion Log and Header details in ERP-Sales oder in IC-Web Client?
    4)What is the differance between Heirarchial Categorization and Attribute Categorization in Multi Level categorization?
    Thanks in Advance.
    <b>Points will be rewarded.</b>
    Regards
    Sree

    Hi Sree,
    I've checked the doc Venkat adviced. But I think that the content might be too general for your questions. And at the same time, to distribute documents via email is not permitted in SDN forum. Please be noted.
    Let me try to provide some of my comments:
    1.For ERP Sales order, there are mainly two method
    - to use the standard navigation bar entry ERPSALESORDER
      which is in the standard SALES_B2B icwc profile;
    - to use ITS technical to call va01/va02/va03 transaction directly in browser
      for this you will have to define your own transaction launcher entry;
    2.Assign sales area
    - firstly, you need to define the sales area in ERP system as normal SD guys do;
    - then, in CRM system ppoma_crm, you will have to assign the ERP sales org/distribution channel/division to the CRM org unit, just as normal CRM sales guys do;
    (here is actually no special settings for ic webclient, only that for ic webclient, it is recommended to have unique sales area defined)
    3.Incompletion log
    - this follows the same settings as that iin ERP, SD guys do, this has no extra settings in CRM side
    4.Categorization
    - I believe this is a topic different with the ERP sales order topic, more like that in the service order, isn't it?
      I have to think about it before answerring.
    Hongyan

  • SQL experts please help for a query

    I have following table1.
    What query can give the result as given below, SQL experts please help on this.
    TABLE1
    Event DATETIME
    in 2/JAN/2010
    out 2/JAN/2010
    in 13/JAN/2010
    out 13/JAN/2010
    in 5/JAN/2010
    out 5/JAN/2010
    RESULT REQUIRED FROM THE SQL QUERY
    COL1_IN COL2_OUT
    2/JAN/2010 2/JAN/2010
    13/JAN/2010 13/JAN/2010
    5/JAN/2010 5/JAN/2010

    I tried to help, but this puzzles me.
    Why is this not returning pre-selected set of rows, why it's doing some merge join cartezian ?
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> select * from table1;
    EVENT      DATETIME
    in         2/JAN/2010
    out        2/JAN/2010
    in         13/JAN/2010
    out        13/JAN/2010
    in         5/JAN/2010
    out        5/JAN/2010
    6 rows selected.
    SQL> explain plan for
      2  with a as
    (select datetime from table1 where event='in'),
    b as
    (select datetime from table1 where event='out')
    select  a.datetime COL1_IN ,b.datetime COL2_OUT from a,b ;
    Explained.
    SQL> set wrap off
    SQL> set linesize 200
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 185132177
    | Id  | Operation            | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |        |     9 |   288 |     8   (0)| 00:00:01 |
    |   1 |  MERGE JOIN CARTESIAN|        |     9 |   288 |     8   (0)| 00:00:01 |
    |*  2 |   TABLE ACCESS FULL  | TABLE1 |     3 |    48 |     3   (0)| 00:00:01 |
    |   3 |   BUFFER SORT        |        |     3 |    48 |     5   (0)| 00:00:01 |
    |*  4 |    TABLE ACCESS FULL | TABLE1 |     3 |    48 |     2   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       2 - filter("EVENT"='in')
       4 - filter("EVENT"='out')
    Note
       - dynamic sampling used for this statement
    21 rows selected.
    SQL> with a as
    (select datetime from table1 where event='in'),
    b as
    (select datetime from table1 where event='out')
    select  a.datetime COL1_IN ,b.datetime COL2_OUT from a,b ;
    COL1_IN         COL2_OUT
    2/JAN/2010      2/JAN/2010
    2/JAN/2010      13/JAN/2010
    2/JAN/2010      5/JAN/2010
    13/JAN/2010     2/JAN/2010
    13/JAN/2010     13/JAN/2010
    13/JAN/2010     5/JAN/2010
    5/JAN/2010      2/JAN/2010
    5/JAN/2010      13/JAN/2010
    5/JAN/2010      5/JAN/2010
    9 rows selected.
    SQL>

  • BDC - table control - experts please help

    Hi experts,
    Please help. I am in need of your help.
    I am working with BDC and I have a table control in one of the screen. Table control has a check box in the first column. While recording how I entered the data is : I select the check box in a row, enter two values in next two columns of that row and then hit enter then the other columns in that row turn from grey to white (initially these columns are greyed out).
    NOw in BDC when I run my session in foreground, I am able to check(select) the check box and enter the values in next two columns and then I have a Enter OKCODE. But when I hit enter it is not able to recognize the row and its unable to turn the greyed out columns in that particular row to white.
    Is there a way to specify in my program that I am hitting enter in one particular row.
    Please help. Let me know if something is not clear. Very urgent . Pleasee respond. Thanks

    Hi Rich,
    Thanks for the replies. I will try that. I got one more doubt. While manually creating the recipes using C201, there is a screen Recipe header. When I record this transaction, I see a different screen for the Recipe header. Fro example the screen numbers are like 4210(manual) and 4211(recording).
    But my problem is there are two fields which are missing in the screen which I am getting while recording C201. These two fields are present on the screen for manual creation. I need to enter those two fields while I record. But how can I do this.
    Please help.

  • HELLO, I UNLOCKED MY 3GS PHONE THEN RESTORED  IT TO FACTORY DEFAULTS THROUGH ITUNES THEN COULD NOT REACTIVATE THE IPHONE, I TRIED SEVERAL TIMES USING WIFI AND ITUNES, IT CAN NOT DETECT THE SIM, SOMEONE PLEASE HELP ME WITH FOLLOW UP, THANKS

    HELLO, I UNLOCKED MY 3GS PHONE THEN RESTORED  IT TO FACTORY DEFAULTS THROUGH ITUNES THEN COULD NOT REACTIVATE THE IPHONE, I TRIED SEVERAL TIMES USING WIFI AND ITUNES, IT CAN NOT DETECT THE SIM, SOMEONE PLEASE HELP ME WITH FOLLOW UP, THANKS

    sir as ur reply i guess that my phone has locked again as i restored to factory defaults, now if i try with a att active sim then can i activate the iphone ? and i think  i need to unlock again if i want to use sim other then att right ? pls reply me in details asap

  • I bought an iphone 5 from one of my friends and unluckily I had yet lost his contact, I had update this iphone to IOs 7 and now it's be locked at iCloud because there was no password . Actually I dont know what I must do for its. Experts, please help me!

    I bought an iphone 5 from one of my friends and unluckily I had yet lost his contact, I had update this iphone to IOs 7 and now it's be locked at iCloud because there was no password . Actually I dont know what I must do for its. Experts, please help me!

    The friend who sold it to you needed to clear his Apple ID off the phone before he sold it to you. Of course if it wasn't his phone in the first place then he could not do so. He is your friend but you don't know where he is?
    There is nothing that will help you short of getting the password for the Apple ID from your friend. If you cannot obtain that there is no workaround.

  • Can you please advise on the following queries?

    Hi Friends,
    Can you please advise on the following queries?
    FV60  is there anyway we can stop an FV60 transaction being input for a specified vendor or number of vendors?
    Your response is highly appreciated.
    Regards,
    Baltha

    Hello,
    You can write an User-exit for validation in GGB0.
    Assign the same in OB28.
    Please check up with the ABAPer for the technical feasibility.
    Regards,
    Ravi

  • Please help me on Following sytax error in Work flows

    Hi SAP CRM Gurus,
    I am getting following Syntax error while generating object type ERMSSUPRT2.
    Points will be rewarded.
    Thanks in advance.
    Thanks,
    Rony.

    Ji Jhonney,
    I am finding Syntax error in  Transaction /nswo1. Syntax error is:
    program %_JJ_TESTFRAME_OBJTYPE
    "CRMS_ERMS_STRING" must be flat structure. you cannot use internal
    tables, strings,references or structures as compnents.
    Please help me.
    Thanks in advance
    Thanks,
    Rony.

  • Expert please help me!

    Hello Experts,
    I have added key listener to frame and textfield. If I don't implement KeyEventDispatcher interface,
    only event for textfield get notified and if I implement the interface, only event for frame get notified
    I want both to work simultaniously. Is it possible? Please help me in this regard.
    Here is my code :
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class KeyTest extends JFrame implements KeyEventDispatcher
    Container cont = getContentPane();
    JTextField jt;
    public KeyTest()
    cont.setLayout(null);
    setBounds(100,100,400,400);
    jt = new JTextField();
    jt.setBounds(100,100,200,20);
    cont.add(jt);
    jt.addKeyListener(new KeyAdapter()
    public void keyPressed(KeyEvent ke)
    System.out.println("Key pressed event of textfield....");
    addKeyListener(new KeyAdapter()
    public void keyPressed(KeyEvent ke)
    System.out.println("Key pressed event of window....");
    DefaultKeyboardFocusManager.getCurrentKeyboardFocusManager().addKeyEventDispatcher(this);
    public boolean dispatchKeyEvent(KeyEvent e)
    processKeyEvent(e);
    return true ;
    public static void main(String[] args)
    KeyTest kt = new KeyTest();
    kt.show();
    Regards,
    Sachin Dare.

    My mistake - sorry. Not a cross-post.

  • Dear experts please help me~

    Hello,
    i bought a blackberry 9220 after a week it broke.. i usually put it in my pocket. one time i want to check my bbm's but somehow i can't turn it on, i tried charging it but it only shows a battery with a red "X" mark on it.. i tried charging it for hours but no use, i used my friends battery no use, my friend used my battery but it worked.. can someone please help me with my problem ASAP! thank you!

    Hi gerardedwards4
    Welcome to BlackBerry Support Forums
    I am not the Expert   Our expert will look into your post , but for the time can you tell what happen when you connect your device to a PC ? Do you hear any sound for anything !
    let us know.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • NO Sound; experts please help

    I currently have no sound on my HP Spectre XT Ultrabook PC!!! Upon buying the laptop it had Beats audio on the laptop. That stopped working recently, but I still had the normal reduced audio, until that stopped completely soon after. I have tried multiple things to fix this problem, all without success; I tried troubleshooting the problem, I tried updating the audio driver (it said I already had the most current version), I tried uninstalling and reinstalling the driver, I tried updating the BIOS on my computer and NONE of these have worked; I still have no sound! Please help to fix this problem! 
    The product number is B6V42PA#ABG and it currently has Windows 7 Home Premium installed on it!

    Hi
    Please try doing a system restore to the date where unit was working fine. In case this does not work last option is to run a recovery please back up your data. This does not work please call HP technical support & get the Speaker replaced.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Is this BUG or Feature of APEX 4.0.1 - Any expert please help to answer

    Try this to stimulate the BUG or Feature
    - Development -
    1. Create Basic Master Detail with tabular form
    2. Create a basic LOV and display NULL -> RETURN NULL
    - Run -
    1. Run the Page click "ADD ROW"
    2. Do not enter any data into the tabular
    3. Click on Apply Changes
    Apex smart enough to know user do not want to add anything very nice....
    now... observe this
    - Development -
    1. Modify the LOV, remove the display NULL, so it will show first value of the LOV
    - Run -
    1. Run the Page click "ADD ROW"
    2. Do not enter any data into the tabular
    3. Click on Apply Changes
    Apex don't bother to test all validations straight to GIGO and end user see those ORA-.
    I have a page that the tabular form has a default value (not LOV but default value) the validation is not working, GIGO....
    Any expert please explain is this suppose how Apex work? or do we need to handle those default value.
    I try to debug the page with good one and bad one, I think I still have a lot to learn I don't understand the debug message. I guess is something about Branching....
    Siere

    Hi,
    Unfortunately there isn't really much that could be done to work around this issue in 4.0.x. The validation logic treats these new rows as not having been touched by the user, hence they are ignored. But the DML (update/insert) logic thinks the data did change due to that default value, and thus attempts an insert for the new row. There might be a way to trick APEX into doing the right thing with some JavaScript, but I would advice against that, considering that this might break after a future upgrade.
    Regards,
    Marc

  • Experts  please help me.......

    Hi,
    i want to create table script in oracle as table name is in other database and i have to create same table with TEMP prefix in table name. So please help me.
    For example :
    Create table 'Temp_'||table_name as select * from users_table@database
    But its not working....
    Surender

    there are 1083 tables ,So for every table i have write a DDL.So please tell some other logic.
    Write a dynmic sql to rename all the tables.
    declare
    msg varchar2(200);
    begin
    for s in (select table_name from user_tables order by table_name) loop
    msg := 'rename '||s.table_name||' to '||s.table_name||'_TEMP';
    -- dbms_output.put_line(msg);
    execute immediate (msg);
    end loop;
    end;
    Jaffar

  • Should i Start with SAP SD...Experts please help

    HI,
    I have 7+ experience in Channel and Direct sales of IT products.
    I work for a company who is fortune 100 and only global distributor of IT products  having presence in 6 Continents.
    I am Exploring SAP as my career path as i am planning to work overseas and this is not possible having only Sales experience.
    Please help as I am in dillemma to look SAP as my career path and invest approx 4-5 lacs in it.
    I would also have to take a loan for it.
    Please advice.
    Thanx

    Hi
    This thing has been discussed many times. This is not advisable that you take loan for starting your career in SAP until and unless you have hundred percent job surety which is almost impossible. You have to sacrifice your prior non IT related experience. When you start career in SAP you start from scratch. Please check this blog where I have shared some tips and my personal experience as well. There are also many other blogs and threads in Career Center which can go through. This query was supposed to be posted in career forum and now some moderator can move it there. You'll get better responses from there.
    Five key factors and basic tips for SAP consultant.
    Thank$

Maybe you are looking for

  • Using bulk collect and for all to solve a problem

    Hi All I have a following problem. Please forgive me if its a stupid question :-) im learning. 1: Data in a staging table xx_staging_table 2: two Target table t1, t2 where some columns from xx_staging_table are inserted into Some of the columns from

  • Why is the security header empty in the response when mustUnderstand="1"?

    Hi In the response the value of mustUnderstand is equal to "1", but the UsernameToken data is not echoed, the security header is empty. It seems that either the credentials should be echoed or mustUnderstand should be equal to "0" An Axis 1.4 client

  • SRMSVC Issues

    Hello i am getting the following warning constanly in my event viewer The storage reports repository will not be included in the file server resource manager backup because the service failed to retrieve the repository locations error specific detail

  • Why quicktime x in lion cannot export video properly

    when i tri to export an avi film to mov (itunes) is sais a crazy number: it said 73 trillion hours to export. can somebody help please? any help would be very much appreciated.

  • Build stand-alon​e applicatio​n with Global variable

    Question:    how to build a VI access a global variable into a standalone EXE file? there are multiple VIs access to one Global variable, one of the VIs need to run in background to update the Global variable, whick i built into EXE file. the rest VI