Quantcast
Channel: SCN : Unanswered Discussions - SAP GUI
Viewing all 2552 articles
Browse latest View live

Sap Personas Justification

$
0
0

Dear Experts

Kindly how can I change transaction justification in NWBC or standalone Business client to make it right , as we can do it from GUI =>character set

 

 

Regards

Ghadeer


SAPGUI for java : progress indicator delay

$
0
0

Hello everyone,

 

I've noticed a change in behaviour between SAPGUI for Java 7.30 Rev 8 and Rev 9.

 

In Rev8, the (infinite?) progress indicator used to be displayed after a few seconds (whenever the gui was waiting).

In Rev9 and later (also, the new 7.40 ) the indicator is displayed almost instantly, even for operations that do not/should not  cause significant delays and is removed just as fast, causing a temporary change in colour on the whole window.

 

Has anyone noticed this, and is there a way to customise the time after which the indicator appears ?

 

 

I suspect it has something to do with a bugfix, as announced in

 

ANN: SAP GUI for Java 7.30 rev 9 available

 

"A performance issue causing a significant slow down when showing the infinite progress indicator at the same time like frequently updated progress messages in the status bar has been solved."

SAP Screen Personas - Keyboard

$
0
0

HI everybody!

 

I Have a request about personas 2.0, i need remove keyboards functions on the flavors, for example, when customer entry transaction VCUSt I have a flavor for my client with their customer list but if he push escape for example he go at the back screen and this is disaster for me because i dont want that watch the selection screen (not customized)

thank you so much

i wait your reply

May I Install SAP gui 7.40 on Citrix XenApp 6.5?

$
0
0

Hello,

I have a Citrix farm with XenApp 6.5 and I'm using SAP gui 7.30, in July SAP gui 7.30 will finish its life, May I Install SAP gui 7.40 on Citrix XenApp 6.5?

 

As per note 138869 - SAP GUI on Windows Terminal Server (WTS) I can read

 

Release for Citrix XenApp/XenDesktop 7.x

Citrix XenApp 7.x and Citrix XenDesktop are released as of patch level 10 of SAP GUI for Windows 7.30 (see below). This release is also valid for

later SAP GUI releases, such as Release SAP GUI for Windows 7.40.

Release for Citrix XenApp/XenDesktop 6.x

Citrix XenApp 6.x and Citrix XenDesktop are released as of patch level 5 of SAP GUI for Windows 7.20 (see below). This release is also valid for

later SAP GUI releases, such as Release SAP GUI for Windows 7.30.


But for me it is not clear if I can use SAP gui 7.40 on XenApp 6.5.


thanks


Antonia

sending alv report to mail

$
0
0

Hi everyone,

I am trying to send alv reports to external mail in excel format. The mails will go to sost transaction and they will go to out box of sbwp transaction but not to the maul id that I gave in the program. Below is the the code....

 

 

PERFORM send_email_with_xls TABLES lt_message

                                           lt_ttxt

                                    USING  p_email

                                          'ALV Excel Attachment'

                                          'XLS'

                                          'TestFileName'

                                          'Attachment'.

 

 

**   *Instructs mail send program for SAPCONNECT to send email(rsconn01)

 

 

*   perform initiate_mail_execute_program.

      ELSE.

        MESSAGE 'Program does not exist for this t-code' TYPE 'I'.

      ENDIF.

    ELSEif flag = 1.

     MESSAGE 'Enter correct t-code' TYPE 'I'.

   ENDIF.

  ELSEIF flag = 0.

    MESSAGE 'Enter valid email id' TYPE 'I'.

  ENDIF.

 

 

*&---------------------------------------------------------------------*

*&      Form  send_email_with_xls

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*      -->PIT_MESSAGE       text

*      -->PIT_ATTACH        text

*      -->PG_EMAIL          text

*      -->P_MTITLE          text

*      -->P_FORMAT          text

*      -->P_FILENAME        text

*      -->P_ATTDESCRIPTION  text

*----------------------------------------------------------------------*

FORM send_email_with_xls TABLES pit_message

                                pit_attach

                        USING pg_email

                              p_mtitle

                              p_format

                              p_filename

                              p_attdescription.

 

 

  DATA : xdocdata LIKE sodocchgi1.

 

 

