Error "No status object is available for Unknown Object " in Shopping Cart

Hi all,
We are getting error "No status object is available for <Unknown Object>" while creating shopping carts of any type .
Please suggest if any configuration setting needs to be done.
Thanks and Regards,
Navdeep Malik

Dear Navdeep
The error is likely caused by one or more entries in table BBP_DOCUMENT_TAB that are without objkey or guid.
did you delete some entries from SRM transaction tables?
Check table BBP_DOCUMENT_TAB entries to see any GUID which is not present in the system.
You can verify this by checking whether there is an entry in CRMD_ORDERADM_H (header) table
with GUID = <guid stored in bbp_document_tab>
Regards
Lauren

Similar Messages

  • Error coming  " A   BS   001  No status object is available for SDI 0 "

    Hi Experts,
    I am facing a issue.. I am creation a sales order using BAPI " BAPI_SALESORDER_CREATEFROMDAT2 "  
    In one scenario,  I am able to create Sales Order with Status Profile..
    But For second scenario, its giving error like  "A   BS   001  No status object is available for SDI 0" .
    Between both scenario, only difference is Distribution channel and Condition record.
    DATA : wa_order_header_in TYPE bapisdhd1,
    gt_order_partners TYPE STANDARD TABLE OF bapiparnr,
    gs_order_partners TYPE bapiparnr,
    gs_order_partners1 TYPE bapiparnr,
    gt_order_items_in TYPE STANDARD TABLE OF bapisditm,
    gs_order_items_in TYPE bapisditm,
    gt_order_conditions_in TYPE STANDARD TABLE OF bapicond,
    gs_order_conditions_in TYPE bapicond,
    gt_order_schedules_in TYPE STANDARD TABLE OF bapischdl,
    gs_order_schedules_in TYPE bapischdl,
    *         gt_return TYPE STANDARD TABLE OF bapiret2,
    *         gs_return TYPE bapiret2,
    gt_error TYPE STANDARD TABLE OF bapiret2,
    gs_error TYPE bapiret2,
    gt_log TYPE TABLE OF zsd_ecomerr,
    gs_log TYPE zsd_ecomerr,
    it_item_temp TYPE TABLE OF zst_sfdc_so_items_dom WITH HEADER LINE,
    lt_return TYPE STANDARD TABLE OF bapiret2,
    ls_return TYPE bapiret2,
    lt_order_conditions_in TYPE STANDARD TABLE OF bapicond,
    ls_order_conditions_in TYPE bapicond,
    ls_sfdc TYPE zsd_sfdc_order .
    DATA:  wa_order_header_inx TYPE bapisdhd1x,
    gt_order_items_inx TYPE STANDARD TABLE OF bapisditmx,
    lt_order_items_inx TYPE STANDARD TABLE OF bapisditmx,
    gs_order_items_inx TYPE bapisditmx,
    gt_order_schedules_inx TYPE STANDARD TABLE OF bapischdlx,
    gs_order_schedules_inx TYPE bapischdlx,
    gt_order_conditions_inx TYPE STANDARD TABLE OF bapicondx,
    gs_order_conditions_inx TYPE bapicondx,
    lt_order_conditions_inx TYPE STANDARD TABLE OF bapicondx,
    ls_order_conditions_inx TYPE bapicondx,
    ls_order_items_inx TYPE bapisditmx,
    lv_kbetr TYPE kbetr VALUE '10',
    lv_curr  TYPE waers ,
    lv_ihrez  TYPE ihrez ,
    lv_knumh  TYPE a005-knumh.
    DATA:isrno LIKE vbap-posnr.
    DATA: x_orderitemx LIKE bapisdh1x.
    TYPES: BEGIN OF ty_vbap,
    vbeln TYPE vbap-vbeln,
    posnr TYPE vbap-posnr,
    mwsbp  TYPE vbap-mwsbp,
    END OF ty_vbap.
    DATA: lv_lfstk TYPE vbuk-lfstk,
    lv_cmgst TYPE vbuk-cmgst,
    lt_vbap TYPE TABLE OF ty_vbap,
    ls_vbap TYPE ty_vbap,
    lv_bstnk TYPE vbak-bstnk.
    ****// Checking PO Type. This is mandatory from SFDC
    IF sfdc-potype <> '' .
    ****// Checking here, Whether SFDC Order ID already exist or not. ***//
    SELECT SINGLE * FROM zsd_sfdc_order WHERE sfdcorder = sfdc-sfdcorder AND land1 = 'IN'.
    IF sy-subrc <> 0.
    ****// SO creation Process
    wa_order_header_in-doc_type    = 'ZHOT'.
    wa_order_header_in-sales_org   = '2700'.
    IF sfdc-potype = 'SFSD'.                        " S & D
    wa_order_header_in-distr_chan  = '30'.
    wa_order_header_in-division    = '00'.
    ELSEIF sfdc-potype = 'SFHO'.                    " Hospitality
    wa_order_header_in-distr_chan  = '33'.
    wa_order_header_in-division    = '00'.
    ENDIF.
    wa_order_header_in-purch_date  = sfdc-purch_date.
    wa_order_header_in-purch_no_c  = sfdc-sfdcorder.  "SFDC Order ID
    wa_order_header_in-doc_date    = sy-datum.
    wa_order_header_in-currency    = 'INR'.
    wa_order_header_in-ref_1       = sfdc-purch_no. "sfdc-sfdcorder.
    wa_order_header_in-po_method = sfdc-potype.
    wa_order_header_inx-updateflag  =  'I'.
    wa_order_header_inx-doc_type    =  'X'.
    wa_order_header_inx-sales_org   =  'X'.
    wa_order_header_inx-distr_chan  =  'X'.
    wa_order_header_inx-division    =  'X'.
    wa_order_header_inx-purch_no_c  =  'X'.
    wa_order_header_inx-purch_date  =  'X'.
    wa_order_header_inx-doc_date    =  'X'.
    wa_order_header_inx-currency    =  'X'.
    wa_order_header_inx-ref_1       =  'X'.
    ***// Ship to party
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input  = sfdc-kunag
    IMPORTING
    output = sfdc-kunag.
    gs_order_partners-partn_numb = sfdc-kunag.
    gs_order_partners-partn_role = 'WE'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input  = gs_order_partners-partn_numb
    IMPORTING
    output = gs_order_partners-partn_numb.
    APPEND gs_order_partners TO gt_order_partners.
    CLEAR: gs_order_partners.
    ***// Sold to Party
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input  = sfdc-kunnr
    IMPORTING
    output = sfdc-kunnr.
    gs_order_partners-partn_numb = sfdc-kunnr.
    gs_order_partners-partn_role = 'AG'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input  = gs_order_partners-partn_numb
    IMPORTING
    output = gs_order_partners-partn_numb.
    APPEND gs_order_partners TO gt_order_partners.
    CLEAR: gs_order_partners.
    ***// Clubed all materials
    LOOP AT it_items.
    it_item_temp-matnr     = it_items-matnr.
    it_item_temp-kwmeng    = it_items-kwmeng.
    it_item_temp-kwert     = it_items-kwert.
    it_item_temp-reg_dis   = it_items-reg_dis.
    it_item_temp-add_dis   = it_items-add_dis.
    it_item_temp-tann   = it_items-tann.
    COLLECT it_item_temp.
    ENDLOOP.
    ***// Saving Line Item data
    LOOP AT it_item_temp.
    isrno = isrno + 10.
    gs_order_items_in-itm_number = isrno.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input  = it_item_temp-matnr
    IMPORTING
    output = it_item_temp-matnr.
    gs_order_items_in-material = it_item_temp-matnr.
    gs_order_items_in-plant        =  sfdc-werks.
    gs_order_items_in-currency     =  'INR'.
    IF it_item_temp-tann = 'X'.
    gs_order_items_in-item_categ   =  'TANN'.
    ENDIF.
    APPEND gs_order_items_in TO gt_order_items_in.
    CLEAR gs_order_items_in.
    SELECT SINGLE knumh
    INTO lv_knumh
    FROM a005
    WHERE kappl = 'V'
    AND   kschl IN ('ZR04', 'ZR00')
    AND   vkorg = '2700'
    AND   kunnr = sfdc-kunnr
    AND   matnr = it_item_temp-matnr.
    IF sy-subrc = 0.
    SELECT SINGLE kbetr
    INTO it_item_temp-kwert
    FROM konp
    WHERE knumh = lv_knumh.
    ELSE.
    gs_order_conditions_in-itm_number  = isrno.
    IF sfdc-potype = 'SFSD' .                              " Sales and Distribution
    gs_order_conditions_in-cond_type  = 'ZR04'.
    ELSEIF sfdc-potype = 'SFHO'.                           " Hospitality
    gs_order_conditions_in-cond_type  = 'ZR00'.
    ENDIF.
    it_item_temp-kwert = it_item_temp-kwert .
    gs_order_conditions_in-cond_value = it_item_temp-kwert .
    gs_order_conditions_in-currency   = 'INR'.
    APPEND gs_order_conditions_in TO gt_order_conditions_in.
    CLEAR gs_order_conditions_in.
    gs_order_conditions_inx-itm_number   =  isrno.
    gs_order_conditions_inx-cond_type    = 'X'.
    gs_order_conditions_inx-cond_value   = 'X'.
    gs_order_conditions_inx-currency     = 'X'.
    gs_order_conditions_inx-updateflag   = 'X'.
    APPEND gs_order_conditions_inx TO gt_order_conditions_inx.
    CLEAR gs_order_conditions_inx.
    IF sfdc-potype = 'SFSD'.
    ***// Regular Discount to Customer
    IF it_item_temp-reg_dis <> '0.00'.
    gs_order_conditions_in-itm_number  = isrno.
    gs_order_conditions_in-cond_type  = 'ZDID'.
    gs_order_conditions_in-cond_value = it_item_temp-reg_dis * lv_kbetr. " 10 .
    gs_order_conditions_in-currency   = 'INR'.
    APPEND gs_order_conditions_in TO gt_order_conditions_in.
    CLEAR gs_order_conditions_in.
    gs_order_conditions_inx-itm_number  = isrno.
    gs_order_conditions_inx-cond_type    = 'X'.
    gs_order_conditions_inx-cond_value   = 'X'.
    gs_order_conditions_inx-currency     = 'X'.
    gs_order_conditions_inx-updateflag   = 'X'.
    APPEND gs_order_conditions_inx

    Dear Marthanda,
    Is there any Status Profile attachec in to your Sales Order Type in T. Code: VOV8 (Tab: Transaction Flow, Field: Status Profile)?
    If yes, remove it.
    If not, then...
    Check error with:
    T. Code: SM13/ ST22
    For more info, refer link:
    Error in the status table JSTO
    Hope, this may help you.
    Best Regards,
    Amit

  • Sales order Error No status object is available for SDI 2258674/0

    Dear Friends,
    While creation of sales order I am getting following error.
    No status object is available for SDI 2258674/0
    Message no. BS001
      Diagnosis
         When trying to read the status of an object (SDI 2258674/0), a system
         error occurred: For object number VB0002258674000000 there is no status
         object.
    Procedure
         Please contact your system administrator.
    Regards
    Sasikanth.Ch

    No status object is available
        for SDI 2258674/0
    If your system throws the above error message, then go to VA02, input the sale order reference and execute.
    From top menu bar, click on Goto -- Header -- Status . There again click on Object status  and check whether any lock is there. If so, change it and then retry
    thanks
    G. Lakshmipathi

  • I just upgraded to Yosemite. Iphoto is now broken.  Upon upgrade receiving error "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."

    I just upgraded to Yosemite. Iphoto is now broken.  Upon upgrade receiving error "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."

    Perform the following, stopping with the first one which works:
    1. Open the Mac App Store's Purchases tab. If you're prompted to accept iPhoto into your Apple ID, do so.
    2. Move it out of the Applications folder(it may need to be put into the Trash temporarily), and then see if you can download it for free from its individual product page.
    3. Click here and contact Apple.
    (116137)

  • Why jvm maintains string pool only for string objects why not for other objects?

    why jvm maintains string pool only for string objects why not for other objects? why there is no pool for other objects? what is the specialty of string?

    rp0428 wrote:
    You might be aware of the fact that String is an immutable object, which means string object once created cannot be manipulated or modified. If we are going for such operation then we will be creating a new string out of that operation.
    It's a JVM design-time decision or rather better memory management. In programming it's quite a common case that we will define string with same values multiple times and having a pool to hold these data will be much efficient. Multiple references from program point/ refer to same object/ value.
    Please refer these links
    What is Java String Pool? | JournalDev
    Why String is Immutable in Java ? | Javalobby
    Sorry but you are spreading FALSE information. Also, that first article is WRONG - just as OP was wrong.
    This is NO SUCH THING as a 'string pool' in Java. There is a CONSTANT pool and that pool can include STRING CONSTANTS.
    It has NOTHING to do with immutability - it has to do with CONSTANTS.
    Just because a string is immutable does NOT mean it is a CONSTANT. And just because two strings have the exact same sequence of characters does NOT mean they use values from the constant pool.
    On the other hand class String offers the .intern() method to ensure that there is only one instance of class String for a certain sequence of characters, and the JVM calls it implicitly for literal strings and compile time string concatination results.
    Chapter 3. Lexical Structure
    In that sense the OPs question is valid, although the OP uses wrong wording.
    And the question is: what makes class Strings special so that it offers interning while other basic types don't.
    I don't know the answer.
    But in my opinion this is because of the hybrid nature of strings.
    In Java we have primitive types (int, float, double...) and Object types (Integer, Float, Double).
    The primitive types are consessons to C developers. Without primitive types you could not write simple equiations or comparisons (a = 2+3; if (a==5) ...). [autoboxing has not been there from the beginning...]
    The String class is different, almost something of both. You create String literals as you do with primitives (String a = "aString") and you can concatinate strings with the '+' operator. Nevertheless each string is an object.
    It should be common knowledge that strings should not be compared with '==' but because of the interning functionality this works surprisingly often.
    Since strings are so easy to create and each string is an object the lack ot the interning functionality would cause heavy memory consumption. Just look at your code how often you use the same string literal within your program.
    The memory problem is less important for other object types. Either because you create less equal objects of them or the benefit of pointing to the same object is less (eg. because the memory foot print of the individual objects is almost the same as the memory footpint of the references to it needed anyway).
    These are my personal thoughts.
    Hope this helps.
    bye
    TPD

  • How to create new starting conditions for a workflow of shopping cart

    Hi all,
    How to create new starting conditions for a workflow of shopping cart
    SATYA

    Excecute SWB_COND
    Creating New:
    Click on Create button. If you cannot see that it could be a authorization issue
    then Business Object:  BUS2121
    Double Click the event linkage for one step workflow
    Define the expressions, Check Consistency and click on Traansfer
    Start Condition is created. If it is not Active click on the Red Button to make it Active
    Editing Already existing:
    Click on Edit Button If you cannot see that it could be a authorization issue
    then select Business Object:  BUS2121
    Click on the condition part (White area) of the start condtion needing editing
    Change the expressions, Check Consistency) and click on Traansfer.If it is not Active click on the Red Button to make it Active

  • Getting error in DB02 after checking Consistency check Unknown objects in A

    Dear All,
    I have getting error in DB02 after checking Consistency check.
    Please find the details.
    I have queries.
    How to correct the Unknown objects in ABAP Dictionary and Optional index is also we have to create please suggest step by step process.    
    Missing in R/3 DDIC      1              11
    Consistency check of 07.04.2009 10:14:24                   
    -- Objects missing in the database          
    Primary indexes                  0
    Secondary indexes                0
    Tables                           0
    Views                            0
    -- Unknown objects in ABAP Dictionary       
      |   |-- DB tables                        1
          |-- DB indexes                      11
         |-- DB views                        12
    -- DB tables without unique index   1
    -- Optional indexes                         
    Too many indexes created         0
    -- Indexes not created            145
    Regards,

    Hi
    Check this may help you
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/e4ff3e65b66976e10000000a1553f6/content.htm
    Regards
    Uday

  • Error "soap fault: No operation available for request" in proxy to soap Scenario

    Hi Experts,
    Unable to trace the below error when pushing the message from RWB while testing the PROXY to SOAP interface
      Delivering the message to the application using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: No operation available for request {http://schemas.xmlsoap.org/soap/envelope/}Envelope.
    Thank you very much if any one provided the solution
    Regards,
    Yugandhar 

    Hi Yugandhar,
    Check the below thread,
    Connecting from SAP PI To Salesforce
    Regards
    RK N.

  • Error-No more storage space available for extending an internal table.

    Hi Experts,
                    i am facing problem in a program . its showing runtime error.
    Short text
        No more storage space available for extending an internal table.
    its showing error at   
    IF sy-subrc NE 0.
            REFRESH p_wip_tab.
          ELSE.
            i_wip_tab-pspnr = i_internal_and_external-pspnr_prps.
            LOOP AT p_wip_tab.
              MOVE-CORRESPONDING p_wip_tab TO i_wip_tab.
    ==> APPEND i_wip_tab.
            ENDLOOP.
          ENDIF.
    DATA: l_billable_tab LIKE p_billable_tab OCCURS 0 WITH HEADER LINE,
          p_wip_tab      LIKE zpswip OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF i_wip_tab OCCURS 0,
            pspnr              LIKE prps-pspnr.
            INCLUDE STRUCTURE zpswip.
    DATA:   pernr_name         LIKE pa0002-vorna,
          END OF i_wip_tab.
    How i can resolve this problem if anybody knows it then please reply me as soon as possible.
    Thanks

    Hello.
    Probably you fill the internal table with too much data and it cannot hold that much.
    You can either redesign the program so that it processes the data in batches of, say 100000 records, or contact your BASIS team and ask for their help. They could possible assign more memory to the running applications.
    Reward if helpful.
    Regards,
    George

  • Urgent! Error: ORA-01034 Oracle not available for Oracle10gi

    I have used SQL*Plus for a while, but recently when I try to login there is this error message:
    Error:
    ORA-01034 ORACLE not available
    ORA-27101 shared memory realm does not exist
    I had search for the solution quite a while. I changed the "sqlnet.ora" from C:\OraHome_1\NETWORK\ADMIN
    I changed SQLNET.AUTHENTICATION_SERVICES=NT; to SQLNET.AUTHENTICATION_SERVICES=NONE and then reboot the machine.
    The weird thing is that sometimes it works after I reboot the machine, but recently this just doesn't work any more. The SQL*Plus generates the same error message as I wrote above.
    It seems like this kind of problem has troubled lots of oracle database users. IS this a bug that exists in the Oracle10gi?
    Or does Oracle10gi require to run on certain operating system platform like Windows XP Professional but does not support for Windows XP Home Edition?
    Can the Oracle company provide some error solution guide for the public for their own system?
    many thanks

    No this specific error message is not a result of an Oracle bug to my knowledge.
    In my experience it is a simple matter of not using Oracle correctly. Only it is not that simple from a pure end-user perspective as Oracle is not a mickey mouse little filing system that pretends to be a database (like MS Access).
    Which makes sense. After all, driving a bicycle does not mean one is able to get on a superbike. And if you respond "what!! why is it a superbike!?" then you need a bicycle in the first place.
    The cause of the error you list - the client is making a local IPC dedicated server connection to the Oracle instance. This fails as the dedicated server cannot find the Oracle SGA (shared memory area) to attached to. This is usually the result of
    a) the Oracle instance is down (and thus the SGA does not exist)
    b) the ORACLE_SID used by the client is incorrect (and thus it attempts to attach to a non-existant SGA)
    Reason (a) could be caused by some underlaying issue that results in the Oracle instance shutting down automatically or unintentionally.
    As for what Oracle 10G requires operating system wise. There are detailed platform certification matrixes on the Oracle web site. In addition, the INSTALLATION notes of Oracle also specifies what platforms are supported.
    You also fail to mention the exact Oracle product you're running. Oracle XE is different than Oracle Standard Edition which is different than Oracle Enterprise Edition.
    There is btw a dedicated support forum here for Oracle XE - and this one ain't it.

  • Urgent: error: user status ECUS is active for equipment.

    Gurus,
    My material is assigned to only one serial no. and one equipment.
    I am trying to do pgi from va02 and the system is throwing an error saying ' user status ecus is active for equip.' but in iq02 when we check the ecus status is not active. infact when we change the user status to anything the error thrown is still the same. Kindly reply urgently as this is affecting the clients production process.
    Thanks,
    Anand.

    hi
    i think once you have delivered the material ,it will create the equipment master record record stating the status as installed at customer site,
    the status you have said i think is user status ,if so kindly change the user status and proceed with the above said procedure
    revert back with any further queries
    regards
    thyagarajan

  • After downloading Yosemite iPhoto is blocked.  Update error message reads: Update not available for this ID either because it was bought by a different user...

    After downloading Yosemite iPhoto is blocked.  Directed to update.  Update error message: Update not available for this ID either because it was bought by a different user.....  This could be because my iPhone is now linked to the Mac and it is recognising that ID.

    My previous post should read...Could this be because my iPhone is now linked to the Mac and is recognising that ID?

  • Why an Error Message "Valid size not available for this Creation" in Elements 10 Photo Collage

    I have several image editing programs, but I bought Elements 10 specifically to do things the others wouldn't.  I wish to make a photo collage but all I get when I try, after following the instructions in the "help" and "Elements 10 for Dummies" is an error message stating "Valid Size not available for this Creation."  A meaningless phrase anyway because nowhere does it request a "valid size." Please will someone tell me the magiac words to make my lovely collage automaticaslly, or shall I revert to doing it manually on one of my other excellant image editing programs?

    http://helpx.adobe.com/photoshop-elements/kb/error-valid-size-available-creation.html
    If nothing there helps, see post 4 in this thread:
    http://forums.adobe.com/message/4248143#4248143#4248143

  • Error msg - not enough memory available for this task - chm file

    Hi All
    I am using RoboHelp for HTML 8.0 and creating chm file.  I am using context sensitive help and the F1 key functionality.  I have in the past created some map ID's with F1 and they have worked properly with our company software application.  Now, I have a different database with our company and a larger help file and it is not working.  I am told that the database should work.  I also have lots of memory.  I am working off of my hard drive which is where the .exe is for the company application and my chm file.  I can open my .chm file.  When I go into the application and press F1 where I created the map ID;s I get the message, not enough memory available for this task and also topic not available. Quit one or more programs to increase memory.
    I have lots of memory and my file is only 598kb.  I also only have RoboHelp and the application running.  When I did a search, I found an article for a fix from 2004 from Adobe - Rb_46124 - not sure if this is the fix but the steps dont match since it is old.
    Please help me.
    Thanks
    Caryn

    Hi there
    Actually, if you were to use FlashHelp output, you might find that the problems are compounded, as now you have the Flash Player and all its idiosyncrasies in the mix.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Authorisation object for Supplier field in Shopping Cart

    Hi Team,
    In Shopping Cart Source of Supply tab field Supplier is not getting displayed as it in hidden for some users, sor those users an authorisation object has to be provided to display the Supplier field.
    Can you please Suggest me the authorisation object to be used to display Supplier field in Source of Supply tab of Shopping Cart.
    Thanks & Regards,
    Goutam Kolluru.

    Question is solved.
    Answer can be find in bellow link
    Field Supplier is not displaying in Shopping Cart with Std Roles SRM 7.0

Maybe you are looking for

  • Recover data from a "dead i-phone"

    Phone will not power on, can I recover pictures and contacts not backed up or synced

  • How to mention encoding in servlet.

    Hi How to mention encoding in servlet. Regards Arghya Banerjee

  • Problem in struts+displaytag+export

    when i m using displaytag (it's third party tag) with export functionality it gives below exception javax.servlet.jsp.JspException: Error - tag.getAsString : component context is not defined. Check tag syntax      org.apache.struts.taglib.tiles.GetAt

  • Forms 9i to JDeveloper

    HI Gentlemen, I studied carefully the whitepaper on migrating forms to Java. However, I do not clearly see, what happens with my server model in Designer 9i? Should I further build ER diagrams, transform them and generate them out to real DB tables?

  • Ipod will not update after restoring to factory settings

    I was having some trouble with my ipod, so I restored it to factory settings and updated to ITunes 7. Ever since then, nothing has updated to my Ipod. The IPod remains on "Do not disconnect" mode, while ITunes says, IPod update complete. If I go ahea