Establishing new shortcut keys WITH coordinate values

Hello,
I don't know if it's possible, but I am trying to make a shortcut key that will let me move a text box to a specific place. I have a bunch of text boxes on each page, and I want to move each one to a specific area. Going to the transform window and entering the X and Y coordinates is time consuming, so I would like to make shortcut keys I could use for the text boxes. I've looked at the shortcut keys and couldn't find a place where I could enter X and Y coordinates.
Unfortunately when I started out on this project, I didn't know much about InDesign and I disassociated all the text boxes from the master page (yup, went and did it over the course of 2 hours, boy do I regret that now!) otherwise I'd just move the boxes on the master page.
For example, I'd like to move a box from it's current position to
X: 23.44 mm
Y; 243.00 mm
Or, if there is an easier way to do this without using shortcut keys, I'd appreciate any help.

I still get an error message. I copied Gerald's script exactly as it appears above, and the error message says "bad argument move" line 2.
Sorry to not get this, but I really have no idea how the script Gerald gave me should appear. Should the entire thing be on one line, should the spaces appear exactly as he has them??? I copied and pasted it in just as it appears below - the same form as above:
for (n=0; n<app.selection.length; n++) {
app.selection[n].move([23.44, 100.05]);
Maybe there was some slight adjustment I should have made? Please bear with me, I want to get this right, sorry if I am missing something that everyone else already knows.
I was able to get the "helloworld" script from the tutorial to work, btw, so I know that there isn't some glitch keeping me from executing scripts.

Similar Messages

  • New transaction key with the posting key 24 and 34

    Hi,
    i want to create a new transaction key with the posting key 24 and 34.
    the corresponding table is T030B.
    but what is the Tcode/ IMG path to create it?
    Regards,
    Swetha

    Hi,
    Go to FBKP. Click on  Automatic Postings.
    Suppose you want to see the Exchange Rate diff. then click on it. You will see the transaction. Suppose KDB. Then double click on it. Now click on posting keys. The same will be defined in the table which is given by you.
    Regards,
    Jigar

  • Need to new dep. key with zero %

    Hi,
    I need to create a new dep. key with 0% and i want to assign this dep. key to my asset.
    Guide me
    Srinivas

    Hello,
    Thanks for your quick reply
    The thing is that we assigned wrong dep key to one asset. now we need to replace new dep. key
    for that with 0%.
    After assigment of new dep. to asset, i will recaclculate the depreciation for this year only.
    My problem will got resolved.
    I dont find any zero % dep.key in afama.
    How to do , guide me
    srinivas

  • New item addition with Characteristic Values - BAPI_SALESORDER_CHANGE

    Hi,
    I need to add new item in existing sales order. The new item to be added is a configurable material, with Characteristic values to be filled. Iam using 'BAPI_SALESORDER_CHANGE' to insert new item. Iam able to insert normal item. The problem is, iam not able to insert the configurable item. BAPI returns a message 'No changes made'.
    Code is attached.
      WA_HDRX-UPDATEFLAG = 'U'.
      SELECT MAX( POSNR ) FROM VBAP CLIENT SPECIFIED
      INTO MAX_POSNR
      WHERE MANDT = SY-MANDT AND
            VBELN = I_SORDER.
      TMP_POSNR = MAX_POSNR + 10.
      WA_ITEM-ITM_NUMBER = TMP_POSNR.
      WA_ITEM-MATERIAL   = 'LEFTEYE'.
      WA_ITEM-PLANT      = I_STORE.
      WA_ITEM-SHIP_POINT = I_STORE.
      WA_ITEM-CONFIG_ID  = 'LEFT'.
      WA_ITEM-INST_ID    = 'LEFTEYE'.
      APPEND WA_ITEM TO IT_ITEM.
      WA_ITEMX-ITM_NUMBER = TMP_POSNR.
      WA_ITEMX-UPDATEFLAG = 'I'.
      WA_ITEMX-MATERIAL   = 'X'.
      WA_ITEMX-PLANT      = 'X'.
      WA_ITEMX-SHIP_POINT = 'X'.
      WA_ITEMX-CONFIG_ID  = 'X'.
      WA_ITEMX-INST_ID    = 'X'.
      wa_itemx-ITEM_CATEG = 'X'.
      APPEND WA_ITEMX TO IT_ITEMX.
    Schedule lines
      WA_SCHD-ITM_NUMBER = TMP_POSNR.
      WA_SCHD-SCHED_LINE = TMP_POSNR.
      WA_SCHD-REQ_DATE   = SY-DATUM.
      WA_SCHD-REQ_QTY    = 1.
      WA_SCHD-SCHED_TYPE = 'CN'.
      APPEND WA_SCHD TO IT_SCHD.
      WA_SCHDX-ITM_NUMBER = TMP_POSNR.
      WA_SCHDX-SCHED_LINE = TMP_POSNR.
      WA_SCHDX-REQ_DATE   = 'X'.
      WA_SCHDX-REQ_QTY    = 'X'.
      WA_SCHDX-SCHED_TYPE = 'X'.
      APPEND WA_SCHDX TO IT_SCHDX.
    characteristic values
      WA_VALUE-CONFIG_ID = 'LEFT'.
      WA_VALUE-INST_ID   = 'LEFTEYE'.
      WA_VALUE-CHARC     = 'PRES_DIST_SPH'.
      WA_VALUE-VALUE     = '3.2'.
      APPEND WA_VALUE TO IT_VALUE.
      WA_INST-CONFIG_ID = 'LEFT'.
      WA_INST-INST_ID   = 'LEFTEYE'.
      WA_INST-OBJ_TYPE  = 'MARA'.
      WA_INST-CLASS_TYPE = '300'.
      WA_INST-OBJ_KEY   = 'LEFTEYE'.
      WA_INST-QUANTITY  = 1.
      APPEND WA_INST TO IT_INST.
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT    = SALES_DOC
          ORDER_HEADER_INX = WA_HDRX
          LOGIC_SWITCH     = LS_LOGIC
        TABLES
          RETURN           = IT_RET
          ORDER_ITEM_IN    = IT_ITEM
          ORDER_ITEM_INX   = IT_ITEMX
          SCHEDULE_LINES   = IT_SCHD
          SCHEDULE_LINESX  = IT_SCHDX
          ORDER_CFGS_INST  = IT_INST
          ORDER_CFGS_VALUE = IT_VALUE.
    Where iam missing ?
    Any input would be helpfull.
    regards,
    Nagarajan.J

    Hi,
    Iam now able to insert configurable item in existing sales order. But the characteristic values are not getting stored.
    Latest code is attached. What else is missing for storing characteristic values ?
    select maximum item number in sales order
      SELECT MAX( POSNR ) FROM VBAP CLIENT SPECIFIED
      INTO MAX_POSNR
      WHERE MANDT = SY-MANDT AND
            VBELN = I_SORDER.
    calc next item number
      TMP_POSNR = MAX_POSNR + 10.
    header data
      WA_HDRX-UPDATEFLAG = 'U'.          "update
      SALES_DOC          = I_SORDER.
    item data
      WA_ITEM-ITM_NUMBER = TMP_POSNR.
      WA_ITEM-MATERIAL   = 'LEFTEYE'.
      WA_ITEM-PLANT      = I_STORE.
      WA_ITEM-SHIP_POINT = I_STORE.
      APPEND WA_ITEM TO IT_ITEM.
      WA_ITEMX-ITM_NUMBER = TMP_POSNR.
      WA_ITEMX-UPDATEFLAG = 'I'.          "add
      WA_ITEMX-MATERIAL   = 'X'.
      WA_ITEMX-PLANT      = 'X'.
      WA_ITEMX-SHIP_POINT = 'X'.
      APPEND WA_ITEMX TO IT_ITEMX.
    Schedule lines
      WA_SCHD-ITM_NUMBER = TMP_POSNR.
      WA_SCHD-SCHED_LINE = TMP_POSNR.
      WA_SCHD-REQ_DATE   = SY-DATUM.
      WA_SCHD-REQ_QTY    = 1.
      WA_SCHD-SCHED_TYPE = 'CN'.
      APPEND WA_SCHD TO IT_SCHD.
      WA_SCHDX-ITM_NUMBER = TMP_POSNR.
      WA_SCHDX-SCHED_LINE = TMP_POSNR.
      WA_SCHDX-REQ_DATE   = 'X'.
      WA_SCHDX-REQ_QTY    = 'X'.
      WA_SCHDX-SCHED_TYPE = 'X'.
      APPEND WA_SCHDX TO IT_SCHDX.
    config & characteristic values
      WA_VALUE-CONFIG_ID = '000001'.
      WA_VALUE-INST_ID   = '00000001'.
      WA_VALUE-CHARC     = 'PRES_DIST_SPH'.
      WA_VALUE-VALUE     = '3.2'.
      APPEND WA_VALUE TO IT_VALUE.
      WA_INST-CONFIG_ID     = '000001'.
      WA_INST-INST_ID       = '00000001'.
      WA_INST-OBJ_TYPE      = 'MARA'.
      WA_INST-CLASS_TYPE    = '300'.
      WA_INST-OBJ_KEY       = 'LEFTEYE'.
      WA_INST-QUANTITY      = 1.
      WA_INST-QUANTITY_UNIT = 'NO'.
      APPEND WA_INST TO IT_INST.
      WA_REF-POSEX     = TMP_POSNR.
      WA_REF-CONFIG_ID = '000001'.
      WA_REF-ROOT_ID   = '00000001'.
      APPEND WA_REF TO IT_REF.
      WA_PART-CONFIG_ID  = '000001'.
      WA_PART-PARENT_ID  = '00000001'.
      WA_PART-INST_ID    = '00000001'.
      WA_PART-OBJ_TYPE   = 'MARA'.
      WA_PART-CLASS_TYPE = '300'.
      WA_PART-OBJ_KEY    = 'LEFTEYE'.
      APPEND WA_PART TO IT_PART.
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT      = SALES_DOC
          ORDER_HEADER_INX   = WA_HDRX
        TABLES
          RETURN             = IT_RET
          ORDER_ITEM_IN      = IT_ITEM
          ORDER_ITEM_INX     = IT_ITEMX
          ORDER_CFGS_REF     = IT_REF
          ORDER_CFGS_PART_OF = IT_PART
          ORDER_CFGS_INST    = IT_INST
          ORDER_CFGS_VALUE   = IT_VALUE
          SCHEDULE_LINES     = IT_SCHD
          SCHEDULE_LINESX    = IT_SCHDX.
      READ TABLE IT_RET INTO WA_RET WITH KEY TYPE = 'E'.
      IF SY-SUBRC = 0.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      ENDIF.
    I get the following messages from BAPI.
    ORDER_HEADER_IN has been processed successfully.
    ITEM_IN has been processed successfully
    The sales document is not yet complete: Edit data
    TIL-Direct Sales TINDC01372 has been saved
    What else is missing ?  Any help is appreciated.
    thanks,
    Nagarajan.J

  • BP searh help for Bank control Key (with restricted values)

    Hi all Wise men
      Please suggest me a way to add search help to screen field (GT_BUT0BK-BKONT) table field( BUT0BK-BKONT ) with values 01,02,03,04,05 in Txn BP.
    Sorry Iam new to BDT events and BUPT Txn.
    Also Please suggest to which BDT event can I attach a search help through FM 'F4IF_TABLE_VALUE_REQUEST' .
    Thanks a lot
    Arjun

    u can refer to this standard program :BCALV_EDIT_08
    also u wont get the list of values automatically..
    declare a class :
    CLASS LCL_EVENT_HANDLER DEFINITION.
      PUBLIC SECTION.
        METHODS :
        handle_on_f4 for event onf4 of cl_gui_alv_grid
        importing e_fieldname es_row_no er_event_data,
    ENDCLASS.               "LCL_EVENT_HANDLER
    implementation of class
    here u pass ur internal table what u want to display as pop up for f4 help.
    *&       Class (Implementation)  LCL_EVENT_HANDLER
           Text
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
    *Method to handle F4 click.
      Method handle_on_f4.
    Function to create a popup and passing the values of internal table in it.
          CALL FUNCTION 'POPUP_WITH_TABLE'
            EXPORTING
              ENDPOS_COL   = 60
              ENDPOS_ROW   = 60
              STARTPOS_COL = 5
              STARTPOS_ROW = 5
              TITLETEXT    = 'pop up'
            IMPORTING
              CHOICE       = wa_grid-zfield
            TABLES
              VALUETAB     = ITAB
            EXCEPTIONS
              BREAK_OFF    = 1
              OTHERS       = 2.
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            RETURN.
          ENDIF.
      endmethod.                    "handle_on_f4
    ENDCLASS.               "LCL_EVENT_HANDLER
    hope this gives u some idea.

  • New consolidation group with wrong values

    Hi all,
    We are working with SEM-BCS 6.0 and we are having an issue that we hope you can help us.
    At 012.2008 we have created a new consolidation group (N002) with the consolidation unit 0100.
    This consolidation unit (0100) also exists in consolidation group (H001) since 006.2008.
    The problem is that at 012.2008 when we use the posting logic u201Cstandardu201D the account values are correct in the consolidation group that used to exist (H001), but for the new consolidation group (N002) the account values are only the delta values.
    For example:
    011.2008
    Account 111000 = 50.000u20AC
    012.2008
    Account 111000= 60.000u20AC
    At 012.2008 in the consolidation group (H001) we have the 60.000u20AC but in the consolidation group N002 the account only has 10.000u20AC (delta)
    But if the new consolidation group (N002) only exists since 012.2008 and for the consolidation unit 0100 the first consolidation is defined as 012.2008 why is only being considered the delta (10.000u20AC) and not the all value (60.000u20AC)?
    Thanks for your help.
    Best regards

    We are using the cumulative type of data storing.
    Sorry, you can't. It's the system that always stores data periodically. You may just load data cumulatively.
    Regardless of type of your load data in the system is always kept periodically.
    > The reason for the appearance of this company in another group is only because they want to do a u201Csecondu201D consolidation considering a different group of companies by consolidation area.
    > That is, they want to consolidate both consolidation groups with the same companies but with them being considered differently by consolidation areas.
    > Is like the second consolidation group is a simulation.
    Sorry, Ricardo, I cannot read it in business terms. Different hierarchies, dif. ConsAreas, dif. groups... I do not see why and what for.

  • Read Statement with Single key with multiple values

    Dear Friends,
    In ECC 4.6c, I wrote statement like this.
    Read table message with key type = 'E' or 'S'.
    if sy-subrc = 0.
    Populated the message log to output internal table.
    endif.
    But when i transported to QA which is ECC 6.0, it is giving error.
    Can any one help me in modifying this qurey.
    Plse read my question thoroughly and reply me back.
    Regards,
    Santosh Kumar M

    Hi,
    You can't use OR condition with READ table. it is always AND condition.
    Here 2 ways for ur problem.
    If u want to have just one message in the log then use multiple reads.
    READ TABLE message WITH KEY type = 'E'.
    If sy-subrc IS INITIAL.
    populate log.
    ELSE.
    READ TABLE message WITH KEY type = 'S'.
    If sy-subrc IS INITIAL.
    populate log.
    ENDIF.
    ENDIF.
    If u want all messages then u have to loop through and populate the log as sugested by Vijay but
    Without exit in loop.(Since u need all the messages)
    LOOP AT message into wa WHERE type = 'E' or type = 'S'.
    populate log.
    ENDLOOP.
    Thanks,
    Vinod.

  • Back Shortcut Keys with PDFs

    When browsing on my iBook I prefer to use keyboard shortcuts for most things. Now I like viewing PDF files inside Safari and think it works pretty well except I can't go back using the keyboard shortcut (or forward, that's usually not an issue however). So if I forget to open one in a new tab and realize it's not what I want I have to switch to the trackpad and click on the back button. Why are these shortcuts disabled? Is there a way to fix this?

    That works great! Much easier to remember and works whether or not I'm viewing a pdf. They should list that shortcut in the menu instead of the brackets. Thanks!

  • Snmp for oids with multiple values

    Hi,
    So if we have array of OIDs defined in the mib file (eg, 1.3.6.1.4.1.22.1.1, 1.3.6.1.4.1.22.1.2, 1.3.6.1.4.1.22.1.3 and so on each having different values). does anyone know how can we capture this using SNMP fetchlet?
    or
    do we need to specify each oid separately?
    Thanks

    Maybe I misunderstood lushhay here. I thought lushhay wanted to associate a key with multiple values. So one way is to have the value of the Hashtable key to be an ArrayList.
    Hashtable table = new HashTable();
    String key1 = "myKey";
    String key2 = "myKey2";
    Date value1 = (some date value);
    Date value2 = (another date value);
    Date value3 = (another date value);
    ArrayList valueList = new ArrayList();
    valueList.add(value1);
    valueList.add(value2);
    valueList.add(value3);
    table.put(key1,valueList);
    This would associate "myKey1" with 3 date values stored in an ArrayList.
    There is a downside to using the string concatenation method. You assume that the content of each values will never contain a delimiter. You also assume that the values are strings. But if the values are byte[], the string concatenation will not work. If the values are Dates, it can still work, but you would have to convert it from Date to String then concatenate, then get the String value through StringTokenizer and then convert back to Date.
    But anyways, if the values are Strings (and won't contain the delimiter character), then the concatenation method would suffice.

  • Updating PK with same value - effect on CASCADE UPDATE

    Hello,
    I would like to understand how sql server 2008 deals with cascade updates
    For example I have
    Parent table: Employee with column Id as varchar(20) primary key
    Child table with IdEmployee as varchar(20) foreign key
    I set up Cascade Update for those two tables, meaning any change to primary key in Employee table will cause update in child table rows that match affecting Id
    Scenario 1:
    Update Employee
    set Id = 'ABC',
    Name = 'something new'
    where Id = 'CCC'
    Result of child table: all rows with foreign key IdEmployee and value of 'CCC' are updated. Expected behavior.
    Scenario 2:
    Update Employee
    set Id = 'ABC',
    Name = 'something new 2'
    where Id = 'ABC'
    This time, i am doing something different. I am beside update of column Name with new value, also update primary key but
    with SAME value
    Question is: what is going to happen to child rows? Are they ALL going to UPDATE due to CASCADE UPDATE
    So far, what i did in order to find solution is:
    1. I put an timestamp column in child table that should update each time row gets updated
    2. I put a trigger for update event on child table that will write something to some log table
    *After I set up those two I ran example like above just to be sure timestamp gets changed as well trigger is being fired
    Results of updating PK with same value:
    1. Timestamp didnt change
    2. Trigger didnt fire
    Is this enough to make conclusion that updating primary key with same value ALONG with updating some other columns won't
    affect child tables with UPDATE CASCADE ON
    Update:
    Database is CI AS collation
    If i do following
    Update Employee
    set Id = 'abc',
    Name = 'something new'
    where Id = 'ABC'
    1. Timestamp will change
    2. Trigger will fire
    Conclusion: Case sensitive is important here!
    Thank you very much in advance
    Milos

    >>  would like to understand how sql server 2008 deals with cascade updates <<
    Your posting has a number of conceptual errors. 
    1. The terms “parent” and “child” are not RDBMS; they are used in network databases. We have “referenced” and “referencing” tables; they can be the same table.
    2. A table models a SET of things, so there is no “Employee” table unless you truly have a one-man company. We want a collective or plural name for the SET/table. A better name is “Personnel” for this table. 
    3. Her is no such thing as a generic “id” in RDBMS; it has to be “<something in particular>_id” to be valid. Identifiers are usually fixed length 
    4. It is very, very rude not to post DDL on a forum. You also do not know the ISO-11179 Rules for data element names. They do not change names from table to table! Does your name change whenever you use it in a new place?? NO! Same principle with data. 
    5. The ISO standard uses “<property>_<attribute property>” syntax, no the old PascalCase.
    6. Why did you post a useless narrative? How do we compile “I SET up Cascade UPDATE for those two tables,..” to test it?? 
    CREATE TABLE Personnel
    (emp_id CHAR(20) NOT NULL PRIMARY KEY,
     emp_name VARCHAR(25) NOT NULL,
    CREATE TABLE Health_Plan
    (health_plan_acct CHAR(20) NOT NULL PRIMARY KEY,
     emp_id CHAR(20) NOT NULL 
     REFERENCES Personnel(emp_id)
     ON UPDATE CASCADE
     ON DELETE CASCADE,
    Scenario 1:
    UPDATE Personnel
       SET emp_id = 'ABC',
           emp_name = 'something new'
     WHERE emp_id = 'CCC';
    Result of child table: all rows with foreign key emp_id and value of 'CCC' are updated. Expected behavior.
    Scenario 2:
    UPDATE Personnel
       SET emp_id = 'ABC',
           emp_name = 'something new 2'
     WHERE emp_id = 'ABC';
    This time, I am doing something different. I am beside UPDATE of column emp_name with new value, also UPDATE PRIMARY KEY but
    with SAME value.
    >> Question is: what is going to happen to child [sic: referencing]  rows? Are they ALL going to UPDATE due to CASCADE UPDATE. <<
    SQL uses a set-oriented model, so the whole table is updated as a unit of work in theory. 
    So far, what I did in order to find solution is:
    >> I put an timestamp column in child [sic: referencing] table that should UPDATE each time row gets updated <<
    Why? It is not in the SET clause list; it cannot change. As an aside,  The T-SQL TIMESTAMP is not the ANSI/ISO TIMESTAMP; it is DATETIME2(n) in T-SQL. The old TIMESTAMP is being deprecated because it stinks both in concept and implementation. 
    >> I put a trigger for UPDATE event on child [sic: referencing] table that will write something to some log table.<<
    TRIGGERs are fired by what is called a “database event” shown in the ON [DELETE | UPDATE] clause. T-SQL adds INSERT as an event. An update to any value or to no value at all is still an update. Depending on the collation, case may or may not matter in the final
    outcome. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Can I use Esc as a shortcut key?

    I'm using Captivate 4 to publish .exe files.  The software that I'm simulating uses the Esc key as a keyboard alternative to having to click the Back button on screen with your mouse.  I create the click boxes fine, and can select Esc as the shortcut key with no problem.  The problem comes in both preview and in the published .exe - if the user uses the Esc key, it escapes them from the program!  (I have other click boxes with function keys as the shortcuts and they work, so I'm fairly certain I'm doing it right.)
    Is there a way to use Esc as a shortcut key?
    If it makes a difference, the files will ultimately be published to an LMS... I'm just publishing as .exe for review until the new LMS is up and running.
    Thanks!

    Hi there
    As you have seen, Esc is the keystroke to close an EXE file. When you publish to SWF for insertion into the LMS it should work though.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Unable to syndicate same Remote System with differnt value

    Hi,
    I am working on MDM 7.1 SP05 and I have the following issue with syndication:
    I have a remote system table (Key Enabled) with System as Non-Qualifier and value as Qualifier and I have values in the MDM Datamanager as
    MDM ID, Remotesystem (Multivalue Qualifier Table with Key Enabled)
    111,((Qual1-Key,Val1),(Qual1-Key,Val2),(Qual1-Key,Val3))
    When I syndicate I see only one value as 111, (Qual1,Val3)... But I want to have all the Qualifiers-Key with multiple values.. Where as in MDM 5.5 I can see all the Qualifiers with out any issues..Is this a restriction in MDM 7.1?
    If I map System instead of Remote Key of Qualifier Table then I can see multiple times of same remote system with appropriate values.. But If I map remote key then I see the consolidated/the latest system-remote key wiht value... But I want system-remote key value appear multiple times...
    Thanks alot
    Rajeev

    I am using customised...
    Did you tried syndicating Remote key of that table or the field of the Qualifer table?
    I am able to syndicate out with the system field and values.. But I want to syndicate out the multiple values wiht remote key of the table..
    As mentioned Remote keys are AAA and BBB for System Sys1 and Sys2..
    First I imported remote system table with Sys1 and Sys2 with remote Keys as AAA and BBB. then along wiht main table record I imported Sys1 and Sy2...
    While Syndicating I want to syndicate AAA and BBB values along with Value field...
    Suppose:
    I have data :
    MDM ID, RemoteSystem(System, Value)
    111, ((Sys1,Val1),(Sys1,Val2),(Sys1,Val3),(Sys2,Val1))
    Remote Keys for Sys1AAA and Sys2BBB
    In the Syndication Manager I mapped as below: RemoteSystems RemoteKey and value are mapped to target...
    RemoteSystem
    --RemoteKey
    System(DFNQ)
    --Value(Qualifier)
    I mapped RemoteKey and Value to the target fields.. Which is a XML output..
    <REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val3</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>BBB</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val1</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    </REMOTE_SYSTEM>
    Where I need the following Output:
    <REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val1</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val2</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val3</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>BBB</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val1</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    </REMOTE_SYSTEM>
    Any inputs.
    Thanks
    Rajeev

  • Duplicate Hardware Key when tried to request for new license key

    Dear Experts,
    Our SAP ECC6 license key is going expire in these few days.  Therefore, I tried to request for new license key with the same Hardware key at SAP Support Portal, but it showed "Duplicate Hardware Key".
    Should I wait for the current one to expire before I could request for new one?
    Regards,
    Abraham

    Hi Nick,
    It's not a temporary license. 
    It just when I tried to get a new license key 1 week ago, the installation number we had was just licensed for MaxDB as database server, therefore, it only gave 2 weeks validity of license key. 
    Now, we have changed our contract licensed to MS-SQL server.
    Therefore, I need to get the new license key based on MS-SQL server.  Since, I didn't do any reformating on the server, thus, the hardware key is still the same when I tried to get the new license key.
    What should I do?
    Regards,
    Abraham

  • How to unlock ssh keys with lxde

    I'm running a minimal setup with lxde.  What manages ssh keys under lxde?  I want to have my user's key unlocked when logged in so I can ssh and scp at will.
    Thanks!

    I have faced the same issue (with a WM like fluxbox/openbox, not LXDE).. There is no specific program that manages ssh keys in LXDE.
    From my research, there are 3 possible solutions -
    1) You can start the gnome-keyring (or is that seahorse) in LXDE (or any WM). This can manage your ssh keys
    2) You can generate a new ssh key with empty passphrase.. That way, you will not be asked for passphrase everytime.. This is what I use.. Very simple to configure and use.. Note: The private key will be stored unencrypted on the disk if the passphrase is empty. It may be a security concern
    3) Use "ssh-agent" and "ssh-add" command to remember the passphrase after you type it once..
    You can use the snippet below:
    $ eval `ssh-agent`
    $ ssh-add [optional ssh private file if not ~/.ssh/id_rsa]
    <enter passphrase>
    More detailed configuration here - http://www.mtu.net/~engstrom/ssh-agent.php
    Once you have done a ssh-add, the next time you can just start ssh-agent in the background. You can spawn an ssh-agent process when starting your X session.

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

Maybe you are looking for

  • Sample code for slow moving material report?

    Hi all, I have a requirement to display slow moving mateial report on a particular goods issue date and material wise. The basic requirements are 1. Movement type '261'  and material, plant are select-options. 2.last goods movement date based on  par

  • F110-DME administration

    Hi, We have a requirement in F110-DME administration. when i select environment from menu in f110 transaction,i choose DME Administration to display the data medium contents .i have to change the layout ie displaying data in a different format .How d

  • Lookout limitation​s and selection of the computer system for lookout

    This is regarding the limitation of the lookout i.e. upto how much IO lookout is reccomended to use. or it is on the basis of the l4p or lks file size basis. Do you have some criteria for the selection of the computer system for lookout on the basis

  • My minimize button is black instead of colored

    I have a 15" Macbook Pro Retina and for some reason my close/minimize/maximize buttons are black instead of red/yellow/green.. I tried to look through the setup but could not find anything to change these.. Where is this setup? Thanks Gary

  • TS4268 My iMessages linked between phone, macbook, and iPad

    Orinigally the imessage was linked between all of my mac products (if I received or sent a text it would be on all of them). Now on my macbook and ipad they send via my gmail account instead of my phone number. How do I link them again?