Formula Variable Customer Exit

Hi Gurus,
I have a requirement where I have to read the one formula variable value ( Replacement path with attribute value ) into customer exit of another characteristic variable .
For example :
I have one characteristic formula variable called VAR1 ( which gives the value ) .This value I want to use it in customer exit of another varable  VAR2 ( is it possible to use one formula variable value into another variable ) which I want to use it in Customer exit.
VAR1  -  Formula Variable
VAR2  -  Simple Variable with out User Input.
Example is as below :
Formula Variable ( VAR1 i.e PLND_DLVRY )  based on this value I want to define another variable APO Version in the Customer
If it is possible please guide me what is the process. Also I want to make sure which I_STEP I need to use...
Please guide the best solution.
Thanks
Ganesh Reddy.

Hi Krishnan / Arvind,
Sorry I was thinking 0PLND_DELRY is nav attribute for 0MAT_PLANT. But 0PLND_DELRY is the quantity field so I can't make this field as a nav attribute. Right now I am populating directly in the Cube using master data. my cube  data looks like
Fields Description
F1 = Version
F2= Material
F3= Plant
F4= 0PLND_DELRY
F5= Calendar Yr/Month
F6= Concensus Forecast ( Key Figure )
Condition is Combination of Material and Plant will define 0PLND_DELRY ( Delivery Time )
F1  |   F2 |  F3  |  F4   |F5  |   F6
201104 | M001 |200 |  30 |  2011/07 |  5100
201104 | M002 |200 |  60 |  2011/07 |  6200
201104 | M001 |300 |  90 |  2011/07 |  4900
201104 | M001 |200 |  30 |  2011/07 |  7900
201105 | M001 |200 |  30 |  2011/07 |  5700
201105 | M002 |200 |  60 |  2011/07 |  6900
201105 | M001 |300 |  90 |  2011/07 |  4300
201105 | M001 |200 |  30 |  2011/07 |  7400
201106 | M001 |200 |  30 |  2011/07 |  5500
201106 | M002 |200 |  60 |  2011/07 |  6700
201106 | M001 |300 |  90 |  2011/07 |  4500
201106 | M001 |200 |  30 |  2011/07 |  7500
201107 | M001 |200 |  30 |  2011/07 |  5000
201107 | M002 |200 |  60 |  2011/07 |  6500
201107 | M001 |300 |  90 |  2011/07 |  4000
201107 | M001 |200 |  30 |  2011/07 |  8000
In Order to bring the variance for F6 for Material M001 and Plant 200 then my result is
Calendar Yr / Mnth = 2011/07
Current Value = 5000
Lead Time = 30,  offset = -1
Version = 201107-1 = 201106 Then
Prior Value = 5500
Variance = 5000-5500 = -500
for Material M002 and Plant 200 then my result is
Calendar Yr / Mnth = 2011/07
Current Value = 6500
Lead Time = 60,  offset = -2
Version = 201107-2 = 201105 Then
Prior Value = 6900
Variance = 65000-6900 = -200
for Material M001 and Plant 300 then my result is
Calendar Yr / Mnth = 2011/07
Current Value = 4000
Lead Time = 90,  offset = -3
Version = 201107-3 = 201104 Then
Prior Value = 4500
Variance = 4000-4900 = -900
for Material M001 and Plant 200 then my result is
Calendar Yr / Mnth = 2011/07
Current Value = 4000
Lead Time = 30,  offset = -1
Version = 201107-1 = 201106 Then
Prior Value = 4500
Variance = 8000-7500 = -500
Every month we get same data with different version and different numbers for all months. Please advise me what is the best solution we can do
Thanks
Ganesh Reddy.

