Updating a field for a number of forms from an external table

Good Day All;
This one I could not find in the help section.
I have designed a number of forms that all use the same “rates of pay” (there are 4 categories) for calculating. I was told to expect that a few more forms will be required and these new forms will also be using the same “rates of pay”
Currently I am using “switch” to insert the “rates of pay” when the user selects a category from a dropdown.
Is there a way I can update all the forms from an external “table” instead of having to update each form individually?
Thanks All
Chomp

Hi,
If the form is Reader enabled with Acrobat, then that is going to cut out data connectons.
You should have a look at John Brinkman's blog: http://blogs.adobe.com/formfeed/2010/07/shared_data_in_packages_part_2.html. Two parts.
Also there is an example of inter-form communication here, but it may be too clunky: http://assure.ly/qQivbm.
Good luck,
Niall

Similar Messages

  • How to update key fields for table

    Hi,
    how to update key fields for a table.The update statement is not working for the same.
    Regards,

    Hi,
    See the below example.
    TABLES SPFLI.
    DATA WA TYPE SPFLI.
    MOVE 'AA' TO WA-CARRID.
    MOVE '0064' TO WA-CONNID.
    MOVE 'WASHINGTON' TO WA-CITYFROM.
    UPDATE SPFLI FROM WA.
    MOVE 'LH' TO SPFLI-CARRID.
    MOVE '0017' TO SPFLI-CONNID.
    MOVE 'BERLIN' TO SPFLI-CITYFROM.
    UPDATE SPFLI.
    CARRID and CONNID are the primary key fields of table SPFLI. All fields of those lines where the primary key fields are "AA" and "0064", or "LH" and "0017", are replaced by the values in the corresponding fields of the work area WA or the table work area SPFLI.
    Regards,
    raj.

  • Field For SSn number

    Hi All,
    Can anybody please tell me the field for SSN number.And in whcih table it will stored.
    I have srached in PA002 but it is not avaliable.
    Can anybody help me.
    Thanks,

    Hi,
    This field is applicable to US. You would find this in IT0002-Pesonal Data. If the country grouping is 10, you would automatically get this field in IT0002.
    Regards,
    Suhasini

  • Verification field for Batch number - Transaction LM05

    Hi Experts,
    Can some one help on the issue of adding a verification field for BATCH NUMBER on the screen 2502 and make it work.
    Requirement : Add Verification field for batch number and build the logic to verify the batch number -  as the SAP standard does for other fields.
    I have proceeded to some extent and seems like I am not winning.
    Steps done :
    1. Copied physical screen 2502 (SAPLLMOB)  to screen 9502(SAPLXLRF)
    2. Changed the screen to subscreen and removed the OK_CODE from the element list.
    3. Created the project ZMWMRF502 and assigned user exit MWMRF502 to this project.
    4. In the components of the project assigned 9502(SAPLXLRF) to 1502((SAPLLMOB).
    5. Assigned the screen 9502 to logical screen 0502 in the config.
    6. In the transaction LRFMD given the username and variant '1'.
    Now When I execute the transaction LM05 and give the TO number, the system calls my screen 9502 with new field seen in that.
    But the screen is completely greyed out with no data in that.
    I checked PBO and PAI of my new copied screen.
    In all the modules which I received from the copy of SAP standard screen there is no code except name.
    I mean to say that names of all modules exist but when I double click on any module it ask me to create a new object.
    If I have to create module similar to SAP there is a lot of coding in side. How do I proceed further.
    Can some help me.
    Thanks and regards
    Joshi

    Hi Dez,
    If you go in to transaction LM05 and input a number of TRANSFER ORDER, it will take you to a screen where the system will populate the fields pertaining to that particular transfer order.  In that screen we have normal fields as well as verification fields for that particular field. These screens are used on scanners. When the scanner scans the material slip, the corresponding value such as material number, storage bin number etc will be get populated in the verification field.  When the user selects next then the system will perform a check for the two values and pops up an error message if required.
    So there are verification fields for material number, storage type, quantity etc but not for batch.  Our user requirement is to put a verification field just by the side of batch number field and perform same operation as it does for other fields.
    Hope you understood.
    Thanks and regards
    Joshi

  • How Update Custom fields for EABL DB table by using BAPI_MTRREADDOC_UPLOAD

    Hi friends,
    How can I Update Custom fields for EABL DB table by using BAPI_MTRREADDOC_UPLOAD
    for the parameter EXTENSIONIN of type BAPIPAREX
    I am passing the Structure as BAPI_TE_EABL
    in that structure MRIDNUMBER as EABL-ABLBELNR field value
    ZMESSAGE some text of 30 char and
    ZSKIPC of 2 char
    but I am not able to update that data for the MRIDNUMBER (ABLBELNR ) in DB table EABL
    I am getting RETURN Structure message type E
    as
    "Upload interim entries: Maintain one table only"
    Can any one provide me solution
    Thanks in Advance
    Ganesh

    Hi,
    Refer the following SAP notes.
    1. Note 485557 - BAPI_REQUISITION_CREATE: 'EXTENSIONIN' customer enhancements
    2. Note 584902 - BAPI_REQUISITION_CHANGE: ExtensionIn not connected
    3. Note 792132 - EBAN, EBKN: user-defined fields are not filled
    Regards,
    Harish

  • Hide field for " Change Number". RMMG1-AENNR  " in MMR

    Hi,
    In MM01 and MM02, i want to hide field for " Change Number".
    I tried in OMSR and OMS9, but i could not find field "RMMG1-AENNR".
    Hw to make it hidden.
    Uts
    Edited by: Utsav.agra on Jun 1, 2009 9:17 AM

    Check is your problem can be solved by Screen or transaction configuration?
    T Code is SHD0

  • Resukt:Get number of rows from 3 different table...?

    Hi All,
    I need to find out number of rows from 3 different table for the same conditions. Instead of writing 3 queries, is it possible to get it thru one query?
    For example, i need to find out number of rows in tables where name = 'Ameet' from 3 different table, i will end writing 3 queries.
    1. select count(1) from table_a where name = 'Ameet';
    1. select count(1) from table_b where name = 'Ameet';
    1. select count(1) from table_c where name = 'Ameet';
    Is it possible to write a single query to get result of all above 3 queries?
    result:
    table_a table_b table_c
    34 44 2

    One way:
    SELECT      (SELECT     COUNT(*) AS CNT FROM TABLE_A WHERE name='Ameet') AS TABLE_A
    ,     (SELECT     COUNT(*) AS CNT FROM TABLE_B WHERE name='Ameet') AS TABLE_B
    ,     (SELECT     COUNT(*) AS CNT FROM TABLE_C WHERE name='Ameet') AS TABLE_C
    FROM DUALIf you want the total:
    SELECT     SUM(CNT)
    FROM
         SELECT     COUNT(*) AS CNT FROM TABLE_A WHERE name='Ameet'
         UNION ALL
         SELECT     COUNT(*) FROM TABLE_B WHERE name='Ameet'
         UNION ALL
         SELECT     COUNT(*) FROM TABLE_C WHERE name='Ameet'
    )

  • Powershell script to update a field value (recursively) in sharepoint form a .CSV file and not changing the updated by value

    need to run through a list of old to new data (.csv) file and change them in a sharepoint list - can not make it work
    here is my base attempt.
    $web = Get-SPWeb site url
    $list = $web.lists["List Name"]
    $item = $list.items.getitembyid(select from the items.csv old)
    $modifiedBy = $item["Editor"]
    #Editor is the internal name of the Modified By column
    $item["old"] = "new from the .csv file parsed by power sehll
    $ite.Syste,Update($false);
    $web.Dispose()

    Hi,
    According to your description, my understanding is that  you want to update SharePoint field value from a CSV file recursively.
    We can import CSV file using the Import-CSV –path command, then update the field value in the foreach loop.
    Here is a code snippet for your reference:
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    $csvVariable= Import-CSV -path "http://sp2010.contoso.com/finance/"
    # Destination site collection
    $WebURL = "http://sp2010.contoso.com/sites/Utility/"
    # Destination list name
    $listName = "Inventory"
    #Get the SPWeb object and save it to a variable
    $web = Get-SPWeb -identity $WebURL
    #Get the SPList object to retrieve the list
    $list = $web.Lists[$listName]
    #Get all items in this list and save them to a variable
    $items = $list.items
    #loop through csv file
    foreach($row in $csvVariable)
    #loop through SharePoint list
    foreach($item in $items)
    $item["ID #"]=$row."ID #"
    $item.Update()
    $web.Dispose()
    Here are some detailed articles for your reference:
    http://blogs.technet.com/b/stuffstevesays/archive/2013/06/07/populating-a-sharepoint-list-using-powershell.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/25125.sharepoint-2013-powershell-to-copy-or-update-list-items-across-sharepoint-sites-and-farms.aspx
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • FB02- update XREF3 fields for G/L account also

    Hi all,
       My requirement is to update the XREF3-> fields using transaction FB02 for the all accounts (Customer, G/L , Vendor) I have used Function module FI_DOCUMENT CHANGE whcih is updating the XREF -> fields for only Customer account.I want update it for G/L account also...Can anybody tell me the solution other than BDC call transaction..
    Thanks in Advance,
    Lakshmi

    Yes, but that's a correct answer.  Perhaps your config still isn't correct.  Field display is controlled at two levels in FI documents, by the field status of the posting key and by the field status group assigned to the account.  Most likely, you also don't have the field configured as a changeable field at the line item level.

  • Field for invoice number

    hi all
       can any body say wht is the relevent R/3 field  and corresponding infoobject for "INVOICE NUMBER"  
      thank you
    regards
    Pradeep

    Hi,
    Invoice number = VBELN  = Billing Document in VBRP table.
    so you can use either of these two infoobjetcs.
    VBELN  =  0DELIV_NUMB
    VBELN  = 0BILL_NUM
    Thanks
    Reddy

  • Any way to update additional fields for SDLS with equipment at serial no cr

    Dear all,
    In the serializing procedure SDLS in the serial no profile
    there is an option to create equipment alongwith serial no
    creation. Currently it is updating only customer no into the
    equipment master .
    Is there any way to update additional fields into the equipment
    master at the time of serial no capture ?
    regards
    Magi

    I think basically the answer is no, and even if you could I don't think it would help you much. A virtual machine error is exactly that, an error in the VM, not your code. The only thing I can suggest is that, if you want to see if your app is falling over in the same place every time, you use something like log4j.

  • Add field for tracking number while Auto PR generation via MDBT

    Hi,
    While running MRP through MDBT via Variant , my PR's are generating automatically....
    Now i want one field as tracking number ( Value-100) to be added in PR when ever my PR's are generating automatically via MRP run...
    Is it possible..
    Utsav

    Hi,
    My question is :
    While running MRP through MDBT via Variant , my PR's are generating automatically....
    Now i want one field as tracking number ( Value-100) to be added in PR when ever my PR's are generating automatically via MRP run...
    When ever my PR gets generated via MRP run thrugh variant in MDBT, i want 100 value to be filled in tracking number field...
    Is it possible.
    Utsav
    Edited by: Utsav.agra on Sep 15, 2009 5:49 AM

  • Update Flag Field for Same Day in a Given Month Every Year in a Flag Table.

    Hi,
    I am trying to formulate an update query for a flag table in our database which contains dates, and flag columns. Currently the system have dates for the next ten years. The flags are updated with values 0 or 1 if a particular date falls under the required criteria.
    I need to update flag column for the same day of the month in every year. e.g. 2nd Sunday of October. The value should be updated to all years in the table. Currently I am using the following query to update the current year.
    UPDATE FILTERCALENDAR SET YEAR_WINDOW=1 WHERE c_date = NEXT_DAY( TO_DATE('OCT-2013','MON-YYYY'), 'SUNDAY') + (2-1)*7;
    and for next year Like
    UPDATE FILTERCALENDAR SET YEAR_WINDOW=1 WHERE c_date = add_months(NEXT_DAY( TO_DATE('OCT-2013','MON-YYYY'), 'SUNDAY') + (2-1)*7,+12)-1;
    This is not an excellent way to do it as it does not take care of leap years and it does not scan and update values in the whole table for all years correctly.
    Can any one help me to resolve this please.
    Hamidch

    Resolved by doing the following:
    Just query the years from your table (list of distinct years) and use the above query on them.
    SELECT DISTINCT TO_CHAR(c_date, 'yyyy') FROM FILTERCALENDAR
    Or use this predicate
    WHERE c_date = next_day(last_day(add_months (c_date, -1)), 'SUNDAY') + 7
    AND TO_CHAR(c_date, 'mm') = '10'

  • Avoid check for article number and price from ORDRSP inbound

    Hi,
    i m working on an integration (with PI) of a 3rd party vendor with a SAP ERP (7.1) backend system. The vendor sends a soap message which is transformed by PI to an IDoc ORDRSP.ORDERS05.
    The vendor sends a purchase order confirmation but unfortunately without information regarding article number and price. Therefore the IDoc remains in status 51 with 2 errros:
    -  Price outside tolerance range (order price 531,60 , new price 0,00 )
    -  Article number differs from that of ordered article 000000000000152672
    Is is possible to avoid the check so that the purchase order's article number and price are not updated by the IDoc?
    Regards,
    Udo

    Hi Udo,
    This error seems to be explicitly populated into Status records of IDOC processing from the include LEINMF2O, form "CHECK_MATERIAL_PO_IDOC" (For Material) &  Include LEINMF2D, form "PRICE_CHANGE". 
    One way to suppress the error message is to populate the existing values in EKPO table to IDOC segment using enhancment component EXIT_SAPLEINM_007, which is called from include LEINMF2X, line number 113.
    Documentation of enhancement component reads
    Functionality
    Reading of further IDoc segments at the time of acknowledgment receipt.
    The current segment is passed on in the parameter segment.
    Data can be stored in the structure CUSTOMER_EKPO.
    As of Release 4.6A, modification of the program-internal table FEKPO is possible.
    This is just a suggestion and don't know how far it will be helpful to your requirement.
    Regards
    Vinod

  • Selecting only required number of rows in an external table

    Hi,
    I have an external table with many flat files as source.. I know I can skip rows using the keyword 'SKIP'. I want to select only first 'n' rows from all the flat files as the rows available in my oracle external table. Is this Possible?...
    eg..
    Flat file 1
    c1,c2
    123,45
    132,56
    'ahgh',34
    'dfd',22
    Flat file 2
    c1,c2
    56,1212
    545,45
    'ahcsd',4
    'dds',24
    I want to create a file which contains the rows, means only the 2nd and 3rd rows from each flat files
    123,45
    132,56
    56,1212
    545,45
    Thanks in Advance
    Poulose

    If this means selecting from all these flat files at the same time then it might get a bit cumbersome. Basically you will have to create an external table for each flat file and then do something like this:
    SELECT * FROM
      ( select c1, c2 from
         ( select c1, c2, rownum as rn from ext_table_1 )
        where rn in (2, 3)
       union all
        select c1, c2 from
         ( select c1, c2, rownum as rn from ext_table_2 )
        where rn in (2, 3)
       union all
      select c1, c2 from
         ( select c1, c2, rownum as rn from ext_table_3 )
        where rn in (2, 3)
       union all
    /Cheers, APC

Maybe you are looking for

  • Episode Artwork won't save!

    Hello, I make podcasts on a weekly basis, and for some reason, the previous week's episode artwork just will not save. I've had another person try it and it didn't work for them either. Is there something wrong with the file? It has worked as normal

  • SOA 11g FTP Adapter creating outbound connections every minute

    FTP Adapter SOA 11.1.1.4 build. ####<Feb 17, 2011 1:30:49 PM EST> <Info> <Common> <usadanassoad1> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@374c159d> <Jing> <> <f1996a6c9a644552:-510fae37:12e30729d3f:-8000-0000000000008b36> <

  • Intrastat - Mode of Transport missing in purchase order header

    We have a problem where for a supplier there is missing import data for some materials - but not others. As far as I can tell the Info Records for those with missing data are identical to those where there is no data. For example, the Incoterms field

  • Getting the last selected value of the combo  - very very urgent...........

    On my panel i have a jcombobox in upper half(which displays say the address type.) and few text fields on the lower half(which displays the add details). when the user selects a value in the combo box the text fields are populated based on the select

  • QuickTime Pro Video Controls

    I have upgraded to QuickTime Pro but the video controls in "A/V Controls" are not functioning. Solutions? Thanks.