Assignment field value different from sort key

Dear Forum,
I notice in the customer line item, the assignment field value different from sort key.
sort key for customer i maintain as doc number + fiscal year, but i notice some line item's assignment is not this information.
for example, billing posting. some customer line item assignment is document + fiscal year but some are delivery number in assignment field. no changes made in log file.
may i know why?
thanks

dear,
as i did mention, customer master sort key no change and in the same customer line item, assignment field which carry delivery number also no change log.
may i know where to see the subsitution? i do not think that is due to substitution.
thanks

Similar Messages

  • Response status has number of values different from request

    Hi,
    I'm getting the following message when I try to refresh a worksheet from a workbook.
    "Response status has number of values different from request"
    Has anyone encountered this message? what does this mean?
    I'm using SmartView 11.1.2.1.103 on HFM 11.1.2.1.103 environment.
    Thanks in advance,
    Ram

    Try removing external calculations (/$C$1) and see if the error message changes.

  • FI Assignment field with settlement from PS

    When I'm doing a setllement from me WBS to the AUC I'm getting in the assignment field the WBS element number. In the G/L account I have filled in a sort key to get there the asset(sub) number.
    It looks if the assignment field is already filled in from the settlement and when there is text in it will ignore the sort code in the G/L account.
    Is there a simple solution for to get asset(sub) number in it or do I have to create a Substitution for this?

    hi
    when u are seeing gl line item .onse u enterd inthat screen change layout screen tab will be ther u plz see the  IO filed and select that . to next saide it will give urs IO no.also

  • Can you assign field values as the file name

    When filling fillable pdf forms I would like to assign the name of the file (automate a Save As) to field values. 

    Place a regular button on the form and write the below code in the click event of button:
    app.execMenuItem("SaveAs");
    Thanks,
    Vipin

  • KMANU field value download from R/3 to CRM for price Condition type

    Hi
    We done changes for KMANU field in R/3 - price condition type and that changes have to download from r/3 to CRM. I was tried below object adapters to update field value (R/3 u2013 table name: T685A - KMANU) from R/3 to CRM (Table :PRCC_COND_CT u2013 KMANU). Could you any one tell me how to resolve it. Its urgent plz
    u2022         DNL_CUST_CNDALL
    u2022         DNL_CUST_CND
    u2022         DNL_CUST_PRC
    u2022         DNL_CUST_FGD
    u2022         DNL_CUST_PRICE
    Appreciate your help...........
    Regards
    Sri

    Hello Sri,
    Ideally object DNL_CUST_CNDALL should get all changes done to customizing setting in R/3 to CRM.
    Did you check the logs in txn CND_MAP_LOG_DISPLAY in CRM?
    You can get some hints there, if any error has occured during the download.
    Best Regards,
    Shanthala Kudva.

  • How can assign the value returned from javascript to Hidden item

    Hi All,
    I have created a report with button in one column adding following code to SQL select statement like
    SELECT USER_RQST_ID, USER_RQST_DESC, RQST_DATE, STATUS, USER_ID, CNTRY_ID, KPI_LIST, YEAR_LIST, QTR_LIST, MONTH_LIST,
    PROD_LIST, FULL_PERIOD_FLG, GEN_DATE, '<input type=button value="view_list" onclick="javascript:doSubmit('||USER_RQST_ID||');">' button FROM KPI_USER_RQST;
    Then i have implemet doSubmit() function in Javascript like
    function doSubmit(req_id)
    html_GetElement('HIDDEN_ITEM')= req_id.value;
    Here HIDDEN_ITEM is the name of the item, I want to use that HIDDEN_ITEM value in PL/SQL block like...
    BEGIN
    INSERT INTO SAMPLE(KEY) VALUES(:HIDDEN_ITEM);
    END;
    But it is not working, Please help me anybody know the solution How to assign an item in javascript block function.
    Thanks,
    Neel

    Hello,
    doSubmit() is one of the built in javascript functions in apex and it's a bad idea to override it unless you know exactly what you are doing, and even then is a generally bad idea.
    change your function to this
    function mySubmit(pValue){
    $x('HIDDEN_ITEM').value = pValue;
    doSubmit();
    then your onclick will look like this notice the lack of the javascript: and the three ''' quotes to get the proper quotations for your value.
    onclick="mySubmit('''||USER_RQST_ID||''')"
    And there you go
    Carl

  • Assigning variable values in the virtual key figures Badi

    Hi,
    I'm currently using the virtual chars and key figures RSR_OLAP_BADI to calculate days late as 0NETDUEDATE - sy-datum. This works fine, but the query actually uses variable 0P_KEYDT to determine the key date (set in restricted key figures so not directly).
    I want to use this key date variable value rather than the system date to calculate Days Late in the CALCULATE method of the Badi. In the old user exits I could have retrieved the value from internal table i_t_var_range in the variables user exit ZXRSRU01 and stored it globally.
    Does anyone know how to get a query variable value within the RSR_OLAP_BADI Badi? I've tried using BAPI_REPPROV_GETVARIABLES but don't know how to pick up the session id to make it work. Is there a BADI equivalent of EXIT_SAPLRRS0_001?
    I'm sure one of you out there has the answer!
    Thanks,
    Stuart

    Hi József
    Yes I have, I think using SAP's white paper on virtual characteristics and key figures.
    My only outstanding question would be: is there a replacement BADI for the variables user exit and if not why not, since BADIs are supposed to be the preferred way now?

  • Field value retrieve from sql query

    Hi,
    Is there any way to code sql query into form field in rtf template ?.
    I have converted an oracle report to BI publisher (e-business suite R12) but I have a form field that contain a sql query that retrieve a value from database. I don't know how to code sql query in form field in rtf template.
    Thanks for help,

    http://winrichman.blogspot.com/search/label/cross%20tab
    http://winrichman.blogspot.com/search/label/Cross-tab
    http://winrichman.blogspot.com/search/label/Dynamic%20column

  • Show Field Values if other Field Value Different

    Hey,
    I am using TOAD for Oracle 10.5. There is a select statement that is not populating requested results.
    Data:
    JOB                    SAL
    PRESIDENT             5000
    MANAGER               2850
    MANAGER               2450
    MANAGER               2975
    ANALYST               3000
    ANALYST               3000
    CLERK                 800
    CLERK                 1100
    CLERK                 950
    CLERK                 1300
    SALESMAN             1600
    SALESMAN             1250
    SALESMAN             1250
    SALESMAN             1500Select Statement
    SELECT JOB, SAL
       FROM  EMP
       WHERE JOB IN (
                   SELECT JOB
                    FROM EMP
                    GROUP BY JOB
                    HAVING COUNT(*) > 1)
                    ORDER BY JOB;Once select statement executed only JOB = PRESIDENT record is removed, not results needed.
    JOB                    SAL
    MANAGER               2850
    MANAGER               2450
    MANAGER               2975
    ANALYST               3000
    ANALYST               3000
    CLERK                 800
    CLERK                 1100
    CLERK                 950
    CLERK                 1300
    SALESMAN             1600
    SALESMAN             1250
    SALESMAN             1250
    SALESMAN             1500Correct Data, JOB values PRESIDENT and ANALYST records should not appear.
    PRESIDENT does not appear but the ANALYST value shows because the statement
    is producing duplicate JOB values. I would like to show records only if the JOB values have
    different SAL values, not duplicate JOB values. Only if the SAL value is different based on JOB.
    JOB                    SAL
    MANAGER               2850
    MANAGER               2450
    MANAGER               2975
    CLERK                 800
    CLERK                 1100
    CLERK                 950
    CLERK                 1300
    SALESMAN             1600
    SALESMAN             1250
    SALESMAN             1250
    SALESMAN             1500I hope someone can help me out on this one.

    Hi,
    COUNT (*) tells how many rows are in a group. It has nothing to do with any values in any columns.
    I think you want COUNT (DISTINCT sal) in this case. It will tell you how many different values of sal are in the group.
    SELECT JOB, SAL
       FROM  EMP
       WHERE JOB IN (
                    SELECT JOB
                    FROM EMP
                    GROUP BY JOB
                    HAVING COUNT (DISTINCT sal) > 1          -- Changed
       ORDER BY JOB;Edited by: Frank Kulash on Dec 9, 2010 10:34 AM
    Added example.

  • EBS search string updating space on assignment field value

    Hi Experts,
    I am useing serch string to fatch assignment No.
    But after uploading bank statment assignment no. getting updated with space in it.
    Below line item i m trying to upload
    :61:1410311031C0360266,00NCSHNONREF          //NONREF    
    :86:CASH MGT 1430400013622                                      
    CASH, TEST, Pickup Loc/BANGLORE, CAS                      
    Yr /652254,Dep/30/10/201                                  
    and received attached output.
    please help to find how this space updated in assignment No.

    Hello,
    You have not mentioned, which interpretation algorithm you are using. Nevertheless, please review the following information:
    Interpretation algorithm 001 tries to find an open item via document number (BELNR) or reference number (XBLNR). If it doesn't find an open item the system tries to clear via amount. It uses the information stored on the note to payee, the search string is used to manipulate this information. Please check, if in your case  the algorithm 001 found an open item via XBLNR, and it is
    choosing the wrong document.
    All information from the note to payee is inserted in table FEBRE. If the string required is there, your mapping must include it to remove it. If you don't want to change your search string, it is recommended using algorithm 020. It only searches for document number (BELNR).
    Further, the algorithm 015 (ZUONR) works only if the number is available in the FEBEP-CHECT field or in the first line of note to payee.
    I hope this information helps.
    Best regards,
    Suresh Jayanthi.

  • Qty field  value diff from SAP R/3

    hi friends,
        i have replicate one table datasource  from  SAP to BW.................
    in datasouce i m using RFMNG quantity field and in BW mapping it to 0DEL_QTY.......
    both having datatype lenth 17 and decimal 3.................
    data loading is done succesfully..................
    all fields is coming right in BW accepting Quantity field.........like
    R/3.........................B/W
    Qty                         Qty
    1                             5.517,000
    140                         772.380,00
    pls give me some solution.......................

    just chk in the extractor in rsa3. what data you are getting. if you are not getting exact data at rsa3 then its extractor problem
    Ramesh

  • F-53  Doc. No. Fields showing Different from Different User ID

    Dear Experts,
    There have some field related problem in f-53 t code. When I Login from my ID in f-53, selecting doc. no. radio button at Aditional Selection  and enter the it is showing 27 fields, but when I login from another user id then it is showing 20 fields.
    Anybody can tell me where is the problem? There have any configuration on that?
    Sourav

    Dear:
                Please execute SU53 in both users after when you have executed F-53 and see missing line items. There seems a missing authorization for some documents. Please also check the input criteria given by you in F-53 like company code and vendor.
    Regards
    Edited by: Atif Farooq on Jun 4, 2011 8:00 AM

  • Blanket PO/Service PO-- NO Goods recipient field value populating from SRM

    Hi,
    When i post either Service PO (item type D) or blanket PO (Item type B) .e Goods recipient field not being populated  in ECC.
    Where as if its the standard PO, then i am getting this Recipient field populated with requisitioner number.
    are there any SAP notes for this issue?
    Let meknow if you have any inputs on this..
    thanks
    Krish

    Hi. Limit and service POs have always worked a bit different with fields and so on, for example you can not change the plant on a limit PO.
    I would ask SAP, and if they tell you there is no solution then just use the BBP_CREATE_PO_BACK BADI on SRM 4 or BBP_CREATE_BE_PO_NEW on SRM 5 to get the result you want.
    Regards,
    Dave.

  • Assigning field value to Field symbol

    Dear Experts,
    I have one program which works fine in non unicode system.. The program contains Assign statement with offset and length..
    This program dumps in Unicode system due to this instruction.. The field which i want to assign to field symbol is type P field..
    Is there any ways to avoid the dump?
    Thank you in Advance..

    Hi,
    isn't it an ABAP question in an EP forum?
    Romano

  • Code problem - field value derived from drop down values

    I have a drop down with about 6 choices. The user can enter their own amount for "quantity" in the drop down if they don't want to use one of the 6 choices. The code below I've attached to another field on another page of the form. (1) I can enter my own value it displays fine. (2) If I pick the #6 option on the drop down, it displays "3000" as required. The other 5 choices however, display 1, 2, 3, 4, or 5 instead of the actual value - "100", "500" etc....
    Seems to work for one of the 6 choices, but none of the rest.....
    if (form1.orderPage1.stdLayout.quantity.rawValue == "1") {
    this.rawValue = "1000";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "2") {
    this.rawValue = "500";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "3") {
    this.rawValue = "250";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "4") {
    this.rawValue = "2000";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "5") {
    this.rawValue = "2500";
    if (form1.orderPage1.stdLayout.quantity.rawValue == "6") {
    this.rawValue = "3000";
    }else{
    this.rawValue = form1.orderPage1.stdLayout.quantity.rawValue;
    Need to learn more about "else" in Adobe JS....
    As always, any help is greatly appreciated!
    Mike Foster

    Have you read your code? If your quantity value is between "1" and "5" the result value is being set correctly; then for the test for a value of "6", since your quantity value is not "6" you setting the value to the quantity value. Modify your original code to print some flow information to the JavaScirpt console and you see what is happening, be sure to open Acrobat to see the results in the JavaScript console:
    /* original code */
    console.show();
    console.clear();
    console.println("Original");
    if (quantity.rawValue == "1") {
    console.println(1);
    this.rawValue = 1000;
    if (quantity.rawValue == "2") {
    console.println(2);
    this.rawValue = 500;
    if (quantity.rawValue == "3") {
    console.println(3);
    this.rawValue = 250;
    if (quantity.rawValue == "4") {
    console.println(4);
    this.rawValue = 2000;
    if (quantity.rawValue == "5") {
    console.println(5);
    this.rawValue = 2500;
    if (quantity.rawValue == "6") {
    console.println(6);
    this.rawValue = 3000;
    } else { // since quantity != "6" do this
    console.println("Other");
    this.rawValue = quantity.rawValue;
    There are many ways to solve your problem. First you can nest the "if" statements, so the "else" clause is applies to all the previous "if" statements:
    /* using nested if statements */
    console.show();
    console.clear();
    console.println("Nested if then else");
    if (quantity.rawValue == "1") {
    console.println("1");
    this.rawValue = 1000;
    } else {
    if (quantity.rawValue == "2") {
    console.println("2");
    this.rawValue = 500;
    } else {
    if (quantity.rawValue == "3") {
    console.println("3");
    this.rawValue = 250;
    else {
    if (quantity.rawValue == "4") {
    console.println("4");
    this.rawValue = 2000;
    } else {
    if (quantity.rawValue == "5") {
    console.println("5");
    this.rawValue = 2500;
    } else {
    if (quantity.rawValue == "6") {
    console.println("6");
    this.rawValue = 3000;
    } else { // if none of the above
    console.println("Other");
    this.rawValue = quantity.rawValue;
    Next you could not use an else statement at all, just do a final test for any values outside the range of "1" - "6".
    /* quantity not in range */
    console.show();
    console.clear();
    console.println("if quantity < 1 or > 6");
    this.rawValue = null; // empty result field
    if (quantity.rawValue == "1") {
    console.println("1");
    this.rawValue = 1000;
    if (quantity.rawValue == "2") {
    console.println("2");
    this.rawValue = 500;
    if (quantity.rawValue == "3") {
    console.println("3");
    this.rawValue = 250;
    if (quantity.rawValue == "4") {
    console.println("4");
    this.rawValue = 2000;
    if (quantity.rawValue == "5") {
    console.println("5");
    this.rawValue = 2500;
    if (quantity.rawValue == "6") {
    console.println("6");
    this.rawValue = 3000;
    if (quantity.rawValue < 1| quantity.rawValue > 6) { // if quantity value not between 1 and 6
    console.println("Other");
    this.rawValue = quantity.rawValue
    And finally, you can use the "switch" statement to select an action based on the value of the quantity value and ignore the rest of the test. If no test has been selected, then perform the default action.
    /* using switch on quantity value statement */
    console.show();
    console.clear();
    switch (quantity.rawValue) {
    case "1":
    console.println("1");
    this.rawValue = 1000;
    break;
    case "2":
    console.println("2");
    this.rawValue = 500;
    break;
    case "3":
    console.println("3");
    this.rawValue = 250;
    break;
    case "4":
    console.println("4");
    this.rawValue = 2000;
    break;
    case "5":
    console.println("5");
    this.rawValue = 2500;
    break;
    case "6":
    console.println("6");
    this.rawValue = 3000;
    break;
    default: // all other values
    console.println("Other");
    this.rawValue = quantity.rawValue
    break;
    } // end switch quantity

Maybe you are looking for