BAPI_INCOMINGINVOICE_CREATE: Withholding tax data is not coming

Dear all,
I am using this BAPI to create Incoming Invoice. I am populating the Headerdata and Itemdata table. Then the invoice which is created doesnt have Withholding Tax Data Information.
Even I tried to populate withtaxdata table, but didnt find the soln.
The code is as shown below:
  DATA: t_headerdata LIKE STANDARD TABLE OF bapi_incinv_create_header WITH HEADER LINE,
        t_itemdata   LIKE STANDARD TABLE OF bapi_incinv_create_item WITH HEADER LINE,
        t_withtaxdata  LIKE STANDARD TABLE OF bapi_incinv_create_withtax WITH HEADER LINE,
        t_return     LIKE STANDARD TABLE OF bapiret2 WITH HEADER LINE,
        v_invoicedocnumber LIKE bapi_incinv_fld-inv_doc_no,
        v_fiscalyear LIKE bapi_incinv_fld-fisc_year,
        v_bukrs TYPE bukrs.
  DATA: v_knumv LIKE konv-knumv,
        v_kschl LIKE konv-kschl.
LOOP AT itab1.
    tabix = 0.
    IF tabix = 0.
      LOOP AT itab2 WHERE ebeln = itab1-ebeln.
        MOVE-CORRESPONDING itab2 TO itab3.
        APPEND itab3.
      ENDLOOP.
      tabix = 1.
    ENDIF.
    SORT itab3 BY ebelp.
    count = 0.
    v_netamt = 0.
    LOOP AT itab3 WHERE ebeln = itab1-ebeln.
      v_menge = v_menge + itab3-tot_ton.
      v_dmbtr = v_dmbtr + itab3-frt_amt.
      AT END OF ebelp.
        count = count + 1.
        t_itemdata-invoice_doc_item = count.
        READ TABLE itab3 WITH KEY ebeln = itab1-ebeln
                                  ebelp = itab3-ebelp.
        IF sy-subrc = 0.
          t_itemdata-po_number   = itab3-ebeln.
          t_itemdata-po_item     = itab3-ebelp.
          t_itemdata-item_amount = v_dmbtr.
          t_itemdata-quantity    = v_menge.
          t_itemdata-po_unit     = itab1-meins.
          t_itemdata-item_text   = itab1-text.
          t_itemdata-tax_code = 'V0'.
*Condition Type
          SELECT SINGLE knumv
                        FROM ekko
                        INTO v_knumv
                        WHERE ebeln = itab1-ebeln.
          IF sy-subrc = 0.
            SELECT SINGLE kschl
                          FROM konv
                          INTO v_kschl
                          WHERE knumv = v_knumv
                          AND   kposn = itab3-ebelp
                          AND   ( ( kschl = 'FRC1' ) OR ( kschl = 'FRB1' ) ).
            IF sy-subrc = 0.
              t_itemdata-cond_type = v_kschl.
            ENDIF.
          ENDIF.
          APPEND t_itemdata.
          CLEAR: v_menge, v_dmbtr.
        ENDIF.
      ENDAT.
      v_netamt = v_netamt + itab3-frt_amt.
    ENDLOOP.
    t_headerdata-invoice_ind = 'X'.
    t_headerdata-doc_date    = itab1-inv_date.
    t_headerdata-pstng_date  = itab1-budat.
    t_headerdata-ref_doc_no  = itab1-refno.
    SELECT SINGLE bukrs INTO v_bukrs FROM ekko WHERE ebeln = itab1-ebeln.
    IF sy-subrc = 0.
      t_headerdata-comp_code   = v_bukrs.
    ENDIF.
    t_headerdata-currency    = itab1-waers.
    t_headerdata-gross_amount = v_netamt.
    t_headerdata-bline_date  = itab1-budat.
    t_headerdata-item_text   = itab1-text.
    t_headerdata-diff_inv = itab1-lifnr.
    t_headerdata-business_place = '1000'.
   APPEND t_headerdata.
   t_withtaxdata-wi_tax_type = 'C1'.
   t_withtaxdata-wi_tax_code = 'C1'.
   t_withtaxdata-wi_tax_base = v_netamt.
   APPEND t_withtaxdata.
   t_withtaxdata-wi_tax_type = 'C2'.
   t_withtaxdata-wi_tax_code = 'C2'.
   t_withtaxdata-wi_tax_base = v_netamt.
   APPEND t_withtaxdata.
   t_withtaxdata-wi_tax_type = 'C3'.
   t_withtaxdata-wi_tax_code = 'V3'.
   t_withtaxdata-wi_tax_base = v_netamt.
   APPEND t_withtaxdata.
    CLEAR: v_netamt.
    break bsfdev.
    CALL FUNCTION 'BAPI_INCOMINGINVOICE_CREATE'
      EXPORTING
        headerdata                = t_headerdata
    ADDRESSDATA               =
   IMPORTING
     invoicedocnumber          = v_invoicedocnumber
     fiscalyear                = v_fiscalyear
      TABLES
        itemdata                  = t_itemdata
    ACCOUNTINGDATA            =
    glaccountdata             =
    MATERIALDATA              =
    TAXDATA                   =
    withtaxdata               = t_withtaxdata
    VENDORITEMSPLITDATA       =
        return                    = t_return
    CLEAR errflag.
    LOOP AT t_return.
      IF t_return-type EQ 'E'.
        it_message-text = 'Error in function'.
        it_message-text1 =  t_return-message.
        it_message-po_number = itab1-ebeln.
        it_message-exnum = itab1-exnum.
        APPEND it_message.
        errflag = 'X'.
      ELSE.
      ENDIF.
    ENDLOOP.
    IF errflag IS INITIAL.
      COMMIT WORK AND WAIT.
      IF sy-subrc NE 0.
        it_message-po_number = itab1-ebeln.
        it_message-text = 'Error in updating'.
        it_message-text1 =  t_return-message.
        APPEND it_message.
        EXIT.
      ELSE.