Similar Messages

  • Text Variable(Customer Exit) displays variable name instead of its value.

    Hi Gurus,
    My requirement is to display the year(from variable) as the field name i.e Year end salary 2009.
    I was using the fields name as hardcoded values like 2009 but as per my requirement i need to display it from the variable.
    I tried using Text Variable using customer exit, but I'm getting variable name(zvariable) instead of value(2009).
    Please help me out, many thanks in advance.
    Regards,
    Ankur

    Hi,
    Actually I tried to create a Text Variable with Replacement Path.
    But here the problem is that we have a Characteristic Variable (Customer Exit) which is not listing in the selection box of Replacement Path.
    Hence we tried to create another Text Variable (Customer Exit) and refering to the same Customer Exit code.
    Regards,
    Ankur

  • Do we write variable customer exits for virtual key figures in Bex?

    Hi all,
    Am I thinking the right here " We write variable customer exits in CMOD for virtual key figures in BEx " or am I totally wrong. If thats the case where do we write it.
    Thanks,
    JB

    Nevermind

  • Exclude in variable customer exit

    Hello,
    Can you help me solve problem with exclude in variable customer exit? I have z-table with name of variable and values. Primary I need save multiple values with exclude. I was tried this code:
    if i_step eq 2.
    select * from zbwsd_01 into table i_t_var
         where vname = i_vnam.
    l_subrc = sy-subrc.
    else.
    l_subrc = 4.
    endif.
    if l_subrc = 0.
      loop at i_t_var.
        CLEAR L_S_RANGE.
        L_S_RANGE-LOW  = i_t_var-value.
        L_S_RANGE-SIGN = 'E'.
        L_S_RANGE-OPT  = 'EQ'.
        APPEND L_S_RANGE TO E_T_RANGE.
      endloop.
    else.
    I have NW2004s. Have you some idea?
    Thanks a lot
    Jiri

    Exclude is ok, if I use variable type Selection option. For type Multiple value this is not valid

  • Problem in the variable customer exit in the query jump target

    Hi developers,
    we have problem because we have created a variable time on 0CALDAY who is mapped in the cube of the stock with posting date.We launch the query for example with range 01/8/2005 31/8/2005 and the resul is OK.
    Then we jump on the other query where the users wish see the result of the posting date for the period 01/8/2005 31/8/2005 For resolved this problem we have created a variable customer exit for the characteristic 0Postingdate and have inserted the code in user exit variable:
    WHEN 'ZV_CEREG'.
        IF i_step = 2.
          LOOP AT i_t_var_range INTO loc_var_range
                 WHERE vnam = 'Z_DAT_AN'.
            CLEAR l_s_range.
            CLEAR datastock.
            l_s_range-low  = loc_var_range-low.
            l_s_range-high = loc_var_range-high.
            l_s_range-sign = loc_var_range-sign.
            l_s_range-opt  = loc_var_range-opt.
            APPEND l_s_range TO e_t_range.
            EXIT.
          ENDLOOP.
        ENDIF.
    When we effectued the jump the our objective is transfer the date inserted by user in the variable  of the query sender 'Z_DAT_AN' to the variable of the query receveir 'ZV_CEREG'.
    This step it does not work correctly, this why are different query?
    You can help me for resolved this problem!!
    Thanks Domenico

    Hi,
    I think, this approach does not work. Because customer exit will be finished before displaying the result set of 1st report. So the assignment to VAR2 from VAR1 does not execute then after.
    I hope, In RSBBS,after assigning receiver, in the assignment details,select 'Variable' for 'Type' of 'infoobject' 0calday.And select '0Postingdate' for 'fieldname' and select 'selection options' for selection type.
    Take help.sap.com help for further information.
    With rgds,
    Anil Kumar Sharma. P
    Message was edited by: Anil Kumar Sharma

  • No Query Result After Using Hierarchy Node Variable (Customer Exit)

    Hi
    I have problem at my query. It doesn't show anything in BEx but when i check the data in BW using tcode LISTCUBE i can display the data.
    This problem happen when i change the restrictions for one of characteristic in filter value.
    The characteristic is custom Infoobject (ZCPARTNER), which like Infoobject Partner Unit.
    Previously I set the restriction with constant value, example : A500,A700,A710,A720,A730,A740 and it worked before.
    But when I change it using hierarchy node variable (customer exit), this problem is arise.
    Here is my code at ZXRSRU01
      WHEN 'ZHIEPART'. --> hierarchy node variable
       BREAK-POINT.
        IF i_step = 2.
        Read from ZZCONSGR information
          LOOP AT i_t_var_range INTO loc_var_range
             WHERE vnam = 'ZZCONSGR' OR vnam = 'ZOCONSGR'. --> read input value from consolidation group variable
            CLEAR l_s_range.
            CLEAR l_s_range-low.
            IF loc_var_range-low EQ '000000000000030000'
               OR loc_var_range-low EQ '000000000000010130'.
              l_s_range-low = 'MEZBUNITMDI'.
              l_s_range-high = '0HIER_NODE'.
            ELSEIF loc_var_range-low EQ '000000000000040000'
               OR loc_var_range-low EQ '000000000000010160'.
              l_s_range-low = 'MEZBUNITMPI'.
              l_s_range-high = '0HIER_NODE'.
            ENDIF.
            l_s_range-sign = 'I'.
            l_s_range-opt = 'EQ'.
            APPEND l_s_range TO e_t_range.
            EXIT.
          ENDLOOP.
        ENDIF.
    Here the hierarchy in BW system:
    XXX Cons Unit Hierarchy Set; InfoObject ; Node Name
    - XXX Cons Unit Hierarchy Set; 0HIER_NODE; ZBUNITALL
      - XXX DownStream ... ; OHIER_NODE; MEZBUNITMDI
         - ME/A730; 0CS_UNIT; MEA730
         - ME/A740; 0CS_UNIT; MEA740
      - XXX Power ; OHIER_NODE; MEZBUNITMPI
        - ME A800 - A808; OHIER_NODE; MEZBUNITMPI
        - PT Mitra xxx; 0CS_UNIT;  MEA820
    Anyone can help my problem? Thank you
    Regards,
    Satria B Tandyono

    Hi Satria,
    Instead of following code ---
    CLEAR l_s_range-low.
    IF loc_var_range-low EQ '000000000000030000'
    OR loc_var_range-low EQ '000000000000010130'.
    l_s_range-low = 'MEZBUNITMDI'.
    l_s_range-high = '0HIER_NODE'.
    ELSEIF loc_var_range-low EQ '000000000000040000'
    OR loc_var_range-low EQ '000000000000010160'.
    l_s_range-low = 'MEZBUNITMPI'.
    l_s_range-high = '0HIER_NODE'.
    ENDIF.
    try this ---
    IF loc_var_range-low EQ '000000000000030000'
    OR loc_var_range-low EQ '000000000000010130'.
    l_s_range-low = 'MEZBUNITMDI'.
    ELSEIF loc_var_range-low EQ '000000000000040000'
    OR loc_var_range-low EQ '000000000000010160'.
    l_s_range-low = 'MEZBUNITMPI'.
    ENDIF.
    Note : whenver the option is EQ, the system takes only low value.

  • RSBBS - create a variable customer exit based on initial selection

    Dear all,
    I am using RSBBS (RRI) to jump from one query specific cell to another query. The destination query gets the parameters from the selected cell. In order to achieve this, the only thing we have done was to insert the relevant characteristics as Free Characteristics on the destination query (no variables were required).
    Now, I need to add a new variable on my destination query. This variable should be a customer exist based on one of the paramenters that the destination query gets from the original query. How do I get this value to use it in the variable customer exit???
    Thanks in advance

    Thanks for your reply,
    I got it in a different but not tottally different way from wthat you suggested.
    I have created a variable () (ready for imput) for my characteristic. However, on transaction RSBBS, when defining the target query, I went to "Assigment Details" option and for my characteristic, I have changed the type form "generically" to "variable" and choosed the field name of the variable ().
    In this way the target report gets the original report definition for this characteristic as a variable that I can then use on my costumer exit.
    I have tryed and worked...brilliant!

  • Formula   variable  sap exit

    formula   variable  sap exit   what  are the changes in my report in quary designer

    Hi,
    If you're refering to the InfoObject 0CALYEAR, there is an exit variable available called: 0CYEAR - Current Calendar year
    Which will filter on the current year.
    br
    Mikael

  • How to debug i_step=0 Bex Variable (Customer Exit)

    Hi all,
    can anyone please help me regarding following problem:
    I have a variable (customer exit) in a query. This is for hierarchy authorization.
    This variable is mentioned in my analysis authorization (Infoobject 0COSTCENTER).
    Now i want to debug the coding when execute the query in TA RSRT.
    But when i set a break-point. The i_step starts with 1. I want to debug
    the coding when the i_step is 0 !!!! Any idea?
    Best regards,
    Frank

    Here a break solution:
    only for develop system-
    you can set this code at start of the include:
    DATA: flag TYPE c.
    WHILE flag IS INITIAL.
    ENDWHILE.
    let start the query, then go to SM50 and take in debugging the process in loop. (Programe/mode-program-debugging).
    Pay attention leave the code immediately after that.

  • Formula variable user exit.

    Hello experts;
    I will provide max points for help with this.
    In query designer can I access a key figure from another cube and use it in a formula?
    I cannot use multi-cube in this solution so I was looking into creating a formula variable using a user exit to access a key figure stored in a different cube.
    Ex:
    I have a Tracings cube with customer and material cost information.
    I need to calculate the cost per patient for Absorbent material.
    I can get the customer cost for Absorbent material but the number of patients is stored in a different cube called Census information.
    Since the Census information is not related to a material (only customer) I cannot get the number of patients together with the cost of the absorbent material. I was hoping to access the Census information (number of patients) from the query calculating the cost per patient.
    Thanks
    Den

    I really don't see how you can implement it using exit variable even if you can read data from other cube in exit. If you still want to explore it, refer the following thread - How to read data from an InfoCube in BI 7.0?
    Why can't you build a multiprovider - these kind of requirements are precisely the reason why multiprovider is there (when you need information present in multiple infoproviders in the same report)

  • Variable customer exit

    Hi all,
    I created a query with customer exit variable that is filled from another variable manual entry.
    When i start a query I receive this error message:
    Error for variable in the customer exit
    and in debug I find this message:
    System error in the program CL_RSR_REQUEST and Form GET_SETXX_WA
    How can I do?
    Thanks
    Gianmarco

    when 'ZODACE'.
        tables: /BIC/AZSD_O0100,
                /BIC/AZSD_O0200.
        ranges: r_createdon for /BIC/AZSD_O0100-CREATEDON.
    break-point.
        if i_step = 2.
          loop at i_t_var_range into loc_var_range
                  where vnam = 'ZDATADOC'.
            clear r_createdon.
            r_createdon-low    = loc_var_range-low.
            r_createdon-high   = loc_var_range-high.
            r_createdon-sign   = 'I'.
            r_createdon-option = 'BT'.
            append r_createdon.
            exit.
          endloop.
          select DOC_NUMBER into
                 /BIC/AZSD_O0100-DOC_NUMBER
                 from /BIC/AZSD_O0100
                  where /BIC/ZAUDAT in r_createdon.
            select single * from /BIC/AZSD_O0200
          select * from /BIC/AZSD_O0200
                   where refer_doc = /BIC/AZSD_O0100-DOC_NUMBER.
              clear l_s_range.
              l_s_range-low = /BIC/AZSD_O0200-refer_doc.
              l_s_range-sign = 'I'.
              l_s_range-opt  = 'EQ'.
              append l_s_range to e_t_range.
          endselect.
          endselect.
        endif.
    The variable are:
    ZODACE based on IO 0REFER_DOC with customer exit
    ZDATADOC based on IO ZDATU with manual entry
    After wich end-user digit a data in ZDATADOC popup I take ODOC_NUMBER in order item ODS ZSD_O01 where ZDATADOC=CREATEDON.
    With 0DOC_NUMBER I go to delivery item ODS ZSD_O02 and I take the corresponding 0REFER_DOC and then I fill variable ZODACE.
    0REFER_DOC is in row of the query.

  • Daily Outstanding Report : Formula or Customer Exit

    Hello All,
    I am working on Daily Outstanding Report which is on 0FIAR_C02 Cube. in this cube i have 4 key figures 0DEBIT, 0CREDIT, 0BALANCE, 0SALES.
    There is one standard query  0FIAR_C02_Q1001 where i enter value for 0FISCAL YEAR / PERIOD = 009.2009 then i will get Period Balance means AR balance for that period, Sales for the previous period (means for 008.2009) and DSO which is formula from the above 2 keyfigures. this report shows me data for only one month as i have to enter it in the selection screen.
    My requirement is : in the selection screen i will give interval 009.2009 to 011.2009 then it should show me that report for Each Month. now to get the data for Period Balance i took cumulative balance so it is coming perfactly but HOW TO DEAL WITH SALES FOR THE PREVIOUS PERIOD for everymonth menas for SEPTEMBER i should be able to get get AUGUST VALUE for SALES same way for OCTOBER i should be able to get the value for SEPTEMBER and so on...
    Do i require to write a Customer Exit code or with any formula it is possible ?
    Please let me know.
    Regards,
    Komik Shah

    Hi Marsanaidu,
    Thanks for your reply.
    Can you send me a customer exit code with offset value. how to do this ?
    Regards,
    Komik Shah

  • SSingle Variable (Customer Exit)

    Hi,
    Into the ABAP code, if I add the line "APPEND L_S_RANGE TO E_T_RANGE." the variable is not working!!!
    This mean I can't get more than one value into my variable???
    Could anyone help please?
    http://wiki.sdn.sap.com/wiki/display/BI/Sample+user+exits+for++Bex+Variables+in+SAP+BW
    SINGLE VARIABLE
    WHEN 'VAR_SINGLE'.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW = '40'.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    APPEND L_S_RANGE TO E_T_RANGE.
    My customer exit:
    zpl TYPE char4.
    IF i_step = 2.
      CASE i_vnam.
        WHEN 'ZPLANT1'.
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZV_TXT2'.
            CLEAR: l_s_range.
            zpl = loc_var_range-low.
            CASE zpl.
              WHEN 'NORD'.
                CLEAR L_S_RANGE.
                l_s_range-low = '0010'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
                APPEND l_s_range TO e_t_range. *** When I add this line into the code, the variable is not working when I launch the BEx***
              WHEN OTHERS.
                l_s_range-low = '0010'.
                l_s_range-high = '0175'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'BT'.
            ENDCASE.
            APPEND l_s_range TO e_t_range.
          ENDLOOP.
      ENDCASE.
    ENDIF.
    I would like to do this:
        WHEN 'ZPLANT1'.
          LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZV_TXT2'.
            CLEAR: l_s_range.
            zpl = loc_var_range-low.
            CASE zpl.
              WHEN 'NORD'.
                CLEAR L_S_RANGE.
                l_s_range-low = '0010'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
                APPEND l_s_range TO e_t_range.
                l_s_range-low = '0175'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'EQ'.
                APPEND l_s_range TO e_t_range.
              WHEN OTHERS.
                l_s_range-low = '0010'.
                l_s_range-high = '0175'.
                l_s_range-sign = 'I'.
                l_s_range-opt = 'BT'.
            ENDCASE.
            APPEND l_s_range TO e_t_range.
          ENDLOOP.
      ENDCASE.
    ENDIF.
    Thx in advance
    Batou

    Hi,
    DATA : l_s_range TYPE rsr_s_rangesid.
    DATA : loc_var_range LIKE rrrangeexit.
    Here:
    ZPLANT : Is customer Exit variable on Plant
    ZV_TXT1: Is Text variable Bcoz I'll gibe input through variable in Report.
    ZPL =  loc_var_range-low = CHAR 60
    WHEN 'ZPLANT'.
       LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZV_TXT1'.
          CLEAR: l_s_range.
               ZPL = loc_var_range-low.
                CASE ZPL.
                  WHEN 'A'.
                         l_s_range-low = 'PA01'.
                         l_s_range-high = 'PA05'.
                         l_s_range-sign = 'I'.
                         l_s_range-opt = 'BT'.
                  WHEN 'B'.
                         l_s_range-low = 'PB01'.
                         l_s_range-high = 'PB05'.
                         l_s_range-sign = 'I'.
                         l_s_range-opt = 'BT'.
                  WHEN OTHERS.
                         l_s_range-low = 'PA01'.
                         l_s_range-high = 'PZ10'.
                         l_s_range-sign = 'I'.
                         l_s_range-opt = 'BT'.
                ENDCASE.
                     APPEND l_s_range TO e_t_range.
              ENDLOOP.
      ENDCASE.
    ENDIF.
    Thanks
    Reddy

  • Variable Customer Exit Is Not Working

    Dear all,
    I have created two variables to compare current month and previous month:
    ZCURMONTH
    ZPREVMONTH
    However, only column with ZCURMONTH displays the data but not column with ZPREVMONTH.
    Can someone tell me what is wrong with this customer exit code?
    IF I_STEP = 2.
      CASE I_VNAM.
        WHEN 'ZCURMONTH'.
          CLEAR loc_var_range.
          READ TABLE i_t_var_range INTO loc_var_range WITH KEY VNAM = '0P_PER3'.
          CLEAR l_s_range.
          l_s_range-sign     = 'I'.
          l_s_range-opt      = 'BT'.
          IF loc_var_range-low GT '012'.
            l_s_range-low = '012'.
            l_s_range-high = loc_var_range-low.
          ELSE.
            l_s_range-low = loc_var_range-low.
            l_s_range-high = loc_var_range-low.
          ENDIF.
          APPEND l_s_range TO e_t_range.
        WHEN 'ZPREVMONTH'.
          CLEAR loc_var_range.
          READ TABLE i_t_var_range INTO loc_var_range WITH KEY VNAM = '0P_PER3'.
          CLEAR v_period.
          IF loc_var_range-low LT '013'.
            v_period = loc_var_range-low - 1.
          ELSEIF loc_var_range-low = '013'.
            v_period = loc_var_range-low - 2.
          ELSEIF loc_var_range-low = '014'.
            v_period = loc_var_range-low - 3.
          ELSEIF loc_var_range-low = '015'.
            v_period = loc_var_range-low - 4.
          ELSE.
            v_period = loc_var_range-low - 5.
          ENDIF.
          CLEAR l_s_range.
          l_s_range-sign     = 'I'.
          l_s_range-opt      = 'BT'.
          IF loc_var_range-low GT '001'.
            l_s_range-low = v_period.
            l_s_range-high = v_period.
          ELSE.
            l_s_range-low = '012'.
            l_s_range-high = '016'.
          ENDIF.
          APPEND l_s_range TO e_t_range.
      ENDCASE.
    ENDIF.
    Thanks!

    Hi AL,
    I set the variable to represent "Interval" instead of "Multiple Single Values". Which one is correct in my case i.e. Period 12 - Period 16?
    Also, I have set the break-point for debug by monitoring the L_S_RANGE structure and E_T_RANGE table. The values are what I expected in EXIT_SAPLRRS0_001 function. However, I lost the plot when it goes to another function i.e. RRS_VAR_VALUES_EXIT_AFTER, the L_S_RANGE has changed to another value and E_T_RANGE becomes invalid.
    Appreciate further inputs.

  • Bex Formula using customer Exit

    Dear Friends,
    I am trying to resolve the below problem. Require your help.
    In one of the bex reports, the requirement is to provide a variable on Bill date. From the given bill date, the report should display data for 7 consecutive days.
    But the condition is that the from date should always be a saturday?
    What i have done is : In ROWS, i selected the required key figure columns
    and then, created a structure in which i created Seven New Selections and used offsets.
    so, if the user enters a specific date, the report displays seven days of the data from the given date. However, how do i restrict the user's choice to only saturdays.
    I suppose the solution lies in using customer Exit.. but could some one help me with the ABAP coding.
    I am also available on [email protected]
    Thanks for the anticipated support.

    Hi,
    You can get the Day from the current system date and put a case statement to substract 1 for sunday to get saturday
    2 for monday
    3 for tuesday
    etc
    Fuction Module : DATE_TO_DAY
    Can check this link : FM: DATE_TO_DAY

Maybe you are looking for

  • Idoc to FI scenario - Help needed

    Hi folks, Scenario: Idoc to file: I am trying to push COSMAS01 from SAP R/3 systemt to PI 7.1. I did the following 1> Configured the IR and ID 2> Did the ALE config on the sender R/3 system and also pushed idoc using BD16. I also see the status of th

  • Icon problem in 10.6.7

    Since i updated to 10.6.7 i have the following problem. Fonts get weird, and icons disappear randomly. Whats up? And what is Apple doing about this update?

  • Jar files need for Custom connector API app

    hi all, I am doing an application regarding "Custom connector API", for doing the application I need "jdom,rome-0.6" jar files. kindly send these jar files it will be helpful to me. To do such custom connector API application any plugins must be adde

  • Getting a error ...data found in the main document but not in data source

    Good morning ..... I am generating letters , calling wordpad from forms 6i......when it calls the wordpad document . it is saying that ...data found in the maindocument but not in the data source ... but when i see manually in that wordpad data sourc

  • BDC Back ground error

    I have created BDC for PA30 transaction for infotye 24. It is working fine in fore ground but not uploading the data in background. Is there solution for this like ctu parameters ??