Modification in sap xi

hi expects,
        as per requirement,i have modify the the tranasaction using user-exits example XD01.whether  i have to modify design and configuration part or not.

HI,
R u sending any additional data to XI.. which u r not sending previously after the modification.
if u r sending then u need to change the data type and message mapping in desing
let me know what is ur scenario
chirag

Similar Messages

  • Modification to SAP Logon Cannot be written to INI file

    Hi,
    When i am trying to create a New Item in SAP logon it is giving an error "Modification to SAP logon could not be Written to INI file
    Check permission for file 'C:\Windows'.
    The problem is that, this is showing even when i m logged in as "XXXADM".
    I have Reinstalled the SAP GUI, but the problem is as it is.
    OS: WINDOWS 2003 server
    Database: Oracle.
    Please help me.
    Thanks in advance,
    Sharib

    I had this same problem under a VISTA Enterprise client setup.  I tried all the various recommendations, including setting the SAPLOGON_INI_FILE environment variable to point to c:\windows\saplogon.ini.  None of these changes worked, I even modified the file ownership to match up with my logged on user without success.
    I then looked at the shortcut for launching SAPLOGON, and tried to set the shortcut to run as an Administrator.  That option was greyed out.  I deleted the shortcut, and re-created it.  Still unable to save changes.  I then set the new SAPLOGON shortcut to execute as the administrator, and once I confirmed that I trusted the program, everything is now working as it should.
    Not content to leave it this way, I moved my saplogon.ini file OUT of the c:\windows directory and instead placed it in the directory pointed to by %USERPROFILE%\saplogon.ini .  I updated the environment variable setting and also removed the falg to execute the shortcut as the system administrator.
    Now everything is working as it should without any special hoops -- seems that even with full access, VISTA security would not let a domain user that was part of the PC's Administrators account to edit the file w/o running as the system administrator.
    Edited by: David L. Flad on Oct 30, 2009 4:02 AM

  • Modification in SAP standard programs.

    Hi All
    I am trying to make modification in SAP standard program by using a copy of code from the original program to my program..but facing many errors like the statement BEgin of block syntax is wrong..
    i am trying to mdify the foloowing program--RFSSLD00...
    Please help me and guide to make changes to this prog..
    Also tell me that do we need to again create all the functiongroup and global data declarartion part.
    thank u.

    hi,
    Please note that when you copy a standard Sap Program ,make sure all the objects are copied following your compays naming conventions.
    Now RFSSLD00 can be copied without any difficuly.after that compare the new copied program with the standard program. going to version mngmt->remote comparison . doing this you can get the differences
    check all the includes.. and type pool declartaion and gui status etc....by going to se80
    regards,
    Safel

  • ESS WD modification and Sap Support

    Hi all,
       does anyone knows if SAP gives support for ESS Web Dynpro application? I means Can I create a customer message if an error occurs in WD Application belonging to the ESS SP? 
    If so, after WD Application standard modification Sap take on to grant the support?
    regards
    Mik

    You should definitely be able to send customer messages for issues with SAP standard BP services. Even if you modified those and encounter an issue because if you followed the guidelines correctly to modify those services and they are not working then SAP needs to investigate this. If you have modified a SAP standard service and your custom business logic does not work then I doubt that SAP will help you. In either case when you mean 'modified' then I assume you copied the SAP standard service and created your own version not actually changing the code of the delivered service - at least I would not recommend that. :-)Harald

  • Item modification in SAP

    hi every one,
    I have a query for items in a sales document. Can we change the items number 1,2,3 of an order to 5,10,15 in sap. If yes, how can we do it. Plz respond
    Thanks!

    Hi,
    Sales doc type config, you change item no increment as per your req

  • SAP MM Modifications in SAP Include MM06EF0B

    I want to implement enhancement / modification to Include MM06EF0B. There is already some code in this form and I want to add some more. Please help. 
    Thanks,
    mini

    hai  the include u said contains other includes and it does not have any enahcnement points in it so u cannot modify it , i f u really want to modify it then u cna take access key and do the same
    regards
    afzal

  • Reg : modification in sap script driver prog

    Hi folks,
    need some help regarding sap scripts
    i havecopied the standard layout medruck to my layout
    and made some changes.
    now i have to modify the driver program
    in the tnapr table the driver prog for medruck is
    given as sapfm06p
    but when i see the source code for that in the
    editor
    evrthing is like included functions there
    in the incuded there is a form named with "entry_neu"
    which has some code calling few functions
    but...
    there is no openform,no write form etc.
    where should i give the name of the form name that i have
    i have developed(changes made to the copy of the medruck)
    where should i make the changes in the prog
    how about going at modifying the driver program
    do i have to assign the o/p type using the tcode nace.
    please give me the steps
    please treat it as very urgent
    expecting a promt responses from u
    thanks & regards,
    annamreddy

    We modified the driver program because there was a requirement to add stuff that was not available in the standard driver program.  Here is what we did.
    First,  Copied the SAPFM06P program to SAPFZM06P.  Did not copy all of the includes. Copied only the FM06PE02 include program to ZFM06PE02.
    Second,  in the include ZFM06PE02,   there is a form call ENTRY_NEU,  this is the entry point to print the form, notice that there is a function module in this form called ME_PRINT_PO.  This is the function module that will print the PO.  Eventually, you will want to call a Z version of that funciton module.
    Third,  copy the entire funtion group MEDRUCK into ZMEDRUCK.  This is the function group which has the function module ME_PRINT_PO.  Don't copy the includes into Z versions.  You don't need to modify all of them.  Only copy them when needed.  Save and Activate.
    Finally,  go back to that include program ZFM06PE02,  now make the call to ME_PRINT_PO to the Z version, in my case it is ZME_PRINT_PO.  Save and activate.
    Make sure that you change your configuration in SPRO to use the SAPFZM06P program instead of the standard.  Now your form should be printing from the custom driver program.  Modify away!!!!
    Please don't forget to award points for helpful answers.  Thanks.
    Regards,
    Rich Heilman

  • New to Enhancements and Modifications in SAP ABAP

    Hi experts,
    Could anyone has a tutorials or ebooks on this topic? I need to learn more about this.. tnx in advance!!!

    Hi
    Enhancements and User Exits
    User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a function module. The code for the function module is written by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module.
    The naming standard of function modules for functionmodule exits is:
    EXIT_<program name><3 digit suffix>
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    To find a Exit.
    Goto Transaction -- Find The Package
    SMOD >f4>Use the Package here to Find the Exits In the Package.
    Else if you Want to search by Application Area wise ,
    There is one more tab to find the Exits in the Respective Application Area.
    Implementing the Exit-- CMOD Create ProjectsAssgn your Component .
    Now Run ur Transaction to Check if it Triggers.
    Thats it..
    Suppose you need to find out all the user exits related to a tcode.
    1. Execute the Tcode.
    2. Open the SAP program.
    3. Get the Development Class.
    4. Execute Tcode SE84.
    5. Open the Node 'Envir. -> Exit Techniques -> 'Customer Exits -> Enhancements'
    6. Enter the Development class and execute.
    Check out this thread..
    The specified item was not found.
    1. Type the transaction : system->status-> <PROG. NAME>
    2 open SE37 , type EXIT<PROG NAME> and press F4 to get the list of function exits available.
    3. Open CMOD utilities->SAP enhancements
    EDIT->All selections
    4.type the function module name obtained in step 2, in fields 'component name' in 'additional selections' block. and execute.
    5. The displayed list contains the enhancements names for the transaction You were looking for.
    6. Create a project in CMOD and the code in default include->activate.
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    which gives the list of exits for a tcode
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec079f5db911d295ae0000e82de14a/frameset.htm
    For information on Exits, check these links
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.planetsap.com/userexit_main_page.htm
    User-Exits
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/ab038.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.sap-basis-abap.com/sapab013.htm
    http://sap.ittoolbox.com/documents/popular-q-and-a/user-exits-for-the-transaction-code-migo-3283
    These links will help you to learn more on user exits.
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
    http://www.planetsap.com/userexit_main_page.htm
    http://www.allsaplinks.com/user_exit.html
    www.sap-img.com/abap/what-is-user-exits.htm
    Also please check these threads for more details about user exits.
    Re: Screen exit
    user exit and customer exit
    user exit
    1. Document on UserExits in FI/CO
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    2. Finding User Exits...
    http://sap.ionelburlacu.ro/abap/sap2/Other_Useful_Tips.html#Finding_User_Exits
    3. List of all User Exits...
    http://www.planetsap.com/userexit_main_page.htm
    ENHANCEMENT-POINT
    ENHANCEMENT-POINT can either be static (for example, additional data declaration) or dynamic (for example, additional coding).
    http://help.sap.com/saphelp_nw2004s/helpdata/en/56/ee9441026aae5fe10000000a1550b0/content.htm
    Refer the very useful links below:
    Enhancement-Point is a part of the new enhancement framework. He is some lite reading.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/94/9cdc40132a8531e10000000a1550b0/frameset.htm
    Please check this blogs and wiki as well.
    /people/thomas.weiss/blog/2006/05/03/source-code-enhancements--part-5-of-the-series-on-the-new-enhancement-framework
    /people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/thenewEnhancementFrameworkandthenewkernel-basedBAdI&
    Please check these weblog for more information and sample codes.
    /people/thomas.weiss/blog/2006/01/24/what-the-new-enhancement-framework-is-for-150-its-basic-structure-and-elements-for-beginners
    /people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    /people/thomas.weiss/blog/2006/05/03/source-code-enhancements--part-5-of-the-series-on-the-new-enhancement-framework
    Look at this articles:
    New Enhancement Framework
    Enhancement Framework
    Enhancement Framework - The New Way to Enhance Your ABAP Systems
    Switch Framework Demo
    Introduction to the Enhancement Framework
    To now more about BADi Implementation see:
    How To Define a New BAdI Within the Enhancement Framework
    How to implement a BAdI And How to Use a Filter
    Enhancement-Point is a part of the new enhancement framework. He is some lite reading.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/94/9cdc40132a8531e10000000a1550b0/frameset.htm
    Please check this blogs .
    /people/thomas.weiss/blog/2006/05/03/source-code-enhancements--part-5-of-the-series-on-the-new-enhancement-framework
    /people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/thenewEnhancementFrameworkandthenewkernel-basedBAdI&
    Enhancement frame work is the new concept using which SAP allows you to change the existing programs
    See the following blogs that talk about the same in detail
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    /people/thomas.weiss/blog/2006/05/03/source-code-enhancements--part-5-of-the-series-on-the-new-enhancement-framework
    Defines a position in an ABAP program as an enhancement option, at which one or more source code plug-ins can be inserted.
    Syntax
    ENHANCEMENT-POINT enh_id SPOTS spot1 spot2 ...
                      [STATIC]
                      [INCLUDE BOUND].
    Extras:
    1. ... STATIC
    2. ... INCLUDE BOUND
    Effect
    : This statement defines an explicit enhancement option at the current position in the program at which a source code enhancement can be made. In program generation, the source code plug-ins of the assigned enhancement implementation that are available in the current system and have a switch in the status stand-by or on, are inserted at this position.
    If the addition STATIC is not specified, the source code enhancement is dynamic. This means that in program execution, only those source code plug-ins are executed whose switch has the status on. If a source code plug-in does not have a switch assigned to it, it is handled in the same way as a plug-in with a switch in the status on.
    With enh_id, an ID must be specified directly for the enhancement option, which is unique in the current compilation unit without the addition INCLUDE BOUND, and with this addition, is unique in current Include program. At least one enhancement spot must be assigned to the enhancement option using the specification simple enhancement spots spot1, spot2, and so on.
    Within enhancements, one or more source code plug-ins can be created for one enhancement option. A source code plug-in is created by the assignment of an enhancement implementation in the Enhancement Builder. This automatically generates an empty source code plug-in with a unique ID, which is displayed underneath ENHANCEMENT-POINT in the Editor, where the actual enhancement can be implemented between ENHANCEMENT and ENDENHANCEMENT.
    A source code plug-in is assigned to only one enhancement option. Multiple source code plug-ins of one enhancement implementation and the source code plug-ins of multiple enhancement implementations can be assigned to one enhancement point.
    Notes
    : In the terminology of the enhancement concept, the statement ENHANCEMENT-POINT includes both the enhancement spot element definition and the enhancement spot invocation of the enhancement option.
    The statement ENHANCEMENT-POINT can either be entered directly or created by choosing Edit ? Enhancement operations ? Create enhancement in the Enhancement Builder. After the program has been saved or created using Edit ? Enhancement operations ? Create enhancement, the statement can only be deleted by choosing Edit ? Enhancement operations ? Delete enhancement.
    In addition to the enhancement options explicitly specified by ENHANCEMENT-POINT, ABAP programs also contain implicit enhancement points, which can also be enhanced using source code plug-ins.
    Addition 1
    ... STATIC
    Effect
    : The addition STATIC is used to define a static source code enhancement. In a static source code enhancement, all incorporated source code plug-ins are taken into account when the program is executed, including those whose switch is in the status stand-by.
    Note
    : The STATIC addition is intended for the enhancement of data declarations, while the statement ENHANCEMENT-POINT without the STATIC addition is designed for the enhancement of executable coding. When the statement is executed using Enhancements ? Create enhancement, the addition is set according to this selection.
    Addition 2
    ... INCLUDE BOUND
    Effect
    : This addition can be entered in Include programs. It links the source code enhancement to the current Include program. Each program that incorporates an Include program only includes the source code enhancements that are defined with this addition. Source code enhancements created using the INCLUDE BOUND addition have their own namespace in each Include program. This ensures that if several Include programs are integrated into one compilation unit, no namespace conflicts arise, either between Include programs, or with the source code enhancements of the compilation unit.
    Without the addition INCLUDE BOUND, a source code enhancement is assigned to only one compilation unit. If the statement ENHANCEMENT-POINT is executed in an Include program without this addition, a compilation unit must be assigned to it in the Enhancement Builder.
    Note
    : In an Include program, Include-bound and non-Include-bound source code enhancements can not be defined at the same time. This also applies if an Include program incorporates other Include programs.
    Enhancement points are points provided by sap in standard programs to modify the source code. Go to any standard program, Locate the spiral button on the toolbar. Then press it and then navigate to edit->enhancement operations->display enhancement point menu. Then a no of yellow lines would appear, which are the available en points. You would have to change it and write the applicable source code.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/2342e1f3-0b01-0010-a186-fdd404884050 [original link is broken]
    Please try the link given below
    http://help.sap.com/saphelp_nw2004s/helpdata/en/94/9cdc40132a8531e10000000a1550b0/frameset.htm
    Regards
    Anji

  • Modifications in SAP ECC CO-PC

    What kind of modifications are required in CO-PC module for allocating supply chain indirect and logistics cost to SKUs for standard costing?

    Please read this: /thread/925588 [original link is broken]
    Thread locked.

  • Modification of SAP Delivered FPM Applications

    Hello,
    Does anyone have a good document/site/info on the best way to modify SAP delivered applications in ABAP WebDynPro? WE would like to add functionality to the Business Package for Internal Sales; which uses ABAP WebDynPro functionality.
    Thanks

    One word Enhancements.
    The WDA framework is so easy to enhance that it is scary! You can add value to contexts, add new UI elements, adjust existing ones, etc.
    As for a best practice - ensure that all your enhancements are grouped together and allow them to be switched on/off using the SAP switch framework (this allows you a very simple way to return to SAP standard should you ever need to request SAP support - as once you have an active enhancement you're unlike to get much in the way of service marketplace support should you run into a bug...)
    Cheers
    Chris

  • Modifications in sap-standard script

    Hi,Can anybody tell me what do we do generally in modifying standard scripts,do we need to change the driver program ?
    thanxs in advance.
    anil.

    If you are talking about output programs and SAPscripts, the idea is the following:
    You make copy of the standard output program and also make copy of the sapscript. Then you perform your changes. The functional team needs to get involved to create a new output type, exa ZNEU for PO output as a copy of NEU. Then assign the new program and script.
    Good Luck,
    Leonardo De Araujo

  • Modification in SAP Function Module of ABUZ

    Dear experts,
    There is a Function Group ABUZ. In it, there is a Function Module fiaa_get_buzsm. In the FM I found that one line has to be modified. I would like to know if there is a possibility to use a user exit? How to check whether the user exit exists? What exactly I need to know / to have to write such an exit?
    Thank you and regards
    Rafal

    Hi
    I don't believe there's an exit so you should change the std program.
    Anyway try to check if there's a code line as CALL CUSTOMER-FUNCTION
    Max

  • BAPI to transfer PO data from SRM to SAP

    Hello, i have modified my Purchasing org. in SRM . Is there a BAPI i can use to transfer this modification to SAP.

    Hello Antish,
    How did you modify concerned PO ? With a specific report ?
    If this modification was not transfered to R/3, run function module BBP_PD_PO_TRANSFER_EXEC using PO Guid as importing parameter.
    Regards.
    Laurent.

  • Insert data in sap tables

    HI guru's,
    Iam new to sap... un expectly deleted some entries from tables..i want to some fields in sap table: T030 how to add it.. plz send me example programm..
    regards
    JK

    hi,
    Use Maintenance generator for that table..
    then u can easily upload ur datas to tat standard table
    Table Maintenance Generator (TMG) is a tool which is used to create a equipment by which customized tables created by end users can be changed as required,such as making an entry to that table,deleating an entry etc.
    Go to SE11, give the table name and click on change. Then Go to utilities--> Table maintenance generator.
    https://forums.sdn.sap.com/click.jspa?searchID=12043942&messageID=2272486
    Re: Modifications to SAP Standard
    https://forums.sdn.sap.com/click.jspa?searchID=12043942&messageID=5019762
    siva

  • SAP LUMIRA Desktop publication to SAP LUMIRA server

    Dear SAP Lumira community,
    after installation and setup of latest SAP lumira desstop and lumira serveur on SAP HANA 1.00.81.000 following nice configuration guidance provided by SAP
    http://help.sap.com/businessobject/product_guides/vi01/en/lumS118_install_en.pdf
    and following exchange of the community
    HANA set up: http://scn.sap.com/community/lumira/blog/2014/06/30/prepare-a-hana-system-for-lumira-server-install
    Troubleshooting: http://scn.sap.com/community/lumira/blog/2014/06/30/prepare-a-hana-system-for-lumira-server-install--trouble-shooting
    Installing SAP Lumira Server: http://scn.sap.com/community/lumira/blog/2014/06/10/how-to-install-sap-lumira-server
    Installing SAP Lumira add-onto BI 4 Part 1: http://scn.sap.com/community/lumira/blog/2014/07/01/how-to-install-sap-businessobjects-bi-add-on-for-sap-lumira
    Installing SAP Lumira add-onto BI 4 Part 2 : http://scn.sap.com/community/lumira/blog/2014/07/02/how-to-install-sap-businessobjects-bi-add-on-for-sap-lumira-part-2
    and of course
          How to install SAP Lumira Server, Publish Datasets and Stories
    try to use following OSS note to resolve my problem
    1823771 - SAP Lumira 1.0 - Insufficient rights: Unable to connect to HANA server, or Not enough rights to open view (HDB 02074).
    1995325 - Error when publishing Lumira to Server
    like following exchange community : Lumira Server Error
    i have encountered the following problem when i try to publish from my LUMIRA desktop to LUMIRA server
    So my question is simple may i miss something ? may be inside FIORI LUMIRA Administration ...
    Debug mode of SAP LUMIRA desktop 1.18  is not like previous version , do i need to update something inside  sap lumira.ini ?
    Thanks in advance for your feed-back and support

    So after modification of SAP LUMIRA desktop init file i have following error
    2014/09/11 13:31:30.696000|>>|S| |10908|  54| |||||||||||||||[com.sap.hilo.datasource.hanaview.internal.context.Helpers]Query[5] : Execution failure. Elapsed Time : 64 ms.
    2014/09/11 13:31:30.698000|>>|S| |10908|  54| |||||||||||||||[com.sap.hilo.datasource.hanaview.internal.context.Helpers]
    com.sap.db.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: [258]: insufficient privilege: Not authorized
    2014/09/11 13:31:30.711000|>>|S| |10908|  54| |||||||||||||||[com.sap.hilo.datasource.hanaview.internal.BimcHanaModelProvider]
    Cannot execute the query : insufficient privilege. (HDB 02013)
      at com.sap.hilo.common.hana.AbstractHanaDBHelper.createUserException(AbstractHanaDBHelper.java:970)
    Seem authorization error ( roles,...) so continue to investigate on witch authorization i need ...

Maybe you are looking for

  • Vendor block is not working

    Hi Gurus, I had blocked one vendor against purchase organisation. In case 1 --- when I tried to create Po with that vendor and pur org, system is throwing error which is fine But in case 2 - I had entered this blocked vendor for fright condition FRB1

  • Mac mini as HD-DVD player ?

    I use DVD studio pro to make hd-dvd's right now. I would like to know if either one of the new mac minis will be capable of playing back a 720p HD DVD smoothly, out to a Panasonic HDTV. It works fine from my G5, but will I be able to get the same per

  • ITUNES WONT PLAY ANYTHING ***????

    Ok Ive posted this sometime last week and I still have the same issue. Itunes opens and all my playlist etc is there and then I click to play my music and NOTHING!! no track will play , everthing is supposaddly updated  and I still do not have music

  • Smtp 452 mailbox full but its NOT

    Hi, iMS5.2 . Message store. The problem. Stability test, sent 20000 mails to one account. All mails are delivered (I can see them in the INBOX and spam folders under webmail). Seems OK BUT mail.log_current shows many mails in the queue with status (Q

  • Where is Distiller?

    I upgraded to a new Mac Pro and reinstalled Acrobat Pro v. 8. Where is Distiller? I cannot find it anywhere.