Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

vero_spmsd
vero_spmsd
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
7

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by vero_spmsd
Customize the badges you want to showcase on your profile
Problem with addinstance - removeinstances - Adobe LiveCycle 23-02-2010
Dear all,I have a strange problemMy PDF has a master page which contains the header data : user who generates the pdf from SAP (the user field is binded), name (binded too)In my form I have a table and 2 buttons : one to add row and one to remove rowThe javascript on each button is onclickADD : form._myitem.addInstance(0);REMOVE : if (form._myitem.count > 1)form._myitem.removeInstance(form._myitem.count- 1);If I chain an ADD click + a REMOVE click + a ADD click, the user and the name are deleted...

Views

765

Likes

0

Replies

3
Basis question : access to data binding - Adobe LiveCycle 23-02-2010
Dear all,I have binded my dropdownlist with an SAP table, so in my XML file I have - - < DATA xfa:dataNode="dataGroup"> < WERKS>FR01 FR01 - FR02/WERKS> FR11 My dropdownlist is binded on WERKSI would like to populate another object with the LGORT associatedSo in the Change method of my dropdownlist I have to write some javascript to obtain the LGORT but I don't know how to do thatI don't know if I have to use xfa.resolvenode ...$record.data....Is there a simple documentation which explain that....

Views

368

Likes

0

Replies

0
Re: delete duplicates value in dropdownlist - Adobe LiveCycle 23-02-2010
Great, I found the solution myself after long search in the forum------------------------------- var newList = new Array();var nItems = plant_site.resolveNode("#items").nodesvar count = nItems.length;var listCount = 0;for (var i = 0; i < count; i++) {if ( i == 0 ) { var oldinfo = nItems.item(i).value;newList[listCount] = nItems.item(i).value;listCount++;}else if (nItems.item(i).value != oldinfo){ oldinfo = nItems.item(i).value;newList[listCount] = nItems.item(i).value;listCount++;}} //end forpla...

Views

255

Likes

0

Replies

0
delete duplicates value in dropdownlist - Adobe LiveCycle 23-02-2010
Dear all,I have a table with 2 columns, in each column I have a dropdownlist.These dropdownlist are binded with SAP table : T001L (couple plant / storage location)The content is :Plant - Storage LocationPL01 ST01PL01 ST02PL01 ST03PL02 ST04PL02 ST05The first dropdownlist is the plant and the second is the storage locationI have 2 requests :1/ How to delete the duplicates in the first dropdownlist2/ How to link the 2 dropdownlists : when I choose PL01 in the first DDL, I would like only the attach...

Views

1.1K

Likes

0

Replies

2
Hidden page - Adobe LiveCycle 09-02-2010
Dear all,I don't really sure to have create my interactive form properly.I need to have two pages in my pdf.Sometimes I need to show the first, sometimes the second and sometimes the both.I have a page set and one master page (page1) which contains the header of my document (if the 2 pages are displayed, the header has to be repeated)I created 2 subforms to have 2 pages in my pdf.If I put the presence option "Hidden" on the second subform: it is exclude of the pdf => okIf I put the presence opti...

Views

325

Likes

0

Replies

0
Re: concatenate text and value - Adobe LiveCycle 09-02-2010
Dear Steve,thanks for your answer.In fact my dropdownlist is binded with an SAP table which contains SAP material type and description.The first solution is not good for me because I don't want to put "hard value" in the adobe form.I tried your code but it doesn't work. I think I don't do it properly.More details : -> in the data view I have the table TT023T - DATA - ( MATKL, WGBEZ) -> in the hierarchy I have the dropdownlist : form_corp2.sform_corp.MATKLIn the Object tab, Binding, I don't know ...

Views

317

Likes

0

Replies

0
concatenate text and value - Adobe LiveCycle 08-02-2010
Dear All,I'm new in adobe livecycle scripting and I have a simple question.I have a dropdownlist which is binding with a SAP table containing a SAP code and a description.Is it possible to concatenate the code and the description and to display it in the dropdowlist. The user could choose this and after when I need to take into account the choice of the user, I would like to have only the codeIn my table, I have a table with the material type and the descriptionIn the dropdownlist, I would like ...

Views

4.2K

Likes

0

Replies

2