*  TYPES: BEGIN OF ty_sodocchgi1,

*      doc_size TYPE sodocchgi1-doc_size,

*      obj_langu TYPE sodocchgi1-obj_langu,

*      obj_name TYPE sodocchgi1-obj_name,

*      obj_descr TYPE sodocchgi1-obj_descr,

*     END OF ty_sodocchgi1.

*

*  DATA : lt_xdocdata type STANDARD TABLE OF sodocchgi1,

*       ls_xdocdata type sodocchgi1.

 

 

**Populate the subject/generic message attributes

*Fill the document data and get size of attachment

 

 

  CLEAR ls_message.

  REFRESH lt_message.

  ls_message = 'Please find the following excel attachment'.

  APPEND ls_message TO lt_message.

 

 

*Fill the document data.

  xdocdata-doc_size = 1.

  xdocdata-obj_langu  = sy-langu.

  xdocdata-obj_name   = 'SAPRPT'.

  xdocdata-obj_descr  = p_mtitle.

 

 

*  ls_xdocdata-doc_size = 1.

*  ls_xdocdata-obj_langu  = sy-langu.

*  ls_xdocdata-obj_name   = 'SAPRPT'.

*  ls_xdocdata-obj_descr  = p_mtitle.

*  APPEND  ls_xdocdata to  lt_xdocdata.

 

 

  CLEAR lt_attachment.

  REFRESH lt_attachment.

  lt_attachment[] = pit_attach[].

 

 

*Describe the body of the message

 

 

  CLEAR ls_packing_list.

  REFRESH lt_packing_list.

 

 

  ls_packing_list-transf_bin = space.

  ls_packing_list-head_start = 1.

  ls_packing_list-head_num = 0.

  ls_packing_list-body_start = 1.

  DESCRIBE TABLE lt_message LINES ls_packing_list-body_num.

  ls_packing_list-doc_type = 'RAW'.

  APPEND ls_packing_list TO lt_packing_list.

 

 

*Create attachment notification

 

 

  ls_packing_list-transf_bin = 'X'.

  ls_packing_list-head_start = 1.

  ls_packing_list-head_num   = 1.

  ls_packing_list-body_start = 1.

  DESCRIBE TABLE lt_attachment LINES ls_packing_list-body_num.

 

 

  ls_packing_list-doc_type   =  p_format.

  ls_packing_list-obj_descr  =  p_attdescription.

  ls_packing_list-obj_name   =  p_filename.

  ls_packing_list-doc_size   =  ls_packing_list-body_num.

  APPEND ls_packing_list TO lt_packing_list.

 

 

*Add the recipients email address

 

 

  CLEAR lt_receivers.

  REFRESH lt_receivers.

  ls_receivers-receiver = pg_email.

  ls_receivers-rec_type = 'U'.

  ls_receivers-com_type = 'INT'.

  ls_receivers-notif_del = 'X'.

  ls_receivers-notif_ndel = 'X'.

  APPEND ls_receivers TO lt_receivers.

 

 

  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'

    EXPORTING

      document_data              = xdocdata    "lt_xdocdata

      put_in_outbox              = 'X'

      commit_work                = 'X'

    TABLES

      packing_list               = lt_packing_list

      contents_bin               = lt_attachment

      contents_txt               = lt_message

      receivers                  = lt_receivers

    EXCEPTIONS

      too_many_receivers         = 1

      document_not_sent          = 2

      document_type_not_exist    = 3

      operation_no_authorization = 4

      parameter_error            = 5

      x_error                    = 6.

 

 

  IF sy-subrc EQ 0.

    MESSAGE 'Report has sent to mail successfully' TYPE 'I'.

  ELSE.

    MESSAGE 'Sorry report has not sent' TYPE 'I'.

  ENDIF.

ENDFORM.                    "send_email_with_xls

 

 

 

 

 

 

*form initiate_mail_execute_program.

**  COMMIT WORK.

*  wait up to 2 seconds.

**  if gd_error eq 0.

*      submit rsconn01 with mode = 'INT'

*                    with output = 'X'

*                    and return.