*Fill Temporary table
        LOOP AT itab3.
          IF v_invoicedocnumber <> space.
            it_message1-po_number = itab3-ebeln.
            it_message1-po_item   = itab3-ebelp.
            it_message1-doc_number = itab3-belnr.
            it_message1-invoicedocno = v_invoicedocnumber.
            it_message1-exnum = itab1-exnum.
            APPEND it_message1.
            zpending_challan-po_number    = itab3-ebeln.
            zpending_challan-po_item      = itab3-ebelp.
            zpending_challan-doc_number   = itab3-belnr.
            zpending_challan-exnum        = itab3-exnum.
            zpending_challan-invoicedocno = v_invoicedocnumber.
            zpending_challan-menge        = itab3-tot_ton.
            zpending_challan-dmbtr        = itab3-frt_amt.
            zpending_challan-budat        = itab3-budat.
            INSERT zpending_challan FROM zpending_challan.
            COMMIT WORK.
            CLEAR: zpending_challan.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDIF.
    IF errflag IS INITIAL.
      count = count + 1.
      CONCATENATE count 'Purchase Order Posted Out of '  no_recs1
                        INTO text1 SEPARATED BY space.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
       EXPORTING
  PERCENTAGE       = 0
         text             = text1
      CONCATENATE 'Invoice Document No' v_invoicedocnumber 'generated'
                                        INTO text1 SEPARATED BY space.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
       EXPORTING
  PERCENTAGE       = 0
         text             = text1
    ENDIF.
    CLEAR: t_headerdata[], t_headerdata,
           t_itemdata[], t_itemdata,
           itab3[], itab3.
  ENDLOOP.
Kindly help. Its very urgent.
Thanks.
Vinod.

Not used any more

