When I choose one row , and I choose all "001000000224" automatically. how do I do it ?
Thanks in advance.
enter image description here
I have a question in the sap community
https://answers.sap.com/questions/13316914/how-to-choose-all-same-row.html
Related
In a SAP GUI transaction, I have a few columns and multiple rows, I need SAP GUI Script to go through column 1 in all the rows to find the component ID and in column 3 to change the value of the component.
SAP GUI Scripting recording does not really help as in each material there are different number of rows. Could you guys take a look at my script and guide on what needs to be changed in order to make it functional?
session.findById("wnd[0]/usr/tabsTS_ITOV/tabpTCMA/ssubSUBPAGE:SAPLCSDI:0152/tblSAPLCSDITCMAT/txtRC29P-MENGE[4,0]").text = "2.400"
session.findById("wnd[0]/usr/tabsTS_ITOV/tabpTCMA/ssubSUBPAGE:SAPLCSDI:0152/tblSAPLCSDITCMAT/txtRC29P-MENGE[4,0]").setFocus
session.findById("wnd[0]/usr/tabsTS_ITOV/tabpTCMA/ssubSUBPAGE:SAPLCSDI:0152/tblSAPLCSDITCMAT/txtRC29P-MENGE[4,0]").caretPosition = 3
session.findById("wnd[0]").sendVKey 0
session.findById("wnd[0]/tbar[0]/btn[11]").press
Try this !
When you need to send a key, keep it in parenthesis
session.findById("wnd[0]").sendVKey(0)
When you need to press a button, use parenthesis too
session.findById("wnd[0]/tbar[0]/btn[11]").press()
For more information, read this SendVkey
In One screen, I have a gallery list with a button along each rows. Upon hitting the button it will display the details in a form. This form should be editable. Is it possible to do it?
My source is a SQL table.
Here's my code
Form:
Item Property
Gallery2.Selected
Edit button: OnSelect
EditForm(Form1);Navigate(Form1, ScreenTransition.None)
Thanks for the usual help.
For use case I used D365 as database and Account Table as data.
In first image you will see Acccount name and phone number and so on.
Now as you wished when clicked on arrow it shall show data of that particular record but in edit mode. Now in 2nd image you will get data in edit mode.
How do you achive this? Below code will help achive this.
EditForm(EditForm1);Navigate(EditScreen1, ScreenTransition.None)
The answer is yes for editable.
I have used Azure SQL database.
Pre:
Spin up the Azure SQL database ( Free of cost up to some limit)
Create a table with some data
In Powerapps:
Assuming once you have created connection to Azure SQL database
Then insert > Edit form.
Add the SQL Data connection > select the fields
Add a button > in the screen > change the forumula to SubmitForm
The following is the most imp bit.
Note : Edit Text field will not appear if the table doesn’t have Primary key assigned
Once the record is edited. You can send the Success Notification using formulas. Sample below
To Notify Success:
Notify("Data Successfully
Updated",Success);SubmitForm(Form1);Navigate(HomeScreen,ScreenTransition.Cover)
For Clarity
Hope it helps
i Have a Table with Fields
Material Number
Order Code
Supplier Code
Description
I have a crystal reports rpt file that i manually enter all the information to generate labels.
I am trying to program this using the built in formula editor, so when i enter the Material Number (which is a unique code) it will automatically display other 3 relevant fields.
I have tried few formulas in the formula editor without any luck.
can anyone help?
relliK
UPDATE
#Siva - I have added the table for clarification
i simply want a lable printed with only one user input being the Material Number, and then the code/fomula in crystal reports to fetch the other data based on the Materila number and produce the label.
thank you for you interest in this issue.
UPDATE
#Siva - I have added a sample label, i would only want to enter 20506871 as Material and the other data fields to be pulled from excel
not sure if i can use parameter fields and/or i would like some help on programming the parameter fields
Can you please advise if below is even possible. Using Oracle 11g and APEX 4.2.6.
I have a data grid that brings all tasks from a master table. But show the task name via a LOV.
I am trying to add links, via Column links. But I must turn off the LOV to make this work. Which would give me link. But this is not very helpful.
Example below.
44193
Is there a way, so I can still use a LOV. So that the return value gives me the ID for the link, but the Display value gives me the anchor text.
Example below.
Weekend
Many thanks
I'm mostly used to Apex 4.1, but this approach should work.
You don't need an LOV. Your report query should include both the MAST_ID and the TASK_NAME columns. Hide the TASK_NAME column and set MAST_ID as the linking column. If you set the Link Text (under Column Link) to #TASK_NAME#, you should get the desired result. Display As should be left at the default (Display as Text etc).
They added a new feature now where you can add a link to your item under: "Link" attribute.
Assume I have one data set with following fields:
Name, Amount, Time, etc
How can I display only those records with Amount > 100, for example?
Since I need this data set for other report, I can't filter these records when I prepare data set.
I searched around, but couldn't find any answer. I will really appreciate if anyone can help.
By the way, I used Pentaho Report Designer 3.9.
Thanks a lot.
Yes, you can.
You have to find your Details Band - not Details Body -, within your Report Structure, and set up the Style Attribute visible the expression:
=if([Amount]>100;true();false())
Besides, if you want your summaries to consider only the shown data, you can also add an Open Formula function field, that would say:
=if([Amount]>100;[Amount];0)
And you'd summarize it at the end of the report.
Here's the link with the full example built to your situation.