Customized feilds in Change PO

Hi All,
We are in SRM 4.0 and using extended classic scenario.
We have defined a customized field in PO Header - Basic data tab. This field will get updated only for the Pos created from shopping cart with catalog items. Means there is no manual input required for thsi PO. It will get automatically generated when the shopping cart has been approved.
The value for that field will be populated from an external system while we click on the "Order and Send Immediately" button in output tab. This will be triggered by the BBP_DOC_CHECK_BADI.
Recently we changed the number of characters of that field from 3 to 4 through the structure INCL_EEW_PD_HEADER_CSF_PO and also in the smart form in synch with that external system.
Now when a Po has been created from catalog, there will be two versions (actual and historic).
It is displaying the 4 digit value only in the Historic version and also in the related print preview. In the active version it is still showing the 3 digit value (first 3 digit). Also in table BBP_PDHSC it is showing the 4 digit value only for Historic version.
It seems the changes we did is only triggered during the initial creation of Po. When there are any changes (automatic or manual) occured then it is not taking the changes.
Is there any other place, do we need to make the changes so that it will get reflected in all the versions of the Po.
Please help me.
Thanks.

Robin,
Thanks for your reply.
Actually we made the changes to the field which got udpated in all the structure which includes INCL_EEW_PD_HEADER_CSF and INCL_EEW_PD_HEADER_CSF_PO.
Also there should not be any difference between Hisotric version and active version when a Po has initially created. But I could see that this field is showing as the difference while comparing those versions.
Thanks.

