Logic for Header data required

1.I have a Sales Cube.
2.i have field called Header Data.
3.I need to populate Header data by calculating Net Order amount based on Sales order no and Sales order item details.
For Example:- 
                    Sales order  ,  Sales Item Data    ,      Net order amount ,   Header Data
                           001              ,             1             ,                    200             ,    500
                           001              ,            2             ,                    300           ,      500
                           002              ,          1             ,                    300         ,       1000
                           002               ,          2              ,                   500         ,       1000
                           002                ,           3                ,                 200           ,     1000
4. I need to Sum all the items for each order to populate my Header data.
I m using BI 7.0 .... how and where should i write the logic to populate my Header data field.

Hi,
Why do you maintain Header level data in Infocube? Just create a report with Sales Order in rows and Net order amount (Change description to Header Data)in Rows system will automatically give header level data as shown below:
Sales order , Header Data
001              ,     500
002              ,    1000
hope it helps...
regards,
Raju

Similar Messages

  • Down payments for header data in Me23n

    Hi experts,
    can any one please let me know the table from which down payment displays in status of header data in me23n transaction. As i got the requirement to add down payment field in report for the status that down payment exists(some value) or not(zero).
    As its structure is mepo1235 and fieldname is value05 but i couldnot find the table name.I tried to debug the me23n transaction but failed to get one.
    please friends help me out in this problem.
    advanced
    thanks
    vijay

    thank you,
    sukriti for your reply.
    but i need to calculate the sum of all these down payments. But the problem is some are negetive and some are positive. But in table EKBE negetive values are displayed as positive so im finding problem in calculating them.
    i will be very thank ful to you for giving me reply.
    regards
    vijay

  • Sales order Header data require mandatory to fill Name of individual Who fo

    Hello,
    While creating OR sales order, it require to fill "Name" of Orderer & can not save order.
    I believe it is due to Incompletion log Header data Procedure 11Field "Name" assigned Status 01-->Which is general
    If I want to remove this, what is procedure?
    Or SAP standard requires this? Please suggest input.

    Hi Experts,
    I set Free Goods determination Inclusive Calculation Rule 1=Pro Rata and Cal Rule 2=Unit reference both are working fine.
    When trying for cal Rule 3 it gives error message "The system determined free goods with quantity 0 for item 000010
    Means for 10Ton of A product 10% means 2To are free. If I apply quantity in multiple of 10 i.e.10, 20 30 free goods are determined, delivery & billing is working well.
    But if I apply 25Ton or 38ton, it is not even giving minimum discounts say for 25ton, it should give atleast 20ton equivalent fre goods.  I checked in rounding rule OB90 where my company code3000 is giving 10 2 digit for USD currency. I set like this. When I checked pricing for condition type R100 it says requirement 055 not fulfilled. However I have maintained Req 055 & BaseType 28 in pricing procedure.
    For cal rule 3 what else setting I should check.
    Early reply with detail steps shall be highly appreciated.
    Thanks

  • Need some logic for displaying data from Internal Table

    Hi Guys,
                  I have a Internal Table with multiple entries.
    My ITAB looks like below.
    PN  VBELN  MATNR MATKX
    1     111       P-101    XXX
    2     121       P-102    XYZ
    2     112       P-103    ABC
    3     134       P-104    DEF
    3     124       P-105    EFG
    Now my requirement is I need to display the out put as follows through ALV or normal display.
    <Header>                                                  <Date>
                                                                      <Time>
    PN = 1
    VBELN   MATNR  MATKX
    111         P-101   XXX
    <Footer>
    Some gap (May be a line to differentiate)
    <Header >                                                <Date>
                                                                     <Time>
    PN = 2
    VBELN   MATNR  MATKX
    121         P-102   XYZ
    112         P-102   ABC
    <Footer>
    Some gap (May be a line to differentiate)
    <Header >                                                <Date>
                                                                     <Time>
    PN = 3
    VBELN   MATNR  MATKX
    134         P-104   DEF
    124         P-105   EFG
    <Footer>
    Thanks in Advance.
    Prasad.

    HI,
    Use:
    Data: W_PNlike PN.
    LOOP AT ITAB.
    If Itab-PN ne W_PN.
    <Header> <Date>
    <Time>
    PN = 1.
    VBELN MATNR MATKX   >>>>>>>>>>>>>>>First Line enter
    ELSE.
    VBELN MATNR MATKX  > line Next entry
    ENDIF.
    W_PN = ITAB-PN.
    AT-END PN.
    <Footer>
    ENDAT.
    ENDLOOP.
    Hope this resolve your issue.
    Regards,
    Gurpreet

  • Logic for sending data files to multiple instances of Central

    We are using Central Pro Output Server 5.6 with a single Central instance as of default installation on a Windows Server 2003. Data for the transaction files coming from our iSeries system via a printer queue (\\.\pipe\jetform\queuename)
    Now we want to be able to produce more documents from Central much faster and therefore setting up multiple instances of Central. The problem is then where to put the logic for choosing instances.
    The simplest way to do this would be to have iSeries to alternate the data files to different pipes (printer queues) for Central. But as we dont want to change our iSeries configuration for this, is there a way to solve this problem in Central?
    Any help with this is much appreciated

    Central provides no mechanism that I'm aware of that would do anything resembling the job distribution that you are wanting. Central is written to monitor it's input folders and process the files it finds there. Each instance is essentially separate from each other.
    Your source system will need to select the appropriate instance to be used. Either that or you will need to have something between the source system and Central that is doing the distribution. For example, you could have the source system write to a folder that is not being monitored by Central and write a program that runs as a service that does monitor that folder. This program would then distribute the files. The likely drawback of having an intermediary program is that you are likely to not end up getting the documents printed any faster than with a single instance.
    Another possible way, if the source system can create files with different file name extensions, would be to have them all written to the same folder and have each instance checking that particular folder but looking for files with different extensions. This might be problematic, though, because it might also end up with each instance watching the same "control" folder so that doing things like pausing Central would end up with no control of which instance was going to be paused.
    The default setting for Central has it pausing for 5 seconds if it completes a job and there are no more files waiting for it. If your jobs are not coming in faster than Central is processing them then you would be getting some of this delay for your jobs. You could reduce this time or even set Central to process a job as soon as it shows up. I don't know if version 5.6 still has the problem but an earlier version would not "see" a file if it happened to show up exactly when it was looking for more (it was probably showing up milli-seconds after Central looked). This caused that job to just sit there until the next job showed up.
    A major factor in getting the documents produced faster is going to be the speed and number of printers that they are going to - plus the number of pages in each document. For us, the single instance of Central that we are currently using can produce print much faster than our HP9050 printers (50 ppm) can actually print it.
    You must be doing a lot of forms or each job is doing a lot of processing. Our typical print job does 4 tasks (depending on the job this can include things like: passing the file through the transformation agent, updating a mainframe database, FTPing the file to another server for archiving, and producing the print). A typical job with 11 output pages takes only 2-3 seconds. We have a task that runs every morning that retrieves mainframe generated jobs. I just checked one of our servers and it processed 208 jobs in exactly 8 minutes (26 jobs per minute at an average of 2.3 seconds per job). We also thought we'd need multiple instances due to speed but that just isn't the case for us. We have other reasons to move to multiple instances but speed in not a major factor any more.

  • Select - next  logic for copy data

    Hi,
    I have 3 main values from an excel template: a specific data value (i.e. 35), in that same template one is TIME  and the other one is  $$$.
    What I have to do is copy  the $$$ amount starting from the date set in the template (TIME) through X number of months (i.e.35).
    All this is going to be obtained from a template, I cant use prompt.
    Lets say:
    X: 35
    $$. 100
    TIME: 2011.July
    To do:
    Repeat 35 times the amount 100, starting from 2011.July to the next months.
    Therefore, 2011.August, 2011.September,etc,etc---> 2012.Jan....2013-Jan  and so on until the 35 months are reached.
    I am trying to make some logic using the Select command, however I dont quite understand how to perform this. Equally using the logic NEXT i think it will be helpful.
    Any suggestions...? I cant share my logic because im still trying and mine does not work.
    Thanx in advance.
    Velázquez

    Hi Madis,
    Thanx for the response, i reaally appreciate it.
    I created the dim DURACION as user defined. Included for the moment 25 members (numbers) and it wasnt matched to any application.
    Now, the script where i am working is called Test.
    1. I typed in my script the following:
    **SELECT (%MYSET%,ID,Duracion,"[ID]<=MYDURACION")
    2.Entered to BPC Excel - eData - organize package list - select script Test  and added the following:
    'DEBUG(ON)
    PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when running logic.",1,{"Yes, check for work status settings before running logic","No, do not check work status settings"},{"1","0"})
    PROMPT(SELECTINPUT,,,"Please select category, entity and time for restatement",%TIME_DIM%)
    PROMPT(Text,%INPUTDURACION%,"Enter No of duracion",,"")
    TASK(Execute formulas,USER,%USER%)
    TASK(Execute formulas,APPSET,%APPSET%)
    TASK(Execute formulas,APP,%APP%)
    TASK(Execute formulas,SELECTION,%SELECTIONFILE%)
    TASK(Execute formulas,FORMULASCRIPT,"FUNCTION MYDURACION=H%INPUTDURACION%")*
    TASK(Execute formulas,LOGICFILE,%APPPATH%..AdminApp%APP%TestAlldoraVentas2.lgx)
    TASK(Execute formulas,RUNMODE,1)
    TASK(Execute formulas,LOGICMODE,1)
    TASK(Execute formulas,CHECKLCK,%CHECKLCK%)
    Now... im having trouble because after validating & saving, it shows the error:
    - Invalid column name 'MYDURACION' in:select ID from mbrDURACION where <=MYDURACION
    Can you please help me...
    So far, I have the following logic for performing a "calc each period"  once  YEAR.MONTH  is introduced by a prompt.
    The xdim members are making reference to a particular situation, the important stuff here is that if I pass a hardcored # of periods to the XDIM - next logic it works, and im trying to apply your suggestion...
    *CALC_EACH_PERIOD
    *XDIM_MEMBERSET lob=servicios_out
    *XDIM_MEMBERSET consumibles=consumibles_dummy
    *XDIM_MEMBERSET vendedor=04
    *XDIM_MEMBERSET cliente=5
    *XDIM_MEMBERSET oi=400000
    *XDIM_MEMBERSET TIEMPO=%tiempo_set%,next
    *WHEN METRICA
    *IS importe
    *REC(metrica="importe",tiempo=next(1))
    *ENDWHEN
    **SELECT (%MYSET%,ID,Duracion,"[ID]<=MYDURACION")
    However, is there still a way to pass a # of periods by excel?... this is, not using a prompt but by reading the number form a specific CV ?
    Thanx again
    Velázquez

  • Logic for the date

    I am running a (Ordinary Depreciation report) for this i am going to txcode SAP1 -> Financial Accounting -> Asset Accounting report ->Explanations for P&L-> International ->Depreciation -> Ordinary Depreciation .
    I went to status of the report to find how the report is running but i am not able to point the exact logic which i want.
    I need to find how the Report date is working in the report i mean i need logic behind report date can anyone help me out to find
    out the logic.
    Regards
    VEnk@
    Edited by: Venkat Reddy on Sep 25, 2009 4:13 PM

    It seems that the program is genarated fom a query.
    Infoset: /SAPQUERY/AM07
    Query : 07
    User group : /SAPQUERY/AM
    Logical database : ADA

  • Function Module Call Via CMOD Logic for Master Data Enhancement

    Hi Friends Please help me to resolve this, would really be very kind of all of you.
    Requirement. I want to Enhance the field ZFACTREG from VIBDBE table in my datasource 0busentity_attr extract structure l_s_REIS_BUSENTITY_ATTR, I want to create the logic in CMOD exit_saplrsap_002 to call my function module for enhancement of master data. Please help me Step by Step
    Thanks
    Poonam Roy
    <b>Step #1</b>
    I put this code which gives me error in CMOD like this
    ERROR : Das formale Argument 'OTHERS' muss am Schluss der Ausnahmeliste stehen.
    ABAP Code#1 IN exit_saplrsap_002     
    DATA: l_d_fmname(30) TYPE c.
    CONCATENATE 'Z_DS_' i_datasource(25) INTO l_d_fmname.
    TRY.
    CALL FUNCTION l_d_fmname
    EXPORTING
    I_DATASOURCE = I_DATASOURCE
    I_UPDMODE = I_UPDMODE
    TABLES
    I_T_SELECT = I_T_SELECT
    I_T_FIELDS = I_T_FIELDS
    I_T_DATA = I_T_DATA
    C_T_MESSAGES = C_T_MESSAGES
    EXCEPTIONS
    RSAP_CUSTOMER_EXIT_ERROR = 1
    OTHERS = 2
    IF FOUND.
    IF SY-SUBRC <> 0.
    RASIE RSAP_CUSTOMER_EXIT_ERROR.
    END IF
    CATCH CX_SY_DYN_CALL_ILLEGAL_FUNC.
    ENDTRY.
    <b>Step#2</b>
    I simple created the Function module Z_DS_BUSINESS
    and put the code in source code  which gives me error . what should i put in other tabs like"Import", Export", Tables" i kept blank
    ABAP CODE give me error : The Dictionary structure or table "FIELD-SYMBOLS" is either not active. i have to remove include in the FM. WHY SO??
    FUNCTION Z_DS_BUSINENSS
    ""Lokale Schnittstelle:
    *"       IMPORTING
    *"             VALUE(I_DATASOURCE) TYPE  RSAOT_OLTPSOURCE
    *"             VALUE(I_CHABASNM) TYPE  SBIWA_S_INTERFACE-CHABASNM
    *"             VALUE(I_UPDMODE) TYPE  SBIWA_S_INTERFACE-UPDMODE
    *"       TABLES
    *"              I_T_SELECT TYPE  SBIWA_T_SELECT
    *"              I_T_FIELDS TYPE  SBIWA_T_FIELDS
    *"              I_T_DATA
    *"              C_T_MESSAGES STRUCTURE  BALMI OPTIONAL
    *"       EXCEPTIONS
    *"              RSAP_CUSTOMER_EXIT_ERROR
    INCLUDE ZXRSAU02.
      WRITE: / 'INSIDE THE Z_DS_MEASUREMENTS PROGRAM'.
    TABLES: REIS_BUSENTITY_ATTR,
            VIBDBE,
    field-symbols:.<fs_REIS_BUSENTITY_ATTR> like REIS_BUSENTITY_ATTR.
    DATA: BEGIN OF i_c_t_data OCCURS 0.
              include structure REIS_BUSENTITY_ATTR.
    DATA END OF i_c_t_data.
    DATA: i_c_t_data_copy like i_c_t_data OCCURS 0 WITH HEADER LINE,
          begin of i_vibdbe occurs 0,
          INTRENO like vibdbe-INTRENO,
          ZFACTREG like vibdbe-ZFACTREG,
                  end of i_vibdbe.
    i_c_t_data_copy[] = i_c_t_data[] = c_t_data[].
    sort i_c_t_data_copy by vibdbe.
    Select  INTRENO
            into table i_VIBDBE from VIBDBE
            for all entries in i_c_t_data_copy
            where  INTRENO = i_c_t_data_copy- INTRENO.
    if sy-subrc = 0.
      sort i_VIBDBE by INTRENO.
      loop at i_c_t_data assigning <fs_REIS_BUSENTITY_ATTR>.
        clear: i_VIBDBE.
        read table i_VIBDBE with key INTRENO = <fs_REIS_BUSENTITY_ATTR>-INTRENO
        BINARY SEARCH
        transporting ZFACTREG .
        if sy-subrc = 0.
          <fs_REIS_BUSENTITY_ATTR>-ZZFACTORY = i_vibebe-ZFACTREG
        endif.
    null

    (I leave office until Monday morning, Europe time)
    in include from customer-exit ZXRSAU01, etc.
    CASE I_DATASOURCE.
    WHEN '0CUSTOMER_ATTR'.
       PERFORM 0customer_attr changing i_t_data...
    ENDCASE.
    In each perform, doing what you wrote ; select (needed fields) from complementary-database-table into an internal table with a for all entries. sort the table. LOOP and MODIFY on i_t_data.
    In some case i had to insert lines of i_t_data to an internal table of DS_structure when entering subroutine and back at exit. (on 4.6C PI 2003 if i remember)
    Some optimization done when reading small tables (T001 society and the same, these are filled once and not for each packet of data.
    Your idea of creating different FM is of interest, but the cost of passing i_t_data between two programs (two function groups) may overcome the gain of performance. In a job only one DataSource is processed so only one routine is actually called.
    Regards.

  • Need Logic for Inserting data into table from another table

    Hi,
    Could you please give me some logic on below:
    TABLE_A has columns A,B,C,D
    What i did
    ==========
    Created new table
    TABLE_1_A with columns A1,A2,B1,B2,B3
    Requirement
    ===========
    I should populate columns A1,A2 (table TABLE_1_A) with the data from column A (table TABLE_A)
    & simillarly populate columns B1,B2 with the data from B.
    the data is huge in the table_a.
    Database: 10g
    Thanks.

    Hi,
    Here's one way:
    INSERT INTO  table_1_a
            (a1, a2, b1, b2)
    SELECT      a,  a,  b,  b
    FROM      table_a
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    If you're asking about a DML statement, such as INSERT, the sample data will be the contents of the table before the DML, and the results will be state of the changed table(s) when everything is finished.
    Explain, using specific examples, how you get those results from that data.
    See the forum FAQ {message:id=9360002}

  • Change logic for pricing date in CRM sales order

    Hi,
    We have a requirement in B2B sales order where in default pricing date should be set to u201CRequested delivery dateu201D entered by customers in B2B sales order. Is this feasible through IMG configurations in CRM 5.0? I am aware its feasible in R3 while configuring sales order type (In the sales order type configuration, there is a field called as u2018Proposed Pricing Dateu2019). Do we have similar options in CRM 5.0?
    Thanks & Regards,
    Namita Singh

    You can implement the BAdI - method CRM_COND_COM_BADI method ITEM_COMMUNICATION_STRUCTURE
    You can use FM CRM_ORDER_READ to read the current order information, in your case the RDD and use this value to change the pricing date in the item-communication structure.
    CS_ACS_I_COM-PRICE_DATE = l_rdd.

  • ATP Logic for Sales Order Requirements not Confirmed

    Hi Colleagues
    I am running ATP with checking rules to include 'inbound shipping notifications'
    We want the ATP check to calculate sales orders that are both as requirements only (Not yet confirmed) and those that are already confirmed.
    We would like this so that when we are looking at Inbound monitoring we know how many orders are required and confirmed prior to running back order scheduling. Otherwise new orders can come in and steal the stock
    Example prior confirmation
    Material A
    Stock                                       0
    Order A           Req -10     Conf 0
    Order B           Req -10     Conf 0
    Inbound Del     Req +100
    ATP                                       100
    So at present if you place a new order then the ATP ignores those orders that are not confirmed and allows the full confirmation of 100
    Example after confirmation
    Material A
    Stock                                       0
    Order A           Req -10     Conf 10
    Order B           Req -10     Conf 0
    Inbound Del     Req +100
    ATP                                       90
    After confirmation we can place a new order for 90 because 10 are confirmed (ignoring the 10 required)
    Requirement
    Material A
    Stock                                       0
    Order A           Req -10     Conf 10
    Order B           Req -10     Conf 0
    Inbound Del     Req +100
    ATP                                       80
    To include the requirments not confirmed and those confirmed in ATP calculation
    Any ideas greatly received
    Regards
    Steve

    Hi,
    ATP qty is generated against the Sales Order requirement. It is not assigned to other deliveries.
    If Batch is assigned to Sales Order, it will not assigned to other deliveries.
    Regards,

  • Enhance Business Logic for Time Data

    Hello,
    I implemented a BADI "ZCL_IM_PT_BLP_USER" for definition PT_BLP_USER for our uses in Time Management, and also implemented the BADI PT_BLP_PSV, "ZCL_IM_PT_BLP_PSV" for the process after SAVE.
    for those infotypes which I have some process after Save,
    if there is any Error message and try to save,i get a dump
    RECUID_NOT_FOUND from program "CL_PT_TMW_BLP_TPHANDLER=======CP"
    do anyone know the problem and it's solution?
    Thanks in advance,

    Hi,
    Here is your scenario
    Deleted one duplicate entry from IT2011.
    The record which you have deleted from IT2011 will be there in TEVEN and database tables always with "X" in the STOKZ field which means cancelled entries.
    In order to delete the same entries from the TEVEN & Data base table , please use report RPTCCXDBDEL. Now you have compare the Number 188799 with PDSNR number from TEVEN table and delete the line item.
    So now you know deleted entries from IT2011 or PTMW still exists in TEVEN & Database tables with an "X"
    Regards,
    Raja Sekhar

  • Recordset per message for Header-Data-Trailer

    Hi Experts,
    I need to process a text file with the following structure:
    Header
      Record1
      Record2
      Record N
    Trailer
    How do i use Recordset per message to break the files into multiple files with EACH havign a Header and Trailer
    Thanks,
    Shobhit

    Hi Shobhit,
    I think it cannot be possible from File Content Conversion using Recordset per message.
    You should do that by means of multimapping 1:N
    Regards,
    Carlos

  • Posting header data for MIGO thru badi

    Hi,
    I'm using badi  ' MB_MIGO_BADI ' for posting header data for the T-Code MIGO.
    I have created an extra tab for supplier details for header data. The details from dis tab should be stored in a ztable.
    I have written the code for the same in the METHOD  'POST DOCUMENT'  of the badi, but m unable to store the data in the ztable. niether is the code for display working.
    kindly help.

    Hi,
    you need to create an attribute where you will store data from your additional screen. In example there is an attribute GS_EXDATA_HEADER with structure MBLNR, MJAHR, BADI_NUMMER. So obviously the point is to enter some number on additional header tab screen. You can see that in the method PAI_HEADER that all data from screen are transferred to this structure and in the method PBO_HEADER are data transferred from internal structure to the screen. So in this internal structure you store the current values of the fields from your additional header tab.  Now when you store material document you want to also store your additional data into database. Until this point you store it only in memory. Hence you prepare a new FM which will store this data to DB and you will call this FM in UPDATE TASK. Here is an example
      CALL FUNCTION 'MIGO_BADI_EXAMPLE_UPDATE_HEAD' IN UPDATE TASK
        EXPORTING
          is_migo_badi_header_fields = gs_exdata_header.
    Once again to summarize it:
    1) Define your own structure to keep additional data as an attribute of BADI implementation class
    2) Pass data from memory to screen and back using methods PBO_HEADER and PAI_HEADER
    3) Store additional data into DB using FM called in UPDATE TASK from method POST_DOCUMENT
    Cheers

  • Passing Header Data in BAPI_CONTRACT_CREATE from BODS

    Hi all,
    I am new to BODS.
    I am trying to create contract using BAPI_Contract_Create from BO-Data Services XI 3.2 to ECC 6.0.
    In the New Function Call, while defining the "Input Parameters" for Header (and HeaderX), I can only select single column. Actually I should be able to pass multiple values for header data. For example fields like company code, document type, vendor etc. are mandatory entries.
    Please let me know how to pass multiple values in the header data provided as varchar (10) in BODS.
    Thanks,
    Pradeep Kumar

    Thanks for the reply.
    Following are the steps that I have performed:
    1) I have created tables with required contract data.
    2) Then data flow is created with contract table as input  to the query.
    3) In the query, I have added the new function call and selected BAPI_CONTRACT_CREATE as function name.
    4) I am stuck at the next screen "Define Input Parameter(s)": I don't see any individual fields like company code, doc tyep etc. I just see single field as "Header".
    5) To check the field details under "Header", I used the path SAP_Repo->Functions-> BAPI_CONTRACT_CREATE. On the schema screen under Input Parameters, 'Header' has type varchar (10) whereas 'Item' is a table with various columns.
    Please let me know how to pass data in 'Input Parameters' for header contract data.
    Regards,
    Pradeep Kumar

Maybe you are looking for

  • Getting crashes, Genius bar couldn't find anything wrong.

    2011 27" iMac i7 1Gb Radeon 6970M About 6 months ago I started getting sudden/random crashes when doing different things.  Sometimes youtube, sometimes gaming (OSX side and Bootcamp both) Ran Apple Hardware Test, even in extended mode, it shows nothi

  • Jar_cache files left in temp folder

    With my java applet, I notice that my Temp folder fills up with lots of jar_cachexxx files, where xxx is numeric. Running on Windows Vista. Most of these files have a size of 0. The files never seem to be deleted. I've searched the forums, but this d

  • Report based on stored procedure

    I want to create a report based on stored procedure(not ref cursor!!!!!) For example - Invoice report with data with complicated rules: 1.line - product_name and price 2.line - annual fee name and price 3.line - some special fee name and price 4.....

  • How to display Some message in the BEX Explorer

    Hi Experts, We have a scenario where we will check for a condition in the User Exit Variable. Depending on the condition we need to stop the execution of the query and display some message. Can any one please help me in explaining me how to display m

  • How to embed applet in swings

    hi i developed a program for timer in applet, i want to include it in to jFrame,can some one help me,i am developing program in netbeans