E-Requiement - Replace Publication Smart Form with Customised Forms

Hi All,
In E - Recruitment, We have standard smart form "HRRCF_PUBLICATION_INT" (publication  for internal candidate)and "HRRCF_PUBLICATION_EXT" (publication for external candidate.
Here client requirment to change layout of these forms for that we developed customised smart forms according to the client requirment.
I want to replace these standard forms with my customised "Z" forms.
please anybody can tell me how to do the same.
Regards,
Priya

Hi Priya,
I am not sure why as per the client requirement we cant change it in the spro ??
anyways if you want to achieve it then we have to go for an enhancement...
for eg i want to change a std smartform which displays the candidate and requisition data overviews in the manager self service.
then i know that the class CL_HRRCF_M_DATAOVERVIEW will be used and in this a method called GET_FM_NAME will be called which fetches the smartform(std) so in this FM create a enhancement at the last so you have a chance to overwrite the form name..
Ie. in FM....
This is std....
  Get name of generated function module
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = lv_formname
          IMPORTING
            e_funcname = ev_fm_name.
  Get name of generated function module
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = lv_formname
      IMPORTING
        fm_name            = ev_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
  ENDIF.
This is the enhancement.... this is what you have to do...
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1) Class CL_HRRCF_M_DATAOVERVIEW, Method GET_FM_NAME, End                                                                                A
$$-Start: (1)----
$$
ENHANCEMENT 1  ZHRER_MSS_FORMS.    "active version
use custom smart forms instead of standard SB 07/22/08
  if iv_fallback_form = 'HRRCF_DATA_SUMMARY_REQUISITION' .
     lv_formname = 'ZHRER_SF_REQUISITION' .
  ELSEIF iv_fallback_form = 'HRRCF_DECISION_OVERVIEW' .
     lv_formname = 'ZHRER_SF_DECISION_OVERVIEW' .
  endif.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = lv_formname
      IMPORTING
        fm_name            = ev_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    IF sy-subrc <> 0.
$$-End:   (1)----
$$
Hope this helps..
Thanks & Regards,
Dipu_B