**  endif.

*endform.

 

 

Is there any problem in the code....please give your suggestions.

 

Thank and Regards.

Problem to see PDF Prints in SAP Screen Personas 20

$
0
0

Hello all,

 

I created a workflow including the invoice process in SAP Screen Personas 20 and most things work fine, but if I started the invice process.

Jobs to print  incoices are created. But at first I received an error message  in SAP error message number 403 after I saved the oinvoice process .

 

which told me that have to activate  the node:


/sap/bc/bsp/sap/frontend_print/show_front_requests.htm

with transaction SICF.


I found only the node

/sap/bc/bsp/sap/frontend_print/  

but not the file

show_front_requests.htm



After Activation of the node it was a little bit better.

After saving the invoice I saw a list of files with the offer to display them.

 

But I can not open the PDF Files . I see only a   page painted in black in the window to show the PDF File.

After I leave I get an error message 

 

 

Datei beginnt nicht mit "%PDF-".
Local\EWH-3128-6


(in English it would be someting like :

File does not begin with  "%PDF-".

Local\EWH-3128-6)



Can somebody help me ?

 

If the show_front_requests.htm file is needed: How can I get it ?

 

Thanks in advance and

Best regards

Is it possible to have a compatibility matrix for sapgui for windows ?

$
0
0

HI, we have to check is all the components HW and SW are compatible with new sapgui 740 for windows because the sapgui 730 support will finish this year. I don't know if is  May or October.

Do you know if exist something in summary ?

regards

maurizio

Passing an array to Web RFC in SAP Personas 2.0

$
0
0

Hello .

 

I wanted to check if we can pass an array to web rfc from SAP Personas 2.0. Basically it would be the Item level details for a sales order creation.

 

Appreciate if some guidance can be provided.

 

Regards

PN


Screen Personas 2.0 HTML Parameters Encoding

$
0
0

Hi everyone,

 

I have a tricky problem with an HTML Frame in Screen Personas 2.0.

 

I am embedding an iframe, where I need to paste parameters into the URL to use the search option on this website. With HTML control this is in general a straight forward thing, but as soon as I need to paste more than one string, Screen Personas does the following. It encodes a space with %20, which is correct for javascript, but when it then calls the url of the frame, instead of simply pasting the %20 into the url, it suddenly appears in the search field itself. The webpage then takes this %20 as a real search parameter, which of course screws up the whole search.

 

This phenomenon can also be seen with search websites like bing.com, the encoded parameters get pasted into the search field itself...

 

Does anyone know, what Screen Personas is doing there and why?

 

I am grateful for any help, because right now I can only allow people to use one single string for their search, because the iframe I am using is a reduced one, which does not have a separate search field.

 

Cheers

Lisa Zimmermann

Field value transport of text does not run in a SAP Screen Personas 20 script

$
0
0

Hello all,

I have a problem to use   SAP Screen Personas  20   text fields for a value help in a script.

The goal is to reduce the input of the user  and to skip the value help screen. 

It’s a value help to select  a sales document using  transaction VA02.

The value help is called “E: sales document by customer”.

(I don’ t know whether  my translation is ok, because I just work with single sign on and cannot switch from German to an English ERP session )

 

The problem is:

If I start the script the first time of a SAP Screen Personas Session session it works ok. 

But  I call it a second time in a Personas session the values are not transported to the  value help.

Only if I give an additional click to the  text fields it works correctly.

So I tried to simulate it in the script. I set a refresh on the screen level and on the field level.   I set the Focus on the fields and set a click on this fields in the script. 

But nothing  helps:

As I remember some Webinars , the value transport should run with a refresh on screen level.

Is it true. . 

My question is:

What can I do, to transport the values to the F4 Help in the script exactly with the result , that it will run not only at the first time. ?

 

 

* comment: I have nearly the same problem in SAP screen Personas 30

SAP GUI 7.40 UI Landscape Format and BEx Analyzer (RRMX)

$
0
0

Hi All,

 

