Function T-code: CU50

Hello Guys,
I need a Function ou BAPI that performs the calculation of costs for T-code Cu50.
For configurable materials, because my client performs custom productions.

If anyone can offer anything on this, wow it will help immensely.

Similar Messages

  • What exactly is the function of code inspector

    Hi,
    Pelase let me know the function of code inspector and related transaction with it.
    Thanks in advance
    Regards
    Irfan Hussain

    Hi Irfan,
    The Code Inspector (transaction code SCI) is a tool for checking Repository objects regarding performance, security, syntax, and adherence to name conventions. You can also determine statistical information or search for certain ABAP words (tokens). In the Code Inspector, you can define inspections that, with the help of check variants, examine certain sets of objects. As the result of an inspection, you receive information messages, warning messages, or error messages on different properties of the examined objects.
    You can check the following link for details.
    http://help.sap.com/saphelp_erp2004/helpdata/en/56/fd3b87d203064aa925256ff88d931b/frameset.htm
    Thanks and Regards,
    Ashish.

  • View of the function's code

    Hello,
    I am trying to see and modify the code of a function but, i can't see it : it's red.
    Can you help me?

    In fact, the function's code is correct. I just can't see it to modify it. When i try i only get a red rectangle (when i click on "CODE").
    This is a known issue with earlier versions of APEX and several browsers/versions/configurations.
    What APEX version and browser/version are you using?
    (Please update your forum profile with a better handle than "user13080221".)

  • How to find the foreign function source code of srw.user_exit in report?

    Hi,
    We know that srw.user_exit can invoke a foreign function,for example SRW.USER_EXIT('FND SRWINIT').
    But how can I find the source code of the foreign function in SRW.USER_EXIT(e.g. the source code of FND SRWINIT)?
    Thanks in advance,

    Hi,
    You build user exits when you want to pass control from Report Builder to a program you have written, which performs some function, and then returns control
    to Report Builder.
    So you will have to know the foreign function you want to invoke.
    For information on writing a user exit, see the following note on Metalink:
    179324.1
    And the "Programmer's Guide to the Oracle Precompilers, 1.8"
    Navneet.

  • IDod Type,Message Type,Inbound Function,Process Code Required

    Dear All,
    I require
    1. IDoc Type
    2. Message Type
    3. Inbound Function
    4. Process Code
    for
    a. Vendor Master Creation,Updation,Deletion
    b. Customer Master Creation,Updation,Deletion
    c. Vendor Invoice(TCode-FB60) Creation,Updation,Creation
    d. Vendor Credit Memo(Tcode-FB65) Creation,Updation,Creation
    e. Customer Invoice(TCode-FB70) Creation,Updation,Creation
    f. Customer Credit Memo(TCode-FB75) Creation,Updation,Creation
    i require to insert all the above detail into SAP from another system so please provide me the full detail.if the IDoc type is separate for Creation Updation Deletion then provide likewise.
    Everybody will rewarded.
    Thanks,
    RP

    hi
    use t code wedi and goto EDI administration menu. in that goto development menu. there you can find all items like Idoc type, message type or process code all information is available.  You can also use t code WE30,WE31,WE80,WE81, WE42 - Inbound process code and WE41 Outbound process code.
    Hope this helps.  Assign points if useful.
    Rago

  • Do you use APEX built-in DML functionality or code it manually?

    Just out of interest more than anything, wondering what everyone else does, and what advantages/disadvantages they see in their method?
    Personally I never use the built-in stuff for manipulating, I create all the items and then a PL/SQL procedure in a package. Then I code a process to call that procedure to do any inserts/updates/deletions. I know this is a long way around to do something which APEX does fairly well (for simple situations at least anyway) but I find it far more flexible to go with this route and I prefer anything which is changing data to live on the database (as an object).
    It also means that (other than changing the columns etc) changes can be made a lot more easily - APEX version control is pretty poor for a production environment and team-coding so the fewer changes to the app the better.
    Anyone else any views?

    I pretty much always use packaged up stored procedures for DML operations. All business logic goes into the packages where possible - in fact, the only element where I break this encapsulation methodology is when defining reports - even then, I've sometimes implemented reports as a table function, although this approach can cause more problems than it solves, performance-wise. Views provide an acceptable degree of abstraction in those cases when I want to hide the complexity of a query.
    It's pretty rare that I'll be interrogating and updating a single table, although I take Roel's point re: updatable views and "instead of" triggers.

  • Access Report Custom Functions from code

    Post Author: leedo
    CA Forum: .NET
    Hello,
    I am using VS2005 (VB) and was able to change formula text from within code using the "FormulaFieldDefinitions" object. However, I am having problems finding out how I can do the same to Report Custom Functions.  The reason I am doing all this is that I noticed during my Windows app is running the source of my .rpt file is thrown in the user "Local Settings\Temp" folder and all code is revealed by simply opening that file. Please help. ThanksLeedo

    Post Author: MJ@BOBJ
    CA Forum: .NET
    It looks like it is not possible to access the custom functions within a report using the CR .NET SDK.  However, to address the potential security issue that you may be concerned about, is this a Windows or ASP.NET application?  If this is an ASP.NET application, then you shouldn't have to worry about the security as the end-user (client) will not be able to access that folder since the rest of the web server is typically unaccessible by the client. 
    Another way to secure your reports is to use what we call "managed reporting" solutions such as Crystal Report Server or Business Objects Enterprise, which manages reports securely and your users are only allowed to access/see what you allow them to.  These solutions also provide public SDKs so you could incorporate the system into your own applications.  For more information, go to www.businessobjects.com/products.

  • Exclude inherited properties and functions from code hinting

    Since, by design, the [Exclude] metatag works only with MXML code hinting, I was wondering if there is any other way of achieving this. For my reasoning why I consider this feature a necessity please consult my bug report on jira.
    Anyway, coming back to the problem at hand, I have come up with two possible ways of achieving this:
    1. Use the [Deprecated] metatag and change an option in the Flash Builder, to hide Deprecated functions from the code hinting. The problem is, there is no such option!
    2. Install a plugin which adds a new ASDoc tag (let's name it @exclude) which simply speaking removes all functions/properties which have @exclude in their asdoc from code hinting. But again, I have found no such plugin and I don't have necessary skills to accomplish this task.
    3. A mix of both - plugin which adds an option to hide deprecated elements from the code hinting. Probably the easiest to develop but still, I haven't managed to find such plugin anywhere and I wouldn't know how to even start looking for information to write it.
    If you know how this could be accomplished (without resorting to, for example, manipulating the projects's design by using Interfaces) I'd love to hear them.

    Well yes of course. But I am trying to make everything available to the same package. Like a namespace. But I want to only expose the base class for instantiation by third party developers.
    For instance I have a base class in a SWC named SomethingClass. SomethingClass utilized SomethingClassB, SomethingClassC and SomethingClassD classes and there need to be public methods in between them.
    During code completion/code hinting I would like to stop SomethingClassB, SomethingClassC and SomethingClassD from even showing up in that list.
    The whole class. Not just some methods or variables.

  • How to know which sub process(function) transaction codes belong to.

    Greetings all,
    I would like to know transaction codes belong to which sub process on SAP system.
    For example, MD04 belongs to 'MQ-MRP-R/3-MRP', SE38 belongs to 'IT-PRO-R/3-Programming'..something like that.
    Is there any way to check the definition on the system instead of just guessing by the function?
    Thank you very much in advance.
    Best regards,
    Miki Komatsu

    Hi,
    As per your query you create profile as per your requirment like PP,MM,FI,CO,SD etc and assign complete module. Here you will find all the related t-code which is belong to specific module.
    Anil

  • How to execute javascript function then Code Behind in an ASP Button

    Hi Guys,
    I am currently working in a web application. I have a problem with calling a js function and codebehind.
    I have this asp button that when clicked, a javascript function should be called.
    My javascript function is like this:
    function Calculate(){
    // Set Route in google map
    // Store distance, lat/long in an array
    Then, after the Calculate function was executed, it should execute the code behind:
    protected void btn_calculate_onclick(object sender, EventArgs e)
    // Pull data stored in the array created by javascript
    // connect to db
    // store data
    But the javascript function doesn't execute.
    What should i do?
    Thanks in advance

    Hello,
       javascript function can not executed in server side, you can tranlate javascription fuction to c# function.
     if the reply help you mark it as your answer.
     Free
    Managed .NET
    Word Component(Create,
    Modify, Convert & Print)

  • Intrastat2007 Missing Functionality:commodity code search by description

    Hello,
    it would be very helpful that the customer can the commodity code search by description.
    (Item Master data -> Intrastat Settings)
    Kind Regards
    Doreen Cieslewski

    Hi,
    I don't seem a search by description would be possible in a database to be handled by an application as Business One. Descriptions can be very long. This kind of search is more suitable for search engines in internet
    One thing that you can do is entering in the Commodity Code table,the upper levels codes 2, 4 or 6 that contain more generic descriptions. So you can do any use of the search function
    Note 1241606
    There are several sites in the internet that provides this kind of search engines:
    http://www.businesslink.gov.uk/bdotg/action/tariff

  • F4 functionality with code

    Hai,
    I have a requirement  to provide F4help without assigning search help for a
    z-transaction.
    can anyone guide me.
    Useful answers will be awarded.
    Thanks,
    Uga

    data: it_ret like ddshretval occurs 0 with header line.
    At selection-screen on value-request for s_mat-low.
      Select MBLNR from mkpf into table it_mblnr.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = ' '
          RETFIELD               = 'MBLNR'
      PVALKEY                = ' '
      DYNPPROG               = ' '
      DYNPNR                 = ' '
      DYNPROFIELD            = ' '
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
         VALUE_ORG              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
        TABLES
          VALUE_TAB              = IT_MBLNR
      FIELD_TAB              =
         RETURN_TAB             = IT_RET
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF SY-SUBRC = 0.
        read table it_ret index 1.
        move it_ret-fieldval to S_mat-low.
       move it_ret-fieldval to S_mat-high.
      ENDIF.

  • XSL function or code for ASCII conversion ?

    I am a newbie in XSL and I tried searching and didn't find a XSL function to convert ASCII values in an XML to its equivalent alphanumerals using XSL transformation.
    Is there a XSL function to do the same ?
    Any suggestions would be really helpful.

    There are such functions for converting Unicode codepoints to characters in XSLT2.
    Pete

  • Has anyone received a functioning redemption code?

    As with a lot of people that have been waiting I am wondering if there are any cases in which someone submitted their information and then received a code that actually worked. If you did, where did you buy your mac? I bought mine through a University reseller so I am wondering if people who bought directly through Apple are having better luck. A simple form letter from Apple explaining the delay would be nice.

    wuttasi wrote:
    you have mba 2011 and you have free copy? eh ? i have mba 13,3 mid 2012 bought 27 june and I dont have any message from apple yet! I think they are doing it on purpose so people whho cant wait anymore just buy new OS :/
    Steve Jobs wouldnt let it be as it is right now :/
    Yeah, thought I was getting a great deal on a MBA 2012 at the PX.  Turns out it was a mid-2011 model.  Oh well, at least I didn't have to pay sales tax on it.

  • HT3986 A driver (service) for this device has been disabled.  An alternate driver may be providing this functionality. (Code 32)

    cd dvd room do not work on windows side     

    Hi,
    First, try the automated fixit from Microsoft on the link below.
    Windows 7
    Vista
    Check if the drive is now working.
    If it still doesn't work, click the Start Menu, open All Programs, open Accessories, right click the Command Prompt and select 'Run as Administrator'.  In to the prompt type the following command and hit enter.
    sfc /scannow                 ( note that there is a space between sfc and the / )
    Let the process complete, then type exit and hit enter. 
    Next, click the Start Menu, open the Control Panel and click on Device Manager.  Next click to open DVD/CD-ROM Drives.  Right click the drive and select uninstall.  Do not delete drivers if asked.  When the device has uninstalled click on the 'Scan for Hardware Changes' icon ( usually just below Help on the toolbar ).  Let windows reinstall the drive and see if it now works.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • Report Generation Toolkit and App Builder question..

    Hello, I am in process of modifying my test code for writing my data to Excel. When I first developed the tests I did not have the Report Toolkit of Excel so I built the ActiveX VIs I needed. Now since I have upgraded to 7.1.1 with the MSOffice Toolk

  • How do I align data within a column?

    In the newly updated Numbers (Mac), I cannot find how to align data within a column.

  • Constant Connection Drops

    I'm Panther (10.3.9), RCN cable, no wireless, no router. My connection drops 5-10-15 times a day. Hitting "renew DHCP lease" brings it back. I work at home and am often up/downloading large graphics files, and this is destroying my productivity. I tr

  • 500GB Hard drive failure - for the 4th time

    Ok, So i bought a macbook pro from Apple in about may 2010. It is a 500GB Serial ATA Drive @ 7200 2.66GHz Intel Core i7 GB 1066MHz DDR3 SDRM SuperDrive 8X DL. Since then the hard drive has failed 3 times and now it has failed for the 4th time this mo

  • Mighty mouse, iMac and bluetooth

    Ok, as a new to Mac the bundle I purchased had an iMac an wireless MightyMouse. The mouse has been lethargic since day one. Reaching a point of "I'll see what can be done to improve" I purchased a Saitek 1600 dpi wired mouse to see if the iMac could