Sapscript problem assignment

hi all.,
    i have a problem with form assignment,i have made complete print program for order quotation and layout. but when i execute from se 38 editor i get the selection screen and after giving the order number i am able to view the output layout but when i assign it in the outtype ba00. its not giving the output. i have even tried making z output type by copying ba00 and assigning print program and layout but when i try issueing output its not showing output. is there any thing else to be done.please help me out with this. urgent

Hi
Since you have designed your own Z Custom driver program with your own selection screen for the Order/quotation and Zscript you can't trigger the Output using Std Output type BA00
This std Output type is triggered with the Std program RVADR01 and with the form RVORDER01
You can copy these program and Script and do changes and attach the Copied program and Script to this output it will be triggered agaon
So means to say that the Output type BAOO is triggered from the Std program (even if you copy this std and attach it will trigger)
But you are using your own designed program with selection screen it is better to run your own program and take the output type.
But if you wants to see/take output type you have to use this std program  and use and attach in NACE tcode or in V/30 Tcode
<b>
Reward points for useful Answers</b>Regards
Anji

Similar Messages

  • Problems assigning BP to a position in the organizational structure

    I tried to assign a bp to a position in the organizational structure,
    but I receive this message "Object cannot be assigned to object CliC
    Agent in the period 21.12.2006 - 31.12.9999".
    Also, I notice that in the screen, the checkbox where i can select for
    the business partner is missing.
    However, I can assign a user to the org structure.
    Before upgrading, it was working. This is the support packages that it was in.
    SAP_ABAP: Level 9
    SAP_BASIS: Level 9
    PI_BASIS: Level 9
    SAP_AP: Level 6
    BBPCRM: Level 6
    After the upgrade to the following,
    SAP_ABAP: Level 10
    SAP_BASIS: Level 10
    PI_BASIS: Level 10
    SAP_AP: Level 7
    BBPCRM: Level 7
    The assigning of business partner to a position no longer works.

    Hi,
    we're facing exactly the same problem, it was all going well until we went on production.... we applied note 997009 which results in a different error... did you manage to find a solution yet ?
    Regards,
    Jacob.

  • Box in main window (sapscript) problem.

    Hi, all.
    I meet a weird problem....
    I have 2 pages form which have 2 same MAIN window and of course their source code is same one. But when I run the output form, I found that one of the page which main window's box is disappear, while the other page no problem.
    How come like this? Should be the box appear in both MAIN window, right? Hope someone can guide me.
    Thanks in advance.

    Boxes in the main window only get printed in the first page, unless you include them in an element and explicitly call the, But of course that's not the way to go.
    Every other window in the same page which has content that's not inside one element gets printed every page. So to solve your problem, declare another window (perhaps called BOXES) with the appropiate dimmensions and define in it the boxes you need. Replicate this BOXES in the other pages (if you use different page formats inside the sapscript) or leave it in the First page (if it's the only one in the sapscript). The boxes will now print in every page.

  • SAPSCRIPT problem in printing on Dot Matrix Printer

    Hi!
    I have a SAPSCRIPT Form with page format INCH12. The SAPSCRIPT output is displayed properly in print preview. But when it is sent for printing on the Dot matrix printer the first three lines of the second page are printed on the first page at the bottom. Paper size is also 12INCH. I tried adjusting all the windows and putting blank lines. I also gave /: NEW-PAGE command. But it did not solve the problem.
    I am not able to identify where exactly the problem is? Is it in the SAPSCRIPT or in printer settings.
    If anyone had faced similar problem and was able to solve it then please reply.

    Hi
    if it is possible try to print the same in another printer and confirm the problem
    no doubt certain printers may create such problems while printing the output
    so to confirm the problem try with other printer.
    Reward points for useful Answers
    Regards
    Anji

  • SAPSCRIPT problem - skipping lines in an element

    Hello,
    I am having a weird problem with a SAPSCRIPT form that it is not executing an ELEMENT(/E) completely. When I debug it, I clearly see executimg only the first line and then it skips the rest of the code. I have ensured that I do not have any ENDIF's missing or any syntax errors. I also changed in the ABAP program(print program) to use another ELEMENT and it is also skipping the second and subsequent lines. I am not sure if it a problem with the print program or the SAPScript form.
    Here is my ABAP code:
    Init the barcode window
                CALL FUNCTION 'WRITE_FORM'
                EXPORTING
                  window  = 'BARCODE'
                  element = 'INIT_BARCODE'
                EXCEPTIONS
                  window  = 1
                  element = 2.
    Here is my SAPScript code:
    /E INIT_BARCODE
    /:  DEFINE &G_XPOS1& = &ZBAR-G_XPOS1&
    /:  DEFINE &G_XPOS2& = &ZBAR-G_XPOS2&
    /:  DEFINE &G_XPOS3& = &ZBAR-G_XPOS3&
    /:  DEFINE &G_XPOS4& = &ZBAR-G_XPOS4&
    /*  Print startcode
    /:  POSITION XORIGIN '0.2' CM YORIGIN '28.4' CM
    /:  IF &Y2OF5-C01& = '1'
    /:  BOX XPOS &G_XPOS1& TW WIDTH 0 TW HEIGHT 6 MM FRAME 8  TW INTENSITY 100
    /:  ENDIF
    /:  IF &Y2OF5-C02& = '1'
    /:  BOX XPOS &G_XPOS2&  TW WIDTH 0 TW HEIGHT 6 MM FRAME 8  TW INTENSITY 10
    /:  ENDIF
    /:  IF &Y2OF5-C03& = '1'
    /:  BOX XPOS &G_XPOS3&  TW WIDTH 0 TW HEIGHT 6 MM FRAME 8  TW INTENSITY 10
    /:  ENDIF
    /:  IF &Y2OF5-C04& = '1'
    /:  BOX XPOS &G_XPOS4& TW WIDTH 0 TW HEIGHT 6 MM FRAME 8  TW INTENSITY 100
    /:  ENDIF
    Any ideas on this problem?
    Thanks,
    Nick F.

    Yes, you are correct. I fixed the definition that I had an error and it is as follow:
    TABLES: j_1ai02, y2of5, zbar.
    DATA:
          g_xpos1(4) TYPE n,
          g_xpos2(4) TYPE n,
          g_xpos3(4) TYPE n,
          g_xpos4(4) TYPE n,
          g_xpos5(4) TYPE n,
          g_xpos6(4) TYPE n,
          g_xpos7(4) TYPE n,
          g_xpos8(4) TYPE n,
          g_xpos9(4) TYPE n,
          g_xpos10(4) TYPE n,
          g_xpos11(4) TYPE n,
          g_xpos12(4) TYPE n,
          g_xpos13(4) TYPE n,
          g_xpos14(4) TYPE n,
          g_tw_esp(2) TYPE n.   "TYPE i VALUE 12.
    DATA: w_n        TYPE i,
          w_digitos  TYPE i,
          w_resto    TYPE i,
          w_pos      TYPE i,
          w_nro(2)   TYPE n,
          w_barcode(44) TYPE n.
    But, I am still getting the warning in the SE71 check and skipping the lines of the ELEMENT section...

  • Problems assigning policy to roles

    Hello,
    I am trying to assign a simple policy that I have created to a role that I have created.
    I am following the instructions from the administration guide.
    In the final step,
    From the View UserManegement I choose the role that I want to apply the policy and I click on assign. It gives me a choice of policies that I can choose.
    Here is the problem: When I choose the policy and hit assign button, nothing happens !!!
    Any ideas on what I am doing wrong ?
    Thanks.
    Murat

    check your amSDK log. Looks like you don't have some required indexes in your directory.

  • Problems assigning places in photo 11

    I am having problems adding place location to photos. Using iphoto11. I click on "assign a place" and the google map comes up but no way to create or select a new place for this photo. I could do it fine in iphoto 09.

    sorry. i finally figured it out.

  • Problems assigning different locations to different Network Names/AirPorts

    At my office, I have two different networks:
    1. AirPort where I need to use a static IP setting on a my Mac.
    2. Airport where I need to use a DHCP.
    I would like to assign a network name (AirPort A) to one Location A and another network name (Airport B) to Location B.
    Previous to the Intel-Chip Macs this was no problem at all. Then the Intel-Chip Macs came which had 10.4 installed, and it was no longer possible to assign certain network names to certain network locations. However, with 10.5 this problem was solved until most recently, when I realized on a few of my Macs that it would not switch to the other AirMac, even when I switched the locations. The proper network names are assigned to each network locations.
    It is likely a problem with Keychain, but I even tried to reset my Keychains and also erased the complete "login" Keychain and created a new "login" Keychain. But I am still experiencing the same problems.
    Has anyone experienced the same problems and found a way to solve this problem.

     > We would like to setup up a group policy and apply it to the users who
     > are in the remote locations with the RODC.
    Link your GPO to the respecitve Active Directory Sites.
     > We would also like to have a
     > different group policy setup for a particular group in our headquarters.
    Read about Security Filtering.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Problem assigning Essbase Security filters in Shared Services

    We recently upgraded Planning/Essbase to System 9 version 931 in Test. Everything went smoothly except for few users Security didn't migrate properly.
    In Shared Services, it shows that user has access to Planning & Native Essbase Applications. But in Essbase, only Planning Application access is shown.
    Also when I try to apply security filters for these users in Native Essbase Applications (in Shared Services), I don't see these particular users.
    There is no problem with Planning security, except when I refresh Security from Shared Services in Analytic Admin Console it wipes out Planning Application access in Essbase.
    For other users there are no issues. Only for few users this is the problem. I have tried to deprovision user & provision back, but no use.
    Please Help

    Essbase/Planning security is multi tiered. In Shared Services you setup your groups. You provision your groups with adequate security access. Depending on whether you have updated a cetain .css file(to fix bug) you may have to assign the read, write calc access to the group not just calc, but all three if your users need the access to actually, read, write & calc. of need user to just read & write etc... then you have to go to EAS refresh, run maxl script to assign environment access to user, go back to shared services go into projects assign any needed access to calc & filter groups and essbase is setup. For planning you also have to go to workspace and migrate identities within the security setup for any of your dimensions. this comes into play when adding or removing users as filters are created in planning workspace. I just learned this from one good tech that helped me setup & remove users as I had issues getting them in and out of the system..Now to move on to actually getting security reports that make sense for planning with the associated access. If anyone has the maxl code let me know.

  • Ringtone problem, assigned ringtones not working

    I realized that the phone would not ring assigned ringtones. I made numerous phone calls to tech support and spent hours with them troubleshooting this problem. We tried everything
    When your ATT account has caller ID block, in order to unblock the number so people can see your phone number you have to enter *82 in front of the phone number in contacts. In one of the first conversations I had with tech support I believe I mentioned this and was told that it should not cause a problem.
    _**It does,_ if there is anything at all besides the phone number under the contact the phone will not recognize that the number has an assigned ring tone.
    Also if you have the same number in contacts twice for any reason, (maybe a contact and under favorites) you have to delete the duplicate or assign the desired ringtone to all contacts. Otherwise the phone will ring the default ringtone, not the one you assigned.
    I hope this helps someone not to have to spend hours workig on this problem

    Hey there Taralynn7,
    It sounds like you have assigned ringtones to some of your contacts, but the customized tones aren't playing, and instead you get a default ring when they contact you. Any number of things can cause that issue, so I would recommend starting by quitting all the open apps on your phone, and then restarting it:
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Problems Assigning Mobile components

    Hi!
    Can anyone help me with the problem I have on my MWA configuration ?
    I can see my Devices. Device maintenance --> Device name and I saw it. But I do not have the option delete to erase it if I wan to do it.
    When I want to create a parameters set I do not have the boton create available
    If I want to create a Device configuration I have not available the following options available: <create>  <Delete> <copy>. As well  as the options <Add/Remove> <Edit Secuence> <Save Secuence> that have to be active on the Mobile component option on the bottom part of the Device Configuration Screen.
    Because of that I can not assign any component to a Mobile Device.
    Thank you so much
    Best Regards,

    Hi!
    The problem was solved assigning the following role to the user J2EE_ADMIN that we were misssing on the Java part.
    SAP_JAVA_NWMOBILE_ADMIN_SUPER
    Thank you, any way
    Xiomara

  • A sapscript problem!,pls give me help.

    hi,everyone.
    when I maintain a sapscript form, I changed a main window ,then when the program executed ,error:element MAIN window MAIN is not defined for form zsds022. 
    and I don't know how to changed to the previous correct one .
    if angone know this ,pls tell me about the details step to do it .
    how can I solve this problem? I know little about sap script form .
    pls help me ,I will appreciate .

    Ok, I understood your problem, you are getting confused with MAIN window and MAiN element as both having the same name
    Let me tell you stepwise..
    1) goto SE71, give your form name, Change
    2) Click on windows you will see a window by name MAIN.
    3) now double click on MAIN window and press F9(before doing this goto menu Settings--> form Painter and see GRAPHICAL PC EDITOR  unchecked.)
    4) now once you press F9 you will see two text boxes in right hand text box see any text MAIN exists or not, if exist on the left handside it  should be like this /E
    i.e it should look like this... save activate it will work
    /E  MAIN
    If you don't find MAIN in Righthand side... add MAIN on FIRST LINE by creating new line like
    /E MAIN
    Regards,
    Sairam

  • Layering Problem:Assigning multiple objects to a layer removes previous layering

    HI!
    I have a massive problem.
    Let's say I have 5 objects, object "1" to object "5".
    If I assign object "1" to layer "a", object "2" to layer "b", and so on until object "5"
    to layer "e", and then assign all 5 objects to layer named "all", here's what happens:
    1) objects "2" till "5" are removed from layers "b" till "e"
    2) All 5 objects are placed in layers "a" and "all"
    What I want is for them to stay in their respective layers AS WELL as their newly appointed layer(s). This problem does not occur if I assign
    objects 1-5 one by one into layer "all".
    I'm doing something more complicated with 100 shapes and a few hundred connectors and assigning them one by one is just not acceptable.
    Is there a way I can fix this? I couldn't find anything online...

    HI!
    I have a massive problem.
    Let's say I have 5 objects, object "1"
    to object "5".
    If I assign object "1" to layer "a",
    object "2" to layer "b", and so on until object "5" to layer "e", and then assign all 5 objects to layer named "all", here's what happens:
    1) objects "2" till "5" are
    removed from layers "b" till "e"
    2) All 5 objects are placed in layers "a"
    and "all"
    What I want is for them to stay in their respective
    layers AS WELL as their newly appointed layer(s). This problem does not occur if I assign objects 1-5 one by one into layer "all".
    I'm doing something more complicated with 100
    shapes and a few hundred connectors and assigning them one by one is just not acceptable.
    Is there a way I can fix this? I couldn't find
    anything online...

  • Problem assigning internet user Role through portal

    Hi All,
    Please could someone help me with the following:
    I am creating a registration process that creates a new CRM Business partner with contact person and internet user roles. When i run the Bapi from with in CRM everything works fine however when i run my jsp dynpage application and call the same bapi, the internet user that i create does not have any of the logon details or roles. Does anyone know why this is? i am using the same user when running in crm and the portal.
    Many thanks in advance
    Calvin

    Hi Sunil,
    Thanks for your reply. answers to your questions:
    1. Yes, all portal users are maintained and have the same roles as CUA users. Portal authenticates against CUA.
    2. Yes the user is created correctly on the backend. i have created a BAPI that creates users, BP's and assigns roles. This Bapi works perfectly when run in CRM but as soon as it is accessed via the portal the internet user role does not have all the required information.
    Many thanks
    Calvin

  • Please Help. Problem Assigning Datasource

    I created a test Master data Infoobject abc_xxx and loaded data and then after testing deleted it. Now when I am trying to assign  a new datasource to an existing Infosource from where I loaded data into the test Infoobject , I am getting error message that there there is no InfoProvider or data target named abc_xxx.
    Could anybody please help me out here?
    Thanks in advance.

    I am getting error message that there "there is no InfoProvider or data target named abc_xxx(name of Infoobject)"
    If you are not trying to use this infoobject, the above message should not appear at all.
    Please follow the following steps to assign a source system.
    1. Goto Source Systems and check the source system u want to use is in Active state.
    2. right-click on ur InfoSource -> Assign Datasource
    3. from the drop-down, selet ur source system
    4. choose a datasource if the source is r/3
    5. modify/change transfer structure/comm structure/transfer rules
    6. save n activate.
    Hope this helps.

Maybe you are looking for

  • Purchase order and agreement problem

    Hi gurus, I have a problem that i've come up with going though event trace on my DEV test system. Although, simulation of WF's are fine and all bindings and syntax checks are without error or warnings, trace is the only place i've found that somethin

  • BB ID and Cookies?

    Hi i can't get into my blackberry id A message pops up saying enable cookies? I've asked loads and was told to go to >Options > Browser Configuration > Browser Identification and change settings Problem is i go to do that and when i click on options

  • MB5S shown 2 duplicate item line but Actual PO only have one item line

    Dear Guru, I'm running MB5s to check the GR IR balances, i realized there is a PO which only have one item line but in the MB5S report, it shown 2 duplicate line. First line shown the Order qty 3000, Qty received 3000, and Qty invoiced 3000 which loo

  • Web services wizard hangs

    Hi, I am trying to create a stub/skeleton for an external wsdl file. I click the next button and the tool just hangs. Eventually it comes back with "cannot locate wsdl file". I have tried with proxy turned on and off but I get the same result. Howeve

  • First two digits

    Hi there! I manage a directory of former students of my school. Users who want to register must indicate in the form the year they entered the school. Alas, some of them enter bad years, like "0972" instead of "1972" or "0674" instead of "1974" !!! I