Not able to post data

hello there..
i m not able to send data from an applet(embedded in a jsp) to another jsp even though i got successed making connection between these two.
i m using following code at applet sede(embedded in jsp)...
     URL appletURL = getCodeBase();
        String strHost = appletURL.getHost();
        String strPort = String.valueOf(appletURL.getPort());
        String strProtocol = appletURL.getProtocol();
        int portNumber = Integer.parseInt(strPort);
        String strwp ="/UASProject/faces/feedbackform.jsp";       
        URL jspURL = new URL(strProtocol,strHost,portNumber,strwp); 
        URLConnection jspCon = jspURL.openConnection();       
        jspCon.setUseCaches(false);
        jspCon.setDoOutput(true);
        jspCon.setDoInput(true);      
        OutputStream outstream= jspCon.getOutputStream(); 
        ObjectOutputStream oboutStream = new ObjectOutputStream(outstream);             
        oboutStream.writeObject(std_details);         
        oboutStream.flush();        
       // oboutStream.close();        
        URL tempURL = new URL(String.valueOf(jspURL));       
        getAppletContext().showDocument(tempURL,"_self"); 
//from server
    InputStream instr = jspCon.getInputStream();      
        ObjectInputStream inputFromjsp = new ObjectInputStream(instr);      
        Properties results = (Properties)inputFromjsp.readObject();
        inputFromjsp.close();
        instr.close();and this is at server side
   ObjectInputStream inputFromjsp = new ObjectInputStream(request.getInputStream());
       std_details = (Properties)inputFromjsp.readObject();
//to applet
     response.setContentType("application/x-java-serialized-object");
    OutputStream outstr = response.getOutputStream();
       ObjectOutputStream oos = new ObjectOutputStream(outstr);
       oos.writeObject(ce);
       oos.flush();
       oos.close();
     but when i use std_details object for further implementation the i gets
java.lang.NullPointerException
here std_details is an properties object contains few key/value sets
any help would be much appriciated

/POSDW/BAPI_POSTR_CREATE will only import the data into ibound queue.
To update data into TLog, you need to run /POSDW/QDIS (or /POSDW/QMON).
There's another FM /POSDW/CREATE_TRANSACTIONS could update TLog straightly.