Similar Messages

  • FBL1( VENDOR LEDGER REPORT)-  Withholding tax amount is not coming .

    in FBL1 ( vENDOR lEDGER rEPORT) - WITHHOLDING TAX AMOUNT IS NOT CMING IN COLUMN  QBSHB OF FBL1.
    Purchasing document number is not coming also.
    How these fields may appear in the above said report. Is any config missing ?
    Thanks in advance
    M K Agarwal
    9967029930

    TDS posted from MIRO will not reflect in line item report, i have taken opinion from SAP for the same issue few days back, SAP has given the following opinion.
    *With reference to the difference in behaviour as compared to the document posted for example from MIRO which is an MM transaction and FB60 which is a FI transaction please note the following:
    The withholding tax amount that you are using i.e. Field BSEG-QBSHB is designed to fill for the classic withholding tax. And extended withholding tax information is stored exclusive in table WITH_ITEM.
    Also note that MIRO does not give the user the control in case of Classical withholding tax. It only supports Extended withholding tax. Hence it does not populate BSEG fields in case of Extended WT.
    So in MIRO, the data for extended withholding tax are saved within the table WITH_ITEM and not within the table entry BSEG-QBSHB. The latter isnot updated during the procedure. Furthermore it is not possible to select data from table WITH_ITEM
    within the transaction FBL1N in a transparent and unique way, as FBL1N only reads BSEG / BSIK / BSAK tables.
    In your line layout,you define a field BSEG-QBSHB. But actually the field of vendor/customer line item is filled with zero from FI. Thus,it shows zero in line item display*
    Please review note 363309 for detailed explanation and explains the functionality which is valid even for your release.
    So it is not possible to display withholding tax information in the line item display transactions, since this information is not
    held in the BSEG / BSIK / BSAK tables, but is instead stored in the WITH_ITEM table.
    Please convey to your client, standard SAP will not show the TDS information in line item reports, documents posted from MIRO and refer  the note 363309.

  • Withholding Tax Pop Up Not coming

    Hi Guys,
    I have configure WH tax and assigned it to the Vendor Master data.
    However the WH Tax pop up is not coming up.
    Please advise what is missing.
    Thanks,
    Kris..

    Hi,
    I have done the settings but still it does not pop up.
    I am using the FB60 transaction to enter the vendor invoice. Then in the vendor master i have assigned the WH tax type , code and clicked the Liable to button.
    Also in FB60 on the GL line item, I am giving a tax code and Jurisdiction code.
    In FB60 on the Withholding Tax tab, the system is showing the two WH tax types that i entered in the vendor master data.
    However the Tax base is showing as 0 there.
    But when i simulate the document, it shows the With holding tax and then also when i post the document.
    However why is the pop up not coming and also the base why it is showing as 0, i am not understanding.
    Thanks..
    srikanth..

  • Note for TW withholding tax data

    Hi,
    Who knows is the note about the latest uploading format of withholding tax data for Taiwan published?

    Hello
    The SAP note number is   1662886 -2011 Changes on Taiwan Tax Medium File.
    The note is currently in state "Inprocess" and have not yet been released.
    Please check the sap service market place  "www.service.sap.com/notes" for the note release status.
    Thanks and Kind Regards
    Ramana

  • Problem creating A/R Invoice with Withholding tax data via DI-Server

    Hi!
    Using the following SOAP Request to the DI-Server, I wanted to create an A/R Invoice having a withholding tax data but it always respond with an error saying
    Total taxable amount of all rows exceeds the base amount  [INV5.TaxbleAmnt][line: 1]
    SOAP Request:
    <?xml version="1.0" encoding="UTF-16"?>
    <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
      <env:Header>
        <SessionID>203A3C01-7808-4638-8322-2307DF3C0F8F</SessionID>
      </env:Header>
      <env:Body>
        <dis:Add xmlns:dis="http://www.sap.com/SBO/DIS">
          <Service>InvoicesService</Service>
          <Document>
            <DocType>dDocument_Items</DocType>
            <HandWritten>tNO</HandWritten>
            <DocDate>2010-02-08</DocDate>
            <DocDueDate>2010-02-08</DocDueDate>
            <TaxDate>2010-02-08</TaxDate>
            <VatDate>2010-02-08</VatDate>
            <CardCode>NPI</CardCode>
            <Comments>test di-server soap message 1</Comments>
            <DocumentLines>
              <DocumentLine>
                <ItemCode>TRC</ItemCode>
                <Quantity>1</Quantity>
                <Price>1000</Price>
                <TaxCode>OVAT</TaxCode>
                <VatGroup>OVAT</VatGroup>
                <TaxLiable>tYES</TaxLiable>
                <WTLiable>tYES</WTLiable>
              </DocumentLine>
            </DocumentLines>
            <WithholdingTaxDataCollection>
              <WithholdingTaxData>
                <WTCode>C140</WTCode>
                <TaxableAmount>1000</TaxableAmount>
                <WTAmount>100</WTAmount>
              </WithholdingTaxData>
            </WithholdingTaxDataCollection>
          </Document>
        </dis:Add>
      </env:Body>
    </env:Envelope>
    OVAT rate above is 10%.
    The withholding tax code C140 is setup as
    rate=10,
    Category=Payment,
    Base Type=Net,
    % Base Amount = 100,
    Rounding Type = Commercial Values.
    We are using the New Zealand/Australia localization in SAP B1 2007A PL49.
    The above code can be successful only if I set the <WithholdingTaxDataCollection> node to:
            <WithholdingTaxDataCollection>
              <WithholdingTaxData>
                <WTCode>C140</WTCode>
                <TaxableAmount>0</TaxableAmount>
                <WTAmount>100</WTAmount>
              </WithholdingTaxData>
            </WithholdingTaxDataCollection>
    setting TaxableAmount equal to 0 which is not desired.
    Can anyone extend me some help, please?
    Thanks.

    Albert,
    Did you try adding this via the DI API and not the DI Server?  Do you get the same error?  Please see this SAP Note ...
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=0001303019
    Eddy

  • Create withholding tax data subsequently for reconciled and open items in c

    Hi All,
    Mine is a US co code and I have a  vendor for which invoice and payment documents are posted. After posting the invoice i found that the vendor is subjected to classic withholding tax which i did not calculate when posting invoice, making payments.
    Now i have changed the vendor master data with relevant withholding tax details.
    I know the program RFWT0020 allows us to create withholding tax data subsequently for reconciled and open items in cases where vendors or customers become liable for withholding tax with a tax rate of 0 %.
    It is not working out for me.
    Can any body help me on this.
    Thanks in advance.

    Dear all,
    by se38 --> report documentation, You can read carefully the following:
    The auxiliary program makes it possible to convert both classic and extended withholding tax data. However, with classic withholding tax, ONLY VENDOR data can be converted.
    In addition, the program enables the withholding tax code to be changed for reconciled and open items with existing withholding tax data. For this, the tax rate of the existing withholding tax data as well as the tax rate of the new withholding tax code must be 0%. The new withholding tax codes are taken from the customer or vendor master data. In the case of extended withholding tax, the withholding tax code is only changed if the related withholding tax categories are the same.  The withholding tax base amount is not changed by this procedure.
    Recreating or changing the withholding tax data requires that the program first be executed for INVOICES and then executed for PAYMENTS in a subsequent step.
    I hope this helps You.
    Mauri

  • Item's withholding tax amount is not zero

    Dear All,
    When ever we clear the vendor account through f.13 system was showing the below mentioned message.
    S No customer documents selected
    S No G/L account documents selected
    I Only accounts with debit and credit postings are included
    X Item's withholding tax amount is not zero 0101 K 319936 13000031 105352237 1
    X Item's withholding tax amount is not zero 0101 K 319936 13000031 105352237 2
    I Stop date " 02.01.2010 Stop time " 17:00:00
    Client is asking no need to show Items withholding tax amount is not zero message.
    Where as the clearing criteria is business place .
    Regards,
    Teja

    Hi,
    please refer to the note 499902 and 442588 for the explanation why the transaction F.13 has given out
    this error and which transactions (FBZ2 or F-53) should be used to clear the items with the withholding tax info maintained.
    Reg
    Madhu M

  • 1099 Withholding Tax data

    hi,
    how do we delete the withholding tax data for a document after it has been cleared. user has mistakenly entered the invoice as withholding  but  it should not.
    how can we fix this.
    Thanks
    Sivaram

    Hi
    you have to reverse and reset clearing  the document  with FBRA  and post again without witholding tax.
    BR Tarik

  • Generic Withholding tax for Credit note

    I try to generic Withholding tax for credit note but It's show message
    No data was found.
    I check the selection criteria so many time and I use variant from another document that it can generic wht before.I just change posting date and document No. for Credit note and it's still show no data was found.
    What's wrong and what should I do.
    please advice me.
    Thank you very much.
    Ataru

    Hi Wayne,
    We opened a note with SAP and were told that a US 1042s copy could not be used within the standard system.  Looking into it further we found that the form name was coded into a selection program.  We had an ABAP developer add code that allows us to use a "Z_"  copy form. 
    Regards,
    Gregg

  • How to run RFWT0020 to update withholding tax data

    Can anyone explain the difference between these two options when running RFWT0020 to update withholding tax data? Data Regeneration vs. Changes to Source Tax Code? I can't find any mention of the two options in the program documentation
    When I do test runs with the two different options, the program is selecting difference documents to update. If we are just turning on the 1099 functionality now (beginning with the 2011 tax year), should I run the program once with Regeneration mode and once with Changes to Source Tax Code???
    Thanks for any advice!
    Allison

    Hi,
    he program enables the withholding tax code to be changed for reconciled and open items with existing withholding tax data. For this, the tax rate of the existing withholding tax data as well as the tax rate of the new withholding tax code must be 0%. The new withholding tax codes are taken from the customer or vendor master data. In the case of extended withholding tax, the withholding tax code is only changed if the related withholding tax categories are the same. The withholding tax base amount is not changed by this procedure.
    Recreating or changing the withholding tax data requires that the program first be executed for invoices and then executed for payments in a subsequent step.
    When you start the program, the selection screen appears. You can make selections according to vendors, tax code 1, tax code 2 (vendor master record), customers, tax code 1, tax code 2 (customer master record), company codes, document numbers and posting data. The selection determines which items are checked for possible subsequent entries in tables BSEG, BSAK, BSIK, BSAD, BSID, WITH_ITEM.
    You can also decide whether only withholding tax data is to be handled for cases where the documents in question contain no withholding tax data. There is no withholding tax data if no withholding tax entries exist for the item selected in table WITH_ITEM (extended withholding tax) or the die withholding tax fields in table BSEG are not filled.
    The selection can also be made in test mode. If you do this, no changes are made in the database. You are therefore advised to run the program in test mode initially.
    Regards
    Aditya

  • RFWT0020 withholding tax data - Data Regen vs. Change to Source Tax Code?

    Can anyone explain the difference between these two options when running RFWT0020 to update withholding tax data?  Data Regeneration vs. Changes to Source Tax Code?  I can't find any mention of the two options in the program documentation
    When I do test runs with the two different options, the program is selecting difference documents to update.  If we are just turning on the 1099 functionality now (beginning with the 2011 tax year), should I run the program once with Regeneration mode and once with Changes to Source Tax Code???
    Thanks for any advice!
    Allison

    Hi,
    he program enables the withholding tax code to be changed for reconciled and open items with existing withholding tax data. For this, the tax rate of the existing withholding tax data as well as the tax rate of the new withholding tax code must be 0%. The new withholding tax codes are taken from the customer or vendor master data. In the case of extended withholding tax, the withholding tax code is only changed if the related withholding tax categories are the same. The withholding tax base amount is not changed by this procedure.
    Recreating or changing the withholding tax data requires that the program first be executed for invoices and then executed for payments in a subsequent step.
    When you start the program, the selection screen appears. You can make selections according to vendors, tax code 1, tax code 2 (vendor master record), customers, tax code 1, tax code 2 (customer master record), company codes, document numbers and posting data. The selection determines which items are checked for possible subsequent entries in tables BSEG, BSAK, BSIK, BSAD, BSID, WITH_ITEM.
    You can also decide whether only withholding tax data is to be handled for cases where the documents in question contain no withholding tax data. There is no withholding tax data if no withholding tax entries exist for the item selected in table WITH_ITEM (extended withholding tax) or the die withholding tax fields in table BSEG are not filled.
    The selection can also be made in test mode. If you do this, no changes are made in the database. You are therefore advised to run the program in test mode initially.
    Regards
    Aditya

  • Data is not coming in pivot table

    Hi,
    i made a request using some measures,month (time) and some other columns but data is not coming when i m working on pivot table though its working in case of table and graph.
    please help me out..
    thanks

    Hi,
    well data is populating in tables and chart in Oracle BI and i also executed the same query in sql server 2005 and got the desired result.
    the reason to show the results into pivot table is -- i want to show the result(measures) with time dimension and some other dimensions so i have to use this pivot table or if u have some other solution please let me know...
    thanks
    Edited by: user629711 on Nov 20, 2008 11:42 PM

  • Data is not coming in internal table

    Hello Abapers,
    Data is not coming in my internal table.
    Plz tell me where I m wrong
    SELECTION-SCREEN BEGIN OF  BLOCK blk.
    PARAMETERS:       compcode LIKE vbrk-bukrs OBLIGATORY.
    PARAMETERS:       billtype LIKE vbrk-fkart OBLIGATORY.
    SELECT-OPTIONS:   billdate FOR  vbrk-fkdat OBLIGATORY.
    PARAMETERS :      acgrpc   LIKE vbrk-ktgrd OBLIGATORY.
    PARAMETERS:       acgrpm   LIKE vbrp-ktgrm OBLIGATORY.
    PARAMETERS:       taxcode  LIKE konv-mwsk1 OBLIGATORY.
    SELECT-OPTIONS:   plant FOR vbrp-werks .
    SELECT-OPTIONS:   bussarea FOR vbrp-gsber .
    SELECTION-SCREEN END OF BLOCK blk.
    START-OF-SELECTION.
    SELECT avbeln afkart aknumv afkdat abelnr aktgrd abukrs axblnr
    amwsbk  bgsber bwerks bktgrm
    FROM ( vbrk AS a INNER JOIN vbrp AS b ON
    avbeln EQ bvbeln  )
    INTO CORRESPONDING FIELDS OF TABLE vbrk_vbrp
    WHERE ( a~fkart EQ billtype )  AND
    ( a~fkdat IN billdate ) AND
    ( a~ktgrd EQ acgrpc ) AND
    ( a~bukrs EQ compcode ) AND
    ( b~gsber EQ bussarea ) and
    ( b~werks EQ plant ) AND
    ( b~ktgrm EQ acgrpm ) .
    Ravi

    Hi,
    write ur query this way :
    SELECT avbeln afkart aknumv afkdat abelnr aktgrd abukrs axblnr amwsbk bgsber bwerks bktgrm
    FROM ( vbrk AS a INNER JOIN vbrp AS b ON
    avbeln EQ bvbeln )
    INTO CORRESPONDING FIELDS OF TABLE vbrk_vbrp
    WHERE ( a~fkart EQ billtype ) AND
    ( a~fkdat IN billdate ) AND
    ( a~ktgrd EQ acgrpc ) AND
    ( a~bukrs EQ compcode ) AND
    ( b~gsber IN bussarea ) and
    ( b~werks IN plant ) AND
    ( b~ktgrm EQ acgrpm ) .
    even plz check then internal table ' vbrk_vbrp ' if they have all the fields of select query and even the order is same as select , since you are using ' into corresponding fields of table ' clause in select statement.
    hope this helps.
    thanx,
    dhanashri.
    Edited by: Dhanashri Pawar on Aug 26, 2008 6:14 AM

  • Nav.attr data is not coming in cube

    Hi guys,
            Nav.attr data is not coming in cube even though there is data in master data tables.

    Hi Ajay,
    In your case for the Nav Attr data to appear firstly load the master data where your Nav Attr resides and then do the apply hier/attr change for that master data.
    Hope this helps.
    Bye
    Dinesh

  • In fbl1n report for document type RE  withholding tax amount is not showing

    in fbl1n report for document type RE  withholding tax amount is not showing
    in sap note 363309 determines
    Solution
    Remove the field which contains the withholding tax information (field BSEG-QSSHB) from your display
    variant.
    If you want to display the withholding tax information, double-click on the document number and
    subsequently choose 'Withholding tax'.
    my doubt is we remove the field BSEG-QSSHB in layout how can show the withholding tax amount in FBLIN report
    how to remove from the layout
    please clarefy
    bhayyapu   

    Hi,
    If you want to check amounts of withholding tax for the vendors, you have some options to view it. You can access the WITH_ITEM, LFC1 tables by SE16. You have too the S_P00_07000134 report. This report is developed for the Colombia but I already used for the another country with the ABAP development for this country.
    Also you can use table join BSIK and WITH_ITEM by SQVI for the open items and BSAK and WITH_ITEM for cleared items. It is more simple and fast.
    JPA

