E-Recruitment: Exception CX_HRRCF triggered

Hi ,
I have written the SE38 to create external candidate (NA ID).once candidate id is created .
I want to check the candidate details in class CL_HRRCF_CANDIDATE.
in get method when i am passing candidate id its throwing exception :  Exception CX_HRRCF triggered.
and when i go back and re-execute get method with same candidate id its working fine.
ISSUE: why it is throwing exception in ist time execution.
Thanks,
Honey

Hi Singh
This exception will occur only when relation ship between CP pertaining to BP, US ,NA  get mismatch . Please check your report is creating relation ship properly for a candidate details .
Regards
Sanjay.KN

Similar Messages

  • Exception not triggered after 4 acknowledgement failures.

    Hi,
       I have an FTP Sender, When i am sending the file to FTP site. the send step is defined as throwing send exception and send exception is handled in send exception handler where i cancel the process. The send step is defined with acknowledgement as "Transport".
    I have FTP address wrongly spelt.
    So the BPM tries 4 times, with 5 min duration between retires. Then after the 4tn try i am expecting the send step to throw send exception. It does not do that.
    Could you please let me what changes i have to do to catch this acknowledgement exception.
    I also have a deadline exception. but i dont want this to go into the deadline exception. Can i catch this exception in send exception.
    Regards,
    Vinay.

    Hi,
    In IMG - Materials Management- Purchasing-Messages - Fields relevant to Print out of changes
    Enter Table EKPO , Reference Field LOEKZ, tick on change print relevant for purchase order,in routine enter 03.
    Now your Output will be triggered with a change indicator and you can process it using ME9F.
    Regards
    Chandra Shekhar

  • How exception message triggered in MD04

    Dear Sir/Madam,
    How exception mesage " Excess Stock" triggered in MD04? I like to trigger such scenaior inorder to have that exception mesage "Excess Stock" in my test system.
    Please advise.
    Thanks.
    Rgds,
    Esther Chong

    Hi,
    Just a modification to Mr. DB49's input. Increase the stock of the account assigned material to the needed qty & system will put an exception message '26' for the production order.
    Eg:
    Date               MRP ele       MRP element data                                    Mrp excep      receipt         av. qty
    2010/01/05     ProjSt     20xx.0001.02               15      15         
    2010/01/25     PrdOrd     0000129365/PP01          26     15      30      
    2010/01/25     IndReq     VSFB                                     15-               15         
    Regards,
    Vivek

  • Exception while triggering an action in consumer portlet.

    Hi,
    This following exception is noticed while triggering an action from consumer portlet in WSRP. Same request is working fine is standalone producer side application.
    <env:Body>
    <env:Fault xmlns:v1="urn:oasis:names:tc:wsrp:v1:types">
    <faultcode>v1:OperationFailed</faultcode>
    <faultstring>Http Error: [404] : [null].</faultstring>
    <detail>
    <v1:OperationFailed/>
    <fd:FaultDetail xmlns:fd="urn:bea:wsrp:ext:v1:types">
    <fd:created>2009-12-22T22:23:26.904+05:30</fd:created>
    <fd:trace>com.bea.wsrp.faults.OperationFailedException: Http Error: [404] : [null].
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doGetMarkup(MarkupServiceHandler.java:425)
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doPerformBlockingInteraction(MarkupServiceHandler.java:718)
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doService(MarkupServiceHandler.java:241)
         at com.bea.wsrp.producer.handlers.AbstractServiceHandler.service(AbstractServiceHandler.java:68)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:242)
         at com.bea.wsrp.producer.wsee.ProducerEntryPoint.handleResponse(ProducerEntryPoint.java:87)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:287)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:271)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.callHandleResponse(ServerDispatcher.java:341)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:189)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    Above log is captured using the WSRP monitor. If any one came accross this issue? Please help me in giving pointers to close this issue.

    hi,
    Was able to debug the issue. the problem is with the target JSP.
    Some of the include statements in the target JSP are pointing to a wrong URI. so the request is failing in WSRP.
    It looks silly but usefull. I overlooked this issue beacuse i am unable to find issues on producer side because of this.
    cheers,
    Vamsi

  • Exceptions with triggers

    Hi, i am working on the triggers for a SQL server database.
    There are in some cases where more than 2 triggers are fired and the message they sent would send an exception to the Java prog.
    However, the exception received is always the same type and thus only the first trigger is received properly by my java app.
    What should i do to resolve this problem?
    Eg:
    try
    rs=executeUpdate("Update something set one=1");
    }catch(Exception e)
    //Should i loop here to keep retrieving messages? If i got more than 1 trigger fired.

    Only one SQLException can be thrown. It may be that this exception somehow contains a set of messages, in which case you would have to write a loop to get those messages. But I doubt it. Why not try it and see what happens?

  • Open dataset exception not triggered

    hello folks i'm having a dump because i can't open the dataset, but
    when i use this code
    open dataset p_file for output in text mode encoding default message mes.
    if sy ne 0.
    message mess type E.
    endif.
    the error is triggered but if i use:
    TRY.
           OPEN DATASET p_file FOR OUTPUT
                IN TEXT MODE ENCODING DEFAULT.
         CATCH cx_dynamic_check  INTO gr_err.
           gs_msg = gr_err->get_text( ).
       ENDTRY.
    in debug i can see sy-subrc = 8 but the catch is not trigger, i have also try with   cx_sy_file_authority but nothing, i'm in ECC6 unicode.
    Regards

    hy all thanx for you reply, i've also try to catch all the possible exception like this:
    data gr_err TYPE REF TO cx_root,
    TRY.
           OPEN DATASET p_file FOR OUTPUT IN TEXT MODE ENCODING NON-UNICODE.
         CATCH cx_sy_file_open INTO gr_err.
           gs_msg = gr_err->get_text( ).
         CATCH cx_sy_file_authority   INTO gr_err.
           gs_msg = gr_err->get_text( ).
         CATCH cx_dynamic_check  INTO gr_err.
           gs_msg = gr_err->get_text( ).
       ENDTRY.
    still nothing catch and sy-subrc still 8.

  • Exception CX_SY_NO_HANDLER triggered

    Hi All,
    What could be the reason for this exception.
    Here is my code:
    method EXTRACT_DATA .
    DATA: start_date type sy-datum,
          end_date type sy-datum,
          pos_title(40) type C,
          employee_type(1) type C,
          location(4) type C,
          pers_subarea(4) type C.
    Data:tobj1 type ref to ZPOSITION_INFORMATION.
    select single empneededby from hrp9007 into start_date
          where plvar  eq '01'
               and   istat  eq '1'
               and   begda  le sy-datum
               and   endda  ge sy-datum
               and   reqnr  eq '297006'
               and   status eq '99'.
    write start_date.
    call method tobj1->EXTRACT_DATA.
    endmethod.
    How to use debug mode and find which line am having exception with.
    Thanks and regards.
    srinivas

    Hi,
    Here are the callling FM codes:
    IF flt_val = 'BUS2203'.
        CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
          EXPORTING
            i_guid    = iv_doc_guid
          IMPORTING
            e_item    = ls_e_item
          TABLES
            e_account = lt_e_account.
    I cant see what's wrong with the code.
    Graham,
    How to start the debugger? Currently, I just execute the badi and clicked at the "Debugging", am I doing the right way?
    Thanks.

  • IMS-exception type "Other errors" is not getting triggered

    Hi experts,
                     I am trying out some scenarios in IMS. I want to check exception type- "Other Errors" which is a most generic exception type. I have tried many options like- removed country from partner id address, tried posting invoice after removing account assignment category but for all these invoice triggers exception- duplicate invoice which i am unable to understand. can anybody please tell me what are the settings required for exception type- other errors?
    2. I even tried exception type "missing goods receipt". Excption type is getting triggered but after creation of confirmation- the status of the exception is not getting changed to clarified. Instead it gives an error- User is locked please try after some time.
    Please help
    Regards
    Kapil

    Hi Friend,
    Please read the possible exception types in IMS
    Have you set these exception in Settings for Invoice Monitor
    Purpose
    In the Settings for Invoice Monitor application, you can make settings directly on the user interface for every exception that you wish to adjust.
    Digital signature
    For each exception, you can define whether you want to use a digital signature.
    If you use a digital signature, the field Digital Signature is active on the Adobe PDF form and the processor of the form has to sign it before sending it back.
    The system then checks that the signature is valid.
    If the signature is invalid, or the processor does not sign the form, an error message is written to the log and the e-mail is closed.
    You can assign a digital signature to a vendor in two different ways.
    ·        The user assigns a partner certificate and sends it to the vendor.
    ·        The user uses the vendor’s signature certificate. This certificate has to be registered on the ADS server. For more information, see the SAP NetWeaver Configuration Guide Interactive Forms based on Adobe Software on the SAP Service Marketplace under service.sap.com/instguidesNW2004s.
    Additionally, you can make settings for the following exceptions:
       Invoice duplicate
    This exception is triggered if you try to post an invoice that has already been posted. The two invoices are compared using criteria that you have specified. In the settings, you can define whether a notification e-mail is automatically sent in the case of an invoice duplicate exception, and to whom this e-mail is sent. Furthermore, you can tailor the duplicate check to suit your requirements. The following criteria are available:
        Consider special characters in the vendor invoice number
         Check the number of items and purchase order number
         Additionally, you can define that the invoice is automatically deleted as soon as the vendor confirms that a duplicate invoice exists.
    ¡        Fields for duplicate check
    On this tab page, you can activate the fields that are relevant for the duplicate check. Furthermore, you can define a maximum variance for each field. In other words, you define whether the data in the fields should be an exact match, or whether small differences are acceptable.
    ¡        Exclude vendor values and or invoice values
    On this tab page, you can exclude certain vendors and/or invoice values from the duplicate check. If, for example, you always receive invoices from one vendor for the same amount, you can enter this here so as to prevent unnecessary checks.
    ¡        Group vendors
    On this tab page, you can group vendors that have several vendor numbers together in a data record to facilitate the duplicate check. Entries in this table cause an update in the TREX database which might lead to a short delay.
    Regardless of your settings, the system performs a standard duplicate check (for vendor invoice numbers or vendor numbers that match exactly, for a +/- 7 day period) to ensure that these duplicates are found. If this standard check is not successful, a further check is performed using the settings that you made.
    ·        Missing external information
    This exception is triggered if you try to post an invoice that contains incomplete or incorrect information. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by missing external information, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System, where the missing/incorrect information can be entered directly in an interactive form.
    ·        Missing internal information
    This exception is triggered if you try to post an invoice that contains incomplete or incorrect information. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by missing internal information, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System, where the missing/incorrect information can be entered directly in an interactive form.
    ·        Missing goods receipt
    If no digital signature is used, two additional fields are displayed in the PDF form. The processor has to enter his first and last name into these fields before he/she sends the e-mail back.
    In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by a missing goods receipt, and to whom this e-mail is sent. You can define how long the invoice should remain with status 'Waiting for Preceding Documents' before it receives the status 'To be Corrected Manually’. Furthermore, you can define how many days pass before an e-mail is sent to the goods recipient. When the goods recipient then confirms that no goods delivery has taken place, an e-mail is automatically sent to the vendor. If the goods receipt has already taken place, you can either define that the goods recipient confirms this automatically in an interactive form, or that the goods recipient uses a link in the e-mail to confirm the goods receipt in the SRM system.
    ·        Incorrect reference
    This exception is triggered if you try to post an invoice that refers to an incorrect reference. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by an incorrect reference, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Approval overdue
    This exception is triggered if an invoice remains in approval status for longer than allowed. You can define how long an invoice can remain in approval status before the exception is triggered.
    ·        Other errors
    This exception is triggered if you try to post an invoice that contains errors. In the settings, you can define whether a notification e-mail is automatically sent in the case of an exception caused by other errors, and to whom this e-mail is sent. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    Note that the invoice is checked in accordance with the vendor tolerance limits in the case of the following exceptions: If these are exceeded, an error message is output.
    ·        Price variance
    This exception is triggered if you try to post an invoice that contains price variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a price variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the price variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Quantity variance
    This exception is triggered if you try to post an invoice that contains quantity variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a quantity variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the quantity variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM System.
    ·        Tax variance
    This exception is triggered if you try to post an invoice that contains tax variance that exceeds the tolerance limit. In the settings, you can define whether a notification e-mail is automatically sent in the case of a tax variance, and to whom this e-mail is sent. You can stipulate that the invoice is posted automatically if the tax variance is approved on account of the e-mail. Furthermore, you can define whether the e-mail contains a link to the SRM system.
    In Invoice monito system pls check the what setting is done for Duplicate  invoice, Missing GR and other invoice.
    Based on these setting only system identifies what type of exception it is.
    In other errors you should mention in Settings for Invoice Monitor  what are the fileds your consider for other exception.
    Hope this information will help.
    Thanks & Best regards
    Girish

  • Exception triggering while enhancing a view

    Hello All,
    We are facing a issue while enhancing a view. View is getting enhanced successfully but after the enhancement an exception is triggering at UI. It says incompatible context nodes in wd_create_context method. We did not enhance any context node of the view, still this exception is triggering.
    Does anybody face the same issue, please let us know the solution.
    Thanks in Advance!
    -Rashmi

    Hi Rashmi,
    i faced exactly the same situation and solved it with help of SDN.
    See this threat:
    [CRM70 Enhancement of view SRQM_INCIDENT_S/IncidentSRL not working|CRM70 Enhancement of view SRQM_INCIDENT_S/IncidentSRL not working]
    Kind regards
    Manfred

  • Exception while executing a select statement.

    Hello All,
    I get an exception:
    "CX_SY_NO_HANDLER triggered
    An exception with the type CX_SY_OPEN_SQL_DB occured but was neither handled"
    Here is the select statement:
    select single empneededby from hrp9007 into start_date
    where OBJID = REQUISITION_NUM .
    Can anybody tell me whats goin on here.
    Thanks
    Srinivas

    Hello Srinivas,
    In ur first post u have assigned OBJID to REQUISITION_NUM
    But now u have changed to reqnr
    select single empneededby from hrp9007 into start_date
    where plvar eq '01'
    and istat eq '1'
    and begda le sy-datum
    and endda ge sy-datum
    and reqnr eq REQUISITION_NUM " Check here
    and status eq '99'.
    IF SY-SUBRC = 0.
    " U r having data for the selection condn in the table.
    ENDIF.
    Regards,
    Vasanth

  • BPM-Deadlineexception triggered after canceling the process

    Hi,
       I have a BPM scenario thats like
    WS <--> SAP.
    this goes through BPM. I have exception in for Mapping Exception, send Exception and Deadline exception.
    I am having a case where the mapping throws Mapping Exception. Now in the Mapping exception block i am throwing a alert and cancelling the process using control step.
    Mapping exception works fine, but after couple of minutes the deadline excption is getting triggered and another alert being sent for deadline excpeiton.
    Could someone help me with what is happening, as i dont want it to enter deadline exception because i have allready caught the exception and sent alert for mapping.
    regards,
    vinay.

    Raj,
      Here is the scenarios...
    Receiver-> Block->End. In block i have defined mapping and send exception.
    InBlock i have 1) Transformation throws Mapping Exception.
                         2) Send step throws Send Exception.
                         3) Mapping Exception handling where i have a control that cancels the process.
                         4) Send Exception handling where i have a control that cancels the process.
                         5) Deadline Exception where i have a control that cancels the process.
    Once Mapping exception is triggered i am expecting the process to terminate. But even after mapping exception is triggered after 2 minutes(deadline time) deadline exception is being triggered.  (shown in graphical workflow)
    the reason i dont want deadline exception to be triggered is i will be defining alerts in all exception brancehs and dont want the user to be getting mapping and deadline exception both.
    Raj, according to your suggestion if i throw an alert again in deadline branch, how would i decide whether its a genuine deadline exception or not( like mapping exception allready triggered). I would need to know when to send an deadline alert or not.
    Regards,
    Vinay.

  • BEx Query Designer and Exceptions

    I have a simple enough task.  I was tasked, with marking items on a query with an exception, however the value is not static.  I have a column marked hours, and five columns for each day of the week.  The current day with data should yield an exception if the current day has less hours the the calculated hours column.  So my first approach was to create a formula where I evaluate both the hours calculated from the query and the current day. I called this field fday1.  I created an exception stating that if fday1 = 1 then to mark the field Bad3.  but I want the affected structure to be the Actual Day such my column days are: Day 1 (current date), Day 2 (current date + 1) etc... but when I visit the query (ie, adhoc query) only the formula field fday1 has the exception day triggered.  In the exceptions list  I define the keyfigure fDay1 (time of evaluation [before list calculation]) Under the display tab I have exception affects data cells for the following structure elements: Day 1 (current date).
    like If I execute this query through the portal the exception shows up correctly on the proper field.  if I execute the query through the adhoc (BEx Ad Hoc Analysis) view, then the wrong field has the exception.
    any thoughts on a better way to approach this query?

    Nobody has a solution in order to highlight the whole row (characteristic and key figures) for a value of a key figure ?
    With WAD or Query Designer, I'm trying to highlight a line with an exception on a key figure but it apparently colors only key figures.
    For example i would have entire colored rows for negative key figure :
    field1:a field2:x field3:e key_figure:1
    field1:b field2:x field3:e key_figure:7
    field1:b field2:y field3:e key_figure:-5
    field1:d field2:z field3:j key_figure:1
    I can use WAD or Query Designer but not Visual Composer or Report Designer...
    Thanks for help.

  • Multiple Idocs to XI with exception handling.

    Hi,
    I m doing a scenario,sending multiple idocs to file via XI.while doing dis,i m using BPM.For the BPM part i m following the blog https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2034..but [original link is broken] [original link is broken] [original link is broken] [original link is broken] wen i check in SXMB_MONI,my message isn't successfully processed out f BPM.In this,exception is triggered at d beginning.and it always throw exception and message not successfully processed out f BPM.In the workflow it is showing error in the first step and remaining steps are compIeted.Here, i m throwing exception by the use f deadline branch.Can,anybody tell me how to handle dis exception/error?

    Hi Rajeev,
    I am using a loop with in a block inside the BPM inside which receive step and container element is used.In parallel to loop branch,i m using deadline and exception branch same as in blog 2034.i m using infinite loop wid time limit mentioned in the deadline branch.After coming out f dis block,i m using transformation step and den send step is used.When i check in graphical workflow,i m getting error in send step stating that an empty container element is used while sending.But,wen i m checking technical workflow,i m getting error in first step after the creation of workflow and workflow started messages in the log details.after which the exception occured is shown in the workflow system..
    Thanks,
    Anoop Garg

  • Getting Exception in the select clause - Very Urgent

    Hi,
        I have given the below statement but it is showing the exception.
      SELECT *
             FROM (lv_tab_name)
             INTO CORRESPONDING FIELDS OF TABLE <fs_1>.
    If I execute the above select statement it is showing the below exception.
    Exception CX_SY_NO_HANDLER triggered.
    An exception with the type CX_SY_OPEN_SQL_DB occurred.
    It is working very well if I mention the few field names.
    Please let me know the possible reasons.
    Thanks,
    Suvin

    Thanks much for your quick response.
    I have tried with what you mentioned but it is not working.
    Please find my code below.
    *Declarations
    DATA: ddfields TYPE STANDARD TABLE OF ddfield.
      DATA: ls_ddfields TYPE ddfield.
      DATA: lt TYPE lvc_t_fcat.
      DATA: ls TYPE lvc_s_fcat.
      DATA: lv_tab_name TYPE dd02l-tabname.
    Data References
      DATA: lt_data TYPE REF TO data.
      DATA: new_line TYPE REF TO data.
    Field Symbols
      FIELD-SYMBOLS: <fs_1> TYPE ANY TABLE.
      FIELD-SYMBOLS: <fs_data> TYPE REF TO data.
      FIELD-SYMBOLS: <fs_2> TYPE ANY,
                     <l_field> TYPE ANY.
    Get the fields of the database table, here i am passing the table name
      CALL FUNCTION 'DD_NAMETAB_TO_DDFIELDS'
        EXPORTING
      KEYFIELDS       = 'X'
      NULLABLE        = 'X'
            tabname        = lv_tab_name
        TABLES
            ddfields        = ddfields.
      LOOP AT ddfields INTO ls_ddfields.
        ls-fieldname = ls_ddfields-fieldname.
        APPEND ls TO lt.
      ENDLOOP.
    *Assigning Field-Symbol to our dynamic internal table
      ASSIGN lt_data TO <fs_data>.
    Calling the method CREATE_DYNAMIC_TABLE
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog           = lt
        IMPORTING
          ep_table                  = <fs_data>
        EXCEPTIONS
          generate_subpool_dir_full = 1
          OTHERS                    = 2.
      IF sy-subrc EQ 0.
        ASSIGN <fs_data>->* TO <fs_1>.
    Create a work area for the dynamic table.
        CREATE DATA new_line LIKE LINE OF <fs_1>.
    A field-symbol to access that work area
        ASSIGN new_line->*  TO <fs_2>.
      ENDIF.
    Selecting the Data from the respective table.
      SELECT *
             FROM (lv_tab_name)
             INTO CORRESPONDING FIELDS OF TABLE <fs_1>.
    Please advise..it is very urgent.
    Thanks,
    Suvin

  • Exception while defining value attribute/View configuration issue

    Hello,
    I am facing an issue in view configuration. I have added value attributes to an existing context node in component BT116IT_SRVO, GenricItem view, BTADMINI context node. Now after adding the atrribute an exception is triggering as
    "Cannot display view BT116IT_SRVO/GenericItem of UI Component BT116IT_SRVO
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=CL_BSP_WD_MIXED_NODE is not compatible, for the purposes of assignment, with target type \CLASS=CL_CRM_BOL_ENTITY 
    Method:  CL_CRM_UIU_BT_ITEMEOV_CN=>GET_QUANTITY 
    Source Text Row:  25 ".
    I have checked  source code of mentioned class, reference of CL_BSP_WD_MIXED_NODE class is coming after adding value attribute .
    Exception is triggering at statement: lr_entity ?= current. => In current ref of CL_BSP_WD_MIXED_NODE class is coming while lr_entity is type ref to cl_crm_bol_entity.
    I would really appriciate your reply on this as how can I avoid this exception? Do I need to redfine this method?
    Moreover the value attributes that I have added does not appear in Available Fields in View Configuration. Could you help me out in how can I make these fields available in configuration?
    Appriciate your replies on same.
    Regards,
    Rashmi

    The problem is solved.
    Thanks
    -Rashmi

Maybe you are looking for

  • Numbers are not comming in Arabic stle in PDF o/p

    Hi, Thanks alot...... The font used in the Report is Arial In uifont.ali file under PDF[subset] Arial="arial.tty' has been added. Your advice helped me alot. Arabic characters are comming properly in PDF O/p. But Still the numbers are not comming in

  • Google account login issues

    I am recieving the error unknown error when trying to add my google account to the touchpad. I can login fine through the browser but am unable to add it to email, chat, etc... Troubleshooting I've done: 1) Waited a couple days and tried again, same

  • File "E:\sandip\programs\IDS_Server\build\web\abstractsubmission.jsp" not f

    Hi everybody. I am using struts1.2.9. Please solve my problem. AbstractSubmissionAction class saveErrors(request,errors); if(errors.isEmpty()){ return mapping.findForward(SUCCESS); return mapping.findForward("failure"); struts file <action input="/ab

  • Multiple songs in project?

    How do I put more than one song in an iMovie project? And how can I put a clip from a song in (not the whole song)?

  • Smart playlist isn't being followed

    I recently have been using the smart playlist as a way to get around the loss of the shuffle by album feature on my touch. For a while it was working fine and suddenly, the ipod no longer follows the playlist. If I pick a sing off the playlist, it wi