Relating two items

I have two items that I need to relate together. One is a abbreviation and the other is a full text value. If the abbrevation changes I need to change the full text. Is that possible?

Are you talking about javascript or serverside.
If javascript you could look at onchange=jsciptFunction();

Similar Messages

  • How to display two item groups Side by Side (Horizontal)

    I'm using Designer 9.04 and Hradstart 6.5 updated for designer 9.0.4.
    I have two item groups defined in one of the forms module. I wand to display them side-by-side but the generated form shows the item groups one below the other.
    Any idea how to solve this?
    Thanks
    Vimal

    Is your window wide enough?
    If nothing else helps, you can use the Relative tab stop editor to force generator to place the item groups horizontally. Set the tab stop scope of the item groups to parent and place them on two different tab stops.

  • One Billing Document with Delivery- and Order-Related billing items

    We wish to include both delivery-related and order-related billing items in a single billing document. Is that possible using configuraiton? We have seen some forums indicate it is not possible without ABAP.
    Thanks SAP gurus!

    Bradley,
    I still think this is possible.
    Delivery related billing or order related billing is decided by the configuration of billing relevance in the Item category. So if those things are properly configured, it should be possible to include delivery related items and order related items together in one invoice document.
    When you do that, you have to ensure that the item categories are relevant for either delivery related billing or order related billing.
    Then in copy control, only order related I.Cs shoudl be configured in VTFA and only delivery related I.Cs should be configured in VTFL. There should not be any mix up in this configuration. If there is any mix up, then it may cause problems.
    If these two configurations are done, it is possible. You may also note that in VF01, it asks only for documents, not specifically deliveries or orders. So it is possible in standard SAP itself. Please configure it and try it.

  • ConfigureCombined invoice for Delivery and Order related billing items

    Dear Guru's,
    Please tell us what settings one have to do in copy controls (like for TAS "OR to F2" & TAN "LF to F2") as to Combined invoice for Delivery and Order related billing items.
    Regards,
    Sai

    Hi Sai,
    for TAS "OR to F2"
    T-code-VTFA
    Target Billing Type --"F2"        and Source Document as "OR"
    At header level you can select .
    Copying requirements "001" Header/order related
    Tick mark copy item number
    At item Level you give
    Copy requirements "028" Order related 3rd party item
    Data VBRK/VBRP= 000
    Billing quantity="A"
    Pos/Neg quantity="+"
    Price type="G"
    and Save
    2)TAN "LF to F2
    Go to Tcode-VTFL
    Target Billing type "F2"   and source document as "LF"
    In header details you give
    Copy requirements "001" Header-order related
    detr export dta="B"
    Allocatio number="B"
    Reference number="A"
    Tick mark copy item number
    In item details you give
    Copy requirements"004" delivery related item
    Data VBRK/VBRP="003" Single invoive"
    Billing qantity="D"
    Pos/neg quant="+"
    Price type=G"
    Price source"E"
    Regards
    Seegal

  • How to show two items using $f_Show_On_Value_Item_Row

    Hi,
    I have a select list with values with Yes, No and two items(1 check box, 1 text field) below it.
    I want to show two items if i select 'Yes' in select list.
    I am able to show/hide one item using onchange="$f_Show_On_Value_Item_Row(this,'P1_A_EMAIL_PERS_REQ','Yes');"
    How can i pass two items to this function.
    Thanks for ur help in advance
    Regards,
    Ram

    Ram,
    Rather than putting the call to $f_Show... inline with the onchange handler, create a separate function and call that function does the work and call that function instead. See this thread for some more details:
    Problem when calling more than 1 Javascript function
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Created two item by personalisation not showing in exact line

    Hi,
    I have created two date type fields through personalization i.e start date and end date under pagelayout region but these two items doesnt show in accurate line in my oaf page.
    These two fields are showing vertically but not in same line there are some space between these two fields.
    How can I show these two fields in same line by personalization because this is standard page.
    I tried spacer too but it doesn't work.
    how can I achieve this.
    Pls help
    Thans Amit

    Hi
    If you have created sales order for 21 line items and in delivery there are only 11 line items are copied then while in the delivery creation from the initial screen there could have been FROM and TO  mentioned
    If your answer is no for this then in the delivery overview screen there will be a message check the nodes in the log
    Have you checked that?
    The system will itself tell why?
    From the top menu bar-edit--error log
    Regards
    Raja

  • How to write two item in the same line?

    In the smartforms,how to write two item in the same line?
    eg
    1   *************                                    2  *****************
    3  **************                                   4  ******************
    5  ***************
    Anyone got any idea to do this.
    Thanks in advance

    Hi,
    In the smartform the main windows is 20cm.I use the table output my data.Because the output is two item in same line,I define two rows in the table line type.
    Question:
    Should I define the table width 20cm?
    In the main area of table , should I define two folders and each of folder include a line? The second item I had already defined as Append Directly,but the item 1 and item 2 don't in the same line.
    Regards

  • How to compare dates between two items

    Hello all,
    I am trying to compare dates in two items.
    The first item is a computation P45_PAGE_LOADED_TIME
    select sysdate from dual;
    This essentially keeps track of when the user opened the form. They are accessing data that may become obsolete while they are in the form.
    So we have a dynamic action that finds the last_update date from a table. This field is of type date. It is placed in a text field called P45_STATUS.
    We then have a notification which we want to fire when P45_PAGE_LOADED_TIME is before P45_STATUS. We tried the following condition
    declare
    least_date date;
    begin
    SELECT LEAST(TO_DATE(:P45_STATUS),TO_DATE(:P45_PAGE_LOADED_TIME)) into least_date
    from dual;
    if least_date = to_date(:P45_STATUS) then
    return false;
    else
    return true;
    end if;
    end;
    Any guidance would be most appreciated.
    Thanks

    Maybe your better off putting your anonymous block into a plsql function.
    A function that you can test. If it works in plsql then you must call it in APEX.
    I kinda get a headache when I see that least, to_date, to_date query (although I've seen worse :p)
    Make it like:
    create or replace function fun_least_date(in_status in varchar2,
                                                               in_page_loaded_time varchar2) return boolean
    is
      l_status date;
      l_page_loaded_time date;
      least_date date;
      l_return boolean;
    begin
      l_status := to_date(in_status, 'FORMAT MASK!!!');
      l_page_loaded_time := to_date(in_page_loaded_time, 'FORMAT MASK!!!!');
      least_date := least(l_status, l_page_loaded_time);
      if least_date = l_status then
        l_return := false;
      else
        l_return := true;
      end if;
      return l_return
    end fun_least_date;If your sure that your function is correct then use it as a condition for your dynamic action.
    Regards
    Nico
    ps: I haven't tested that function. Be aware that you most correctly enter the format mask you use in APEX. Also before APEX may know about these variables you should set a dynamic action on your items to always submit their value to the server when they change!!!

  • Is there any css to vary the distance between two items in apex

    Hi,
    Is there any css to vary the distance between two items ie two columns  horizontally / vertically in apex application at page line level
    Regards,
    Pavan

    Hi ,
    I done what u suggested above  but  i ll tel u clearly
    i have name,plot no,street,city,distict,state,country,phone no,pincode items.. i need to align this items like
    --------------------------------------------------------------------------main region----------------------------------------------------------------------------
    --left region-------------------------------------------middle region------------------------------------------------------right region-------------------
    name,___________
    plot no,_________
    street,________
    city,___________                                    distict,_________                                              
    state,__________                                   country,_________                                                  nothing in it
    phone no,__________                              pincode_________
    to achieve this wat i have to do
    Thanks,
    pavan

  • Split one salesorder item into two items in delivery

    We want to split one salesorder item into two different items in the same delivery.
    This is because we will pick the material from two different storage locations.
    Any user-exit to use for solving this?
    Best regards,
    Terje

    Hi,
    We are not using batch management.
    I have looked into the foreign trade/customs standard functionality in SAP, but I can not see that them difference in stock in SAP what is duty paid or not.
    We need to have documentation in the system for the custom goverement for what stock is duty paid and not.
    For the same material we can have stock which are duty paid and not duty paid. This is decided when we do the goods receipt.
    For stock coming from Asia, it is profitable to have this on not duty paid stock since we are exporting it back to Europe and Asia later.
    We will send import and export EDI messages to a third party custom application handling all the papers with the custom goverement.
    The only we need to make track on in SAP is the stock for what is duty paid and not.
    In some situations we need to take stock from both duty paid stock and not duty paid stock when we deliver the same material to a customer. Therefor I asked the question of splitting one delivery item into two items.
    Best regards,
    Terje

  • How to set a condition to true if two items are both null ?

    Hi,
    I want to set a condition to true if two items P42_FICHE_ID and P42_AGENT_ID are both null. How to do ?
    Sorry for being so dummy but could not find the answer in the Oracle documentation.
    Regards,
    Christian

    Hello Christian,
    You could use a PL/SQL Expression like (:P42_FICHE_ID IS NULL AND :P42_AGENT_ID IS NULL) or NOT(...) whatever you need.
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • How to relate two columns in a same row

    I want to relate two columns in a same row, like if A2 is Jack then B2 to be A, if A2 is Anand then B2 to be B, If A2 is Arun then B2 to be C and so on. How to do it?

    Anand,
    Create a table that lists the relationships:
    Name
    Associated Letter
    Jack
    A
    Anand
    B
    Arun
    C
    Then, use a Lookup function to find the name in the lookup table and return the proper letter to your main table.
    Jerry

  • Can I work on two items on the same screen

    I currently am working with two monitors so that i can have two items open side by side.  Is it possible to do the same with just one Apple monitor?

    Yes.  Just open two windows which can be side by side.

  • Relating two Relational Models using Keys

    Is there a possibility to relate two different relational models containing tables in each. for e.g. i have a relational model1 with table 1 and in another relational model2 i have another table 1. The table 1 in RM 1 contains a primary key which is referred to a Foreign key In Table 1 in RM2. I want to relate those tables with this foriegn key Constraint. Is this possible? If not any other idea.

    It's not possible, such functionality will be added later.
    You can "copy" table1 from RM1 and "paste" it in RM2 - well it's not possible to have two tables with the same name (it'll be possible in next release) so you should change table name to something meaningful for you like table1_RM1. You also should uncheck "Generate in DDL" property in table dialog. Now you can generate foreign key constraint referring copied table. Table name - you can open physical model and can set the name of the table again to table1. You also need to set different users to both tables otherwise you won't get what you expect.
    Here is sample DDL when physical model is open - you need again to remove copied table from selection list (this is for selected open physical model - you can save design and selection choice will be persisted):
    CREATE TABLE User4.TABLE_1
    tbl1rm1_DEPARTMENT_ID NUMBER (4) NOT NULL
    ) LOGGING
    ALTER TABLE User4.TABLE_1
    ADD CONSTRAINT tbl1rm1_tbl1rm2_FK FOREIGN KEY
    tbl1rm1_DEPARTMENT_ID
    REFERENCES User3.Table_1
    DEPARTMENT_ID
    NOT DEFERRABLE
    and here is generated DDL when physical model is closed:
    CREATE TABLE TABLE_1
    tbl1rm1_DEPARTMENT_ID NUMBER (4) NOT NULL
    ALTER TABLE TABLE_1
    ADD CONSTRAINT tbl1rm1_tbl1rm2_FK FOREIGN KEY
    tbl1rm1_DEPARTMENT_ID
    REFERENCES Table1_copy_from_RM1
    DEPARTMENT_ID
    Philip

  • Stopping Navigation Between two items

    Dear All,
    i have two items in JSF Page and first contains contains validation (with auto submit),
    if i am trying to navigate from first two second with false data , first item will be read , but navigation still going second one, i need to stop this navigation.
    Please Advise

    I believe that in general you should not design web application like that.
    In general you cannot prevent user to navigate away from web pages and components.
    He can allways close explorer or type a diferent url.
    For specific cases though you can do it by java scripts and there is an example at Andrejus blog:
    [http://andrejusb.blogspot.com/2008/04/adf-faces-rich-client-complex.html]
    Yet this would require a lot of effort to do it in all validations.

Maybe you are looking for

  • ITunes automatically disconnects after updating

    Hi I just got a 60GB video iPod and before I had it set to not update any videos and so it would update all my songs and then just stay connected. It would say "iPod update is complete" or whatever the message is, and on the desktop I could still see

  • What do I need to do to default some values when a new row is created in a tabular form?

    Hello all - I have a tabular form which requires a few columns to be entered by the user when s/he creates a new row, but other fields in the column can just default to certain values.  How do I set those default values so that the user doesn't have

  • Very slow mac after installing yosemite

    I have already tried all the online tips (like turning off transparency etc) but nothing works. I have also run Etrecheck and will include the report: Problem description: Mac very slow after installing yosemite EtreCheck version: 2.1.8 (121) Report

  • Validate Planning form Drop Downs against combo edit tables

    I've got a requirement on the last 2 hyperion planning implementations to validate drop down menus on planning data forms against peoplesoft combo edit tables. Is there any possible way to do this without concatenating dimensions? For example if a us

  • Cannot find external disk

    I have two external disks attached to my system.  One is attached via USB to an Airport Extreme.  It is used as the target for Time Machine backups from both my iMac and my MacBook Pro.  Software is up to date on both machines.  The other disk is use