Wagetype calculation not coming correctly

Hi
Whenever we run a transfer action in between the payroll period wagetypes which we have maintained in 14 Infotype are not calculating correctly.
Ex: Performance pay wagetype is there Amt is Rs 1000  start date 01.04.2008 and end date 31.12.9999. If we run transfer action on 15.04.2008 at the end of the payroll period i.e., 30.04.2008 Payout in this particular wagetype should be 1000 but it is coming as Rs 500
What we have do suggest please
Thanks
Mahantesh

Hi
Amount whatever it is calculating is taking in to account the Loss of pay days is correct.
Problem is when we transfer the employee in between the payroll period while we getting the payout for the period for the earliest record
Ex Employee 1001 holding Postion X from 01.01.2008, on 15.04.2008 transfered to  postion Y.
This employee is getting the payout from 15.04.2008 to 30.04.2008 for tht particular month.
Again in the next month from 01.05.2008 to 31.05.2008 he will get the correct payout
whenever we run action in between the payroll period this problem is coming
Thanks

Similar Messages

  • Output not coming correct

    Hi,
    I had developed this code and after all modifications and alterations in it ,i am pasting here bcoz it is still giving the problem that the values of ITAB does not contain the correct data as it keep on repeating the same value for the data in ITFINAL.
    Plzz go through this code and help me out as i tried whole day and still it is not coming right.
    My job is online bcoz if it start displaying correct data then i have to make addition in other code also. plzz helpme out as help will be definately rewarded.
    here's the code:-
    TABLES: BKPF,MKPF,BSIK.
    DATA: BEGIN OF ITBKPF OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITBKPF.
    DATA: BEGIN OF ITMKPF OCCURS 0,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          END OF ITMKPF.
    DATA: BEGIN OF ITAB OCCURS 0,
          BELNR LIKE BSIK-BELNR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          BUKRS LIKE BSIK-BUKRS,
          GJAHR LIKE BSIK-GJAHR,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITAB.
    DATA: BEGIN OF ITFINAL OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          END OF ITFINAL.
    *PARAMETERS: P_BUKRS LIKE BKPF-BUKRS,
               P_GJAHR LIKE BKPF-GJAHR,
               S_LIFNR LIKE BSIK-LIFNR.
    SELECT-OPTIONS: P_BUKRS FOR BKPF-BUKRS,
                    P_GJAHR FOR BKPF-GJAHR,
                    S_LIFNR FOR BSIK-LIFNR.
          SELECT ABUKRS ABELNR AGJAHR AAWTYP AAWKEY ABUDAT INTO TABLE ITBKPF FROM BKPF AS A
          WHERE  AAWTYP = 'MKPF' AND ABUKRS IN P_BUKRS AND A~GJAHR IN P_GJAHR.
          IF NOT ITBKPF[] IS INITIAL.
          SELECT AMBLNR AMJAHR INTO TABLE ITMKPF FROM MKPF AS A FOR ALL ENTRIES IN ITBKPF WHERE A~MBLNR = ITBKPF-AWKEY(10).
          SELECT ABELNR AWRBTR ALIFNR ABUKRS AGJAHR BBUDAT FROM BSIK AS A
          INNER JOIN BKPF AS B ON BBELNR = ABELNR
          INTO TABLE ITAB
          WHERE
          A~LIFNR IN S_LIFNR.
          ENDIF.
    SORT ITAB BY BELNR.
    LOOP AT ITBKPF.
    CLEAR ITMKPF.
    READ TABLE ITMKPF
    WITH KEY MBLNR = ITBKPF-AWKEY+(10)
              MJAHR = ITBKPF-AWKEY+10(4).
    CHECK sy-subrc EQ 0.
    ITFINAL-BELNR = ITBKPF-BELNR.
    ITFINAL-GJAHR = ITBKPF-GJAHR.
    ITFINAL-AWKEY = ITBKPF-AWKEY.
    READ TABLE ITAB
    WITH KEY BUKRS = ITBKPF-BUKRS.
    CHECK sy-subrc EQ 0.
    ITFINAL-WRBTR = ITAB-WRBTR.
    ITFINAL-LIFNR = ITAB-LIFNR.
    APPEND ITFINAL.
    CLEAR ITFINAL.
    ENDLOOP.
    LOOP AT ITFINAL.
    WRITE: / ITFINAL-BELNR , ITFINAL-GJAHR, ITFINAL-AWKEY+(10),ITFINAL-WRBTR ,ITFINAL-LIFNR .
    ENDLOOP.

    Hi,
    I had checked the all Interenal Tables and each and every table is having the desiered data except ITFINAL.,it is storing the value of ITAB
    i.e. displaying the same record for the data coming from the ITBKPF ,now my problelm is how to display the correct data from ITAB to the ITFINAL which is not able to store this coreect data,plzz help me out in solving this problem .
    The code in am using right now is:-
    TABLES: BKPF,MKPF,BSIK.
    DATA: BEGIN OF ITBKPF OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITBKPF.
    DATA: BEGIN OF ITMKPF OCCURS 0,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          END OF ITMKPF.
    DATA: BEGIN OF ITAB OCCURS 0,
          BELNR LIKE BSIK-BELNR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          BUKRS LIKE BSIK-BUKRS,
          GJAHR LIKE BSIK-GJAHR,
          BUDAT LIKE BKPF-BUDAT,
          END OF ITAB.
    DATA: BEGIN OF ITFINAL OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          END OF ITFINAL.
    *PARAMETERS: P_BUKRS LIKE BKPF-BUKRS,
               P_GJAHR LIKE BKPF-GJAHR,
               S_LIFNR LIKE BSIK-LIFNR.
    SELECT-OPTIONS: P_BUKRS FOR BKPF-BUKRS,
                    P_GJAHR FOR BKPF-GJAHR,
                    S_LIFNR FOR BSIK-LIFNR.
          SELECT ABUKRS ABELNR AGJAHR AAWTYP AAWKEY ABUDAT INTO TABLE ITBKPF FROM BKPF AS A
          WHERE  AAWTYP = 'MKPF' AND ABUKRS IN P_BUKRS AND A~GJAHR IN P_GJAHR.
          IF NOT ITBKPF[] IS INITIAL.
          SELECT AMBLNR AMJAHR INTO TABLE ITMKPF FROM MKPF AS A FOR ALL ENTRIES IN ITBKPF WHERE A~MBLNR = ITBKPF-AWKEY(10).
          SELECT ABELNR AWRBTR ALIFNR ABUKRS AGJAHR BBUDAT FROM BSIK AS A      "
          INNER JOIN BKPF AS B ON BBELNR = ABELNR
          INTO TABLE ITAB
          WHERE
          ALIFNR IN S_LIFNR.    "ABUKRS = B~BUKRS.
          ENDIF.
          SORT ITAB BY BELNR.
         SELECT ABELNR AWRBTR ALIFNR ABUKRS A~GJAHR FROM BSIK AS A INTO TABLE ITAB
         FOR ALL ENTRIES IN ITBKPF
         WHERE
         ABUKRS = ITBKPF-BUKRS AND ALIFNR = S_LIFNR.
         ENDIF.
    LOOP AT ITBKPF.
    CLEAR ITMKPF.
    READ TABLE ITMKPF
    WITH KEY MBLNR = ITBKPF-AWKEY+(10)
              MJAHR = ITBKPF-AWKEY+10(4).
    CHECK sy-subrc EQ 0.
    ITFINAL-BELNR = ITBKPF-BELNR.
    ITFINAL-GJAHR = ITBKPF-GJAHR.
    ITFINAL-AWKEY = ITBKPF-AWKEY.
    SORT ITAB[] BY BELNR GJAHR BUKRS.
      READ TABLE ITAB
      WITH KEY
    BELNR = ITBKPF-BELNR
      GJAHR = ITBKPF-GJAHR
      BUKRS = ITBKPF-BUKRS
      BINARY SEARCH.
    CHECK sy-subrc EQ 0.
    ITFINAL-WRBTR = ITAB-WRBTR.
    ITFINAL-LIFNR = ITAB-LIFNR.
    APPEND ITFINAL.
    CLEAR ITFINAL.
    ENDLOOP.
    LOOP AT ITFINAL.
    WRITE: / ITFINAL-BELNR , ITFINAL-GJAHR, ITFINAL-AWKEY+(10),ITFINAL-WRBTR ,ITFINAL-LIFNR .
    ENDLOOP.
    Edited by: abaper2008 on May 29, 2008 6:35 AM
    Edited by: abaper2008 on May 29, 2008 9:21 AM

  • Difference is not coming correct

    Hi guys,
    i have two measure a and b
    i am doing total by at month level and also a have a calculated column c=a-b
    but it is not giving correct result as
    a b c
    122 123 34 this is total by result.
    it should give -1 for c.
    so how can i resolve this problem.

    Hi,
    Create a dummy column [C](drag and drop any column and Rename it into CalumnC) in your report and edit the formula for your columnC
    and the do your calculation like IfNull(Tablename.columnA,0) - IfNull(Tablename.ColumnB,0) and
    set Aggregation Rule is Server Determined
    Thanks,
    Balaa...

  • Customer prices are not coming correctly!!!

    Hi Experts,
    Question: "Changes made in customer prices in ECC, how it gets replicated to ECO ISA application?".
    We have maintained customer specific condition records in ECC. Also, list prices have been maintained in product catalog.
    WIth replication of product catalog to TREX, we can see latest list prices in webshop product catalog.
    But changes done in customer specific pricing condition records are not appearing in web shop.
    Now, If we restart VMC then we can see latest customer prices in web shop. But this is not solution as we cannot restart VMC on every change of customer pricing condition record.
    Please explain process on how webshop access customer pricing condition records?
    (We know that webshop gets prices with using pricing procedure determination using rfc call, then why it could not able to access correct condition record after change in condition record?).
    Please help.
    Thank you,
    Dhanraj

    Dear Friends,
                    Thanks for your reply. In copy control from delievery to billing,settings are as follows,
             Pricing type:- G
             Coping requirement:-004
             Data VBRK/VBRP:-007
      Users enter prices manually when they prepare sales order.Condition category is empty in condition type.
      Looking forward for your reply.
    Regard,s
    Abhijeet

  • File read write program output not coming correct

    this code is compiling without issues but the output is not what i am expecting .. the contents of delta.txt are as follows
    *4014254420*
    *2897449776*
    *4207405601*
    and the output thats coming is
    +4014254420+
    +40142544204207405601+
    +4207405601+
    its not reading the 2nd line somehow
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.File;
    import java.io.*;
    import java.io.FileWriter;
    import javax.swing.*;
    import java.util.Scanner;
    public class testloop
              static int i;                                             
               static char c;                                               
               static int j = 1;     
                    static String filename;                                                  
      public static void main(String[] args)  throws IOException 
    try {
         FileReader fmi = new FileReader("delta.txt");
         FileWriter fmo = new FileWriter("Updated.txt");
         BufferedReader br = new BufferedReader(fmi);
                   String temp=null;
                        do{
                        temp = br.readLine();
                        if(temp.startsWith("*"))
                             String tempc = temp.substring(1);                         
                             System.out.print(tempc+"\n");
                            long tp = Long.valueOf(tempc);
                             System.out.print(tp);                    
                   else
                   fmo.write(temp);
                        }while((temp=br.readLine()) != null);
                   fmi.close();
                   fmo.close();
                   }catch (FileNotFoundException e){ System.out.print("not found");     }
                   catch (IOException e){System.out.print("io"+e);
                   e.printStackTrace();
        also if i use the following delta.txt
    **4014254420*
    **2897449776*
    **4207405601*
    mmm+
    i get the output as
    +4014254420+
    +40142544204207405601+
    +4207405601Exception in thread "main" java.lang.NullPointerException+
    at testloop.main(testloop.java:33)*
    its not writing the text to the file updated.txt
    Edited by: adhiraj on Nov 27, 2007 6:58 AM

    You are getting the next line twice.
    do{
                        temp = br.readLine();
                        if(temp.startsWith("*"))
                             String tempc = temp.substring(1);                         
                             System.out.print(tempc+"\n");
                            long tp = Long.valueOf(tempc);
                             System.out.print(tp);                    
                   else
                   fmo.write(temp);
                        }while((temp=br.readLine()) != null);You need to change your code around so that you only call
    temp=br.readLine();once per iteration of the loop.

  • Report output not coming correctly

    Hi All,
    my query is like
    select 'gggohpoopiokoljmkjjg@@@@@' record from dual;
    where record string's length is more than 2000 characters.
    I am using oracle report for this purpose as i have some other validations associated with it.
    i am printing the report output in a flat file.i want ALL THE OUTPUT SHOULD COME IN ONE LINE.
    but this is not happenning so...for the string lengths more than 1000 it's coming in diff line.
    How can i make sure that my output file WILL BE IN SINGLE LINE.
    i tried in unix vi editor i can give 3000 charecters but it doesn't go to the second line.
    any help on this issue will be helpful
    thanks in advance

    If there's no easy way to do it, you may use a "special character", like chr(xx), as your long line delimiter to chop a line into a couple of lines. Then you write a very simple C program to post-process the report output file to remove these "special character".
    If all characters are possible in your report file, you may use a string as the delimiter.

  • Grand Total not coming correctly in Tabular report

    Hi,
    When I extract in Answers the following information:
    Dimension 1
    Dimension 2
    Dimension 3
    Metric 1 (sum)(sum i defined in RPD)
    Metric 2 (count distinct)(count is defined in RPD)
    When doing this, I get the right result for every value of the dimension, but the total of the summation metric is not correct in tabular report
    Can someone help me, please?

    Hi,
    Try this........
    Add this <ReportAggregateEnabled>true</ReportAggregateEnabled> somewhere inside your <ServerInstance> and </ServerInstance>
    on instance config and restart the presentation services.
    Cheers,
    Aravind

  • Modulus 11 calculation not returning correct remainder - HELP

    Hi,
    Algorithm check for 10 char alpha, first 9 chars are numeric and last is alpha which is derived at by: remainder of:-
    (digit1*512 + digit2*256 + digit3*128 + digit4*64 +
    digit5*32 + digit6*16 + digit7*8 + digit8*4 +digit9*2)/11
    where digit 1 is the high order digit
    The table is:
    S for remainder 0
    A 1
    C 2
    X 3
    B 4
    J 5
    K 6
    H 7
    T 8
    L 9
    V 10
    for example:
    '555123321B' should return 4, otherwise fail
    '999999999C' should return 2, otherwise fail
    I'm in the process of constructing a method for a particular mod 11 calculation, and as a TEST, i have written the following code which is not working as i get the wrong remainder:
    String sti = null;
    sti= request.getParameter("sti");
    int sum = 0; int rem = 0;
    int sti_char1 = Integer.parseInt(sti.substring(0,1));
    int sti_char2 = Integer.parseInt(sti.substring(1,2));
    int sti_char3 = Integer.parseInt(sti.substring(2,3));
    int sti_char4 = Integer.parseInt(sti.substring(3,4));
    int sti_char5 = Integer.parseInt(sti.substring(4,5));
    int sti_char6 = Integer.parseInt(sti.substring(5,6));
    int sti_char7 = Integer.parseInt(sti.substring(6,7));
    int sti_char8 = Integer.parseInt(sti.substring(7,8));
    int sti_char9 = Integer.parseInt(sti.substring(8,9));
    sum = (sti_char1 * 512 + sti_char2 * 256 + sti_char3 * 128 +
    sti_char4 * 64 + sti_char5 * 32 + sti_char6 * 16 +
    sti_char7 * 8 + sti_char8 * 4 + sti_char9 * 2)/11;
    rem = sum % 11;
    Can someone please help me write a for loop using a table array for this algorithm check?

    ahh.. silly me. thanks.
    anyone want to have a go at converting this C function to JAVA?
    sti_validation(char *sti, char *msg) {
       char chr_arr[TWO_SZ];
       int  str_len;
       char *p;
       char *q;
       char *error_message;
       short i=0;
       int chr;
       int chkd=0,digit;
       int num[] = { 512, 256, 128, 64, 32, 16, 8,4,2 };
       static char* check_digit_tbl[] = {"S","A","C","X","B","J","K","H","T","L","V"};
       error_message = msg;
       str_len = strlen(sti);
       if ((str_len > 10) || (str_len < 10)) {
          sprintf(error_message,"String length must be 10 characters\n");
          return(0);
       for (p = sti; *p != '\0'; p++) {
          *p = toupper(*p);
          i++;
          if ((i >= 1) && (i <= 9)) {
             if( *p >= '0' && *p <= '9') {
                chr = *p;
                digit = (chr-'0');
          chkd = chkd + digit * num[i-1];
             }else {
                sprintf(error_message,"Characters 1 to 9 must be from 0 to 9\n");
                return(0);
          }else if (i = 10) {
             chkd = chkd % 11;
             sprintf(chr_arr, "%s",check_digit_tbl[chkd]);
             q = chr_arr;
             if( *p >= 'A' && *p <= 'Z') {
                if (*p == *q) {
                }else {
                   sprintf(error_message,"Invalid last character\n");
                   return(0);
             }else {
                sprintf(error_message,"Character 10 must be from A to Z\n");
                return(0);
          }/*i fr 1 to 9*/
       }/*For*/
       return (1);
    }

  • Data is not coming correctly through delta from DSO to Cube

    HI All,
    When there is change in Org. Unit, Job or any characteristic of employee then the the delta of data source picks that change records.
    I have used DSO before Cube. Now in DSO active table have one record against the Employee and same Schedule hours as ECC have.
    But while loading to the cube, this data of schedule hours will get added to existing schedule hours  of Cube , which makes the schedule hours double for that Employee. For exmaple.
    DSO Data.
    Emp NO.     Date Org. Unit     Sch. Hrs
    1                    ABC                              16
    CUBE Data
    Emp NO.     Org. Unit     Sch. Hrs
    1                    ABC               16
    Now Employee Org. Unit get changed to XYZ.
    DSO Data.
    Emp NO.     Org. Unit     Sch. Hrs
    1                    XYZ               16
    CUBE Data
    Emp NO.     Org. Unit     Sch. Hrs
    1                    ABC               16
    1                    XYZ               16
    I need data as it is in the DSO.
    Please help, thanks in advance.
    Arvind

    Hi Arvind,
    DSO and Infocube works different for char values......you can define Key Fields in DSO...
    whereas in Infocube each Characteristic value work as Key Field.....that's the reason if there is any change in any characteristic value ...
    DSO Active data will not change if Key field has not change..... the newly updated Data field value will be available in DSO Active Table.....whereas in Infocube... it will create a new entry......
    In order to get the updated value each time you need to explore some other options .....like complete deletion of Info cube data and full load everyday.......
    Other options depends on design and data volume and other parameters.
    Hope this helps........
    Regards
    Mayank

  • Witholding tax amount is not coming correct in FBL1N report.

    The WHT amount in vendor line item report in column withholding tax is being displayed without a minus(-) sign indicating a debit amount, but this amount is in fact not a debit amount, when this column is sum up it gives incorrect total.
    Regards
    Abhisekh Mandal

    Dear Abhisekh,
    SAP note 363309 says,
    "Remove the field which contains the withholding tax information
    from your display variant.
    If you want to display the withholding tax information, double-click on
    the document number and subsequently choose 'Withholding tax' button."
    (BSEG-QSSKZ, BSEG-QSSHB, BSEG-QBSHB) field is not relavent for
    Extended withholding tax and not suppose to use in report FBL1N.
    It basically does not make any sense to use the withholding tax fields
    of the document line items (BSEG-QSSKZ, BSEG-QSSHB, BSEG-QBSHB) with the
    activated extended withholding tax.
    I'm sorry not to help You further.
    Mauri

  • Pdf file is not coming correctly

    Hi,
    User came up with an issue as follows:
    "PDF invoices in CS language are incorrectly generated, Czech characters are missing. "
    Can any one suggest wht can be done.

    check doc is converted to perticular language or not..if it is converted then then i think that pertiacular word is not able to convert to the language.
    rewards if useful.....
    regards
    sachhi

  • SSD based on ATP rule is not coming correctly

    HI,
    We have issue with one of the item for which Sheduled ship date based on ATP is going out of planning horizon, eventhough we have supplies available for it.
    Issue in details:
    1. We are creating manual IR and ISO for that item, by giving need by date say 3-Jan-15, but the ISO is having the SSD outside the planning horizon.
    2. Checked for the available supply in ASCP planner workbench for the Org where ISO is getting booked and it is having enough supplies in the form of onhand, intransit shipments, planned orders. Checked for the onhand and it is pegged to Forecast demands and it is available to reserve and transact.
    3. Checked for the item attribute for this part no, it has check ATP value as 'Material Only'
    4. No ATP rule is defined in the item attribute for this item, also ATP component is having value as  'None'
    5. Checked for the MRP item attributes and it is End assembly/soft pegging
    6. Checked for the BOM and it has only single component in its BOM with the ATP flag unchecked for that component item in BOM and also at Org attribute level the ATP value is 'none' for component.
    I am not able to figure out the reason why the SSD is going out of planning horizon eventhough there is enough supplies aviable in the ATP enabled ASCP plan.
    Could you please help me for more checkpoints?
    Thanks,
    Avinash

    HI Abhishek,
    Thanks for the feedback, we have ATP results based on planning output. (Profile: INV:Capable to Promise=ATP/CTP Based on Planning output at site level)
    We can see many exception messages generated for this item in ATP enabled ASCP plan:
    1. Late supply pegged to Forecast
    2. Orders with compression days
    3. Past due Orders
    4. Orders to be rescheduled in
    5. Sourcing split percentage violated
    Please check below screenshot for the same:
    Also,
    this plan has demand scheduled attached as Forecast sets
    Thanks,
    Avinash

  • Multple page not coming correctly when using "Control Levels"

    Hi,
    There is a situation wherein "Control Levels" is required to be used. However, the output is not as expected. Some of the problems with this are
    1. Some of the data is being lost
    2. Some pages are blank
    3. The data is overlapping/overwriting on the footer section
    and others issues..
    Has anybody come across similar issues? If yes, could you suggest a solution
    Thanks in Advance.
    Thanks,
    Jayant

    Having raised this message with OSS, we got to know that the issue was with the generated XML file. The line is BOLD needs to be added between the lines as shown below.
    <template xmlns:xliff="urn:oasis:names:tc:xliff:document:1.1" xmlns="http://www.xfa.org/schema/xfa-template/2.4/">
       <?layout streamLineLayout 1?>
      <subform layout="tb" locale="fr_CH" name="data">
    Not sure of the real purpose of this. But it works

  • Signature status not coming correct during silent printing. Bug?

    Am using javascript inside my plugin to get the signature status in Acrobat 9.3.  Below is the code.
    sprintf(jsScript,"var f = this.getField('%s').signatureInfo(); event.value = f.status; ",strSigField);ASBool bRet = AFExecuteThisScript (gPDDoc, jsScript, &pReturnValue);
    This is working fine, except during slient printing.  Everytime including normal print, am getting the status as '4' i.e. signed which is correct.
    However, while printing silently in Acrobat either via code or manually by Right-clicking on the pdf in Explorer and selectting Print, am getting '1' i.e. unknown status for signed signature fields.
    Have also tried executing the menu item "Advanced->Sign & Certify->Validate All Signatures" before trying to get the status but am getting the same result.
    Please let me know if anyone else has also experienced the same issue and what is the cause/resolution of the same or this is a bug in Acrobat?

    Irosenth,
    Submitted a bug report and uploaded the sample pdf at http://www.megaupload.com/?d=Z5P8STOL.
    Let me know if any further information is required.

  • Travel Expense Type- Not coming correctly in HTML Form

    I am using HTML forms in travel management. When I simulate a travel expense statement, in the sections
    I T E M I Z A T I O N
    Additional Information for Itemization
    the name of the travel expense type come as truncated. It takes only 15 characters, while actually it can be 30.
    Any solution how it can be increased?

    Solved

Maybe you are looking for

  • Itunes and windows 8.1

    once i upgraded to win 8.1, itunes will not open. tried compatibility settings etc, still no go . does anyone have an idea?

  • Is it possible to get hacked by pressing on a link in a email that i got and am pretty sure was a hacker?

    got an email from what looked like it was pay pal telling me that my payment to such and such has gone thru only prob was i didn't buy anything .. so i clicked on the item description to see what it was thinking maybe my husband got something... turn

  • Forward work item that has been completed

    Can I know if there is anyway that I can forward the work item to someone even though the transaction has already completed? Also I would like to know if I can forward the work item to someone when it's not in a dialog step?

  • Built plug-in: topology not refreshing?

    Hi, We built a plug-in for a storage array. The topology view doesn't seem to be refreshed after removing a target. Let me try to explain. One of its configuration metrics shows the mapping of ASM disks on the host down to the device on the target (a

  • Section code IN A posted SALES DOCUMENT

    Hi In some of billing documents Section code and business place has posted with blank. How to generate Section code and Business place in posted Sales billing document. J1INPP is for generating Business place and section code in MIRO documents. Pleas