Similar Messages

  • Dunning letters generation when customer address is changed

    Hi,
    For some customers no dunning letters were generated. After investigation inactive bill-to site should be activated as invoices were assigned to this bill-to.
    How is possible to make that dunning letters generated when customer address is changed and customer can receive letters to new address for all its invoices?
    Any help will be appreciated!
    BR, JC

    hi
    I have created one sales order example X and i created the another sales order Y with respect to X
    Is this X sales document is closed????
    And I also changed the address of the ship to party in sales document Y.
    Did you assgined another SP to sales Document Y
    If you have chnaged the address for SP in customer master then it will reflect to both
    Also it will not chnage the ADRESS NO in VBPA table, but it will update the address

  • Every time I sync my iphone 4 with itunes my ring custom ring tones change.  I have 7 custom ring tones in itunes.  One time it will load 1 custom ring tone the next it may be 3 then the next it is one again.  The last time it gave me 4 of the 7.

    Every time I sync my iPhone 4 with iTunes the number of my custom ring tones change.  I have 7 custom ring tones listed.   The first time it will load 1 of the ring tones and the next time it will load 3,  The next time it will be back to 1.  If I have assigned one of the custom ring tones and it does not get loaded it goes back to the ring tone that came with the phone.  The last time itunes gave me 4 of the 7 so I have not tried to sync it again.  I am using iTunes 10 (10.4.10), and windows 7.
    Has anyone else had this problem??
    Any ideas to what I need to do??

    Have you ever had all 7 of them synced before? Are these ringtones you made yourself? Is there a chance they could exceed 30 seconds in length? Is there a chance you have moved the original file location on the computer? May need the answers to a couple more questions to try and determine an answer.

  • How can you create a customized page to change user password?

    Hello to all,
    I would like to create a customized page for a user to change their password. We are using Portal version 3.0.9 on Windows NT/2000. Currently there is a page in portal where a user can change their password.
    I tried linking to that page by copying the shortcut url and adding it as an html portlet. The problem is that we want to direct the users to a
    page of our choosing when they click on the "cancel" and "ok" buttons. I read in the forums that there is a selfreg.cmd script.
    I also read that there is some code that has been available.
    Has anyone implemented a customized user password change page? Do you know of any links that might have steps to follow or
    more informatioin?
    Thanks in advance,
    Lindsay

    Hi,
    I was able to customize the change password screen through a procedure. This is what I did:
    * Created a procedure under the Portal30_sso schema:
    CREATE OR REPLACE procedure reports_chage_password
    site2pstoretoken in varchar2 default null
    ,p_username in varchar2 default null
    ,p_error_code in varchar2 default null
    ,p_submit_url in varchar2 default null
    ,p_done_url in varchar2 default null
    ,p_pwd_is_exp in varchar2 default null
    ,p_password in varchar2 default null
    is
    begin
    htp.htmlopen;
    htp.headopen;
    htp.title ('<TITLE of Page>');
    htp.headclose;
    htp.bodyopen;
    htp.p('<table width="100%"><tr><td colspan=2 align=center><IMG SRC=<directory of image if you want>"><br><hr><br></td></tr>');
    htp.p('<tr><td colspan=2 align=center>');
    htp.p('<font COLOR="#000080" face="Times New Roman" size=+2><b>');
    htp.header(nsize => 1 ,cheader => 'Change Password');
    htp.p('</b></font>');
    htp.p('</td></tr><tr><td align=right>');
    htp.formopen(curl => p_submit_url );
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Username:');
    htp.p('</td><td alight=left><font color="#000080" face="Times New Roman" size=+1>');
    htp.p(p_username);
    htp.p('</font>');
    htp.p('</td></tr>');
    htp.formHidden(cname => 'p_username',cvalue => p_username);
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Old Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_old_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Confirm New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password_confirm',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.p('<tr><td rowsapn=2>');
    htp.formHidden(cname => 'p_done_url',cvalue => '<the url that you want users to go to when they are done>');
    htp.formHidden(cname => 'p_pwd_is_exp',cvalue => p_pwd_is_exp);
    htp.formHidden(cname => 'p_password',cvalue => p_password);
    htp.formHidden(cname => 'site2pstoretoken',cvalue => site2pstoretoken);
    htp.p('</td></tr>');
    htp.p('<tr><td align=right>');
    htp.formSubmit(cname => 'p_action',cvalue => 'OK');
    htp.p('</td><td align=left>');
    htp.formSubmit(cname => 'p_action',cvalue => 'CANCEL');
    htp.p('</td></tr></table>');
    if p_error_code is not null then
    htp.br;
    htp.fontOpen(ccolor=> 'red', csize=> 4);
    if p_error_code = 'auth_fail_err' then
    htp.p('Old password is incorrect');
    elsif p_error_code = 'pwd_rule_err' then
    htp.p('The new password does not follow '||
    'the password policies.');
    htp.br;
    htp.p('Verify with your System Administrator '||
    'about the Password Policies');
    elsif p_error_code = 'confirm_pwd_fail_txt' then
    htp.p('Confirmation for new passord is not '||
    'the same as the New Passowrd');
    elsif p_error_code = 'null_new_pwd_err' then
    htp.p('New password cannot be null');
    elsif p_error_code = 'null_old_pwd_err' then
    htp.p('Old password cannot be null');
    else
    htp.p ('Error: ' || p_error_code );
    end if;
    htp.fontClose;
    end if;
    end;
    * Grant this procedure to PUBLIC
    * Update the portal30_sso.wwsso_ls_configuration_info_$:
    UPDATE portal30_sso.wwsso_ls_configuration_info_$
    SET LOGIN URL = '<YOUR CUSTOM LOGIN URL OR THE WORD UNUSED IF YOU DON'T HAVE ONE> http://<MACHINE_NAME>.<DOMAIN>/pls/portal30_sso/portal30_sso.<NAME OF PROCEDURE>';
    * After you update the table, go to your account information link, and click on the change password link.
    * Then copy the url that you see in your address line
    * And if you want a change password link at the top of your portal page, just go to EDIT on your page, then edit the banner defaults. Then in the links add the Lable and the URL. The URL would be the URL you copied from the previous step.
    Hope this helps.
    I've customized the login page too if you would like some sample code for that. Let me know.
    Martin

  • Cr XIR1 to create a custom function to change the timestamp of a field

    Post Author: palm
    CA Forum: Crystal Reports
    Hi,
    I am trying to create a custom function to change the timezone of a field in the report depending on the timezone selected by the user in the prompt
    I wrote a SQL Expression to do this , but i ended up creating a bunch of expressions for each time zone ,
    So i am thinking of custom fuction some thing like
    TimeZoneConvertor:
    Fuction(TimeStampField ,  Timezone)
    Returns: Timestamp field with newtimezone as selected by user
    Hope you get this and please give me some kind of ideas to acheive this
    Thanks in Advance!!!!!!!!

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • Cretit control area field - Customer master - mass change

    Hi Gurus:
    I want to use the customer master mass change program (T.code XD99) to assign a default credit control area for all the customers. However when i try to save the mass changes it does not update the credit control area, and shows an information message "0000500004 : No batch input data for screen SAPMF02D 0900" . Did anybody come across such situation ? and how to resolve this ?
    Thanks in advance.

    Refer to note 552066, The system is attempting to maintain some ETM data that may not be relevant. May be this applies to you.
    Symptom
    During the start of the mass maintenance with Transaction XD99, the system generates batch input sessions for the import of the data in the background. In the process the system also tries to supply fields RF02D-D0900 and RF02D-D0910 on screen SAPMF02D 101 with data, although these fields do not exist on the screen. Then the batch input processing terminates.
    Solution
    The correction of the source code for the generation of the batch input data is described in the corresponding correction instruction. A solution that allows also the mass maintenance of ETM data with Transaction XD99 is in preparation.

  • Custom feilds in Intrastat report

    Hi,
    We have got a requirement to extract the details from the standard & custom feilds to the Intrastat report.  Understand that there are some User Exits for this purpose. Would appreciate if any one throws some input on this.
    Regards
    Sudhakar

    Iam very much aware of the fact that this is a statutory report.  My client is using the Fiscal Rep to get the invoice from the respective country (both inout & output tax) for which their details has to be obtained in the report. The reason is they want to reconcile the extracted report and then file with same with the tax authorities. As we are maintaining the Fiscal Rep in a custom table, we need to pull that data using some User Exit.
    Hope this clarifies.
    Regards
    Sudhakar

  • Adding Custom Fields for Change Request in EHS

    Hi,
    I need to add custom fields in Change request screen, where I am not able to identify for BO and node to do same.
    Its Configuration name  /MOC/F_ISS_ROOT_OBJECT_INFO.
    I tried with /IAM/ISSUE and /IAM/ACTIVITY BO.. but it is not working.
    Not able to identify the correct table for adding fields.Pls help me on the same.
    Regards,
    Reny Richard

    Reny,
    Why don't you check for the ST05, so that you can grasp some of the table names. Should be useful to you
    http://scn.sap.com/community/abap/testing-and-troubleshooting/blog/2007/09/05/the-sql-trace-st05-quick-and-easy
    BR,
    RAM.

  • Custom dates for change request

    Hi all,
    we wanted to have a possibility where we can maintain several (to be defined and must be easily changeable) time estimates on change requests, for example:
    u2022     Time estimated for development
    u2022     Time spend for development
    u2022     Estimated time left for development
    I have tried to create a custom date. I got confused with the date rules and the entire procedure. I was not sure whether the procedure is correct or not.
    Kindly advice on the exact procedure for creating custom dates for change request.
    Regards,
    Subhashini.

    Hi all,
    could anyone guide on this issue pls.
    Regards,
    Subhashini.

  • How to get data for custom feilds for standard datasource

    i have extracted CRM standard datasource 0CRM_OPPT_I.
    In RSA6 i slected feilds which i want to trnasfer to B Iand i also added some custom feilds.
    and then i went to RSA5 and i activated datasource.then i went to RSA3and  i extracted.
    In rSA3 selection screen all the custom feilds are selcted.
    after extraction if i go to LIST,only some of the custom feilds data is displaying remaining feilds displayed as blank data
    please tel me how to get data
    Thanks in advance
    HP

    Hi Hari,
    Sorry for late reply.
    Once you have done the proper mapping by using the transaction BWA1
    you need to write the BADI code which can be accesible from the following path:
    Go to transaction SPRO
    SAP Implementation guide ->Integration with other mySAP components ->Data transfer to the Business Information Warehouse->
    Settings for the application specific datasources (CRM) ->
    Settings for BW adapter->Execute Badi :BW adapter :Enhancement of datasources in messaging flow.
    Select you the datasource enhancement implementation it will open the BADI Implementation..
    go To interface tab and double click on the method..it takes you to the ABAP screen where you need to write the logic to populate the custom fields..
    Please feel free to mail back if you have any quries.
    All the Best..
    Thanks
    SK

  • Custom Save / Apply Changes / Delete buttons...

    Hi All,
    I wanted to make a custom save / apply changes and delete buttons in my forms. Therefore I wrote some JavaScript functions to call these actions as shown below;
    function saveRecord(pListPage){
    if (P&APP_PAGE_ID._CALLACTIONTYPE!= 'CANCEL') {
    if (P&APP_PAGE_ID._CALLACTIONTYPE!= 'DELETE'){
    doSubmit(P&APP_PAGE_ID._CALLACTIONTYPE);
    lvurl = 'f?p=&APP_ID.:' + pListPage+ ':&APP_SESSION.::NO:' + pListPage+ ':P' + pListPage+ '_CALLTYPE' + ',P' + pListPage+ '_CALLFROM,P' + pListPage+ '_SELECTEDRECORD,' + 'P' + pListPage+ '_MANDATORYFILTER,'+ 'P' + pListPage+ '_MANDATORYFILTERVALUE,P' + pListPage+ '_REFERENCEDBY' + ':' + $v(P&APP_PAGE_ID._CALLTYPE) + ',' + $v(P&APP_PAGE_ID._CALLFROM) + ',' + $v(P&APP_PAGE_ID._SELECTEDRECORD) + ',' + $v(P&APP_PAGE_ID._MANDATORYFILTER) + ',' + $v(P&APP_PAGE_ID._MANDATORYFILTERVALUE) + ',' + $v(P&APP_PAGE_ID._REFERENCEDBY);
    top.location.href = lvurl;
    function deleteRecord(pListPage){
    document.getElementById("P&APP_PAGE_ID._CALLACTIONTYPE").value = 'DELETE';
    confirmDelete(htmldb_delete_message,'DELETE');
    But the problems what I couldnt sort out are;
    1- If any error happens in doSubmit(); (can be any DB error by triggers etc.) I cannot show the error. Does anybody know to check whether doSubmit() returned an error or not...
    2- Delete button shows the confirmation dialog box but when I confirm to delete I got an error show below;
    "     Checksum error for Hidden and Protected item ID (1737324593811176), value (DELETE), posted checksum (D636C53A8C84A57A1BBB04A61B600C4A), expected checksum (********************************), index_i (9), index_j (5), index_m (7); "
    Can you please tell me how to sort this problems or can anybody know that there's another ways to do these things?
    I really need help guys...
    Thank you very much,
    Osman...

    Hi Varad,
    We need to have custom buttons for save etc because there are some parameters must be transferred between screens. Let me explain it like this;
    Normally when you enter the IR screen, we set a couple of hidden items' values. (such as P_CALLFROM, P_CALLTYPE, etc...)
    and then user goes into a record to edit or insert.
    When user saves the record by pressing standard Apex "Apply Changes" button, page will go back to IR page but we loose the parameter which we assigned before...
    That's why I need to have a custom save, delete etc buttons...
    So, if I need to create a custom process, Do I need to collect all the filed values from the page by myself?
    Thanks,
    Osman...

  • Custom Action to change selected column's Background color for a table in CEWP

    I have a OOTB CEWP. When I insert a table to this, I would like to see a context menu that would give me an option to change the selected cell's/row's/table's properties like cell padding/cell spacing/background color etc.
    How can this be achieved using SP2013 ribbon's custom actions. It would be great if we could add all these properties on a separate contextual tab when row/cell/table is selected.
    Rajasekar A.C

    Hi,
    If the table in Content Editor Web Part, we don’t need to use SharePoint Ribbon to achieve it.
    We can insert some input button and use jQuery to change the table tr/td background color.
    The code like this:
    <style type="text/css">
    .highlight {
    background-color: red;
    </style>
    <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function () {
    $("#TableID tr").click(function () {
    $(this).toggleClass("highlight");
    </script>
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Customer Reconciliation Account Change

    Hello Friends,
    Our client had a requirement of changing the recon account for customer.
    Customer A (recon account 100) already had line items posted from last 2 years, these line items are cleared also.
    Now business wants the recon account for this customer A to be G/L#200. Along with that the reporting in balance sheet for this customer is required to be in recon GL 200.
    In order to achieve this we did the following:
    1. We made the balance of the customer account zero by transfereing the balance to temperory GL account. (Accounting document # 1200001 created)
    2. Changed the recon account in customer master from 100 to 200.
    3. Made reversal entry, i.e., transfered the balance from temperory GL account to customer account. (Accounting document # 1200002 created)
    4. In balance sheet now the balance is transfered to recon account 200.
    But now there is a problem, the customer statement has two open items (documents 1200001 & 1200002) when we are clearing these open items in the customer the impact created earlier with step 3 is getting reversed i.e., the balance from recon account 200 is getting nullified and its going back to recon account 100.
    We just want to clear the customer open item how can we do this?
    Please suggest.
    Regards

    Hi,
    you cannot change reconciliation Account for old Line Items. The SAP provides transaction code F101 to define that but it uses extra accounting to adjust balance sheet groups.
    The only way is reverse clearing document by FBRA. Go to F-32 and clear the invoice against a new invoice with same a mount and posting date. Afterwards you clear this new invoice (Acc 200) and you will have your balance sheet equalized.
    regards

  • Customer Reconciliation Account Changed

    Hi All,
    My client Requirement is to Change the Recon account of Customer.
    I have changed the Recon account of customer and I have also maintained entry in OBBW with the Old Recon and New Recon account. After that I ran FAGLF101 report to do Balance sheet adjustment entry so while running the report I am getting the error
    No accounting principle assigned to valuation area BP
    Message no. FR894
    Diagnosis
    In Customizing, the valuation area is not assigned to an accounting principle. You can use the accounting principle to define the general ledgers in which posting takes place.
    System Response
    Error message
    Procedure
    Assign the valuation area to an accounting principle.
    Has some on came across to such type of error.
    Your help is very much appreciated.
    Regards,
    Kiran

    Hi Kiran,
    Make sure valuation area BP ( if you want to use it) is assigned to an accounting principal ,
    and this accounting principal should have all the ledgers assigned to it, so that the posting for changes in recon account is reflected in all ledgers
    check nodes
    Check Assignment of Accounting Principle to Ledger Group
    Assign Valuation Areas and Accounting Principles
    Regards
    Sachin

  • Custom fields position change in srm 7.0 in Purchase Order on WebDynpro

    Hi Experts,
    We are upgrading to SRM 5.0 to SRM 7.0
    In Purchase order screen,under account assignment,we want to see the acocunt assignment detailed view as the default view under tab "ACCOUNT ASSIGNMENT".Click on the DETAILS button and then the details show up in the bottom part of the screen.
    Can anyone advise how do we change the postion of fields in the account assignment tab which are created dynamically.
    My requirement is :
    Rahmenkostenstelle field should come below Bahnstelle field
    WebDynpro Component:   /SAPSRM/WDC_UI_DO_ACC
    View:  V_DO_ACCOUNT_DETAIL
    Thanks,
    Aarthi.

    Hi,
    Did you manage to solve the issue? I've tried to define customizing point "Configure Generic Field Display on User Interface" with no luck.
    I've even tried to enhance the corresponding WD Component for SC items detail. Field position is correct in the layout editor, but position changes when fields are rendered in runtime.
    Does anybody have any idea regarding related OSS? what am I missing?
    Regards

Maybe you are looking for