Similar Messages

  • Not able to post vendor payment in case of Cash discount received

    Hello
    We are on SAP ECC 6.0
    I'm not able to post an outgoing payment through F-53 T code when cash discount is received from vendor due to early payment before due date.
    I get the following error message -
    Tax code V0 for country IN has been deleted or incorrectly changed
    Message no. FS201
    Our tax calculation procedure is TAXINN and we are an indian company in India.
    GL account for cash discount received is already defined in OBXU t code for SKE transaction key tax code wise.
    V0 tax code is defined through FTXP.
    I'm able to display correct cash discount amount and cash discount % when i click on select process open item in F-53 after entering document date; posting date; company code; currency; Bank GL A/c; Amount (Net of discount); value date and Vendor Account.
    What am i missing? Why am i not able to post vendor outgoing payment?
    Is it possible to post cash discount received to the credit of Stock / Inventory Account as quantity received is not consumed or quantity is lying in inventory?
    Thanks.
    Vimal

    Hello Chintan
    I have assigned GL A/c in OBXU t code with and without reference to tax code.
    Still, i am not able to post outgoing payment when cash discount is received as i am paying it before due date.
    Cannot i take credit of cash discount received to Inventory / Stock Account?
    Is cash discount received always posted to non-Inventory / non-stock GL Account?
    Thanks.
    VS

  • Not able to get data while executing in background for mb52

    Dear all,
    my requirement is i want to schedule the zreport for every 1 hour.but proble is when iam executing in fore ground iam able to get data.but when iam going to scheduling this iam not able to get data.
    my code is
    type-pools:slis.
    data zbudat type RANGE OF budat.
    data wab like line of zbudat.
    data zmatkl type RANGE OF MATKL.
    data waz like line of zMATKL.
    data zwerks type RANGE OF werks.
    data wax like line of zwerks.
    waz-sign = 'I'.
    waz-low = 'CRUDE'.
    waz-option = 'EQ'.
    append waz to zmatkl.
    clear waz.
    waz-sign = 'I'.
    waz-low = 'SGO'.
    waz-option = 'EQ'.
    append waz to zmatkl.
    clear waz.
    *waz-sign = 'I'.
    *waz-low = 'FINES'.
    *waz-option = 'EQ'.
    *append waz to zmatkl.
    *clear waz.
    *waz-sign = 'I'.
    *waz-low = 'LUMPS'.
    *waz-option = 'EQ'.
    *append waz to zmatkl.
    *clear waz.
    *waz-sign = 'I'.
    *waz-low = 'UFO'.
    *waz-option = 'EQ'.
    *append waz to zmatkl.
    wax-sign = 'I'.
    wax-low = 'BIMI'.
    wax-option = 'EQ'.
    append wax to zwerks.
    clear wax.
    wax-sign = 'I'.
    wax-low = 'BIPL'.
    wax-option = 'EQ'.
    append wax to zwerks.
    *waz-sign = 'I'.
    waz-low = 'C'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *clear waz.
    *waz-sign = 'I'.
    waz-low = 'S'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *clear waz.
    *waz-sign = 'I'.
    waz-low = 'UC'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *waz-sign = 'I'.
    waz-low = 'F'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    *clear waz.
    *waz-sign = 'I'.
    waz-low = 'L'.
    *waz-option = 'CP'.
    *append waz to zmatnr.
    types:begin of w_tab,
           bwkey type werks_d,
           matnr type matnr,
            lgort type LGORT_D,
            budat type budat,
            labst type labst,
           endmenge type p decimals 3,
          end of w_tab.
          DATA : IT_TAB TYPE STANDARD TABLE OF W_TAB WITH HEADER LINE .
    FIELD-SYMBOLS: <gt_fieldcat> TYPE slis_fieldcat_alv,
    <gt_report_list> TYPE w_tab .
    field-symbols <lt_pay_data> type any table.
    *FIELD-SYMBOLS : <LT_DATA> LIKE LINE OF IT_TAB .
    FIELD-SYMBOLS : <LT_DATA> type any .   " i have chaged  it
    data lr_pay_data type ref to data.
    cl_salv_bs_runtime_info=>set( exporting display = abap_false
    metadata = abap_false
    data = abap_true ).
    ****SUBMIT ZQM_GR_BARGE_LOADING WITH S_date in zbudat with s_werks in zwerks with p_pend = ' ' AND RETURN .
    submit RM07MLBS  with MATKLA in zmatkl with werks in zwerks
    "with XVBST = 'X'
    using selection-SCREEN '1000' and return.
    try.
    cl_salv_bs_runtime_info=>get_data_ref( importing r_data = lr_pay_data ).
    assign lr_pay_data->* to <lt_pay_data>.
    catch cx_salv_bs_sc_runtime_info.
    message `Unable to retrieve ALV data` type 'E'.
    endtry.
    cl_salv_bs_runtime_info=>clear_all( ).
    data: obj_s type ref to ZKMINCO_MINESTOCKFROM_SAP_OUT.
    create OBJECT obj_s.
    data : output TYPE ZKMINMINESTOCKFROM_SAP1 ,
            record type ZKMINMINESTOCKFROM_SAP_REC_TAB ,
           wa_record like line of record.
    LOOP AT <lt_pay_data> ASSIGNING <LT_DATA>.
    MOVE-CORRESPONDING <LT_DATA> TO IT_TAB .
    APPEND IT_TAB .
    wa_record-STOCK_AS_ON_DATE = sy-datum .
    wa_record-STOCK_AS_ON_TIME = sy-uzeit .
    wa_record-PLANT_ID = it_tab-bwkey.
    wa_record-STORAGE_LOC_ID = it_tab-lgort .
    wa_record-MATERIAL = it_tab-matnr .
    wa_record-STOCK_QTY = it_tab-labst.
    append wa_record to record.
    clear wa_record.
    endloop.
    output-MINESTOCKFROM_SAP-record = record .
    CALL METHOD obj_s->MINESTOCKFROM_SAP_OUT
      EXPORTING
        output = output .
    commit work.
    Thanks in advance.

    Hi,
    I assume that in your case you have two program lets say ZFOREGROUND and ZBACKGROUND (Called inside zforeground using submit statement)
    zforeground has :
    1. a input field to browse excel sheet or some file at the selection screen, and
    2. button 'post all' to determine the background processing.
    Now your requirement is such that you want zbackground to get scheduled as background job when post all button is clicked.
    So, within the event AT USER-Command, check the sy-ucomm as that of post all button, if so write the following code to schedule the job:
    DATA: jobname LIKE tbtcjob-jobname.
    DATA :jobcount LIKE tbtcjob-jobcount,
    host LIKE msxxlist-host.
    DATA: BEGIN OF starttime.
    INCLUDE STRUCTURE tbtcstrt.
    DATA: END OF starttime.
    DATA: starttimeimmediate LIKE btch0000-char1.
    DATA: gv_job_dt TYPE sy-datum,
    gv_job_tm TYPE sy-uzeit.
    jobname = 'EXCLUSION_LISTING'.
    gv_job_dt = sy-datum.
    gv_job_tm = sy-uzeit.
    Job open
    CALL FUNCTION 'JOB_OPEN'
    EXPORTING
    delanfrep = ' '
    jobgroup = ' '
    jobname = jobname
    sdlstrtdt = sy-datum
    sdlstrttm = sy-uzeit
    IMPORTING
    jobcount = jobcount
    EXCEPTIONS
    cant_create_job = 01
    invalid_job_data = 02
    jobname_missing = 03.
    IF sy-subrc NE 0.
    "error processing
    ENDIF.
    Insert process into job
    SUBMIT ZBACKGROUND AND RETURN
    WITH p_file1 = gv_file_cust_exc "<----
    Parameters which you want to pass to report zbackground from the report
    WITH p_file2 = gv_file_win_deal "------zforeground
    USER sy-uname
    VIA JOB jobname
    NUMBER jobcount.
    IF sy-subrc ne 0.
    "error processing
    ENDIF.
    Close job
    starttime-sdlstrtdt = gv_job_dt.
    starttime-sdlstrttm = gv_job_tm.
    CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
    event_id = starttime-eventid
    event_param = starttime-eventparm
    event_periodic = starttime-periodic
    jobcount = jobcount
    jobname = jobname
    laststrtdt = starttime-laststrtdt
    laststrttm = starttime-laststrttm
    prddays = 1
    prdhours = 0
    prdmins = 0
    prdmonths = 0
    prdweeks = 0
    sdlstrtdt = starttime-sdlstrtdt
    sdlstrttm = starttime-sdlstrttm
    strtimmed = starttimeimmediate
    targetsystem = host
    EXCEPTIONS
    cant_start_immediate = 01
    invalid_startdate = 02
    jobname_missing = 03
    job_close_failed = 04
    job_nosteps = 05
    job_notex = 06
    lock_failed = 07
    OTHERS = 99.
    IF sy-subrc EQ 0.
    WRITE:/1 'JOB' COLOR 3,
    jobname COLOR COL_GROUP,
    'Scheduled in Background' COLOR 3. "error processing
    gv_time = starttime-sdlstrttm.
    gv_date = starttime-sdlstrtdt.
    ENDIF.
    Above code will schedule the report zbackground in background.
    Note:
    the program schduled in background will not be able to access any data present on your presentation server. data should be provided either by the program schhedulling it in foreground or it has to be thr in application server.
    Regards,
    Ravi

  • Not able to post Depreciation

    Hi FI Gurus
    I am not able to post Depn. in T code AFAB for the year 2007. Year 2006 there was no transactions are available and has been closed properly. when i execute the depn i am getting the following error.
    "No posting is possible in the fiscal year 2007 specified. The fiscal year specified differs by more than a year from the fiscal year in which the last postings were performed".
    Can you pls help on this.
    Regards,
    MR

    Hi MR
    Is it that 1st time AFAB is done in SAP, when was your go live date.
    Are you able to post any other Asset related documents, if not please
    check whether you had done period generation through T code OA84
    Please revert back
    regards
    A Chandrasekaran

  • Not Able to Post Takeover Values using AS91

    Hi Guys,
    I am not able to post Takeover Values as of 12/31/2007. I gave the last closed fiscal year as 2007 and the system automatically took the takeover date as 12/31/2007. When I try to enter the dtat in Takeover values, it is greyed out. Can anybody explain why it is not allowing me to change values?
    Thanks and Regards
    Madhu Vutukuri

    Hi,
    Try this option -
    1. Keep the cursor focussed on the field that you want to change
    2. Goto Menu Edit >> Change field contents
    A pop up will appear asking to change the value.  Give the required value to be changed and save.
    Regards,
    Sridevi

  • Not able to post MIGO.

    Dear All ,
                                User is not able to post MIGO as an info displays in status bar " this p.o does not contain any item ".
    as user had made a p.o in whihc he had given the qty as 1 EA & also Acttt assign. cat is given.pl help that why this error is coming .
    sap11

    Vendor Confirmations
    In procurement, it is quite normal that once a purchaser sends a Purchase Order to Vendor then he needs a response from vendor expecting some of the information as follows:
    Receipt of purchase order by vendor
    Acceptance of all the terms and conditions mentioned in purchase order by vendor
    Expected date of delivery the goods
    Expected date of goods dispatched from the vendor end
    Transport confirmation and the shipping notification
    And many more
    So vendor confirmation is nothing but dispatching of this information to the recipient about the status of the purchase order. Once he has received this then there is a requirement of updating the respective purchase order.
    This updating helps the planner to plan the materials more precisely because between the purchase order and planned delivery date, more reliable information has become available.
    In Standard SAP, the term "confirmation" (short for "vendor confirmation") has been defined as an umbrella term for various types of information provided by a vendor to a customer, including order acknowledgments, loading or transport confirmations and shipping notifications.
    For updating this information in PO, the consultant has to make the following setting in SPRO under the node Set up Confirmation Control:
    To define confirmation categories, choose External Confirmation Categories or Internal Confirmation Categories
    To define confirmation control keys, choose Confirmation Control Keys
    To define the confirmation sequence, choose Confirmation Sequence
    Once these settings have been done in SPRO, we have to assign the confirmation control key at item level in the purchase order under the tab page Confirmation. If we are not assigning this we may face error while creating inbound delivery on receipt of shipping notification. Apart from this, reference document for goods receipt will also be decided on these settings.
    If there are more than one confirmation categories, then for all confirmation categories, consultant can also specify whether they are for information only or whether they are to constitute a basis for goods receiving and materials planning activities.
    Hope this will help you in Understanding Confirmations.

  • Urgent : Im not able to Post Withholding Tax in "BAPI_ACC_DOCUMENT_POST"

    Hey Guys,
    I am not able to Post Withholding Tax in BAPI "BAPI_ACC_DOCUMENT_POST".
    Can anybody please tell me the alternative ???
    How can i post With holding TAX info with accounting document...is there any other function module to do the same ???
    It's very urgent...only 3 days are left for Project to be Live.
    Please help me ...
    Thanks in advance

    Hi
    Hope it will help you.
    <REMOVED BY MODERATOR>
    BAPI_ACC_GL_POSTING_CHECK
    CALL FUNCTION 'BAPI_ACC_GL_POSTING_CHECK'
    EXPORTING
    documentheader = w_documentheader
    TABLES
    accountgl = it_accountgl
    currencyamount = it_currencyamount
    return = it_return.
    Populate the corresponding tables with the data you have.
    For the Date do convert it.
    PERFORM convert_date USING it_header-bldat
    CHANGING w_documentheader-doc_date.
    w_documentheader-comp_code = 'z998'
    w_documentheader-doc_type = 'SA'
    "and fill the respective tables this way .
    <b>
    BAPI_ACC_GL_POSTING_POST
    </b>
    call function 'BAPI_ACC_GL_POSTING_POST'
    exporting
    documentheader = doc_header
    IMPORTING
    OBJ_TYPE = l_objtype
    * OBJ_KEY =
    * OBJ_SYS =
    tables
    accountgl = t_accountgl
    currencyamount = t_curramt
    return = t_return
    * EXTENSION1 =
    Edited by: Alvaro Tejada Galindo on Mar 5, 2008 10:18 AM

  • Not able to View data in .CSV file

    Hi,
    I am using some java script to display data conditionall, for color coding purpose but when i try to download the data to an spread sheet i am not able to do that please suggest me how to export fix this bug
    select
    case
    TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2)
    = :P15_EV_LCLthen
    '<span style="background-color:lightgreen">'|| TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || '</span>'
    else
    '<span style="background-color:red">'|| TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || '</span>'
    end "Effort"
    from actuals Z
    If i try to extract actuals it shows blank not able to extract data please suggest me how to fix this issue.
    Thanks
    Sudhir

    Hi,
    I have no problem with item :P15_EV_LCL this is having a value my probem here is i am using java script to display the value in different color based on the condtion case
    eg:
    select
    case
    TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2)
    = :P15_EV_LCL
    then
    span style="background-color:lightgreen"
    || TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    else
    span style="background-color:yellow"
    || TRUNC(
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    end "Effort"
    from actuals Z
    If i dont use this <Span style="Background-color:color"> i am able to generate data in excel sheet if i use this color coding i am not able to get data in spread sheet.
    Please suggest
    Thanks
    Sudhir
    Edited by: Sudhir_N on Mar 23, 2009 10:00 PM

  • Not Able To View Data in Web Service Model

    Hi ,
       I m trying to view a table using web service model.
       When i write the same code for binding it to context , i m able to view its data.
       But not so while using Web Service Model(not adaptive web service model).
       The code is: 
             Request_ZMANAGE_MAKT_ZMANAGE_ZMAKT object1 =new Request_ZMANAGE_MAKT_ZMANAGE_ZMAKT();
       wdContext.nodeRequest_ZMANAGE_MAKT_ZMANAGE_ZMAKT().bind(object1);
       object1.setResponse(new Response_ZMANAGE_MAKT_ZMANAGE_ZMAKT());
      CAn anybody plz solve my problem.
    Thanks..
    Regards,
    Ankita

    Hi,
    I have no problem with item :P15_EV_LCL this is having a value my probem here is i am using java script to display the value in different color based on the condtion case
    eg:
    select
    case
    TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2)
    = :P15_EV_LCL
    then
    span style="background-color:lightgreen"
    || TRUNC((
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    else
    span style="background-color:yellow"
    || TRUNC(
    ( (NVL(Z."AEWP",0) - NVL(Z."BEWP_Final",0) ) / DECODE(Z."BEWP_Final",0,NULL,Z."BEWP_Final") ) * 100
    ),2) || '%' || /span
    end "Effort"
    from actuals Z
    If i dont use this <Span style="Background-color:color"> i am able to generate data in excel sheet if i use this color coding i am not able to get data in spread sheet.
    Please suggest
    Thanks
    Sudhir
    Edited by: Sudhir_N on Mar 23, 2009 10:00 PM

  • Not able to see data in Pivot table

    Hi,
    I have a issue with pivot table i have a column which displays values 0 and 1 and another column called month when i am placing this month column as a section and values column as a measure i am not seeing any values means i can see the month as header but instead showing 0 or 1 its showing blank columns. previously i created similar kind of table it worked but at that time values column data type is number this time its char. can anybody help me out how i can see the data in the pivot table. i already tried converting this column to number but still i am not able to see data in that values column.
    Thanks

    Hi copter,
    Place the month column in rows and value column in measure section and check if results are coming.If still it doesnt come i suppose you dint apply aggregation rules to value column.In pivot view click values column and aggregate by /select min or max or either server complex and check your results.
    (I suppose your aggregation rules is default)....Correct this one and you can place it in sections as per your requirement.
    Cheers,
    KK

  • Not able to see data in 0FIGL_V30 & 0FIGL_V31

    Hi,
    I've activated / installed standard business content for EpH3 i.e Mutltiprovider 0FIGL_M30 and entire data flow which includes reports and virtual providers 0FIGL_V30 & 0FIGL_V31.
    I'm able to see data in cubes where above virtual providers read data from. here is the link from help.sap.com
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/6b/fdc62d9e0b444cb14b7f424d9f9cb7/frameset.htm
    Issue is i'm not able to see data in Virtual providers 0FIGL_V30 & 0FIGL_V31 and hence in reports.
    Can anyone advice please. thanks
    SD

    Hi All,
    Yes I've checked data in underlying cubes.
    Mulitprovider is fine.
    I've added Master Data for both 0GL_ACCTP  and 0ACCESSTP
    RFC connection is fine.
    No DTP & Transformation since this is Virtual Provider based on Functional Module.
    However when I debug FM for 0FIGL_V30 & 0FIGL_V31 - I see no data and thought there might be master data issue b/w 0GL_ACCOUNT & 0GLACCEXT but MD is fine.
    It just not pulling data.
    Is there some setting I'm missing?
    FM's used for Virtual Providers are
    0FIGL_V30  - RS_BCT_FIGL_SREP_DATA_GET_V30
    0FIGL_V31 - RS_BCT_FIGL_SREP_DATA_GET_V31
    SD

  • Not able to access data in Query

    Hi,
    I have loaded data using DTP from 2 different source systems.
    One is 3.x emulated datasource and the other is New 7.0 datasource.I have loaded data sucessfully in to DSO.Built a query on same.
    But when iam executing the query by material as selection criteria.Iam not able to found data in query from one source system.The same data is available in DSO.Please needed in this regard.

    Hi Venkat,
    After extracting data into DSO check the request whether active or not.
    Check data in DSO in contents.
    If is there any restrictions on info providers in Queries.
    Let us know status clearly.......
    Reg
    Pra

  • Not able to see Data in Xcelsius 2008

    Hi everyone,
    My question is I am not able to see data in Xcelsius spreadsheet although I am able to connect to SAP BW and also able to see and select query but when I select Cross Tab Data in output Values it is not displaying in Xcelsius spreadsheet
    System Info
    Xcelsius 2008 Enterprise Trial Version SP 3.0
    SAP BW 7.1 SP 6 ABAP and JAVA
    Any help would be appreciated

    Hi Rashid,
    When you are using the BW conenction in Xcelsius you will not see any data in the spreadsheet at design time or at preview time.
    To see the data you need to go SAP > Publish, then SAP > Launch to test the dashboard in the NetWeaver Portal as that is the only place where the data can be viewed.
    Regards
    Matt

  • Not able to save data in pa30 action infotype in production

    Hi,
    In my organization users are not able to save data in SAP HR  pa30 action info type in production.
    It is gets hanged and throws run time error after run long time .
    in ST22 it will give below error:
    Runtime Errors   TSV_TNEW_PAGE_ALLOC_FAILED
    Information on where terminated
        Termination occurred in the ABAP program  "SAPLRHAS"   in "FILL_STRU_TURBO"
        The main program was "MP000000 ".
        In the source code you have the terminated point in line 759
        of the (Include) program "LRHASF00".
    Thanks and regards,
    Tarun

    Hi,
         Pls check your relationship of reporting postions and set up relationship A002 and also check organization relationship
        otherwise take help form ABPERs and debug and partiuclar prorgram and where and witch object its throwing
        error found out.
    Regrads,
    Tarun

  • Not able pass the data from component to other component.

    Hello All
    I am not able pass the data from component to other component.
    I have done like this.
    1 Main Component (Parent component ) having below  two child components.Embeded as used components.
    2)     Search Component  and Details Component
    3)     In the Search Component having buttons,  Say : Button u201CXu201D on click of button I am navigating to Details component view through FPM.
    4)     When I am clicking above button u201CXu201D raising the event to call the parent   business logic method, there I am getting  Structure with values and binded this structure to the node and Mapped this node to the Details component  interface node. FYI : I kept the debugging point Structure is having data , I had set static attributes table to node instance.
    5)     In the Details component node data is not coming mean empty.
    Thanks in Advance.
    Br-
    CW
    Edited by: CarlinWilliams on Jul 4, 2011 9:21 AM

    Hi,
    When you use input Ext. check that the parent component should not be used as used component in child component.
    Only in the parent component the child components should be used as used components and the usage has to be created for the
    Child Components and the binding of the Node should be done from comp. controller of parent component to child node
    by which you will be able to see double arrow against the node.This should work
    Thanks,
    Shailaja Ainala.

