Dynamicaly Photo Print Problem in Adobe Form

Hello Expert,
I want to display Employee Photo on Performance Apprisal form Dynamicaly on Adobe Form(SFP).
for which, i trieed two  method -
1)-    
DATA : lv_pernr1 TYPE tdobname.
CONSTANTS: c_graphics TYPE tdobjectgr VALUE 'GRAPHICS',
c_bmap TYPE tdidgr VALUE 'BMAP' ,
c_bcol TYPE tdbtype VALUE 'BCOL'.
DATA : ls_z_if_test_cv TYPE xstring.
  lv_pernr1 =  '11000003'.       " Employee Number
     CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
       EXPORTING
          p_object        = c_graphics
          p_name         = lv_pernr1
          p_id               = c_bmap
          p_btype         = c_bcol
        RECEIVING
         p_bmp          = ls_z_if_test_cv         
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
      break jp_deepaks.
      IF sy-subrc = 0.
        lv_filename = ls_z_if_test_cv.
     ENDIF.
2)-
Find Photo URL of Employee
DATA : uri TYPE toauri-uri.
DATA: lv_filename1 TYPE toauri-uri.
      CALL FUNCTION 'HRWPC_RFC_EP_READ_PHOTO_URI'
        EXPORTING
          pernr            = '11000003'
          datum            = sy-datum
          tclas            = 'A'
        IMPORTING
          uri              = uri
        EXCEPTIONS
          not_supported    = 1
          nothing_found    = 2
          no_authorization = 3
          internal_error   = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      lv_filename1 = uri.
      CALL FUNCTION 'HR_KR_STRING_TO_XSTRING'
       EXPORTING
          codepage_to      = '8500'
          unicode_string   =   lv_filename1
        IMPORTING
         xstring_stream   = ls_z_if_test_cv
        EXCEPTIONS
         invalid_codepage = 1
          invalid_string   = 2
        OTHERS           = 3.
     IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
     ENDIF.
But both methods are not working properly. How can i do this??
Thanks in Advance,
Regards,
Shri

Hi,
I fetch the detail from table toahr with passing parameter
sap_object = 'PREL', reserve = 'JPG'  and ar_object  = 'HRICOLFOTO'.
i got the ARC_DOC_ID form table toahr. now how can i print this emp photo on Adobe form.
is this hexadecimal value or string ?
please explain the whole process for printing employee photograph on Adobe Form?
Thanks,
Shree