I am running into an issue specific to launching BEx Analyzer (t-code RRMX) while developing a SAP GUI 7.40 PL1 installation package.  The package I have created includes the BI 7.0 Addon For SAP GUI 7.40 (BI740SP01_100-20012040.exe), which appears to be the latest version at the time of this writing. UI Landscape mode is enabled for this package as I have included the “Install SAP GUI Desktop Icon/Shortcuts eventhough NWBC is installed” component.  In addition, I have successfully gone through the process of migrating our saplogon.ini file into SAPUILandscape.xml and SAPUILandscapeGlobal.xml.

 

The problem that occurs with the Landscape mode being enabled in SAP GUI 7.40 is that after a user logs into one of our environments successfully, they try to run the RRMX t-code to initialize the BEx Analyzer, and after Excel launches, a "RFC_Error Communication" message comes up saying the service sapms<SID> is unknown.

 

Now I realize that I can manually update the services file in C:\Windows\System32\drivers\etc folder with an entry like sapms<SID> 36##/tcp, or even add the port using a post installation script.  I have done that and verified that this indeed fixes the issue.

 

Here’s what I don’t understand and am hoping someone can clarify….  We are using message server load balancing with a group. With our previous SAP GUI 7.30 PL8 package, we did not have to manually add any sapms<SID> entries into the services file and BEx analyzer worked perfectly fine when users ran RRMX.  The same is true if I turn off the landscape mode for SAP GUI 7.40 PL1 and use our saplogon.ini file instead.  BEx Analyzer works perfectly fine in that scenario.  I could be wrong, but I am under the impression that problem is specifically related to the UI Landscape format.  I have looked through the SAPUILandscape.xml file and see both the message server host name and port under the <Messageservers> section of the xml, so it’s not like the port information is missing or didn’t carry over when the saplogon.ini was converted to xml.

 

Has anybody else seen this behavior with the UI Landscape mode enabled and launching BEx Analyzer?  If so, is there a way to make this work without having to manually create or script the creation of sapms<SID> entries in the Windows services file while still keeping the UI Landscape format enabled?

 

Thanks,

Josh

SAP GUI History dont save

$
0
0

Hi gurus,

 

In a user the autocomplete dosnt work.

 

I have chech that LOW SPEED CONNECTION is disabled and that save in local DB is activated.

 

99999Captura.PNG

 

 

The trace is:

 

Date:    Thu Feb 12 17:09:37 2015

 

Trace mode (0x103):    Warning Error (Components)

********************************************************************************

Trace components: Local DB

********************************************************************************

 

Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10

 

*************** data to server ***************

 

=4471>Local DB: CSession::saveHistory2DB called by ChangeControls: Field text too long or the history is disabled for field: INVFO-BLDAT 10

 

*************** data from server ***************

 

Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10
Local DB:CMyEdit::OnChar: Field text length not supported: INVFO-BLDAT 10

 

********************************************************************************

Statistic:

   0 errors

   0 warnings

End of trace

 

 

 

 

Best Regards

SAP NW RFC SDK: Need installation instructions.

$
0
0

If you've successfully installed and connected to SAP using CCo with  SAP NW RFC SDK I need to speak with you asap.  I have CCo and the SDK installed but attempts to call Set SAP = CreateObject("COMNWRFC") are met with "Can't open library sapnwrfc.dll" even through CCo is registered and the SDK .dlls are in the same directory as the CCo.dll

 

Any help is appreciated.  My goal is make RFC calls from Excel with the SAP NW RFC SDK.

 

Thanks,
Crew Reynolds

Clear the Contents of a Textbox

$
0
0

Hi All,

 

I have created a flavour where i can reset password / check the first name and second name of a user by single click. Basically this is based on SU01 transaction.

 

I could get the required contents to my text boxes.

 

Now the challenge is to clear the content from those text boxes. I tried to use refresh screen thru launch button but couldnt vacate the boxes.

 

Could someone help me to have the desired result asap.

 

You can find the pic attached and help me asap.Capture_Personas.JPG

transaction cannt be started in the SAP GUI for HTML - Pesonas

$
0
0

Hi Expert ,

Am using personas 2 , when I have tried to create flavor for PT65 transaction I got the below error:

 


The transaction that is to be started cannt be started in the SAP GUI for HTML as significant parts of the transaction cannot be run in the SAP GUI for HTML.


Please Advise