Maybe you are looking for

  • BADI/USER EXIT for MIRO.

    Hi All I have added a new field (GST) on MIRO screen using GUI XT. The requirement is such that I need to populate this field after I have entered the purchase order no (It needs to take the vendor from the PO and then its subsequent VAT no from the

  • A105-S2101

    Hello, my name is Sarah, and I have just a very basic knowledge of computers. I just have a few questions about my laptop. First, the screen is busted in my computer. Does anyone know a quality website to use to order a replacement? I have someone th

  • Tax not calculating In FB60.

    we are using  Taxinn maintain  plant/vendor/material  in Fv11   for  condition  JVRD  using  single tax code V1. all  VAT calculation   for diffrent  tax rate on single tax code. In  MIRO vat  tax calculating but not In FB60. We upgrade The PRD up pa

  • Jdbc tracking does not work in JDeveloper 10.1.2

    My project consists of a single jsp file, and two libraries: JSP Runtime, and DebugJDBC. The latter simply includes ojdbc14_g.zip The JSP FIle is <%@ page contentType="text/html;charset=windows-1252"%> <html> <head> <meta http-equiv="Content-Type" co

  • Screen Sharing Problem after Lion Install

    Greetings, After installing Lion on my MacBookPro 17", I am now unable to use screen sharing to access my Mac Mini Server running 10.6.8 server.  When I attempt to make the connection, the Screen Sharing application starts, but I never see a desktop