Similar Messages

  • Is it possible to create a form with multiple form fields on a single line?

    Is it possible to create a form with multiple form fields on a single line?  I can't find anything in the documentation or a template that does this.
    I am trying to create a "documents received" checklist with a check box on the left margin, a date-received field to the right of the check box and and a description of the document (Formatted Text) on the far right.
    In the past I have entered the Fixed Text with a word processor, published it to a PDF file, then added the check box and date fields with the Acrobat Forms editor.  I would prefer to use FormsCentral if it is possible.

    We now support multiple fields on one line. This post provides a brief overview.
    Give it a try and send us your feedback.
    Sorry it took so long.
    Randy

  • Saving a PDF-form with nested forms and tables

    I created a multiplaged form with a couple JS-functions to add table-instances and complete tables and a few more. I saved the form with additional rights to make sure my users can save the form and its content using Adobe Reader. Now whenever the form is saved, some - but only some - information disappears, respectively isn't saved but replaced through the default content. I created quite some forms before and never ever had this problem. I'm using LiveCycle Designer ES 2 )but experienced the same problem when using ES 3) and Adobe Reader X.
    Filled out form before saving:
    Filled out form after saving and re-opening:
    Any ideas?

    Hello
    When you work with live cycle designer you create your form and you save it. Then, when you want to send it to people you use the assistant with create 2 other different files :
    1) A publication form that you will send by mail
    2) A blank form that you will fill with information the user sent to you
    So, call the assistant create the 2 files but don't send them to people and save them locally. Open the second file and fill it in reader, you will see you will save change.
    Regards

  • Rep-52005 error when running a report from form with parameter form

    I am trying to run a report from a web deployed form and this report has a parameter form. I am getting a Rep-52005: The specified key report does not exist in key map file.
    I am using Oracle Forms/Reports 10.1.2.0.2. My code is below. The first part works fine where I run a report with no parameter form, but the second part when I have a parameter form gets the about error.
    PROCEDURE call_report (
    p_report_name VARCHAR2,
    p_reportobj_name VARCHAR2 DEFAULT NULL,
    p_parameter_list paramlist DEFAULT NULL,
    p_parameter_string VARCHAR2 DEFAULT NULL
    IS
    repid report_object;
    v_rep VARCHAR2 (100);
    rep_status VARCHAR2 (100);
    v_report_url VARCHAR2 (240);
    v_interface VARCHAR2 (50);
    v_report_parameter VARCHAR2 (1);
    vc_user_name VARCHAR2 (100);
    vc_user_password VARCHAR2 (100);
    vc_user_connect VARCHAR2 (100);
    vc_connect VARCHAR2 (300);
    v_reportserv VARCHAR2 (30);
    v_job_number number;
    BEGIN
    /* Get the database to run the report against and
    find out if the report has any parameters */
    SELECT report_parameter_flag
    INTO v_report_parameter
    FROM program_list
    WHERE program_type = 'REPORTS'
    AND UPPER (screen_id) = UPPER (p_report_name);
    vc_user_name := get_application_property (username);
    vc_user_password := get_application_property (password);
    vc_user_connect := get_application_property (connect_string);
    v_reportserv := 'rep_xxxx_ias10g_home';
    v_report_url := 'http://xxxx.state.il.us';
    v_job_number := length(v_reportserv) +2;
    vc_connect :=
    vc_user_name
    || '/'
    || vc_user_password
    || '@'
    || vc_user_connect;
    v_interface := get_application_property (user_interface);
    IF ( v_interface = 'WEB'
    AND v_report_parameter = 'N'
    THEN
    repid := find_report_object(p_reportobj_name);
    set_report_object_property (repid, report_comm_mode, synchronous);
    set_report_object_property (repid, report_destype, cache);
    set_report_object_property (repid, report_desformat, 'pdf');
    -- v_reportserv := get_report_object_property (repid,report_server);
    set_report_object_property (repid, report_server, v_reportserv);
    set_report_object_property (repid, report_other, p_parameter_string);
    v_rep := run_report_object (repid);
    rep_status := report_object_status (v_rep);
    IF rep_status = 'FINISHED'
    THEN
    web.show_document (
    v_report_url
    || '/reports/rwservlet/getjobid='
    || substr(v_rep,v_job_number)
    || '?server='
    || v_reportserv
    ,'_blank'
    ELSE
    message ( rep_status
    || 'Report output aborted');
    END IF;
    ELSIF ( v_interface = 'WEB'
    AND v_report_parameter = 'Y'
    THEN
    repid := find_report_object (p_reportobj_name);
    set_report_object_property (repid, report_comm_mode, synchronous);
    set_report_object_property (repid, report_destype, cache);
    set_report_object_property (repid, report_desformat, 'pdf');
    set_report_object_property (repid, report_server, v_reportserv);
    set_report_object_property (
    repid,
    report_other,
    'paramform=yes P_USER_CONNECT='
    || vc_connect
    || ' P_SERVERNAME='
    || v_reportserv
    || ' P_ACTION='
    || v_report_url
    || '/reports/rwservlet'
    v_rep := run_report_object (repid);
    rep_status := report_object_status (v_rep);
    IF rep_status = 'FINISHED'
    THEN
    web.show_document (
    v_report_url
    || '/reports/rwservlet/getjobid='
    || substr(v_rep,v_job_number)
    || '?server='
    || v_reportserv
    ,'_blank'
    ELSE
    message ( rep_status
    || 'Report output aborted');
    END IF;
    ELSE
    run_product (
    reports,
    p_report_name,
    synchronous,
    runtime,
    filesystem,
    p_parameter_list,
    NULL
    END IF;
    EXCEPTION
    WHEN OTHERS
    THEN
    message (SQLERRM);
    END;
    My parameter form comes up and I enter the necessary information and hit submit query button. Then I get the Rep-52005: The specified key report does not exist in key map file.
    Any help will be greatly appreciated!!
    Shellie Bricker

    Your code seems to be implementing metalink note 139546.1 - Using Reports parameter forms with RUN_REPORT_OBJECT on the web.
    For what I can see, the P_ACTION parameter should end in ?...
    i.e.
    P_ACTION=http://<hostname.domain:port>/reports/rwservlet?'
    set_report_object_property (
    repid,
    report_other,
    'paramform=yes P_USER_CONNECT='
    || vc_connect
    || ' P_SERVERNAME='
    || v_reportserv
    || ' P_ACTION='
    || v_report_url
    || '/reports/rwservlet?'
    );If this does not fix your problem, then to troubleshoot further you would have to post the code in your Before Parameter Form trigger of your report.
    Hope this helps,
    UPDATE:
    If the above does not fix your problem, my guess is that report name is not being generated in the hidden runtime values build by the code in the Before Parameter Form trigger.
    i.e.
    http://localhost:8889/reports/rwservlet?report=&destype=cache&desformat=PDF
    The above code will throw error REP-52005: The specified key report does not exist in key map file.
    Edited by: Rodolfo Ferrari on Jul 8, 2009 9:43 PM

  • Can you replace embedded smart object with linked smart object?

    Hi,
    I'd like to update some document to reflet the new workflow that linked smart object provide. I have made some transformation on those embedded smart object and would like to not have to redo all those so is there anyway way to replace those SO with the linked version of the same SO?
    TIA
    Jeff

    Hi,
    I'd like to update some document to reflet the new workflow that linked smart object provide. I have made some transformation on those embedded smart object and would like to not have to redo all those so is there anyway way to replace those SO with the linked version of the same SO?
    TIA
    Jeff

  • Printer wont print: "HP Smart Web Printing is not compatible with FF 37.0.1" Also, I can't fill forms with Robo Form

    No details needed

    I understand that the message gives that Firefox does not support the printer giving issues as well as Robo Form is not filling in forms for Firefox.
    Please consider the troubleshooting steps suggested:
    *[[Fix printing problems in Firefox]]
    As for the addon/extension I can recommend trying Safe Mode to see if there is an issue with one of the add ons, or disable each of the extensions to troubleshoot what might be interacting with this feature.

  • I have a Application Form with many form fields and...

    I need to edit some of the text. How do I do this without having to spend lots of time putting in the form fields again?

    I am guessing you have put the form together in something like InDesign, made a PDF, done a lot of work with form fields over the top in Acrobat and now need to update the base artwork whilst retaining your Acrobat Edits?
    The way to do this is make your base artwork edits and make a new PDF (with a different name), open your PDF with the added form fields and choose Document > Replace Pages, navigate to your new PDF and replace the pages.

  • Adobe form with Webdynpro - Form is hanging on click of Submit button

    Hello Experts,
    My View has an adobe form that has many dropdowns and input fields. There are some fields which get automatically populated based on entries made by the users. There are several internal tables getting populated in the WDDOINIT method. I have a 'Submit Button' which when clicked should close the browser, retrieve data in the Context and do processing in SAP.
    When I click on the submit button, I get a 'Wait' symbol (the circle symbol) for a very long time and then the Connection time out error comes up.
    I commented the population of some internal tables in the 'Init' method. when I tested by clicking this button, it worked. The browser got closed and processing in SAP was done too.
    I am working with a fairly large data. 2-3 of the internal tables (that I commented) have 2000-3000 records. Is there is restriction on how much data the WDN can handle? I am stuck now because even though all codes are correct, the wdn is not able to handle the data.
    Any suggestions ?
    appreciate all your help! Regards, Liz

    This issue is resolved. This was due to loading a large data set to the form.

  • Creating a main form, with internal forms help! (a poke in the right direct

    Hey guys, I am trying to make a form application within swing (currently using netbeans gui builder), and I am trying to achieve a standard sized form (say 300x200px) and when the user clicks a "next" button, the
    form layout does not change and a new form appears inside. I have looked into jinternalFrames; however I do not want a moveable frame inside, I just want to have an arbituary frame where the content inside
    changes. I plan on making around 60 pages (forms) within this app so differant jforms or something is the logical procedure.
    I just need a point in any direction at all, as to how to achieve this; I am confident programmer in C/C#/C++/VB.NET (yes im new to java) however it's so similiar to C# I doubt i'll have a problem either:
    a) information on how to program the swing manually without a gui builder
    b) a method of how to achieve what im doing in netbeans/eclipse
    Thanks all

    when the user clicks a "next" button, the form layout does not change and a new form appears insideAnd the [Card Layout Actions|http://www.camick.com/java/blog.html?name=card-layout-actions] should help with this.

  • Pdf form with mulitple forms inside

    Hi
    I am working on a strange requirement. I have a selection screen in WD ABAP application and employee id is one of the selection parameter. When a user selects multiple employees BAPI gives WD employee headers and each Employee's transactional data in separate tables. Now requirement is something to get all of this data in a single PDF which will have employee header and Employee's transactional data followed by page break and same block should start for next employee.
    Employee 1 Header
    Employee Transactional data Table 1
    Employee 2 Header
    Employee Transactional data Table 2
    and so till the last employee.
    Please suggest if that;s possible in PDF and if yes how should I proceed.
    Thanks
    Umang

    hi,
    i think you will need to create a smartform and den it will open via your application in PDF form
    regards,
    Sahai.s

  • I would like to send a form with the form fields locked but with the links still active.  Any Ideas?

    I'm new to creating fillable forms and I feel that this appoach would help to create HVAC proposals in quickly by editing a few fields within a PDF. I would like to then email the form that I created to my client, but I do not want them to be able to change the fields such as the cost of the job, yet I do want them to be able to open links that are embedded in the proposal.  So far my approach has been to send them a flattened copy which essentially make the entire PDF stagnant. Any ideas would be much appreciated!

    You can use the free selective flattening tool that's available here: http://www.uvsar.com/projects/acrobat/flattener/

  • HCM Process & Forms with FPM forms

    Hi,
    Is it possible to hide the previous comment & new comment fields in FPM webdynpro used in HCM forms  based on conditions e.g 'if they are empty' or based on scenario stage... etc.
    Kindly help.
    Thanks,
    Anju

    You are welcome Uvendu.
    There are some notes related to pdf generation. Recheck if they are relevant and in place.
    PA-AS
    1901520
    PDF generated multiple times
    20.08.2013
    5.
    0.350
    PA-AS
    1968166
    Errors during PDF generation for FPM forms
    21.01.2014
    6.
    0.260
    PA-PAO
    1992122
    Attachment Handling and Form Utilities missing when starting HCMPF Processes in
    09.05.2014

  • Error in generating form with 6i

    I have installed designer 6i rel 2 with form developer 6i on NT
    4.0.
    When in design editor, I want to generate the form with generate
    module, the system generate "CDR-21600: A running Generator or
    Utility has failed."
    Also in action column writes: " It is possible that the internal
    cache is now in an inconsistent state. You are therefore
    recommended to close and restart the application."
    Could anyone tell me what is the problem and how to solve it.
    thanks

    Here is an document which describes some known causes of CDR-
    21600 errors. I hope it will help you.
    PURPOSE
    To describe some known causes of CDI-21600 errors and to
    suggest possible solutions and workarounds.
    SCOPE & APPLICATION
    This note was written for users of Oracle Designer releases 2.1.x
    and 6.0.
    CDI-21600 errors occur most frequently during Design Capture and
    when generating forms with the Forms and WebServer generators.
    Investigating CDI-21600 errors
    In Oracle Designer Release 2.1.2 and Release 6.0, this error has
    the form:
    CDI-21600 'A running generator or utility has failed'
    The Release 2.1.1 error message was: 'Generator or Utility throw
    an Exception'
    The CDI-21600 error message means that the generator is hitting
    an unhandled exception, also known as a GPF (general protection
    fault). The CDI-21600 error masks the underlying exception error.
    To see the real error do the following:
    1. Go into the Registry Editor (REGEDIT).
    2. Navigate to HKEY_LOCAL_MACHINE\software\oracle\des2_70
    3. Set EXCEPT_HANDLING to 0 (by default it is 1).
    Repeat the action that resulted in the error.
    Known Causes of CDI-21600 Errors and Possible Solutions
    Some of the reasons why CDI-21600 errors occur are listed below.
    1. A common cause of CDI-21600 errors is failure to install the
    necessary
    Developer patches.
    See [NOTE:64630.1] Developer Patches required to run
    Designer with Developer
    2. Check that Designer is running on a supported database. Also
    check that the
    TNS connection is correct.
    See [NOTE:60705.1] Designer Certification Matrix (HTML)
    3. Check for 'dangling' foreign keys, in other words FKs no longer
    owned by any
    table in the repository. Delete all invalid constraints.
    Invalid constraints may be created if you use the repository
    dump utility to
    dump and restore external foreign keys referencing tables
    shared into the
    application system, without dumping and restoring the tables
    that own them.
    If you restore a complete dump (rather than a 'skeleton' one),
    and then use
    the 'Reconnect Share Links' option when restoring, you may be
    able to
    resolve this problem.
    To get a complete list of 'dangling' constraints in your
    repository, connect
    using SQL*Plus and use the following query:
    SELECT app.name, key.name
    FROM ci_application_systems app, ci_constraints key
    WHERE key.table_reference IS NULL
    AND key.application_system_owned_by = app.id;
    You can also run CKAZANAL.ANAL_REFERENCES on your
    repository and delete all
    the invalid constraints that it finds. You can run the Repository
    Analyzer
    from: Front Panel -> Repository Administration Utility -> Utilities.
    NOTE: There may be inconsistencies in the repository that the
    Repository
    Analyzer cannot fix. You might solve such problems by
    dropping all the
    tables of your application, recreate them from the ERD,
    then use the
    DDT and recreate your modules.
    [BUG:847190] CDI-21600 during forms generation: 'dangling'
    foreign key
    "Since the generator is running on a repository that contains
    invalid
    constraints and the Repository Analyzer solves the problem,
    bug closed as
    unfeasible to fix."
    4. Check your modules for invalid or missing references such as
    missing window
    placements.
    5. Try generating your module against default templates and
    object libraries.
    6. When capturing forms or libraries, try capturing the form or
    library without
    application logic, then capture the application logic on its own.
    See [NOTE:1064690.6] CDI-21600 when capturing design of
    form with
    application logic
    [BUG:757541] DESCAP: CDI-21600 error reported when
    capturing with
    application logic
    Fixed In Ver: 6.0
    [BUG:926383] Duplicate of [BUG:757541] This has been fixed in
    2.1.2 patch
    779559. However you would be advised to apply a later patch
    such as 855635
    which fixes more bugs in this area.
    7. Make sure that all objects that are referenced by the form have
    been
    captured into the repository before capturing the form.
    8. A CDI-21600 will occur if a lookup usage displays only one
    column of
    datatype DATE or if the column of datatype DATE is displayed
    as the first
    item in the block.
    Workaround
    Add more column usages to the lookup block and do not
    display the DATE data
    type column usage as the first item in the block.
    9. [BUG:810472] CDI-21600 when 'Argument in Caller' is set
    Fixed In Ver: 6.5.3.0
    Workaround
    Make sure that you have an argument in the called module that
    is mapped to
    the "Argument Passed Value" in the calling module. The only
    way to get this
    mapping back once the APV has the <Module Argument> label
    is to delete it
    and recreate it.
    10. [BUG:801736] CDI-21600 on design capture of a form with
    subclassed object
    Fixed In Ver: 6.0.3.1.0 (backport)
    Fixed In Ver: 6.5
    You have an item that has been subclassed to an object.
    Checking the Design
    Capture option 'Capture Control Blocks' causes the CDI-21600
    error. Uncheck
    'Capture Control Blocks' and the problem does not occur. Open
    the FMB in
    Forms*Builder and look at Data Blocks -> Items. Break the link
    to the
    object, save the FMB, and the form will capture (similar to
    [BUG:794872]).
    Alternatively, ensure the link can be established.
    11. [BUG:850436] CDI-21600 on generation of a form with template
    having
    subclassed object group
    You try to generate a form out of Designer that uses a user-
    defined
    template. If a collection of objects in the template is grouped
    into an
    object group, dragged into the object library and then either
    copied or
    subclassed into a form, when the form is generated you get a
    CDI-21600
    error.
    12. [BUG:822659] Module generation fails (CDI-21600) with multi-
    column PK having
    long prompt text
    Fixed In Ver: 6.5.3.2
    Module generation with multi-column primary key having long
    prompt text
    causes CDI-21600 with preference MSGSFT set.
    Workaround
    Shorten the prompt text of PKs may not be not applicable. You
    may loose end
    user information.
    You may have the same problem with a mandatory compound
    FK. CASEOFG tries to
    generate a message '<P1> must be entered', where <P1>
    contains all the
    prompts of the bound items from the FK. If you reduce the
    length of the
    prompts, or set MSGSFT = NULL or WEDI = S or property
    Mandatory?=No, it
    works correctly.
    13. [BUG:792542] Capturing application logic causes CDI-21600
    (V2 style
    triggers)
    Fixed In Ver: 6.5.5
    After removal of the v2 triggers, the form captures/merges OK
    on 5.0.24.8,
    provided patch 875027 has not been applied.
    14. [BUG:790877] CDI-21600 if the primary/foreign keys have no
    key components
    Fixed In Ver: 6.5.11
    Generating a module with tables having a primary key not
    correctly defined
    (no PK component) will cause a CDI-21600 error. This can
    occur when
    unloading a module from the RON. If you pick up the module
    (and only the
    module) in the unload set, the table and its PK are unloaded as
    a skeleton.
    Loading the .DAT file into a new application will create a PK
    without a
    component.
    15. [BUG:771549] CDI-21600 if cannot connect to the DB with
    connect string in
    Options (Compile)
    Fixed In Ver: 6.5.13
    If you cannot connect to the DB with the connect string
    specified in options
    (Compile), the forms generator will fail with CDI-21600.
    This problem occurs when you cannot connect to the DB
    because:
    - the username or password is wrong;
    - or the SQL*Net alias is not defined in the TNSNAMES.ORA
    file;
    - or the SQL*Net listener is not started;
    - or the DB is down.
    16. [BUG:785106] CDI-21600 when generate master detail form
    with preserve layout
    [BUG:855812] is a duplicate of this bug.
    Fixed In Ver: 5.0.24.6.0 (Bug:860426 Backport request for 2.1.2)
    Fixed In Ver: 6.0
    Fixed In Ver: 6.5.3
    You have a master-detail Form with the Master having items
    partly on a TAB
    Canvas. Generate Module works OK. You enter Forms Builder
    and move some
    items on the tabs (just small changes, items are still on the
    same tabs).
    You change the look of the Detail and change Records
    Displayed. Now in
    Designer you generate the Module with Preserve Layout. You
    get a CDI-21600
    error. The problem might reproduce without doing any changes
    in Forms
    Builder, just by generating with Preserve Layout.
    17. [BUG:891306] If primary key column of lookup in check
    constraint comment of
    base table
    Fixed In Ver: 6.5.5
    Workaround
    Do not use the name of the bound item that is based on the
    primary key
    column of the lookup table in a check constraint comment of
    the base table.
    18. [BUG:896026] Forms gen throws assertion failure in
    CVINI/BUILDACTIONITEM@/CV/CVI/CVIBNI.CPP
    Fixed In Ver: 6.5.7
    A problem is caused by a PL/SQL definition (function, package,
    procedure)
    being defined as a called module for the module you are trying
    to generate.
    To resolve the problem and enable the module to be generated,
    remove all
    Called Modules that are PL/SQL definitions (functions,
    procedures or
    packages).
    See [NOTE:2107207.6] CDI-21600 during generation of module
    or Assertion
    Failure \cv\cvi\cvibni.cpp
    19. [BUG:812333] CDI-21600 generating a web module after
    adding an unbound item
    Fixed In Ver: 6.5.3.0
    Backport [BUG:1280667] raised to fix by 6.0.3.9
    You add an unbound item (SQL expression) to a Web module.
    When you try to
    generate the module you get a CDI-21600 error. If you delete the
    unbound
    item the Web module generates correctly.
    In a test case the problem occurred during validation of the
    derivation
    text, if the master module component was in a different module.
    A workaround
    was to rearrange module components so that this was not the
    case.
    20. [BUG:1627963] CCVDIAG::TRACEGENERATORMESSAGE
    WHEN GENERATING INCORRECT
    DERIVATION EXPRESSION
    Message
    CDR-21605: Failed while processing Module <mod> in function
    CCVDiag::TraceGeneratorMessage BOF
    Cause
    The generator failed due to an unexpected error - the
    error indicates the object the generator was processing
    when it failed.
    Helena

  • Handling TackOn form or UDF Form

    HI all,
    Can we make any single field disable in Tack-On form (UDF form with -ve form id) for system forms. So that users can able to see but can't change.
    Is there any way found without using categories.
    regards:
    sandy

    Hello
    On Form You may press CTRLSHIFTB which is the UDF form settings ,then uncheck the editable flag.
    You can also you the columnpreferences object to set it visible and disabled. Please note, the column preferences is saved when B1 is exiting.
    Regards
    János

  • Replacing Adobe forms with Smart Forms for printing FPM based forms

    Hello All,
    This pertains to HCM Process and Forms with Floor Plan Manager (FPM) based forms.
    SAP has provided Adobe Forms as the standard print option for FPM based forms, as can be seen in the attached screenshot.
    We want to use the FPM based forms without using Adobe Document Services (ADS). I am checking the feasibility of replacing the PDF forms with Smart Forms, either through configuration or customization.
    System Landscape: ECC 6.0 EhP6
    Any inputs or suggestions would be greatly appreciated.
    Regards,
    Arun.

    Hi Ketul,
    Irrespective of the process or scenario, we would like to use Smart Forms instead of Adobe Forms. As seen in the screenshot, SAP has provided the default option of generating a PDF form. This requires installing and using Adobe Document Services. We would like to remove this dependency on Adobe Document Services.
    Instead, we would like to use Smart Forms for printing purposes.
    This requirement is not tied to any specific process or scenario, but to any business process implemented using HCM Process and Forms framework.
    Let me know if you need any further clarifications.
    Regards,
    Arun.

Maybe you are looking for

  • Payments and Bills don't match

    Hi, the activation fee for my verizon double play bundle was supposed to be split in three parts. I have made the three respective payments as shown in the payment history. However, under Bill & Payment, I can only find two bills and the third is sti

  • Aironet 1300

    Hi, Does the Aironet 1300 series works as repeater ? And does it works both as bridge and access point at the same time ? Thank you

  • Doubt on IDOC TO  IDOC communication

    Hi Experts, I have a doubt on IDOC to IDOC communication: Plz clarify it 1. what is the need of passing same IDOC from one system to other system through XI while communicating between two systems,it can be done by using ABAP also ? 2.what is the adv

  • Help required: TVARVC

    Dear All, I have a report with two parameters, fiscal year and fiscal period. Everytime the user executes the report, we should update this variant value in the report program. For example, if the user runs the report for jan 2007, we update the vari

  • Material Management ROH to HALB

    Experts, I will appreciate any assistance you can provide. I would like to start by saying that me and my organization are very new to SAP. We have assigned material type ROH to materials that we currently procure externally. My issue is that eventua