More than one "Sales Employee"(Partner Function Value) in sales order.

Hi Experts,
       My customer requested add more than one "Sales Employee"
in Sales Item Line. As the standard SAP, I can add only one
"Sales Employee" value in one partner function. Any suggestions?
Thanks,
Prach

Hi Prach,
You can add one sales employee per line item. In one line item you cannot add morethan one sales employee however.
If you want to include morethan  one sales employee to EVERY LINE ITEM, then
1. Create some PFs like Salesperson1, Salesperson2 etc, say upto 5.
2. Now assign this PF to the sales document header and item category,
3. For all the PFs, you can have the same account group.
4. Now you can create customer master for all these sales person.
5. Once this is done, you can link multiple sales persons for each line item.
Hope thsi helps you
Pls reward if thsi helps you

Similar Messages

  • More than one selects in a function

    Hi All,
    Is it that there can not be more than one selects in a function?What is the work around for this thing?
    Regards,
    Amit.

    Hi Krystian Zieja ,
    Thanks for responding. I do not know what was going wrong but now it is working fine.
    The problem is that I was not able to compile a function with two select statements in it. If I could comment one of the select statements it was getting compiled. But now it is getting compiled with both the selects.
    Now since we are at it can you solve another of my problem. I want to see the output of my function. If I write DBMS_OUTPUT.PUT_LINE statements in it I am not able to see the output. Is there anyway that I can call my function and it can show the output on the screen.
    I am using Benthic Golden 32 editor. Is there any way in it that I can call my function from it ?
    Regards,
    Amit.

  • Free goods-more than one material as a free item in sales order

    Hi,
    We have a requirement for our client in free goods scenario in which the client wants to give more than one material(2or3 etc) as a free item in the sales order.I have already explored the slaes BOM functionality,anyother suggestions other than Sales BOM will be of great help to me.
    Thanks

    Hi Sam,
    Check out my [post|Re: Free goods process requirement] wherein I had the same problem once upon a time.
    We tried all possible things, however concluded that through std SAP functionality the same is not possible.
    FYI:  Free Goods doesnt support BOM, Sub items, Product selection. etc.
    Regards,
    Amit
    Edited by: Amit Iyer on May 12, 2011 3:01 PM

  • Use of layout when more than one parameter - Error Missing Parameter Values

    Hi,
    Is it possible to use a crystal report which has more than one parameter as the layout for the bill of materials report.
    I have 3 parameters
           1. DocKey@       The Bill of Materials to be printed
           2. Number of levels to be printed
           3. type of levels to print.
    When I try to print it gives me the error Missing Parameter Values.
    I have tried changing the DocKey@ to CodeKey@ but the same error.
    Does anyone now where to find a list of these tokens?
    Thanks
    Chris

    I looked at the crystal report conversion to try to find what parameters it used and found none.
    I have managed to create and use a crystal report to replace the production order using DocKey@ as the parameter.  This works within SAP.  However I have converted the system production order to crystal reports and from the converted report I cannot see any parameters at all.
    How and where can you find out what paramters you need to use to replace any PLD report?  Several reports have multiple selection criteria before the report prints.  How can you find out what their tokens are called?  I am starting to pull my hair out.  I am getting great help from this forum, but do you know any documentation which actually explains this area.
    Thanks
    Chris

  • Sales employee partner function

    hi all,
    In our system, it was mandatory to enter sales employee in sales header.
    now the sales employee id is 0.
    to remove this, I have gone to spro and
    Sales & Dist - Basic Functions - Partner Det- Set up Partner Det - and clicked on Set up PArt Det for sales employee and unticked it.
    After this, I tried to make a sales order (TA) and it's again asking for sales employee
    as mandatory. do I wanted to change anywhere other than there ????
    Again I tried with IMG -->Sales and distribution -->Master data -->Business partners --> Use sales employee with out HR .
    It wont reflect in the system.
    Can anyone tell me the method to enter sales employee master details or to avoid as mandatory ?
    anyone can help ??
    Regards
    Jose

    Hi Prach,
    You can add one sales employee per line item. In one line item you cannot add morethan one sales employee however.
    If you want to include morethan  one sales employee to EVERY LINE ITEM, then
    1. Create some PFs like Salesperson1, Salesperson2 etc, say upto 5.
    2. Now assign this PF to the sales document header and item category,
    3. For all the PFs, you can have the same account group.
    4. Now you can create customer master for all these sales person.
    5. Once this is done, you can link multiple sales persons for each line item.
    Hope thsi helps you
    Pls reward if thsi helps you

  • Problem with passing more than one parameter to a function

    Dear Experts,
    I have a strange problem while trying to pass parameters to a function in Csharp :
    On my database I have a function like
    function fooo (parameter1 varchar2, parameter2 varchar2) returns number {
    I want to write a csharp function which can execute those functions with varying numbers and types of parameters and returning always a number (see below).
    My problem is, that I always pass only one parameter, the second parameter seems not to reach the database-function although I can see
    all parameters within the OracleCommand structure (dbcommand) in the debugger.
    Can you give me a hint why my function does not work ?
    Best regards,
    Desperately Daniel
    This is my function :
    public override int insertDataSetwithReturn(String ProcCall, ArrayList Parameters, ArrayList ParameterTypes, ArrayList ParameterNames)
    int ReturnValue = 0;
    try {
    //Check for compliance of Arraylength
    if (!(Parameters.Count == ParameterTypes.Count)) {
    //falsche Eingabe !! TODO !
    DBConnection myDBConnection = new DBConnectionORA();
    DBPOOL.getConnection(out myDBConnection);
    OracleConnection myOracleConnection;
    myDBConnection.getConnectionout(out myOracleConnection);
    OracleCommand dbCommand = new OracleCommand(ProcCall, myOracleConnection);
    dbCommand.CommandType = CommandType.StoredProcedure;
    //Nun die Parameter aus der Parameterliste füllen.
    for (int ParameterCounter = 0; ParameterCounter < Parameters.Count; ParameterCounter++)
    OracleParameter myParameter = new OracleParameter();
    myParameter.ParameterName = (String) ParameterNames[ParameterCounter];
    myParameter.OracleDbType = convertdotNetVariableTypesToDBVariableTypes((String) ParameterTypes[ParameterCounter]);
    myParameter.Direction = ParameterDirection.Input;
    myParameter.Value = Parameters[ParameterCounter];
    dbCommand.Parameters.Add(myParameter);
    OracleParameter returnParameter = new OracleParameter();
    returnParameter.ParameterName = "ref_ret";
    returnParameter.OracleDbType = OracleDbType.Int16;
    returnParameter.Direction = ParameterDirection.ReturnValue;
    dbCommand.Parameters.Add(returnParameter);
    dbCommand.ExecuteNonQuery();
    catch (Exception e)
    string MessageStr;
    MessageStr = "Error insertDataSet (DBConnection_ORA insertDataSet). " +
    Environment.NewLine +
    e.Message + "." +
    Environment.NewLine;
    MessageBox.Show(MessageStr, "Error in getArrayListfromProcedureNIP",
    MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    } //catch
    return ReturnValue;
    Edited by: danielwetzler on Dec 15, 2010 4:23 PM

    Hi,
    Can you give exactly the error generated by the application?
    You can try to reverse the invoking of the parameters. That means, try to invoke the returnValue parameter first and then the others ( IN Parameters ) in the same order that you declared them in your stored procedure.
    in PLSQL you have,
    Create or replace function ( parm1 IN varchar2, parm2 IN varchar2, parm3 OUT varchar2)
    In your application, you must write first:
    bla bla bla parm3.direction=parm3.returnvalue
    and then
    bla bla bla parm1.direction= parm1.input
    bla bla bla parm2.direction= parm2.input
    Hope this helps you
    Walid

  • Read more than one attribute from list of values record

    Hi,
    I am using Jdev 11.1.1.3.0.
    I have the following situation,
    have defined a read only view (schools information) which is a list of values for schools information ( schoolId, school name and school code) , I have to execute Query for that view as an Invoke Action in the executable s of the page,
    I need three attributes (A, B, C) in another view (name it student's school) to be set to the school information corresponding to a school chosen from a SelectOneChoice List
    I could not define the schools information as LOV for the attributes in the student's school, as I have to execute it in the executable s,
    I have an Iterator for the schools Information on the page and, bound the attribute A (from the student's school) SelectOneChoice as list to the school name (from school Information) , and then tried to read the current row of the schools Information Iterator like this inside a bean:
       Row  tempRow = getIteratorBinding("CmnLookupPrevSchoolRegView1Iterator").getCurrentRow();
       currStdPrevSchoolRow.setAttribute("B", tempRow.getAttribute("SchoolId"));
       currStdPrevSchoolRow.setAttribute("C", tempRow.getAttribute("SchoolCode"));but referring to the data saved in the DB, the values stored for the attributes B and C are not corresponding to the chosen school name , but corresponding to the first row of the iterator. ( not the current chosen)
    is there any suggestions, to have another approach to connect all the three attributes to the corresponding chosen values.
    or maybe it is just some properties for the Iterators,
    thanks in advance
    best regards,

    Hi,
    Have a look here: http://blogs.oracle.com/jdevotnharvest/2010/12/reading_the_selected_value_of_an_adf_bound_select_list_in_java.html
    If you read from a list binding then you get the row value from there as well - not from the iterator as lists don't change the current row
    Frank

  • When attempting to view more than one PO PDF in a row in BWC-Orders, the following error occurs.

    1. Responsibility: Purchasing
    2 Navigate to Buyer Work Center
    3. Go to Orders (View: My open orders)
    4. Choose the first PO on the list, then select 'View PDF' and then 'Go'
    5. 'Save' or View PDF
    6. Close PDF
    7 Back in 'Orders' page again
    8. Choose the next PO on the list, then select 'View PDF' and then 'Go', Getting error:
    "You cannot complete this task because you accessed this page using the browser's navigation buttons (for example, the browser Back button)."

    Any one give the reply

  • Not more than one service order against same sales document item

    A service order gets created against the sales order item as per
    standard SAP process. As credit management is active, when the order
    is under credit block  for the customer the service order gets created only after the
    credit block is released.
    On revising the order line value the sales document goes for a block
    again. Service order is locked. Both seem to be logical.
    But on releasing the credit block  this time ,  it creates one more service order against the same sales order item. Would logically expect the service order is
    unlocked on release from credit block.
    Can u pls explain this behavior ??  How do u avoid a new order creation and unlocking of the service order when the credit block is released.
    Would like to avoid any change in the service order status once it has been created irrespective of subsequent credit status of the sales order.
    regards
    Ramanujam

    Hi  lisa ,
    It is not possible to enter more than one service performer for a service in sales order .
    But you can  perform the service with two people and have two service confirmations.
    The time entered in service confirmation will be reflected in invoice only(if time and material).
    Also you cannot enter the time sheet with respect to sales order , it is only valid for project task and
    and time types.
    Regards,
    Harish

  • More than one service Performer per sales order position

    Hallo ByD community
    We are using service type "Service - time and material" in our sales orders and we are using the integrated time recording in the self-service (time sheet) to track actual times for an sales order. For that you have to assign a service performer in the sales order position, so that the person is able to enter acutal times for this sales order Now it can happen that not only one person, but a team (or two or more people) has to record times for this sales order position.
    is that possible and if not what would you suggest.
    F.e.. in project management you can activate time recording for a project task for several people.
    Thank you :-)
    BR

    Hi  lisa ,
    It is not possible to enter more than one service performer for a service in sales order .
    But you can  perform the service with two people and have two service confirmations.
    The time entered in service confirmation will be reflected in invoice only(if time and material).
    Also you cannot enter the time sheet with respect to sales order , it is only valid for project task and
    and time types.
    Regards,
    Harish

  • Sales by Partner Functions

    Dear Sirs,
    Is there any way we can track sales by partner functions?
    I have a particular requirement wherein my client wants to track the Sales by -
    1. Corporate Group
    2. Sale employee Partner Function
    One Corporate group (e.g. Bhushan Steel) will be common in all the Sold Party of other customer codes of Bhushan steel (Like, Bhushan steel India Ltd., Bhushan Western India Ltd., Bhushan Steel Corporation).
    Similarly, 1 Sales Employee partner function will be common in multiple sold to party.
    Please suggest some ideas for development / existing standard functionality of SAP too map the sale by these Partner Functions.
    Regards,
    Rajni.

    Hi
    Rajani Asai
    Use Tcode VA05 --  Partner function option is there if 
    1. Corporate Group
    2. Sale employee Partner Function
    these two are not there then u go to SPRO -
    Sales and Distribution -
    Sales ---  Lists  ---  Set Updating Of Partner Index
    there u have to maintain transaction group 0 ( zero ) for Sale order and select yr patrner function. And then use Tcode VA05.
    Thx.

  • Using more than one Business area in the same report

    Hi,
    Is it possible / recommended to use more than one business area in the same report.
    For example, I have a sales (business area sales) report on one tab and a rebates(rebates business area) report on a second tab.
    Thanks

    Hello
    Possible: yes
    Recommended: no
    This can certainly be done and Discoverer will not prevent you from having reports that use different business areas as you describe.
    However, for management and security purposes it does not make for ease of use. As you know a user has the ability to share a workbook with another user. If they do this then ALL reports within that workbook are shared. If the receiving user does not have access to one or more of the business areas then some reports will run and some will not. This can be very confusing to an end user and a possible nightmare to administer.
    My recommendation would be to have a workbook per business area and not mix.
    If there is more than one business area per functional area, for example sales and returns, then so long as the users have access to both business areas then you could use a common workbook.
    Personally I would not even do this, so my strongest advice would be to have all reports in a workbook written against the same business area.
    Hope this helps
    Michael

  • Manage more than one news module in the same website

    Hi, I am wondering if it is possible to manage more than one News module in the same website and have them all display different content.
    Like a news module in the News section displaying announcements and a press section module displaying press related news f. e.

    Hello
    Possible: yes
    Recommended: no
    This can certainly be done and Discoverer will not prevent you from having reports that use different business areas as you describe.
    However, for management and security purposes it does not make for ease of use. As you know a user has the ability to share a workbook with another user. If they do this then ALL reports within that workbook are shared. If the receiving user does not have access to one or more of the business areas then some reports will run and some will not. This can be very confusing to an end user and a possible nightmare to administer.
    My recommendation would be to have a workbook per business area and not mix.
    If there is more than one business area per functional area, for example sales and returns, then so long as the users have access to both business areas then you could use a common workbook.
    Personally I would not even do this, so my strongest advice would be to have all reports in a workbook written against the same business area.
    Hope this helps
    Michael

  • More than one Row Field headings in ALV

    Hello Everyone,
             i have one requirement wher i need to give more than one row of field heading. one main heading and sub field headings. Following is structure which will  give an idea.
    Current PIR Quantities|   -> Main heading
    Qty1|Date1Qty2|Date2|   -> Sub headings
           |       |        |        |   -> report values will come here
           |       |        |        |   ->     -
    do----
    Can you please let me know how can we get this lay out in field catalogue for field headings??
    Thanks in Advance
    Siva
    Message was edited by:
            Siva Velama

    Hi Atish,
            Thanks for your reply. i dont have data in two levels for Hierarchial-sequential ALV. Data is just one row. But field headings(fieldcatalogue in alv) will have two rows. That means one row of main headings and second row with detailed fields. One main heading may have more than one subheading. ultimately we display values for Subheading fields.
    hope you have understood the requirement.
    Thanks
    Siva

  • More than one confirmation

    Dear Experts,
    Can we do  more than one confirmation for a single operation in PM order.How to do the same and in which situation we have to do this ?
    AR

    Hi Amit,
    Yes we can confirm the one operation more than one time. But it will be partially confirmed(PCNF) not as Confirmed(CNF).
    It is used generally when work is not completed fully and remaining work has to yet carried out.
    Sundar
    Edited by: Sundar Desai on Jul 20, 2009 5:41 PM

Maybe you are looking for

  • Airport Express made Linksys adapter not funtion

    So here is my problem. I have a Dell Inspiron 8200(?) with a Linksys WPC54GS adapter. I just bought the Airport Express (AE) to bridge my music to my receiver but now I cannot connect to the internet at all through my Dell. I have a Netgear router th

  • Superrip is a j

    I just try out the superrip function on a few songs and I was surprised by the audio quality which is horrible. To comfirm my doubt, I try normal ripping using the creative mediasource and the normal 28kbps ripped wma sounds even much better than tho

  • Tell me Prerequisites to Install 11i

    Tell me Prerequisites to Install 11i wth respect to Hardware and OS XP and Windows 2000proffessional

  • Set up on OS W7 64-bit

    The iCloud icon doesn't apear in the Control Panel /  Network and Internet list. So how can I set up Photostream?

  • Unable to see deployed component in webdynpro content administrator

    Hi, I created a DC under sap.com domain in one of the tracks and was able to checkin and activate that deploy that successfully, When i looked at the deployment log and activation log it says component is successfully deployed. I looked in the DTR an