Smartform Activation problem

My problem is that i activate first time and if i do any changes and then try to activate the form then it hangs. and i am not able to do anything. what is that problem. Please help me.
Thanks
Vikram

Hi,
Every time you activate the SMARTFORM a new function module is generated.
In the Driver Program where you are calling the form instead of calling the function module itself use the function module
SSF_FUNCTION_MODULE_NAME and pass the importing parameter FORM_NAME i.e. the name of the SMARTFORM which you have created.
This prevents you from again and again changing your driver program as this function module determines the name of the function module of smartform generated dynamically.
Just check if it is useful.
Regards,
Khushboo.

Similar Messages

  • Smartform Activation[program "SAPLSUNI" has exceeded the permitted runtime]

    I was working on a smartform. For 2-3 Hrs it was working fine, whatever changes I was making were getting activated smoothly.
    Then, for some unknown reason the smatform stopped getting activated. Timeout dump is happening. But when we 'Check' the smatform, no error is coming. Still it is not getting activated.
    I checked another smarform & made some changes, activated....it got activated instantaneously. The function module of that smartform that it is showing in Environment -> Function Module Name ->  /1BCDWB/SF00000144
    But when we check SE37, it says no such module exists !!! Please help !!!!!!!!!!!!!!!!!!!!!!!
    Here is the dump :
    Runtime Errors         TIME_OUT
    Date and Time          01.06.2010 12:37:24
    Short text
         Time limit exceeded.
    What happened?
         The program "SAPLSUNI" has exceeded the maximum permitted runtime without
         interruption and has therefore been terminated.
    Error analysis
         After a specific time, the program is terminated to make the work area
         available to other users who may be waiting.
         This is to prevent a work area being blocked unnecessarily long by, for
         example:
         - Endless loops (DO, WHILE, ...),
         - Database accesses with a large result set
         - Database accesses without a suitable index (full table scan)
         The maximum runtime of a program is limited by the system profile
         parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this
          time limit is
         exceeded, the system attempts to cancel any running SQL statement or
         signals the ABAP processor to stop the running program. Then the system
         waits another 60 seconds maximum. If the program is then still active,
         the work process is restarted.
    Trigger Location of Runtime Error
        Program                                 SAPLSUNI
        Include                                 LSUNIU06
        Row                                     101
        Module type                             (FORM)
        Module Name                             DELETE_FUNCTION_POOL_INCLUDES
    Source Code Extract
    Line  SourceCde
       71
       72 ENDFUNCTION.
       73
       74 &----
       75 *&      Form  DELETE_FUNCTION_POOL_INCLUDES
       76 &----
       77 *       text
       78 ----
       79 *      -->P_AREA     text
       80 *      -->SKIP_PROGREtextND
       81 ----
       82 FORM delete_function_pool_includes USING    p_area
       83                                          skip_progress_ind.
       84   DATA: l_prog LIKE trdir-name,
       85         l_incl_uxx LIKE trdir-name,
       86         l_name LIKE streenode-name,
       87         l_object LIKE euobj-id,
       88         l_area LIKE rs38l-area,
       89         l_namespace LIKE rs38l-namespace.
       90
       91   CALL FUNCTION 'FUNCTION_INCLUDE_SPLIT'
       92     EXPORTING
       93       complete_area = p_area
       94     IMPORTING
       95       namespace     = l_namespace
       96       group         = l_area
       97     EXCEPTIONS
       98       OTHERS        = 6.
       99   CONCATENATE l_namespace 'SAPL' l_area INTO l_prog.
      100   CONCATENATE l_namespace 'L' l_area 'UXX' INTO l_incl_uxx.
    >>>>>   UPDATE progdir SET edtx = space WHERE name = l_incl_uxx AND state = 'A'.
      102
      103 * Hier Michael rufen
      104   CALL FUNCTION 'RS_DELETE_PROGRAM'
      105     EXPORTING
      106       program            = l_prog
      107       with_includes      = 'X'
      108       suppress_popup     = 'X'
      109       skip_progress_ind  = skip_progress_ind
      110     EXCEPTIONS
      111       enqueue_lock       = 1
      112       permission_failure = 2
      113       reject_deletion    = 3.
      114
      115   IF sy-subrc = 0.
      116     PERFORM ed_delete_function_pool_new(sapms38l)
      117                                     USING p_area
      118                                     CHANGING sy-subrc.
      119
      120     PERFORM delete_rest_of_group USING p_area.
    Edited by: ajaybachchas on Jun 1, 2010 9:23 AM

    Hey Guys,
    For some reason, the problem automatically got resolved. First I check STXFADMI table to find entry of the FM against that smartform. When I punched the FM name of the smartform in SE37, it repeatedly said "FM does not exist". But the entry for that FM is present in the STXFADMI table. Hence I started debugging SE37 after entering the FM name. To my surprise, at the end the FM was displayed !!! After that I went to the smartform & activated, again surprised....it got activated in a flash !!!
    Can anyway justify this mystery ?
    Ajay.

  • Smartform upload problem (within same Version)

    i have download smartforms from 4.7 first and than uploading it in same 4.7 but error occurs as below:
    first:  "A serious error has occurred
    The transaction had to be terminated".
    than second: Internal error (illegal structure of data storage)
    Message no. SMARTFORMS002.
    i can uplodad smartform successfully than and check also successfully,
    but while i do final activation it causes above error.
    what can be problem, is due to smartforms style problem, but i tried removing all style of text elements, thought it creat that errors,
    if any can knhow how to upload smartform successfully and solve above error.
    regards,

    L.S.
    I just encounter a similar error when activating a smartforms. I had made some changes, maybe by copy nodes through memeory into another smartforms and/or deleting one %GRAPHICS1 and making another.... smartforms got confused somehow and gave me an abort error 002.
    I debugged the coding of activating smartforms and found out that ( in my case ) sap coding tries to insert duplicate entries in table stxfobjt.
    Here is the part of coding where you can put your breakpoint and adjust the internal table tobjt if you have the same problem.
    I made the line  insert stxfobjt from table t_objt.  BOLD ( in plain text with * : it s  not a remarked coding line )
    SAPLSTXBX                      / LSTXBXU36
    FUNCTION                       / SSF_SAVE_FORM      
    Speichern der Tabellen
      if i_active = space.                         " gesicherte Fassung
        export t_ntokens t_objt t_ltext t_noltext
               to database stxfconts(xx) id i_formname.
      else.                                        "     aktive Fassung
        delete from stxfobjt where formname = i_formname.
        try.
          insert stxfobjt from table t_objt.
        catch cx_sy_sql_error into l_exception.
          get reference of t_objt[] into l_dref.
          raise exception type cx_ssf_fb
                exporting textid     = cx_ssf_fb=>err_on_insert
                          table_dref = l_dref.
        endtry.
        perform save_ltext using i_formname t_ltext.
        export t_noltext t_ntokens unchecked = i_header-unchecked
               to database stxfcont(xx) id i_formname.
        delete from database stxfconts(xx) id i_formname.
      endif.
    Good luck all with debugging SAP's bugs
    Regards,
    Edwin Glaser
    doubleclickyourprogrammer [at] sap4u.nl

  • Smartform upload problem

    i have download smartforms from 4.7 first and than uploading it in same 4.7 but error occurs as below:
    first:  "A serious error has occurred
    The transaction had to be terminated".
    than second: Internal error (illegal structure of data storage)
    Message no. SMARTFORMS002.
    i can uplodad smartform successfully than and check also successfully,
    but while i do final activation it causes above error.
    what can be problem, is due to smartforms style problem, but i tried removing all style of text elements, thought it creat that errors,
    if any can knhow how to upload smartform successfully and solve above error.
    regards,

    i have tried deleting one by one elements and found that problem in address element,
    i have just delete it and active it that it got activated,
    and again after deletion i have put sam variable in address element for displaying adress dynamicaly and set length and width all same that it fot activated!
    than what the problem at first time activation?
    is there any runtime conflict or what?
    regards,

  • Can you help me with FontExplorer font activation problems?

    Anyone know how to solve a font activation problem I am having with FontExplorer 4.2? I am on a new mac with new fonts, I am using Maverick with Adobe CS6. With my new mac I bought the latest version of FontExporer Pro X 4.2. This program is having trouble with font activation in all my Adoble suite apps including Indesign. Here is what I am seeing:
    1. The font activates, but the Adobe app does not recognize that it is active. If I go back to Font Explorer and deactivate manually, then re-activate manually. The adobe app might then recognize it. Sometimes it still doesn't. But this does not stay permanently, as soon as I do a restart I have to go through this process again. I see this more often with the User system fonts, but a few times with my regular fonts.
    2. Other times, such as in Indesign, I go to open the file and the file stalls and doesn’t progress while it is trying to activate the fonts.
    3. Another time I have seen after an illustrator file is opened the fonts aren't recognized as being opened and the text goes blank on the page.
    4. In all adobe apps, if I go to use "replace font" on the missing fonts (even though they are turned on) the "replace font" menu only shows the basic system fonts, it won't show me the other fonts turned on.
    I have seen these issues with both formerly created files and fresh new files.
    I have tried the following based on feedback from Font Explorer staff:
    Refresh your Spotlight database
    1. Quit all applications other than FontExplorer X
    2. Choose Tools > Refresh Spotlight Database
    Clean your font caches
    1. Quit all applications other than FontExplorer X 2. Choose Tools > Clean Application Font Caches (check all available checkboxes)
    3. Choose Tools > Clean System Font Caches (requires restart)
    Still after trying this multiple times, the errors continue and even get more random.
    I have also tried this based on their feedback:
    go to FONTEXPLORER X PRO -> PREFERENCES -> ADVANCED and make sure that "Automatically deactivate fonts which have not been activated by the system" is NOT set to never.
    Then click on TOOLS and clean all font caches. Then reboot the system.
    The auto-activation is using a new Apple technology (called Core Text), which unfortunately does not work correctly with some of the Adobe and Quark applications when keeping the fonts permanently activated. We are currently working on an update, and the next version of FontExplorer X Pro will fix this issue.
    This has also not work. Can anyone help me?

    Here is the official work-around for this problem.
    1. Locate "FontExplorer X Pro.app" in Applications
    2. Right-click on "FontExplorer X Pro.app" and select "Show Package Contents"
    3. Navigate to /Contents/Helpers/
    4. Double-click "FontExplorerXLauncher-3.app" or right-click and "Open" to launch it manually. This is needed only once, afterwards the plugins will work normally.
    Please make sure you open the version with the "-3" suffix, the other one does not fix the problem.

  • DC Activation Problem in CBS

    Hello,
    I am facing DC Activation problems in CBS.
    - We have two DC utils and config. The config DC uses utils DC and everything is working fine locally
    - Today we are migrating these local projects in NWDI.
    - I created new DCs in NWDI and copied the SRC folder. Did all required steps for migration, built locally and it works fine.
    - I then checked in utils and activated the same in NWDI, its working fine.
    - I then defined the dependency from the active workspace and everything is still fine.
    - Now I checkin the src of config DC and build the same. Here the problem arises. The Build Fails
    - Checked SDN and can see lot of people facing this problem but there is no solution.
    Any pointers to solve this problem will be helpful
    Regards,
    Shubham
    Here is the problematic area in log:
         [wdgen] [Info]    Generating packages/com/arteriatech/ppc/uivisibilityws/model/Scrvar_Fstat.java
         [wdgen] WARNING: Metadata of component UIVisibilityComp is not valid! ComponentUsage "//WebDynpro/Component:com.arteriatech.ppc.uivisibility.comp.UIVisibilityComp/ComponentUsage:HandleExceptionCompInst", Role "UsedComponent": A minimum of 1 object(s) is required
         [wdgen] [Error]   com.arteriatech.ppc.uivisibility.comp.UIVisibilityComp --> Component UIVisibilityComp: Has invalid component usage 'HandleExceptionCompInst'
         [wdgen] [Error]   com.arteriatech.ppc.uivisibility.comp.UIVisibilityComp --> Component UIVisibilityComp [HandleExceptionCompInst]: Component usage has no used component
         [wdgen] [Error]   com.arteriatech.ppc.uivisibility.comp.UIVisibilityComp --> Component UIVisibilityComp [ValidationCompInst]: Component usage has no used component
         [wdgen] [Info]    Catching throwable null
         [wdgen] [Info]    com.sap.webdynpro.generation.ant.GenerationAntTaskError

    Problem Solved.
    I removed the utils DC from my client. Also deleted the folder from the workspace. After this I created the project from the Dev Config perspective again. I was surprised to see there is no component in my utils DC and thats why the problem was there.
    I again copied all the src folder in the workspace and refreshed the DC. Now it locked all the source in the activity. I checked it in and repeated the above excercise. This time all the source code was there.
    I deleted the dependency in the config dc and created again from active workspace(although now I realize it was not required) and checkedin and activated.
    Hurray!!! It got activated.
    Regards,
    Shubham

  • WHAT THE HELL IS GOING ON? Activation problem 194:100

    What the ihell is going on?
    I have been burdened with activation issues for weeks - see my previous thread. I have had no response here from Adobe about how to fix it. Please don't say this is a 'user to user' forum. It isn't a 'U2U' forum when Adobe state this is the first place we should look!
    Now, no CC program will run owing to something called 'Activation problem 194:100'.
    Yes, I have logged out. Yes, I have rebooted. Yes, I have deactivated 'more than 2 machines'. Why should I have to repeatedly click to 'deactivate 2 previous activations' when there has NEVER been more than one activation?
    Adobe not only make me look a laughing stock in the classroom but this constant issue that has been going on for weeks now subliminally tells students Adobe software is useless!
    When will I be able to use CC again? I am paying for it remember!!!!!!!!!!!!!!!!!!!!!!

    Hello Rajshree,
    Welcome to Adobe Forum.
    CC has only EVER been activated on ONE PC.
    If you look at http://forums.adobe.com/message/6198690#6198690 you'll see (like many other users) I have to constantly sign in and reactivate. It is probably this that is causing the multiple activations.
    However, to reiterate, CC is only running on ONE computer. It has not at any time been activated on more than the same PC. One activation - one PC.
    So, the suggestion of waiting a few hours (if the prog won't activate / run) is less than adequate. Like everyone else, I pay to have it running 24 hours a day - every day.

  • Flash MX Professional 2004 Activation Problems

    I am having trouble activating Flash MX Professional 2004. I have had the product for many years, but it is asking again to be reactivated, probably because I have moved the vmWare virtual machine on which it is installed to a new host computer.
    I have learned that the old Macromedia activation servers are no longer available, and have tried using the information provided by http://helpx.adobe.com/x-productkb/policy-pricing/macromedia-legacy-activation-error.html. But that only activates me to a non-professional version. I need to use features in the Professional version.
    Is there a serial number available for Flash MX Professional 2004?

    OK, I have got my problem sorted.
    After a second call to UK customer service, I was e-mailed a serial number that they said was for Flash MX 2004 Professional. However, it didn't work with my version! My version is 7.2, and the original serial number of my product starts PFD700. The serial number given by Adobe is PFD800-00466-08280-86965. Maybe the 800 means its for a later version, don't know, but my version does not accept this as a valid serial number.
    A third call to try to get a PFD700 serial number got me a brick wall again, they insisted that was the only serial number for MX 2004 Pro they had. At this point I followed sinious's suggestion and asked to talk to a supervisor. They were on the phone, and I was promised a call back. I'm still waiting.
    So I hunted a bit harder with Google and eventually found a site that gave me a serial number. The use of that unlocked the Professional features of my version, and I'm up and running again.
    Thanks for your contributions guys, you've both helped. I agree with sinious's critism of moccamaximum, and wouldn't normally go to sites of dubious provenance for help. But after being exhausted by my efforts to get help from Adobe - who to be fair nearly got there in the end - I went hunting and found something that solved my problem. After all, Adobe themselves are publishing activation-free serial numbers.
    I've given the serial number I got from Adobe, it may help others who experience activation problems in the future.
    But I'll follow sinious's advice and not give out the serial number or details of the website I got it from. It wasn't very hard to find.

  • Nokia lumiya 820 music activation problem

    I have music activation problem, how to solve them ? when I start nokia music then display massage Activation problem. This problem from begining from purchase the mobile, so once I had close the nokia account and then reopnen the same account. I have not install this account any other mobile. So please give me solution for this problem.

    DineshRamolia,
    Welcome to Nokia Discussions!
    Steps on how to activate Nokia Music for Windows Phone is located on this page at http://www.nokia.com/in-en/support/product/nokia-music/userguidance/?action=singleTopic&topic=GUID-D...
    If the problem still persists, I suggest you to contact Nokia Support in your country.

  • HT4623 i have sim activation problem in my i phone after updating

    i have sim activation problem in my i phone after updating

    If the phone was unlocked by anyone other than Apple or the carrier it was locked to (that is, unlocked by hacking) then it will become locked to the original carrier when you update it.

  • I am having activation problem please guide me

    i am having activation problem and the error is repeating again and again

    Read https://discussions.apple.com/thread/4868797?start=0&tstart=
    Has your phone been jailbroken?

  • Activation problems with ipad 2 wifi gsm

    i have been having activation problems with ipad 2 ever since it was launched in sptemeber 2013. its gets stuck on server busy try later or try using itunes. even with itunes it does not activate. went to a apple reseller. he tried updating it through some DFU mode but did not go through. now he says that the ipad will have to be sent to US for repairs. any help or advise from the users ? thanks

    I have the same problem.I hope somone comes up with a solution or it is fixed in the ios 7.1 update

  • Activation problems with iPhone 5

    Has anyone had activation problems with iPhone 5 today?? is there any kind of trouble with itunes and wireless activation??

    I have unlocked and used iphone 5's before. Never had this problem.
    When I put my tmobile SIM in it;ll say no service then go back to the actviation screen after saying "activation required"

  • Activation problem of Illustrator CS2

    Hi, i'm from IT of Brandt Italia S.p.A., we have 4 licence of Adobe Illustrator CS2 installed and actually utilized by users.
    1 pc was broken last week, the hard disk failed and i cannot recover any data.
    I'm installing another pc for the same user with the same programs that he was used on the previous pc, i'm using WinXP
    I'm trying to activate Illustrator CS2 by internet, but don't work.
    I have tryed to activate by phone, also don't work.
    i have see on you site that this version is nomore supported, also the activation is not possible.
    But different years ago i have buyed this version of software, is my rigtht to install and use it, i cannot spend money to buy a new version of the software because i cannot activate it legally.
    surfing to your site, i see this page: https://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2_downloads&loc=it but i cannot download Illustrator CS2 version.
    How i can resolve the activation problem? i cannot install another version, i have 4 users that have to work to same files with the same software version, i have no money to spend to upgrade, i don't care if the software version is old, works well fo me, i don't need any new feature.
    thanks for your help
    Mario Ghidelli from italy

    thanks for reply, but in the page you link, i select Italian language version:
    https://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2_downloads&lo c=it
    and i have an error "Error processing your request, We're sorry, we encountered an error processing your request"

  • New ios 7 activation probleme

    im having an activation probleme in the new update can anyone help?

    All I can say is buyer beware. Lkely you purchased a stolen iPod. The Activation Lock is doing its job.
    This:
    iCloud: Find My iPhone Activation Lock in iOS 7
    says
    How do I check for Activation Lock before purchasing a used device?
    When purchasing an iPhone, iPad, or iPod touch from someone other than Apple or an authorized Apple reseller, it is up to you to ensure that the device has been erased and is no longer linked to the previous owner’s account.
    Follow each of these steps to make sure that you can use the device you purchase:
    Turn the device on and slide to unlock.If the passcode lock screen or the home screen appears, the device has not been erased. Ask the seller to completely erase the device by going to Settings > General > Reset > Erase All Content and Settings. Do not take ownership of any used iPhone, iPad, or iPod touch until it has been erased.
    Begin the device setup process.After choosing a language, choosing a country, and connecting to a network, the device will begin activation. If you are asked for the previous owner’s Apple ID and password, the device is still linked to their account. Hand the device back to the seller and ask them to enter their password. If the previous owner is not present, they can remove the device from their account by signing in to icloud.com/find. Do not take ownership of any used iPhone, iPad, or iPod touch until it has been removed from the previous owner’s account.
    You will know that a device is ready for you to use when you are asked to “Set up your iPhone", “Set up your iPad", or “Set up your iPod” during the device setup process.

Maybe you are looking for