Regard

Ghadeer


sending alv report to mail

$
0
0

Hi everyone,

I am trying to send alv reports to external mail in excel format. The mails will go to sost transaction and they will go to out box of sbwp transaction but not to the maul id that I gave in the program. Below is the the code....

 

 

PERFORM send_email_with_xls TABLES lt_message

                                           lt_ttxt

                                    USING  p_email

                                          'ALV Excel Attachment'

                                          'XLS'

                                          'TestFileName'

                                          'Attachment'.

 

 

**   *Instructs mail send program for SAPCONNECT to send email(rsconn01)

 

 

*   perform initiate_mail_execute_program.

      ELSE.

        MESSAGE 'Program does not exist for this t-code' TYPE 'I'.

      ENDIF.

    ELSEif flag = 1.

     MESSAGE 'Enter correct t-code' TYPE 'I'.

   ENDIF.

  ELSEIF flag = 0.

    MESSAGE 'Enter valid email id' TYPE 'I'.

  ENDIF.

 

 

*&---------------------------------------------------------------------*

*&      Form  send_email_with_xls

*&---------------------------------------------------------------------*

*       text

*----------------------------------------------------------------------*

*      -->PIT_MESSAGE       text

*      -->PIT_ATTACH        text

*      -->PG_EMAIL          text

*      -->P_MTITLE          text

*      -->P_FORMAT          text

*      -->P_FILENAME        text

*      -->P_ATTDESCRIPTION  text

*----------------------------------------------------------------------*

FORM send_email_with_xls TABLES pit_message

                                pit_attach

                        USING pg_email

                              p_mtitle

                              p_format

                              p_filename

                              p_attdescription.

 

 

  DATA : xdocdata LIKE sodocchgi1.

 

 

*  TYPES: BEGIN OF ty_sodocchgi1,

*      doc_size TYPE sodocchgi1-doc_size,

*      obj_langu TYPE sodocchgi1-obj_langu,

*      obj_name TYPE sodocchgi1-obj_name,

*      obj_descr TYPE sodocchgi1-obj_descr,

*     END OF ty_sodocchgi1.

*

*  DATA : lt_xdocdata type STANDARD TABLE OF sodocchgi1,

*       ls_xdocdata type sodocchgi1.

 

 

**Populate the subject/generic message attributes

*Fill the document data and get size of attachment

 

 

  CLEAR ls_message.

  REFRESH lt_message.

  ls_message = 'Please find the following excel attachment'.

  APPEND ls_message TO lt_message.

 

 

*Fill the document data.

  xdocdata-doc_size = 1.

  xdocdata-obj_langu  = sy-langu.

  xdocdata-obj_name   = 'SAPRPT'.

  xdocdata-obj_descr  = p_mtitle.

 

 

*  ls_xdocdata-doc_size = 1.

*  ls_xdocdata-obj_langu  = sy-langu.

*  ls_xdocdata-obj_name   = 'SAPRPT'.

*  ls_xdocdata-obj_descr  = p_mtitle.

*  APPEND  ls_xdocdata to  lt_xdocdata.

 

 

  CLEAR lt_attachment.

  REFRESH lt_attachment.

  lt_attachment[] = pit_attach[].

 

 

*Describe the body of the message

 

 

  CLEAR ls_packing_list.

  REFRESH lt_packing_list.

 

 

  ls_packing_list-transf_bin = space.

  ls_packing_list-head_start = 1.

  ls_packing_list-head_num = 0.

  ls_packing_list-body_start = 1.

  DESCRIBE TABLE lt_message LINES ls_packing_list-body_num.

  ls_packing_list-doc_type = 'RAW'.

  APPEND ls_packing_list TO lt_packing_list.

 

 

*Create attachment notification

 

 

  ls_packing_list-transf_bin = 'X'.

  ls_packing_list-head_start = 1.

  ls_packing_list-head_num   = 1.

  ls_packing_list-body_start = 1.

  DESCRIBE TABLE lt_attachment LINES ls_packing_list-body_num.

 

 

  ls_packing_list-doc_type   =  p_format.

  ls_packing_list-obj_descr  =  p_attdescription.

  ls_packing_list-obj_name   =  p_filename.

  ls_packing_list-doc_size   =  ls_packing_list-body_num.

  APPEND ls_packing_list TO lt_packing_list.

 

 

