How Asset number should appear in Non-asset PR

Hi,
We have a requirement about integration of PR --> PO --> FS10N.
Scenario: - We enter an Asset number in Non-asset PR (should not be Account assignment category 'A') in any column like any text field etc. After that, that Asset Number should indicate in PO in any column or field.
After all, it should display in FS10N also.
How it's possible???

Hi, enter asset in text field in PR,then copy it in PO with BADI, then copy it to any field in BSEG with BTE(tcode FIBF). But I'm not shore about your question "it should display in FS10N also". You want to see it in total table, or in items?

Similar Messages

  • How GL account number should pickup internally

    Hi Friends,
    When I want to create GL account in FS00, GL account number should pickup internally instead of entering manually.
    What is the configuration step/t.code for this.
    Regards,
    Ramakrishna

    Hi,
    In t.code: OBD4, you can create account group& there itself you assign the Number Range or those groups which also controls Field Staus of GL Master Records.The account group controls:
    A) The number ranges of the accounts,
    B) The status of the fields in the company code segment of the master record.  Since a chart of accounts contains many different types of accounts, they can be bundled into different "account groups ". Usually one account group bundles accounts with the same tasks within the general ledger, e. g. cash accounts, material accounts, asset accounts, profit and loss  accounts,...
    Account Group Controls the Master records. It controls the number range of Master record and Field status group (Supress, Required, Optional and Display) also. SAP follows a Grouping principle all throughout SAP to handle the Master Records that may be in GL, AR AP.
    Regards,
    Biju K

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I get my phone number to appear in the iMessages list

    how do I get a phone number to appear in the iMessages list

    Press and hold on the body in vz msgs then press and hold on face. Press and hold on face again then choose picture and save

  • How do I remove my mobile number from appearing in...

    How do I remove my mobile number from appearing in my profile?
    Im not gonna lie this has me heated. I never entered my mobile number in my profile, and now i cant remove it.... this is complete crap. i need help or i will just remove skype. thanks

    http://support.apple.com/kb/TS5185

  • My number appears as "restricted when I call others.  How xcan I get my number to appear to people I call?

    My number apprears as "restricted" on the peoples' phones that I call How can I get my number to appear on their phones?

    Check: Settings - Phone - Show my Caller ID = On
    If this option isn't available, you likely have a CDMA phone, and you will need to contact your cellular provider.

  • How to make the contact picture should appear on the upper right corner with thumb picture when some one calling instead showing the entire screen

    How to make the contact picture should appear on the upper right corner with thumb picture when some one calling instead showing the entire screen

    See deggie's response in this post... https://discussions.apple.com/message/8531821#8531821

  • How can I make the number table appear??

    Hi all, I am having problems with the new version 5.5, I receive call all the time asking me to press a number to accept a call or product but the number box does not appear as an opption in the call. I did not nhave that problem with the oldest version because the box number always appear whe I got a call. Please help to solve thi issue, I do not want to downgrade to ealier version.

    moncar wrote:
    Hi all, I am having problems with the new version 5.5, I receive call all the time asking me to press a number to accept a call or product but the number box does not appear as an opption in the call. I did not nhave that problem with the oldest version because the box number always appear whe I got a call. Please help to solve thi issue, I do not want to downgrade to ealier version.
    Using the Call Window Menu, please do: Call -> Show Dialpad
    About Me You can also use a IP Camera as your camera for Skype video Example Instructions

  • How do I auto-calculate the number of appearances of a particular value in multiple fields?

    Hi folks!  Some assistance with this matter would be greatly appreciated.
    I have a form where I need to have calculated the number of appearances of certain values in a dropdown list.  The total number of each would then be calculated and displayed in separate fields.
    Here's the exact situation:
    I have 22 dropdown fields labeled Code1 through Code22.  The export value for each of these can be any one of 21 different values: 1; 2a; 2b; 3; 4; 5; 6a; 6b; 6c; 6d; 6e; 7; 8; 9a; 9b; 10a; 10b; 10c; 10d; 10e or 10f.
    The idea then is to have the total number of each value appear in a separate field.
    E.g., the form user makes a "10a" selection in any three of the Code1 through Code22 fields; the number "3" will then appear in a separate auto-calculated field reserved for total number of "10a" values.  If the user makes two "9b" selections, the number "2" would appear in a separate field reserved to show the total number of "9b" values.
    I hope that's clear.
    Thank you, all, for your help!

    I would use a doc-level function to do it, and provide the value to look for as a parameter. So the function will look like this:
    function countValues(s) {
        var total = 0;
        for (var i=1; i<=22; i++) {
            var f = this.getField("Code"+i);
            if (f.value==s)
                total++;
        return total;
    Then as the custom calculation script of the text fields you enter something like this:
    event.value = countValues("10a");
    Or like this:
    event.value = countValues("9b");
    etc.

  • How to display records into a non table base block..

    Hi,
    Can anybody help me how to display records into a non table base block....
    Find below is my coding but it only display the last record in the first line
    in the block.
    PROCEDURE CREATE_CARTON_QUESTION IS
    CURSOR car_c IS
    select /*+ rule */ question_id, question_description
    from WHOP.QADB_QUESTIONS
    where question_category = 'Carton'
    and question_active_flag = 'Y';
    v_found VARCHAR2(10);
    v_status boolean;
    v_error      varchar2(150);
    v_count number;
    car_r car_c%rowtype;
    begin
    begin
    select count(*) into v_count
    from WHOP.QADB_QUESTIONS
    where question_category = 'Carton'
    and question_active_flag = 'Y';
         exception
         when no_data_found then
         v_count := 0;
    end;
    if v_count > 0 then
    for car_r in car_c loop
    ---populating carton questions
    :la_carton.carton_question_id     := car_r.question_id;
    :la_carton.carton_question_answer     := 'N';
    :la_carton.carton_error_details     := null;
    :la_carton.attribute2          := car_r.question_description;
    end loop;
    end if;
    end;
    Thanks in advance.
    Regards,
    Jun

    Hi SNatapov,
    Thanks for you reply but still I get this error...
    FRM-40737 Illegal restricted procedure GO_BLOCK in WHEN-VALIDATE-ITEM trigger.
    Please note that I call that program unit in the last field of my control block inside when-validate-item trigger the questions should be display in la_carton block which is my non-base table block.
    Find below is the code....
    begin
    go_block('la_carton');
    first_record;
    for car_r in car_c loop
    ---populating carton questions
    :la_carton.carton_question_id := car_r.question_id;
    :la_carton.carton_question_answer := 'N';
    :la_carton.carton_error_details := null;
    :la_carton.attribute2 := car_r.question_description;
    next_record;
    end loop;
    end;
    Hoping you can help me this problem...
    Thanks in advance.
    Regards,
    Jun

  • Free goods intercompany but appear under non billed shipments list

    Hi Expert,
    I've created an interco PO, GI and DO for a free good item. By right it shouldn't appear under non billed shipment list as it is FOC but it appears. When we try to create invoice, system doesn't allow says, it is not relevant for billing.
    i'm not sure why it appears under non billed shipments list in the first place. by right it should stop at DO. How to solve this?
    Thanks,

    Hi Expert,
    I've created an interco PO, GI and DO for a free good item. By right it shouldn't appear under non billed shipment list as it is FOC but it appears. When we try to create invoice, system doesn't allow says, it is not relevant for billing.
    i'm not sure why it appears under non billed shipments list in the first place. by right it should stop at DO. How to solve this?
    Thanks,

  • RH 7: In a CHM, how can I open an independent, non-modal window?

    Hi all,
    Using RH7.
    From within a CHM page, how can I open an independent, non-modal window?
    From within a topic I want to display a large picture by clicking an icon. The picture should appear in an independent, non-modal window that the reader can grab on its caption bar and so move the window  around. Thus, the reader can move the picture window to one side of the monitor, for example, and then use it as a reference, while continuing to read the topic on the other side of the monitor.
    Is this possible in RH7? If so, which RH feature would I use to do this?
    TIA
       avi

    Hi there
    I'm guessing you want to simply open a new browser window without any browser controls, right? In this case, you will need to use JavaScript to do it.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Payments made to vendor against the PO should appear in PO

    Hi
    Thanks for the reply
    is there is any possibliy so that i can see the vendor down payment and the other progreesive payments made to vendor. Also i want to link the payments made to vendor i.e what all payments is made to vendor aganist the PO should appear in PO in the same fashion as downpayment appears.
    regards

    Thanksfor reply
    But if i am not doing the progressive payment thru downpayments but thru other trancation then how this will be shown.Another point of concern is that if i am doing the  payments F-53 then will i can get the downpayment history from for a particular PO .This is required as finanace guy wants to know how much advance and progressive payment i have made to my vendor against particular PO .
    Need your help and suggestion
    regards

  • PR Line Item Number should be Same for PO Line Item Numebr

    Hi Gurus,
    I have a rare Requiremenet. I will convert Only one PR to PO(So It is one to one) PR Item Number should Be Equal to PO Item Number.. can anybody suggest me is there any way to achive this.
    Explanation:
    Actually we will create third party Sale order and with A BAPI we  create PO in background.
    I will change Sales Order qty(Decrease directly or increse with schedule lines) so new PR items will be generated or Existing may be deleted. now i want my PR Item number should be equal to PO Item Number.
    In BAPI we have a provision to provide PR number still system is taking in sequential intervel of 10,20,30....
    How to overide this...
    EX:
                     PR               PO
    ItemNO      10              10
    ItemNO      30              30
    Thanks
    Pradeep

    Hi Monika,
    Thanks a lot my issue got resolved. annd i have another question regarding BAPI_PO_Change.
    Actually i am passing Price from PR to PO and i am making no_price_from_po while chenging PO and i am passing PRICE from SO to PO. Below scenario will explain My requirement.
    In third party we are creating Automatic PO from SO. we have developed one ZTrasaction for SO Approval in two stages, in second level Approval we are converting PR to PO.
    while creating we are able to pass Price value from SO to PO From Condition in the Pricing procedure.
    while changing we have 3 scenarios
    1.Changing Existing PR Item quantity
    2. Adding one more schedule line to the Existing SO so it will create one more PR Item
    3. we are adding one more Line Item in the SO in this case also one more PR Item will be generated
    we are able to convert each PR Item will be one PO line Item 
    But while changing we will have PO still we don't want to copy the Price from Previous Document.
    we have activated no_price_from_PO in the BAPI but still system is taking from previous Document.
    Pl suggest me if there anyway to over come this issue...
    Thanks
    -Pradeep

  • Can't change the phone number that appears on the front screen

    My phone used to belong to my mom and I had it unlocked so I could use it overseas.  However, her phone number still shows up on the front screen even though I've had 2 different sim cards in it, each with their own number.  How do I change it to my current number?
    Cindy

    Hello chilkootcindy and welcome to the BlackBerry® Support Community Forums.
    Sorry to hear you are having an issue with your phone number display on your BlackBerry® Tour™ 9630 smartphone.
    When your mother used this BlackBerry did she use a SIM card or not?
    This article KB01889 "My Number - Unknown" appears instead of the user's number on the BlackBerry smartphone" will show you possible causes the incorrect phone number doesn't appear on the BlackBerry.
    Hope this helps!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for