Cancel backorder line in sales order

Hi All,
Can we cancel the line which has been backordered. For example, for an item(Printer mechanism) has onhand quantity of 4 and reservable quantity 4. If we book 5 quantities of item(Printer mechanism), 4 will be pick released and 1 will be backordered. Can i cancel this 1 backordered or can i cancel the whole order so that i can serve for a other priority order. Please suggest what can be done.
Thanks and Regards,
Mahesh

Hello,
I my opinion in your case reservation is pointless because your shipment priority is changing. Pick release I think do not allocate items( check this ). When you do not have reservation you can leave at the moment shipment with low priority and issue with higher.
We do not use reservation because stock could be pick almost to every customer.
Edit.
Pick release allocate items. In this case when you have status Pick release you have to make backorder. After this you can issue another sales order.
I have a question when do you know that you have higher priority sales order (after pick realise or earlier)?
Regards,
Luko
Edited by: Luko on 2009-04-01 10:19

Similar Messages

  • DI to Cancel Lines on Sales Order

    Hi,
    We're running SBO 2007A PL37 and I was wondering if there's a way to use the DI to cancel lines off sales orders if we have the order numbers and item codes?  We would want to do it in bulk... so feed in a whole lot of orders and items and have it cancel them all off rather than us having to go in and do them all individually.
    Thanks,
    Michael
    Edited by: Michael Boucher on Oct 30, 2008 1:41 AM

    Yes, it is possible. The code for closing one row is:
                           Dim obj As SAPbobsCOM.Documents
                            obj = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
                            obj.GetByKey(docentry)
                            obj.Lines.SetCurrentLine(linenum)
                            obj.Lines.LineStatus = SAPbobsCOM.BoStatus.bost_Close
                            err_code = obj.Update()
    In your case go in cycle through all lines in order and compare the itemcode in line and itemcode you have and if its same, close the row.

  • Billing document should not be cancelled after creating return sales order

    Hi All,
    Billing document should not be cancelled after creating return sales order with reference to billing document. Please suggest configuration settings on the same.
    Sudheer.

    Hi,
    In SAP, when the sub-sequent document is existing , we can not cancel the preceeding document. Therefore if you want to cancel the billing document you need to calcel the documents which are created with reference to that.
    Check and confirm.
    Regards,
    Ravi Duggirala

  • How to delete header condtion line of sales order by BAPI

    Hi,
    I want to delete the condtion line of sales order header using BAPI "BAPI_SALESORDER_CHANGE",
    it is work well in item level condition type, but it is not work for header condition type. show error message "missing item number" since of pass item number "000000" for header condition line.
    Below is reference source code, thanks in advance.
    *& Report  ZTEST_BAPI_SO_DELETECONDLINE
    *& Sample program to call BAPI_SALESODRER_CHANGE to
    *& delete condition line of so line item
    REPORT  ZTEST_BAPI_SO_DELETECONDLINE.
    ***--- Structures for create BAPI
    DATA: SALESDOCUMENT LIKE BAPIVBELN-VBELN.
    DATA: ORDER_HEADER_INX LIKE BAPISDH1X,
          BEHAVE_WHEN_ERROR LIKE BAPIFLAG-BAPIFLAG,
          SIMULATION LIKE BAPIFLAG-BAPIFLAG.
    DATA: BEGIN OF ORDER_ITEM_IN OCCURS 2.
            INCLUDE STRUCTURE BAPISDITM.
    DATA: END OF ORDER_ITEM_IN.
    DATA: BEGIN OF ORDER_ITEM_INX OCCURS 2.
            INCLUDE STRUCTURE BAPISDITMX.
    DATA: END OF ORDER_ITEM_INX.
    DATA: BEGIN OF SCHEDULE_LINES OCCURS 2.
            INCLUDE STRUCTURE BAPISCHDL.
    DATA: END OF SCHEDULE_LINES.
    DATA: BEGIN OF SCHEDULE_LINESX OCCURS 2.
            INCLUDE STRUCTURE BAPISCHDLX.
    DATA: END OF SCHEDULE_LINESX.
    DATA: BEGIN OF ORDER_CFGS_REF OCCURS 2.
            INCLUDE STRUCTURE BAPICUCFG.
    DATA: END OF ORDER_CFGS_REF.
    DATA: BEGIN OF ORDER_CFGS_INST OCCURS 2.
            INCLUDE STRUCTURE BAPICUINS.
    DATA: END OF ORDER_CFGS_INST.
    DATA: BEGIN OF ORDER_CFGS_VALUE OCCURS 2.
            INCLUDE STRUCTURE BAPICUVAL.
    DATA: END OF ORDER_CFGS_VALUE.
    DATA: BEGIN OF CONDITIONS_IN OCCURS 2.
            INCLUDE STRUCTURE BAPICOND.
    DATA: END OF CONDITIONS_IN.
    DATA: BEGIN OF CONDITIONS_INX OCCURS 2.
            INCLUDE STRUCTURE BAPICONDX.
    DATA: END OF CONDITIONS_INX.
    DATA: BEGIN OF EXTENSIONIN OCCURS 2.
            INCLUDE STRUCTURE BAPIPAREX.
    DATA: END OF EXTENSIONIN.
    DATA: BEGIN OF RETURN OCCURS 2.
            INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF RETURN.
    DATA: TMP_POSNR  LIKE VBAP-POSNR,
          L_KNUMV    LIKE VBAK-KNUMV,
          L_KSCHL    LIKE KONV-KSCHL,
          L_STUNR    LIKE KONV-STUNR,
          L_ZAEHK    LIKE KONV-ZAEHK.
    ***--- Selection
    PARAMETERS: P_VBELN LIKE VBAK-VBELN OBLIGATORY MEMORY ID AUN DEFAULT '7000510', "'0001007443', " SO
                P_POSNR LIKE VBAP-POSNR OBLIGATORY DEFAULT '000000' , " so item
                P_CONDN LIKE  KONV-KSCHL  DEFAULT 'ZOSP',    " condition type
                P_CONDI LIKE  KONV-ZAEHK  DEFAULT '01',      " Condition item number
                P_TEST  AS CHECKBOX DEFAULT 'X'.             " test mode
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          INPUT         = P_VBELN
        IMPORTING
          OUTPUT        = P_VBELN.
      CLEAR: L_KNUMV.
      SELECT SINGLE KNUMV INTO L_KNUMV
      FROM VBAK
      WHERE VBELN  = P_VBELN.
      IF SY-SUBRC = 0.
        CLEAR: L_KSCHL,L_ZAEHK,L_STUNR.
        SELECT SINGLE KSCHL ZAEHK STUNR INTO (L_KSCHL, L_ZAEHK, L_STUNR)
        FROM KONV
        WHERE KNUMV = L_KNUMV
          AND KPOSN = P_POSNR
          AND ZAEHK = P_CONDI
          AND KSCHL = P_CONDN.
        IF SY-SUBRC <> 0.
          WRITE:/ 'Condition type or condition item is not exist.'.
          EXIT.
        ENDIF.
      ELSE.
        WRITE:/ 'Sales order number is not exist'.
        EXIT.
      ENDIF.
    IF L_ZAEHK IS INITIAL.
          WRITE:/ 'Condition type or condition item is not exist.'.
          EXIT.
    ENDIF.
    SALESDOCUMENT = P_VBELN.     " Sales order number
    ORDER_HEADER_INX-UPDATEFLAG = 'U'.   "U = change sales order
    ***Item Data
    ORDER_ITEM_IN-ITM_NUMBER = P_POSNR.
    APPEND ORDER_ITEM_IN.
    ORDER_ITEM_INX-UPDATEFLAG = 'U'.   "I = add, U= update, D=delete
    ORDER_ITEM_INX-ITM_NUMBER = P_POSNR.
    APPEND ORDER_ITEM_INX.
    ***--- Begin delete a condition line
    ***--- Make sure to use update flag 'D'. Here I = add, U= update, D=delete
    CLEAR: CONDITIONS_IN,CONDITIONS_INX.
    REFRESH: CONDITIONS_IN,CONDITIONS_INX.
    CONDITIONS_IN-ITM_NUMBER = P_POSNR.
    CONDITIONS_IN-COND_ST_NO = L_STUNR.
    CONDITIONS_IN-COND_COUNT = L_ZAEHK.
    CONDITIONS_IN-COND_TYPE  = L_KSCHL.
    APPEND CONDITIONS_IN.
    CONDITIONS_INX-UPDATEFLAG = 'D'.
    CONDITIONS_INX-ITM_NUMBER  = P_POSNR.
    CONDITIONS_INX-COND_ST_NO  = L_STUNR.
    CONDITIONS_INX-COND_COUNT  = L_ZAEHK.
    CONDITIONS_INX-COND_TYPE   = L_KSCHL.
    APPEND CONDITIONS_INX.
    ***--- End delete a condition line
    BEHAVE_WHEN_ERROR = 'P'.
    SIMULATION = P_TEST.   " Test mode or not
    "=== call BAPI
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        SALESDOCUMENT               = SALESDOCUMENT
        ORDER_HEADER_INX            = ORDER_HEADER_INX
        LOGIC_SWITCH                = '    U'
      TABLES
        RETURN                      = RETURN
        ORDER_ITEM_IN               = ORDER_ITEM_IN
        ORDER_ITEM_INX              = ORDER_ITEM_INX
        CONDITIONS_IN               = CONDITIONS_IN
        CONDITIONS_INX              = CONDITIONS_INX .
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    WRITE: / 'Return code =', SY-SUBRC.
    SKIP 1.
    LOOP AT RETURN.
      WRITE: / RETURN-MESSAGE.
    ENDLOOP.
    Edited by: hank jiang on May 21, 2010 5:07 AM
    Edited by: hank jiang on May 21, 2010 5:25 AM
    Edited by: hank jiang on May 21, 2010 5:27 AM

    SALESDOCUMENT = P_VBELN.     "Sales order number
    ORDER_HEADER_INX-UPDATEFLAG = 'U'.   "U = change sales order
    ORDER_ITEM_IN-ITM_NUMBER = P_POSNR.
    APPEND ORDER_ITEM_IN.
    ORDER_ITEM_INX-UPDATEFLAG = 'U'.   "I = add, U= update, D=delete
    ORDER_ITEM_INX-ITM_NUMBER = P_POSNR.
    APPEND ORDER_ITEM_INX.
    "Begin delete a condition line
    "Make sure to use update flag 'D'. Here I = add, U= update, D=delete
    CLEAR: CONDITIONS_IN,CONDITIONS_INX.
    REFRESH: CONDITIONS_IN,CONDITIONS_INX.
    CONDITIONS_IN-ITM_NUMBER = P_POSNR.
    CONDITIONS_IN-COND_ST_NO = L_STUNR.
    CONDITIONS_IN-COND_COUNT = L_ZAEHK.
    CONDITIONS_IN-COND_TYPE  = L_KSCHL.
    APPEND CONDITIONS_IN.
    CONDITIONS_INX-UPDATEFLAG = 'D'.
    CONDITIONS_INX-ITM_NUMBER  = P_POSNR.
    CONDITIONS_INX-COND_ST_NO  = L_STUNR.
    CONDITIONS_INX-COND_COUNT  = L_ZAEHK.
    CONDITIONS_INX-COND_TYPE   = L_KSCHL.
    APPEND CONDITIONS_INX.
    "End delete a condition line
    BEHAVE_WHEN_ERROR = 'P'.
    SIMULATION = P_TEST.   " Test mode or not
    "=== call BAPI
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        SALESDOCUMENT               = SALESDOCUMENT
        ORDER_HEADER_INX            = ORDER_HEADER_INX
        LOGIC_SWITCH                = '    U'
      TABLES
        RETURN                      = RETURN
        ORDER_ITEM_IN               = ORDER_ITEM_IN
        ORDER_ITEM_INX              = ORDER_ITEM_INX
        CONDITIONS_IN               = CONDITIONS_IN
        CONDITIONS_INX              = CONDITIONS_INX .
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    WRITE: / 'Return code =', SY-SUBRC.
    SKIP 1.
    LOOP AT RETURN.
      WRITE: / RETURN-MESSAGE.
    ENDLOOP.

  • Ignore the number of schedule lines in sale order item when run MRP

    Dear All,
    I have a problem when I create production order (discrete manufacturing)
    When I create a sale order with one sale order item and 3 schedule lines for this sale order item.
    After that, I run MRP for this sale order, what I get is 3 planned orders for 3 schedule lines. It means that I will have 3 production orders for 1 sale order item.
    I want  create one production order for one sale order item whatever the number of schedule lines in sale order item.
    I think I have to config in MRP. Please help me.
    Thanks in advance

    Dear
    Check in OPPQ then look in Master data Availability Check & strategy for material also check whether u have maintained strategy for same material and see did u extended sales views for other material
    As u said 3 schedule lines for this sale order item check whether u have extended sales views for next material
    With Regards
    Pushpalas

  • How to deactivate schedule line in sales order

    hi friends,
    how can i deactivate the schedule line in sales order so that we can deliver the sales order after the schedule date. i can uderstand that system is not allowing before schedule date. but what if i want to deliver after that.
    Thanks in advance.
    Regards,
    Solomon

    hi,
    this is to inform you that,
    here you need to switch off:
    schedule lines allowed
    in schedule lines control data - remove or un check - availability/TOR
    In SPRO - Availability Check settings.
    but i have a question here:
    what is the business logic.
    do you want to do the same with all the sales orders or not.
    please update the forum
    then answer will be different
    balajia

  • Unable to cancel a splitted internal sales order line

    Hi,
    I have created a internal sales order using internal requisition. at the time of shipping i recognized only partail amount to be shipped and rest is not required.
    so i shipped the partial qty and then tried to cancel the splitted line which is not required for me. iam getting the belwo error message.
    1. Ordered Quantity, Supply picture has been updated. A discrepancy exists between the Sales Order and its corresponding Internal Requisition.
    2. Schedule Ship Date, Supply picture has been updated. A discrepancy exists between the Sales Order and its corresponding Internal Requisition.
    3. Error: Shipping tolerances cannot be changed now because the source lines have at least one delivery line that is staged or has been shipped.
    iam getting the above 3 message and coz of that iam not able to proceed for cancellation.
    can anyone suggest what would be the workaround
    Thanks,
    Vinod

    Hi,
    Is this 11i or R12?
    Thx
    Raghavendra

  • Backorder qty on sales order

    Hi
    When doing a sales order for item A, Qty = 100 (In stock = 90, Available = 90), the open qty (rdr1.OpenCreQty) on the sales order line = 100. In previous versions (if my memory serves me correctly) the open qty should be 10).
    Only when copying the sales order to an invoice, does the open qty on the sales order change to 10. Therefore when running the backorder report it also shows 100 on backorder and will only show the correct backorder qty once the order is invoiced.
    Did something change or is this a bug as I suspect.
    Client is on 2007A PL35.
    Regards

    Query for back order items.
    SELECT T1.[ItemCode],  SUM(T1.[OpenQty]) AS 'Back Order Qty' FROM ORDR T0  RIGHT OUTER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE
    T0.[DocDate] BETWEEN '[%0]' AND '[%1]'
    GROUP BY T1.[ItemCode]
    ORDER BY T1.[ItemCode]
    Jeyakanthan

  • Printing last delivery date in schedule lines for sales order

    Hi!
    We should create a sales order with more then one schedule line. This schedule lines are only for internal use (only to plan our production) and not for printing on the sales order paper. Only the last line is the real delivery date which should be printed on the sales order paper. Now I'm searching for a solution to print only this schedule line.
    Have anyone a good idea?
    Thanks
    Markus

    Hi, 
    Select <required fields> from VBEP
    into table <itab>
    where vbeln = <order number>.
    sort itab by posnr etenr descending.
    read table itab into wa index 1.
    contents of work area will have the last schedule line details of order.
    Regards
    Vinod

  • Issue in schedule lines on sales order

    Hi all,
    While creating a sales order, system is creating schedule lines after two days of order creation. I want that schedule lines should be created for the same date.
    Please suggest that what should I do for this?
    Please respond.
    Best Regards,
    AI.

    hi,
    check whether any delivery scheduling is been maintained
    IMG>SALES AND DISTRIBUTION>BASIC FUNCTION>DELIVERY SCHEDULING AND TRANSPORTATION SCHEDULING>MAINTAIN DURATION
    choose shipping point and remove the "Loading time w.days" and "Pick/pack time wrkdys" if maintained any
    choose route and remove "transit lead time"
    now try with new sales order
    regards
    senya

  • Quantity clubbed for two schedule lines in sales order

    Hi,
    One finished item F1 having strategy 20. special procurement key as 40( to get from another plant) Its sales order is created for 20 EA on 6 nov.So one line item in sales order.
    Item availability check is done.in schedule line I can see system proposes available date as 9 Nov. I manually split the quantity as 13 EA on 10 Nov and rest 7 EA on 18 Nov.
    Now in schedule lines tab I can see three line items:
    date      confirmed qty
    6 Nov      zero
    10 Nov      13 ea
    18 Nov        7 ea
    MRP is run. system generated Stock Transport Purchase requisition of 20 ea dated 6 Nov.Qty and date both is wrong. Why quantity gets clubbed?? Why date is picked as 6 Nov?? I expected system to create two Stock transport purchase requisition of qty 13 dated 10Nov and qty 7 dated 18th Nov.
    Please guide if there is any config mistake in PP or SD side.
    Regards.

    PP,
    That is pretty standard.  If you do not meet the customer's requested date when you confirm the sales order, the system assumes that you sitll intend to make the attempt.  MRP will produce a proposal based upon the customer's requested date and requested quantity.
    If you want MRP to consider the confirmed dates/quantities, set the Fix Date Qty flag in the sales order item.
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/93/744bcb546011d1a7020000e829fd11/frameset.htm
    If your standard business process is that you always wish to plan based on the confirmed date(s) rather than the requested date, you can configure to have the Fix Date Qty flag defaulted; in OVZJ.
    Best Regards,
    DB49

  • Regarding Schedule lines in Sales Order

    Dear Friends,
    While Creating Sales Order the Order Quantity gets Confirmed and Schedule Lines created even though there is NO STOCK.
    Kindly suggest me for this.
    Thanks & Regards
    T.Arulvanan.

    Hi
    It is because the replinishment time is maintained in MRP 3 view in material master  as also blank and because you havent made the tick there the system assumes the quantity is available in 0 days and hence it is confirmig
    You have kept check without RLT as blank it means the system is checking with RLT and the RLT Time is 0 that means system assumes at the end of end of 0 days the stocks are available and finally it will hit you in PGI if stocks are not there
    Pls maintain rep lead time as two days in MMR in the MRP3 view and see
    While creating sales order the availability check pop up will come confirming the delivery after 2 days
    You can check and see
    Regards
    raja

  • How to insert new schedule line in Sales order using BAPI

    Hi All,
    I am using the below code to add a new line in the schedules line of a existing sales order.But i am not getting the extra line after running the report.
    Kindly guide me in how to achieve this.
    thanks and regards
    shilpa
    REPORT  Z_VA32_EDI1.
    data: v_vbeln type BAPIVBELN-VBELN,
          wa_order_header type BAPISDH1X,
          i_sch_line type standard table of BAPISCHDL with header line,
          i_sch  type standard table of BAPISCHDLX with header line,
          i_return type standard table of BAPIRET2 with header line.
    v_vbeln = '0030001227'.
    wa_order_header-UPDATEFLAG = 'U'.
    i_sch-ITM_NUMBER = '000010'.
    i_sch-UPDATEFLAG  = 'I'.
    i_sch-REQ_DATE  = 'X'.
    i_sch-REL_TYPE = 'X'.
    i_sch-PLAN_SCHED_TYPE = 'X'.
    i_sch-REQ_QTY     = 'X'.
    append i_Sch.
    i_sch_line-ITM_NUMBER = '000010'.
    i_sch_line-REQ_DATE  = '20080127'.
    i_sch_line-REL_TYPE = '2'.
    i_sch_line-PLAN_SCHED_TYPE = '2'.
    i_sch_line-REQ_QTY     = '65'.
    append i_Sch_line.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = v_vbeln
      ORDER_HEADER_IN             =
        order_header_inx            = wa_order_header
      SIMULATION                  =
      BEHAVE_WHEN_ERROR           = ' '
      INT_NUMBER_ASSIGNMENT       = ' '
      LOGIC_SWITCH                =
      NO_STATUS_BUF_INIT          = ' '
      tables
        return                      = i_Return
      ORDER_ITEM_IN               =
      ORDER_ITEM_INX              =
      PARTNERS                    =
      PARTNERCHANGES              =
      PARTNERADDRESSES            =
      ORDER_CFGS_REF              =
      ORDER_CFGS_INST             =
      ORDER_CFGS_PART_OF          =
      ORDER_CFGS_VALUE            =
      ORDER_CFGS_BLOB             =
      ORDER_CFGS_VK               =
      ORDER_CFGS_REFINST          =
       SCHEDULE_LINES              = i_sch_line[]
       SCHEDULE_LINESX             = i_sch[]
      ORDER_TEXT                  =
      ORDER_KEYS                  =
      CONDITIONS_IN               =
      CONDITIONS_INX              =
      EXTENSIONIN                 =
      NFMETALLITMS                =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'.
    write: 'Done'.

    hi,
    pass the values 'x' to the bellow structure for all the fields that u want use and provide the item no ,schedule line no.
    SCHEDULE_LINESX

  • Link between actual ship date of an item and schedule line in Sales Order

    So, we are developing a custom report that compares actual Ship Date (Goods Issue Document MKPF-BUDAT) and the date the item should've been shipped (Schedule Line Date).
    I am able to link the GI Document to Delivery Document and can then link to Sales Order Number/Item Number.  However, a line item can have multiple schedule lines.  What logic can be put in the mapping so that the correct scheduling line is picked for the GI date to be compared against?
    Example:
    Sales Order 123
    Item 10 Product X - Quantity 10
    Schedule Line 1: 11/15/2014 8 pieces
    Schedule Line 2: 12/15/2014 2 pieces
    Let's say first shipment gets delayed 2 months and ships 1/15/2015
    Due date in report should know to select 11/15/2014 to calculate that shipment was late 60 days
    Any way to link delivery document to a specific schedule line??
    Thanks!!

    Hello,
    Just did similar development for customer report. List of deliveries based on sales order number and sales order line item numbers. Sort these deliveries either with number or actual goods issue date. Compare goods issue quantity with schedule line quanity and start allocating deliveries to schedule line. For example
    Schedule line 1 - 10 MT, Schedule line 2 - 5 MT. Now you have created 3 delivery. First with 7MT, second with 5MT and third with 3MT. Your first delivery will be for first schedule line. Your second delivery is for first and second schedule line and your thrid delivery will be for second schedule line
    Regards,

  • Cancel Confirmed Quantity in Sales Order Item (VA02)

    Dear All,
    I am having the following scenario :
    Customer have created a Sales Order, item 10, schedule line 1 with quantity 120.  The delivery date is 2011.12.22. 
    They have confirmed the quantity using the "Check Item Availability" function. 
    They have then changed the delivery date from 2011.12.22 to 2011.12.23.  The problem arises that in the "Availability Overview", the system still show the confirmed quantity is on 2011.12.22.  It doesn't release the confirmed quantity after we have changed the delivery date.  And what is worst is the system is prompting me that no stock is available on 2011.12.23.
    Does anybody knows how to release the confirmed quantity in the schedule line.  I have tried in VA02 by modifying the schedule line details.....  but does not work..
    Thanks.

    Hello,
    One easiest way is to reject the line item and add a new line, make the delivery date as 23rd. Once you reject the line item the confirmed schedule line get reversed.
    You can try with CO09 also.
    Regards,
    SAM

Maybe you are looking for

  • Solaris Management Console (Web version)

    Sorry for my ignorance, but I am trying to access the management console via the browser, but everytime i go to http://hostname:898/ it says "...console not available at this time." I know this is a stupid question but how do I enable the web console

  • LOV on Click the CIC in at the running time of BI Publisher Report ????

    Dear ALL: I am making the report for loan aging in BI publisher (Database 10g) in which number of customer are coming.like Customer between 1year :5 Yaer : 25 Now priblem is that requirement is that. on click the 25 the customer's Code should be show

  • Java add in installation ERRORED

    Experts , we trying to install java addin .In the 3rd phase of central java instance installation during Abap UME stage where it prompted for J2EE engine password while validating password it prompted exception:com/sap/i18n/cp/ConvertCToXFactory foll

  • JMS Hang issue

    Please excuse me if I do not have much knowledge on JMS but I was tasked to follow up with an issue which causes the JMS to hang once every 3 - 3.5 months, activity isn't heavy between servers from what I know and there were no error message or any e

  • HT203167 how do i authorize my computer to download all my music for the store menu? and where do i find the store menu?

    how do i authorize my computer to download all my music for the store menu? and where do i find the store menu?