*Add the recipients email address

 

 

  CLEAR lt_receivers.

  REFRESH lt_receivers.

  ls_receivers-receiver = pg_email.

  ls_receivers-rec_type = 'U'.

  ls_receivers-com_type = 'INT'.

  ls_receivers-notif_del = 'X'.

  ls_receivers-notif_ndel = 'X'.

  APPEND ls_receivers TO lt_receivers.

 

 

  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'

    EXPORTING

      document_data              = xdocdata    "lt_xdocdata

      put_in_outbox              = 'X'

      commit_work                = 'X'

    TABLES

      packing_list               = lt_packing_list

      contents_bin               = lt_attachment

      contents_txt               = lt_message

      receivers                  = lt_receivers

    EXCEPTIONS

      too_many_receivers         = 1

      document_not_sent          = 2

      document_type_not_exist    = 3

      operation_no_authorization = 4

      parameter_error            = 5

      x_error                    = 6.

 

 

  IF sy-subrc EQ 0.

    MESSAGE 'Report has sent to mail successfully' TYPE 'I'.

  ELSE.

    MESSAGE 'Sorry report has not sent' TYPE 'I'.

  ENDIF.

ENDFORM.                    "send_email_with_xls

 

 

 

 

 

 

*form initiate_mail_execute_program.

**  COMMIT WORK.

*  wait up to 2 seconds.

**  if gd_error eq 0.

*      submit rsconn01 with mode = 'INT'

*                    with output = 'X'

*                    and return.

**  endif.

*endform.

 

 

Is there any problem in the code....please give your suggestions.

 

Thank and Regards.

Personas 2.0 Installation issue: "Role for Personas" table is empty

$
0
0

Hi Personas experts,

 

I have Personas 2.0 used on sandbox, and now our SAP Basis team is installing the Personas 2.0 on a testing server. After the installation, I was helping the to do the customization/configuration.

 

However,  when I run SPRO,  and execute "Maintain Personas Roles", I got info msg: "Client xxx has status 'not modificable''". This leads to an empty role table. But I need to have the roles in this table in order to assign users the roles in admin ui tool. SAP Basis team tried to activate/enable the table for modification, but still no roles seen in the spro tcode.

 

Does anyone know how to resolve this from Basis? What procedures are missing in the installation? Appreciate if detailed steps can be given.

 

Thx.

 

Dong Zhu

How to merge two screen having the same program name and screen number in Personas 2.0

$
0
0

Hi All,

 

I have an issue in merging two screen having the same program name and screen number.

 

In material Master, we are not using Tabstrip.

 

My requirement is to merge MRP2 view with MRP1 view. When i try to create custom fields for MRP2 view fields in MRP1 view. so it is reflected to all the screens which having same program number and screen number.

 

Please find the below details.

 

Purchasing (SAPLMGMM/3006)

MRP1 (SAPLMGMM/3006)

MRP2 (SAPLMGMM/3006)

Sales: General /Plant  Data(SAPLMGMM/3006)

 

In the below screen shots, the forecast requirement is getting reflected for all the views which having same program name and screen number.

 

MRP1view.png

 

purchasingview.pngsalesgen.png

 

How to handle this issue? Is it feasible in Perosonas 2.0?


Thank you,

Arunkumaran

Dynamic image change in flavour in Personas 2.0

$
0
0

Can we change image dynamically in any flavour based on user login in SAP Screen Personas 2.0 ?

tab merging

$
0
0

Hi everyone,

 

I merge four tabs in custom transaction like in this png1...

tab1---notifications

tab2---materials used

tab3---life controls/docs

tab4---JAR form 1

 

after selecting 2 check boxes and press enter it will go to life controls/docs and the notifications tab fields are disappeaing...

 

now my question is 1.why the notifications tab fields are disappearing

                             2.how to mark the check box in notifications tab through scripting

                             3.f4 help is not working and i have set system defaults also.

 

personas version is 1.0

 

thanks and regards,

S.Geetha

Viewing all 2552 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>