Maybe you are looking for

  • Open Gl Issue with Nvidia GTX 460 & Photoshop cs5

    open gl has become disabled and preferences window doesn't show the detected video. card cache level is set to 4. help>system info still shows the card and drivers but I can't use any of the open gl features. I have already downloaded installed the l

  • How can I add a UserGroup input in an APEX Login Page

    Hi, I am willing to add a UserGroup input (dropdown) in APEX Login page, but I see the default Login page supports only two parameter, i.e. Username and PWD. I see the authentication function wwv_flow_custom_auth_std.login( P_UNAME => :P101_USERNAME,

  • Please help! My new widescreen isn't working!

    So I bought a 22inch widescreen monitor for my 933mhz Quicksilver G4. The monitor has a resolution of 1680x1050. I used a DVI convertor and connected it to the ADC port. The problem is the picture doesn't look all that great, and worse, it looks real

  • Sap PI - XML signature

    Hi Experts We have to digitally Sign and Encrypt and Decrypt an XML file in PI7.11 system using soap adapter To have an expert advise can I use WSSE or Apache WSS4J or SAML or Apache axis soap adapter My requirement is: XML Documents shall be signed

  • Can you call a procedure inside another procedure and how many?

    Ok. I have 3 procedures. I would like to call 2 of the from inside one, but I would like them to be in order. So, procedure1 // this is in db1      call procedure2             this collects, and inserts data into table 2 from db1             this mus