Similar Messages

  • Printing Problem in Adobe Forms

    Hi,
    We have created Adobe Form and it is working fine but the problem is with printout. when we issued output and click on
    print, the output comes with larger font size. Is there any settings in output parameters for printing same as print preview?
    I will be very greatful if any one update on this.
    Thanks & Regards,
    Venkateswararao G

    Hi,
    Please refer to SAP Note 1503523.
    Regards,

  • Problem  in Adobe Form

    Hi,
    I have some problem in adobe form.................................
    I have to design  my adobe form in  ADOBE DESIGNER layout.
    and in the another end i have make my application programe in which i picke
    some data from the sap tables. now my problem is that how can i send the data in
    my adobe form from my programe  i want to print that data on the form.
    and always my programe is going to be  notresponding.

    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = 'Adobe form name'
          IMPORTING
            e_funcname = lv_funcname.
        IF sy-subrc = 0.
    u will get the fm name here.....
    use fb_job_open
        CALL FUNCTION 'FP_JOB_OPEN'
          CHANGING
            ie_outputparams = gs_output
          EXCEPTIONS
            cancel          = 1
            usage_error     = 2
            system_error    = 3
            internal_error  = 4
            OTHERS          = 5.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    CALL FUNCTION lv_funcname
          EXPORTING
            /1bcdwb/docparams  = gs_outputpara
            wa_data            = <> pass value here....as per u r requirement.(interface)
            PATH             = <>
          IMPORTING
            /1bcdwb/formoutput = ls_return
          EXCEPTIONS
            OTHERS             = 1.
                          FP_JOB_CLOSE
        CALL FUNCTION 'FP_JOB_CLOSE'
          IMPORTING
            e_result       = result
          EXCEPTIONS
            usage_error    = 1
            system_error   = 2
            internal_error = 3
            OTHERS         = 4.
        IF sy-subrc <> 0.
    regards
    Anbu B

  • PDF Attachment problem in Adobe form and send mail is not working

    Dear Experts,
                         Recently i'm facing a problem regarding Adobe form PDF attachment and sending an e-mail along with the PDF attachment to customer mail id.But when i execute the RFC Function module, in customer side no mail is comming. And when i check the transaction SBWP then i found that the PDF attachment hold only 1KB of data which is not right.For that i'm sending my code which i was declared in my program.Can anybody please help me to overcome this problem?
    Warm Regards,
    sameek.
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
      data: t_att_content_hex type SOLIX_TAB.
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
            l_send type ADR6-SMTP_ADDR value 'Already provided an e-mail address here'.
      DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    Message body and subject*
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Customer Information Form').
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Customer Information Form'
    I_ATTACHMENT_SIZE =*
    I_ATTACHMENT_LANGUAGE = SPACE*
    I_ATT_CONTENT_TEXT =*
    I_ATTACHMENT_HEADER =*
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    Add attachment*
    Pass the document to send request*
      lo_send_request->set_document( lo_document ).
    Create sender*
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    lo_sender = cl_sapuser_bcs=>create( sy-uname ).*
    Set sender*
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    Create recipient*
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    lo_recipient = cl_cam_address_bcs=>create_internet_address( l_send ).*
    Set recipient*
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    lo_send_request->add_recipient(*
    EXPORTING*
    i_recipient = lo_recipient*
    i_express = 'X' ).*
    Send email*
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
      COMMIT WORK.
      message 'The Customer Information form has been emailed to the Employee' type 'I'.

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • Standard print program for Adobe Forms

    Hi all -
    Does anyone know if there was a standard print program delivered for the predelivered Adobe form F110_AVIS_INT?  And if there is - what is it?  Is there any document anywhere to determine predelivered print programs for Adobe forms?
    Your help is much appreciated!
    Thanks
    Abby

    Hi
    In SAP you can check for the Print Programs in Tcode <b>OB96</b>
    which gives assignment of programs to script layouts
    see the links related to Adobe forms
    look at the Adobe page here in SDN:
    https://www.sdn.sap.com/sdn/developerareas/was.sdn?page=AdobeForms.htm
    Check these links on Adobe forms
    http://help.sap.com/saphelp_nw04/helpdata/en/1e/05853ff8ec2c17e10000000a114084/content.htm
    https://www.sdn.sap.com/irj/sdn/interactiveforms
    http://www.sap.com/solutions/solutionextensions/pdf/BWP_Interactive_Forms_Adobe.pdf
    It contains lots of useful information, documentation, and e-learning materials teaching you the basics.
    Reward points for useful Answers
    Regards
    Anji

  • Default printer problems with adobe 10.1.2

    I was having problems printing PDFs since upgrading to 10.1.2.  After reading and trying many recommendations, I happened to notice that my default printer(I have only one printer) was listed twice on the print window.  The first (default) printer is spelled "HP PSC 2350 series" (upper case 'PSC')  The second is "HP psc 2350 series" (lower case 'psc') .  The printer is named 'HP psc 2350 series' in my printers and devices, and if I select this printer, the page will print perfectly.  Now that I have solved my printing issue,  I would like to change the default setting on the adobe print window to come up as the active link, so I don't have to continue to select a different printer everytime I wish to print a document.  The printer by the lower case "psc" name is set as the default printer in printers and devices, and I cannot figure out why it doesn't come up as the default printer on the adobe reader print window.  I also cannot figure out how to change the default in the print window.   An added interesting fact is that I get no response in the print window when I try to select "preferences' or 'advanced' for the upper case 'PSC' printer.
    My computer runs in Windows 7 (64-bit).  The printer is HP psc 2355xi all-in-one.  Any suggestions are much appreciated

    I have not been able to select a different default printer for Adobe,  but I can print if I manually select the correct link everytime.
    Date: Tue, 6 Mar 2012 13:16:52 -0700
    From: [email protected]
    To: [email protected]
    Subject: default printer problems with adobe 10.1.2
        Re: default printer problems with adobe 10.1.2
        created by AMG13 in Adobe Reader - View the full discussion
    I am having the same issue.The correct printer is selected as the default printer on the control panel and there is no driver with the lowercase convention.However, the first printer option that appears is the lowercase convention. Is there any way to select a default printer for specifically for Adobe, as opossed to the PC itself?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4248912#4248912
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4248912#4248912. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Can not get print preview of Adobe forms

    Hi Gurus,
    I am not able to see the print preview of adobe forms, and when i click on print preview, i get this error code..
    Exception       SYSTEM_ERROR
    Message ID:          FPRUNX                     Message number:           001
    I don't see any logs from SM21, and so I don't think this some code error... I configured ADS as per the document, and all the configuration tests are passed except this print preview...
    Any suggestions?
    Regards,
    Nrisimhanadh

    Hi
    Please check this parameter
    OUTPUT_OPTIONS-TDNOPREV
    hope this helps
    Regards
    Aakash

  • Photo from Pa30 into Adobe Forms.

    Hello,
    We have uploaded the photos of Employees in HR server.
    Now in the Adobe Forms, we needs to fetch these photo's and display.
    Is it possibe?
    I know that through webdynpro , we can pass the photo as Xstring and display in Adobe form.
    We want in the Adobe form directly call the photo which is stored in Pa30 & display without using the intermeidate webdynpro.
    How this can be acheived?
    Regards,
    Dadarao.

    Hello,
    WD does not have any important role in passing a photo to Adobe form. I guess you want to print some "personal card" type form, right? I have developed many of these. A good source of information is How Tou2026 Integrate ADOBE form on WebdynPro for ABAP and Deploy it on portal by Bhawanidutt Dabral. Not because of the WD part, but because the way how to send the photo into the form is described here. Just in case you have any difficulties in finding it, I can copy the important part for you here:))
    Currently we will Hard Code the fields Vorna and Nachn and will use the standard method to get the photographs form SE78 (Form Graphics). Add this piece of code
      CONSTANTS:    c_graphics    TYPE   tdobjectgr  VALUE 'GRAPHICS',
                    c_bmap        TYPE   tdidgr      VALUE 'BMAP' ,
                    c_bcol        TYPE   tdbtype     VALUE 'BCOL'.
    Get the Photographs.
      lv_pernr1 = '00000028'. " Employee Number
      CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
        EXPORTING
          p_object       = c_graphics
          p_name         = lv_pernr1
          p_id           = c_bmap
          p_btype        = c_bcol
        RECEIVING
          p_bmp          = ls_z_if_test_cv-im_photo
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
    You need to use the XSTRING type variable in your form interface/ context and use Image field component (not only Image!!) in your Adobe form. If you don´t like this solution (which is simple and really nice) you can work with the URLs of the pictures and pass these URLs into the form, but that would be troublesome because there is a problem to include the picture into the form, how to get the pictures URL etc.
    I hope this solves your problem, Otto

  • Issue While printing / Previewing a Adobe form in Web Dynpro ABAP application

    Dear All,
    We have designed 4 different adobe forms using SFP transaction for 4 different countries in SAP system.
    Every country have different terms and conditions and therefore we have placed static texts (Hardcoded text) with text in different styles. Some text is in bold, some in different font (Bold, Italic). Font and Paragraph settings of the text was done as per expected. All the forms have same font and paragraph settings.
    When we Launch Web Dynpro ABAP application to open the form in Print preview or to take print, form is not getting displayed / printed as it is designed in SFP. But if you open the form in SFP, everything looks fine.
    It is working fine for 3 different forms but problem with only 1 form.
    Kindly guide what is the reason for this strange issue when previewed or taken print. It is very urgent.
    Thanks,
    Bharath.K

    Dear All,
    Thanks for your responses.
    We had identified the reason.
    Customer has provided terms and conditions for all 4 countries in PDF document. Along with PDF, for 3 out of 4 countries customer has shared pre-prepared word document with pre aligned and justified terms and conditions as per expected outcome. We copied this text from word to Adobe form layout. It worked fine. For 1 country, customer have not shared terms and conditions in word document. Therefore we had copied text directly from adobe PDF document in to Form layout. Then this issue happened.
    Solution for this issue is to, prepared a word document with expected alignment and justification of terms and conditions text . Then copied from word to adobe livecycle designer form layout. It worked fine.
    Thanks,
    Bharath.

  • Problem in Adobe Form Execution

    Hi,
    I am getting an error "ADS: SOAP Runtime Exception: CSoapExceptioFault: SOAP(100102)" while executing Adobe Form.
    It seems the ADS configuratoin is not correct. Can some help me out in fixing this issue.

    Hi Sathish,
    To check the Present configuration do the following:
    1.1 Checking by Executing Test Report FP_TEST_00
    Use
    This test report checks if your system is configured correctly for processing forms in an ABAP environment.
    Procedure
       1. Log on to your SAP Net Weaver AS ABAP.
       2. Call transaction SA38 and enter the name FP_TEST_00.
       3. Choose Execute (F8). A dialog box is displayed.
       4. Enter FP_TEST_00 in the field Form.
           This is displayed as the default form name.
       5. Enter the name of the connection to the ADS. Enter the default name ADS, or, if you have               specified another name, the one you are using in your system.
       6. In the dialog box, choose Output in Print Preview.
       7. Enter an appropriate device type in the field Output Device.
       8. Choose Print Preview.
    On successful execution of the report, you find the Print Preview of the PDF form.
    If the Configuration is not correcr no form is displayed.
    The following steps are only necessary, if the result of the above test was not successful.
        2. Check the ABAP Connection
        3. Check the User and Password
        4. Check the Destination Service
    1.2 Checking the ABAP Connection
    Use
    This is a test for checking the RFC destination. This test applies to both connections using Basic Authentication and SSL connections.
    Procedure
    1. Log on to your SAP system.
    2. Call transaction SE38.
    3. Enter the name of the test report FP_PDF_TEST_OO.
    4. Enter the name of the connection. Enter the default name ADS, or, if you have specified another name, the one you are using in your system.
    5. Choose Execute (F8).
    Result
    If the configuration is correct, the system displays the version number of the Adobe document services.
    If the configuration is not correct, the system displays a corresponding message.
    or
    Go to the following link to download the complete ADS configuration guide:
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9e4e9afb-0701-0010-f8a8-b8cd093662c2]
    Hope to solve your problem.
    Regards,
    Vaibhav Tiwari.

  • Printing problems with adobe 9

    I have a problem with printing in adobe 9, When a pdf is sent to the printer it only prints 1 page, so if I try to print a 6 page pdf file it will only print page 1. Also if I try to print double sided it only prints single sided, It's like it only recognises the first page of the pdf. I have uninstalled adobe 9 and reinstalled adobe 8 which works fine. I need to have 9 installed and working. The printer I am trying to print to is Utax Colour CDC 1520 printer. Any help would be appreciated.

    A client of my employers has been repeatedly encountered one of these problems when printing from Adobe Reader 9, where the "ERROR: undefined"and "OFFENDING COMMAND:" messages are displayed near the top of one of the pages in the print output.  This has only been detected recently, and definitely did not happen 6-8 months ago when they installed the software, which uses Adobe InDesign Server, to generate the PDF's.
    They encountered it first when printing a specific PDF document from Adobe Reader 9.0.0 to a Canon IRC4080I.  It also occurred after upgrading to Adobe Reader 9.1.0.  To rule out a possible problem with the document, they retrieved some PDF's that were made in January of this year, which must have been able to be printed out at that point in time, and tried to print them from Adobe Reader 9.0.0 using the Canon printer.  The same error occurred.
    In order to narrow down the problem, they tested printing the same document with Adobe Reader 8 (not sure which minor version) on Windows XP, printing on the same Canon printer and it worked successfully.
    They then upgraded that machine's Reader to 9.0.0 and found that the error occurred when printing the same document from that machine then.  They also tried with version 9.1.0 and this did not rectify the problem.  However, after reading the KnowledgeBase advice at http://kb2.adobe.com/cps/403/kb403914.html  I suggested that they try printing the same document on a different model of printer (an HP printer, not sure which model) and it printed successfully.
    Further evidence suggesting a print driver problem was provided by the fact that we cannot reproduce it in the office where I work on either of our two types of printer, which are Epson Stylus Photo R200 and Samsung ML-1200:  printing the same document in Adobe Reader v.8.1.3 and 9.1.0 on Windows Vista and 9.1.0 on Windows XP to those printers has not produced the error message.
    Although I have been liaising with our client's IT support and recommending some of the configuration solutions that have been posted in this thread, my concern is that our client sends out PDF-format documents for advertising purposes to their clients, and that it is not acceptable to them to accompany the PDF with detailed instructions on how to configure drivers to make it print - the end client may simply not bother.
    If Adobe are reading this, I wonder whether they could let us know whether they are developing a compatibility fix to Reader, or whether this problem is better raised with the printer manufacturers, in this case Canon, to encourage them to make their drivers compatible?
    Thanks very much,
    Gareth Morgan.

  • Print PDF in Adobe form

    Hi EXpert...
    I have  a documen in PDF format.. I want to print this in classical adobe form  as a photo.. is this possible???
    thanks,
    Shri

    Hi Shri,
    As per my understanding you want to do the reverse scenario.You need to create Adobeform through an existing PDF file.
    If you want to do this...I don`t think it is possible because we create layouts in Adobeform like SMARTFORMS  & SCRIPTS and you are trying to create layout through your existing output.
    Please let me know also if it is possible.
    Regards,
    Ankur

  • Communication problem between Adobe Form and WebDynpro

    Hi all,
    I have the following problem and am thankful for any help I can get from you in order to solve it:
    I created an Adobe Form in WebDynpro. In both the WebDynpro as well as in the Adobe Form, I created a Submit Button (which I binded to the same method) as well as a text field (which I binded to the same context attribute). When I do changes in WebDynpro, everything works fine and the changes are displayed in the Adobe Form as well.
    But when I do changes in the Adobe Form, these changes are not submitted. Also the Submit button in the Adobe Form is not working.
    I send the project to a colleague and she could deploy and run my project without any problems. So I think it is a problem with my settings or installation. I already did a reinstallation of the NW Developer Studio as well as the Adobe Lifecycle Designer. But it did not help.
    Did anyone have a similar problem or has a suggestions what else I could do?
    Thanks in advance,
    Thorsten

    Hi Thorsten,
    If the submit button doesn't do anything, it usually means there's something wrong with your client software.
    Are you using NW04s or NW04? NW04 only supports ACF (Active Component Framework) forms, whereas NW04s also supports ZCI (Zero Client Installation) forms (there're different Submit buttons in Adobe LiveCycle Designer). Reader 7.0.9 should definitely work in all cases, but Reader 8.0 (and Reader 8.1, released yesterday) doesn't work properly with ACF forms (there's an SAP note on this subject).
    To use ZCI forms, all you need is Adobe Reader at client side. To use ACF forms, you also need some other client software: either (the correct version!) SAP Active Component Framework (stand alone software that you can download from SAP Marketplace; it's part of some SAP note; search for xACF and select the correct version of the note). A better option is not to install xACF manually (uninstall it if present, using Control Panel > Add/Remove programs), but to use the ActiveX control instead (reinstall it in your case because of the problem you have). First kill the AcroRd32.exe process, if it is running. Then go to "C:\WINDOWS\Downloaded Program Files" and delete the file AdobeControl(s) (NW04) or AcfControls (something similar; NW04s) if present. Then access your form in your Web Dynpro application using IE (Firefox doesn't support ActiveX; the only option is to use ZCI forms with non-IE browsers). If all goes well, prior to displaying the form, IE should ask to install an ActiveX control (it will only be asked if you have sufficient privileges, that is belong to the local Administrators group).
    Kind regards,
    Sigiswald

  • How to print watermark in adobe forms

    Hi Experts,
    I have one requirement where i need to print watermark on PDF invoice outputs. I am using adobe forms to print invoice.
    I am not sure whether logo needs to be used for printing watermark or text.? And please let me kow the procedure to use this in adobeforms.
    Thanks in advance.
    Regards,
    Dileep.
    Moderator Message: Search before you post.
    Edited by: kishan P on Jan 13, 2012 11:12 AM

    Hii,
    Try to add one more field for  text field for each line item and make sure use a flag .
    if the flag is true then make it visible use the below JavaScript code to hide a particular field.
    his script will hide the field in runtime if it is initial.
    hidden or presence make sure use the conditions as per the require to hide the text or to make it visible
    Enter the below JavaScript in the editor & Select the language as JavaScript. 
    if(this.rawValue == null)
      this.presence = "hidden";
    Edited by: Rajan.Dexter9 on Jan 20, 2012 12:17 PM

  • How to print barcodes in Adobe forms

    Hi All,
    I am new to Adobe forms, Please help me how to print barcodes in ABAP using Adobe forms.
    Thanks in advance.
    Regards,
    Satya.
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Aug 26, 2011 4:17 PM

    Hi Vanessa,
    maybe this blog helps for the tables:
    [Adobe Forms Using: Nested Table, Text Module & providing the functionality of Page Total & Grand Total|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=%28J2EE3414900%29ID0583594050DB11063248235171113529End?blog=/pub/wlg/11236]
    and for the barcodes I found this:
    [Introduction to barcodes in SAP Interactive Forms by Adobe|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=%28J2EE3414900%29ID0583594050DB11063248235171113529End?blog=/pub/wlg/13061]
    I hope this provides some help for you.
    If you are not able to fulfill your task, it is a good idea to check the blogs, wikis and download areas here in SAP Community Network - usually the quality is some quantum leaps better than current  ABAP, General.
    Regards,
    Clemens

Maybe you are looking for