Dev 6.0: OLE In-place activation in Forms

Hi !
Does anybody have In-Place Activatin worked properly ? I have
always External Activation regardless on OLE In-place Activation
property settings.
null

Andrei Kvasyuk (guest) wrote:
: Hi !
: Does anybody have In-Place Activatin worked properly ? I have
: always External Activation regardless on OLE In-place
Activation
: property settings.
Sorry, it's my fault. When creating New object I marked check
box "Display as icon"
null

Similar Messages

  • How can I place active buttons in keynote?

    hellooo,
    how can I place active buttons in keynote?
    thx in advance

    answered in
    /message/4078825#4078825 [original link is broken]
    kindly avoid duplicate posts for the same issue.
    Raja

  • SOAP Framework error while activating interactive form in SFP

    hi everyone,
    I am new to adobe forms, I got an error while activating interactive form
    SOAP Framework error: SOAP Runtime Exception: CSOAPExceptionTransport: HTTP response contains unexpected content-type(100,101).
    I am unable to trace this error, can anyone plz let me understand for what reason this error occurs.
    Thanks in advance.
    - Aditya

    Its an issue with ADS installation or configuration. Let your BASIS team know about this error with screen print. We had same issue and BASIS fixed it.
    Raja

  • Set a default value to checkbox on Active Directory form

    Hi all
    how to set a default value to checkbox UD_ADUSER_MUST on Active Directory form?
    I set the value 1 on the column default value (ADUSER form), i try the provisioning resource AD to the user and this field is not selected.
    please help me.

    hi
    My problem is solved, I tried to change the default form ADUSER, but this value was overridden by the policy form.
    I set this value in the policy form.
    thanks

  • Error while activating the form

    when i was activating the form iam getting an error
    INVALID  HTTP Connection ADS.
    please give me a solution.
    Thanks&Regards
    Siva

    Hi
    Please check your ADS Conection for your system by Executing  Test Report "FP_TEST_00 "
    Procedure
       1. Log on to your SAP Net Weaver AS ABAP.
       2. Call transaction SA38 and enter the name FP_TEST_00.
       3. Choose Execute (F8). A dialog box is displayed.
       4. Enter FP_TEST_00 in the field Form.
           This is displayed as the default form name.
       5. Enter the name of the connection to the ADS. Enter the default name ADS, or, if you have               specified another name, the one you are using in your system.
       6. In the dialog box, choose Output in Print Preview.
       7. Enter an appropriate device type in the field Output Device.
       8. Choose Print Preview.
    On successful execution of the report, you find the Print Preview of the PDF form
    Regards
    Ashwini

  • I am wanting to add picture and designs to my form how do I place it in a specific place on my form?

    I am wanting to add picture and designs to my form how do I place it in a specific place on my form?

    Currently we only support one field/item on a line. We are working on adding a feature that allows you to put multiple fields/items on a single line. We hope to have that out in a few months.
    Randy

  • Emailing a completed active PDF form using a Submit buttom? (Acrobat XI Pro.)

    I have created a very large active PDF form with hundreds of fields, with text boxes, drop downs, radio buttons, check boxes and I think the kitchen sink. But for the life of me I cannot figure out how to create a Submit button that will send the completed form to an email address that is set to print anything that hits it.
    I have read so much on it that I'm thoroughly confused. Do I need a script, is there a method through Acrobat menus I'm missing, or am I barking at the moon? Any help just getting me going in the right direction would be appreciated more than I could even say. Thanks!

    Simply add a button and set it's Mouse Up action to "Submit a Form" and use a mailto type URL and specify that the complete PDF is sent. If it needs to work with Reader prior to version 11, it will additionally need to be Reader-enabled: File > Save As Other > Reader Extended PDF > Enable More Tools
    Note that emailing is unreliable compared to submitting to a web server, and it's difficult to make secure, which is relatively easy with a web server.

  • How Create LDAP Group Inside Active Sync Form?

    I have an Active Sync form that is working well to synchronize (and slightly massage) data from an Active Directory source to a Sun Directory Server destination.
    I need to synchronize group information from AD to DS. It must automatically create groups during the Active Sync processing. It can't be done externally using another scripting language; it must be done within IdM.
    I have the following code...
    <Action id='0' application='com.waveset.provision.WorkflowServices'>
    <Argument name='op' value='createResourceObject'/>
    <Argument name='object'>
      <Object>
      <Attribute name='resourceId' value='DS'/>
      <Attribute name='resourceName' value='DS'/>
      <Attribute name='resourceType' value='LDAP'/>
      <Attribute name='objectName' value='abcd'/>
      <Attribute name='attributes'>
        <Object>
        <Attribute name='cn' value='abcd'/>
        <Attribute name='groupType' value='abcd'/>
        </Object>
      </Attribute>
      <Attribute name='objectType' value='group'/>
      <Attribute name='objectId' value='CN=abcd,ou=Groups,dc=blah,dc=com>
      </Object>
    </Argument>
    <Argument name='objectType' value='group'/>
    <Argument name='resourceId' value='DS'/>
    </Action>However with that code inside the <Field><Expansion>...</Expansion><Field> section the group is not created. I've enabled tracing and as best I can determine the code isn't even executed.
    I have created resource schemas for accounts[DS].ldapGroups and accounts[AD].groups and that works well. I can read group memberships from those lists. However I can't simply append to those lists to automatically create groups (which would be nice). That's why I've gone down this path of attempting to create the groups programatically.
    I've scoured the groups and the course notes and found nothing relevant here. The examples all refer to creating the groups within an interactive form. I'm trying to do the same within the <Field> section of an Active Sync form.

    TTSLSAB wrote:
    Hi Vladimir,
    can you please tell me what should i import in the java class inorder to avoid the below error (session) for the line
              Resource resource = (Resource)session.getObject(Type.RESOURCE, resId);
             ResourceAdapter ra = ResourceOp.findAdapter(resource, session.getCache());Error, which i am getting is
    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
         session cannot be resolved
         session cannot be resolvedsession is your LighthouseContext handle so depending on how you are implementing the class you quoted, you will either need to pass it in, for example via the invoke tag from your form/workflow, or get your own - don't know how this is done but I'm assuming authenticating to IdM would have to be done.
    For all those interested, I have implemented the Java code snippet listed by Vladimir in XPRESS.
    idmSessionHandle - is the LighthouseContext for the current session
    currentOUDN - is a string representing the AD DN of the OU to be created
                    <defvar name='resourceAdapterHandle'/>
                    <set name='resourceAdapterHandle'>
                      <invoke name='findAdapter' class='com.waveset.provision.ResourceOp'>
                        <ref>resourceObject</ref>
                        <invoke name='getCache'>
                          <ref>idmSessionHandle</ref>
                        </invoke>
                      </invoke>
                    </set>
                    <defvar name='newOUGenericObject'/>
                    <set name='newOUGenericObject'>
                      <new class='com.waveset.object.GenericObject'>
                        <map>
                          <s>objectId</s>
                          <ref>currentOUDN</ref>
                          <s>objectType</s>
                          <s>Organizational Unit</s>
                        </map>
                      </new>
                    </set>
                    <invoke name='createObject'>
                      <ref>resourceAdapterHandle</ref>
                      <ref>newOUGenericObject</ref>
                      <new class='java.util.HashMap'/>
                    </invoke>
    [...]Although the above works well, to create OUs in AD, I have not yet tested its real life application with regards to the initial mass loading of users (from LDAP (auth source) to IdM to AD) and ActiveSyncing. My concerns are two threads attempting to create the OU at roughly the same time, the first succeeds, and second one fails because AD will reply with the fact that the object already exists. The workaround would be to do a recheck of the existence of the OU, after a failure was encountered. This ties into exception handling in general in this approach.
    If anyone can contribute exception handling and possibly a create with retries approach, to the above code, I'd appreciate it.
    Cheers.

  • Form name PYXXFO_SAP_TIM_99_0001 not active for form SAP_TIM_99_0001

    Hi Experts,
    I am on ERP2004 SP17 EP6.0 SP20. I am trying to implemet Time Statement application. I am getting the error
    "Form name PYXXFO_SAP_TIM_99_0001 not active for form SAP_TIM_99_0001" on portal when trying to access the time statement.
    Where can I activate the relevant form on R/3 side? I appreciate your help.

    Hi Barin,
    Thanks for replying to me. I activated the form SAP_TIM_99_0001 in hrforms.
    Now I am seeing the error <b>"Unable to generate form PYXXFO_SAP_TIM_99_0001</b>      
    But I do not see this form in hrforms? where can i find this form?
    regards!

  • Passing A Variable From Active Sync Form To WorkFlow

    Hi All,,
    I am calling a Workflow from the Active Sync form, Which is fine.
    But, the problem is , i am having a variable "xxx" in the active sync form, but, i am unable to use this in the workflow.
    So, Please any one can tell how to use a variale in Workflow, passed from a Form.
    Waiting for reply....

    Thank you for your response.
    Do you have a code snippet or other example that shows how to do this?
    Thanks
    Tim

  • Parameterized Active Sync Form generating random password

    Hi im looking for an sample of an Parameterized Active Sync Form which generates a random password.
    Thanks!
    Michael

    --I think password from AD not put in to activeSync.
    --Why?
    You cannot change the user's password from the activeSync RA. The password is encrypted in Active Directory and you can't decrypt it.
    You can read the Idm Resources Reference - Active Directory. There's a table with all the supported fields; the userPassword field is write-only.
    If you want to take the AD password and send it to IDM, you want to use Password Sync.
    Good luck

  • Red Cross in place of interactive form in portal...

    Hi Experts,
    We have created an interactive form and embedded into portal.
    Form Layout is ZCI and Display type is Native.
    For majority of the users it is working fine. Where as for some users (Though they have Adobe 9 version) the adobe form is not getting displayed. Instead "Red cross" is displayed in place of form.
    Please suggest us at the earliest as the form is in production now.
    Thanks & Regards,
    Phani.

    Hi Friends,
    The issue was due to Adobe Reader settings and finally resolved.
    Here is the Answer:
    In the Adobe Reader EDIT menu -> Preferences
    Select Internet and check the Display PDF browser check box to make adobe active in portal.
    I got the solution through SAP NOTE 989147.
    Thanks a lot for all your help.
    Regards,
    Phani.

  • SmartForms002 Error when activating uploaded form

    When I create a smartform with an address element in our pre-dev env, download it and then upload it into our Dev environments, it syntax checks fine but I get a SmartForms002 Error ... Internal Error (Illegal structure of data storage).   It is fine in our pre-dev environment.  I have figured out it only happens when I have an address element and it happens even when downloading/uploading forms within the same env.  We are running SAP ECC 5.0, Basis Support Pack 13.  I have included the steps below to re-create this problem.  Does anyone have any ideas?
    - enter transaction smartforms
    - type zqmjunk55 as smartform name and click on the create button
    - click on Page 1, Right Click, select create and address
    - put 60000353 in as the address #, click save and local object, activate form
    - click on page 1, right click, select create and Page
    - Expand Page 1, right click on main window, select copy
    - click on Page 2, right click and select paste
    - activate form
    - click on utilites, download form and save form on C:\ drive
    - click back arrow to go back to initial smartforms screen
    - type zqmjunk5 as smartform name and click on utilities, upload form, click green check mark on create form prompt
    - select zqmjunk55.xml file you had previously downloaded and click on open, click on local object
    - click on change button and then activate form -- error occurs here

    Syntax Check and activation of the original form that I downloaded (zqmjunk55) was totally fine.
    Syntax Check of uploaded form (zqmjunk5) was fine, just got error on activation.
    Address # "60000353" is also fine ... in other examples i have tried i do pass it as a variable and both cause the same problem.
    Form interface, import and export parameters etc. are all identical in both forms zqmjunk55 which works and zqmjunk5 which does not. 
    If I delete the address window in zqmjunk5 and then re-create it then it works just fine.  In real life though in my real smartform (not the example one) this would not be realistic to do as we would need to re-build our addresses everytime there is a change to the form and we need to move it through our environments. 
    It seems to me that there is a problem with the download/upload utility.  I have previously logged a call with SAP, but so far they have been no help so I thought I would try here just in case anyone else has had the same problem.

  • OLE object storage and retrieval FORMS 6.0

    Hello All,
    Iam using forms 6.0 and iam using OLE object to store the data object into the database, using the block wizard i created the object and from the
    action->Save iam saving the ole object to the database....
    Now i want to retrive the ole object from the database....
    my sql is
    declare
    ol long raw;
    begin
    select ole_object into ol from drawing_files where draw_no=1;
    drawing_files.ole_object:=ol;
    end;
    Its showing error in "Bad bind variable"
    How to solve the error
    and if possible i need the sql coding for storage and retreival of OLE object data..
    Thanks......

    I have re-applied the patch and the problem has vanished??
    Everything appears to function properly.

  • RFC error while activating the Form

    hi all,
    i am trying to activate a new form or even while generating the pdf tab.this generates the pdf but with a popup 'no message though'.
    i get a success message of bytes transmitted ,code page 0000.
    but doesnot get activated.
    but when i execute it..
    i get an error message as below.
    system_error,
    message id : fprunx
    message no :001
    message : ADS : error when opening and RFC communication(110101)
    is it a compatibility error. aor what?
    i use windows o7,LDC 8.0,adobe reader 9.1 with flash player 10
    can anybody suggest me whats the error and hw to go about it???

    Use reports FP_TEST_00 a FPDESTINATION_CHECK (with destination checked true) to find out when your ADS connection will work. Your basis colleagues will use the same reports for their test.
    Learn that FP_* reports can be very useful for you in future, for testing or as a demo programs.
    Here are some basis links for you (or your colleagues) to read aout ADS and stuff:
    ADS Installation and configuration:
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/37/504b8cbc2848a494facfdc09a359b1/frameset.htm
    Troubleshooting for ADS configuration:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30ec0508-9438-2c10-f393-a41fb255698d?quicklink=index&overridelayout=true
    Landscape with ADS:
    http://csc-studentweb.lr.edu/swp/Berg/Conferences/SAP_NW2008_and_Admin_2008/BI/Track13/Track13_Session4.pdf
    ADS tests
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/43/f31e3082221595e10000000a1553f7/content.htm
    regards Otto

Maybe you are looking for

  • How can I create a new iCloud account and transfer my apps?

    I'm sharing an iCloud and iTunes account and want to have my own. Can I create a new iCloud account and transfer my contact list? If I keep the existing iTunes account with the new iCloud acct, can I reload my apps without purchasing them again? I un

  • Material, service and warranty for single product

    Hai all, I have to do a scenario like this.. I have to sold a DG set to a customer and have to maintain service and warranty for the same.. Could any one help me how to do this. Can we use COMMPR01 for this.. Thanks in advance, S.Jenibalet

  • Itouch 2nd gen wont go past apple logo

    I have a 2nd gen itouch that wont go past apple logo. I did a reset and restore as suggested by some posts but still not working. Itunes can detect the ipod but I cannot do anything with it. Please help. many thanks.

  • How to install SUNVTS on Solaris 10 for SPARC�H

    I want to install SUNVTS on Solaris 10 for SPARC system, but I don't know how to install. Could you give me some instructions? Or provice some materials for my reference. Thanks a million!!

  • Adobe reader on the iPad?

    Can I change pen colors in the annotation tools of adobe reader on the iPad?