Through Programming how do we execte ff_5 after fpb7 tcodes?

Hi all,
I am using BAI2 file format in ff_5 Tcode after that use a fpb7 for transfer data into payment lot and return lot.
can any one tell me how do i call a second code fpb7 in ff_5 tcode so that it will run automatically.
shall i use a bdc program or user exit. please suggest me as earliest as possible.
Thanks & Regards,
Pranali.

You would make this a little easier if you posted a link to the page.
Most of the jump seems to be some extra padding or margin between the tabs  when you rollover, but I am not able to find it.  Is there any other css that is governing this page? I did remove a couple of <p></p> set of tags you had  and it improved the jump, but it is still there.
If the page is live, run it through the validator http://validator.w3.org/ , fix whatever errors it finds, if you still have the jump, post a link to the page and the issue might get found.
Gary

Similar Messages

  • How to activate or deactivate screen painters element through program?

    i am using module pool programming ,
    i want to activate or deactivate the screen painters elements  through programming how i can do it?

    Hi,
    You can perform active and deactive the fileds in the selection screen using AT SELECTION-SCREEN OUTPUT event. Loop the screen table and modify the content of a screen field inside the loop based on requirements.
    Check this code.
    selection-screen begin of block b1 with frame.
    parameters: p_g1 radiobutton group gp1 default 'X' user-command chk,
    p_g2 radiobutton group gp1.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame.
    parameters: p_gltrp type afko-gltrp modif id g1.
    parameters: p_werks type aufk-werks modif id g1.
    parameters: p_datum type afko-gltrp modif id g2.
    parameters: p_uzeit type aufk-werks modif id g2.
    selection-screen end of block b2.
    at selection-screen output.
    loop at screen.
    if p_g1 = 'X' and screen-group1 = 'G2'.
    screen-active = 0.
    modify screen.
    endif.
    if p_g2 = 'X' and screen-group1 = 'G1'.
    screen-active = 0.
    modify screen.
    endif.
    endloop.
    Also try the below code to get some idea
    report zsample.
    TABLES:lfm1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_lifnr FOR lfm1-lifnr .
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:
    r_asn RADIOBUTTON GROUP rad1 USER-COMMAND uc1 DEFAULT 'X',
    r_ers RADIOBUTTON GROUP rad1 ,
    r_830 RADIOBUTTON GROUP rad1,
    r_850 RADIOBUTTON GROUP rad1,
    r_862 RADIOBUTTON GROUP rad1,
    r_810 RADIOBUTTON GROUP rad1,
    r_820 RADIOBUTTON GROUP rad1,
    r_824 RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECT-OPTIONS: s_bstae FOR lfm1-bstae MODIF ID sd1.
    PARAMETERS:
    p_ekorg TYPE lfm1-ekorg MODIF ID md1,
    p_evcode TYPE edp21-evcode MODIF ID md2,
    p_kappl TYPE nach-kappl MODIF ID md3,
    p_parvw TYPE nach-parvw MODIF ID md4,
    p_kschl TYPE nach-kschl MODIF ID md5,
    p_vakey TYPE nach-vakey MODIF ID md6,
    p_werks TYPE werks_d MODIF ID md7,
    p_bukrs TYPE lfb1-bukrs MODIF ID md8.
    SELECTION-SCREEN END OF BLOCK b3.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF r_asn EQ 'X'
    AND ( screen-group1 = 'MD3' OR screen-group1 = 'MD4'
    OR screen-group1 = 'MD5' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_ers EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD3'
    OR screen-group1 = 'MD4' OR screen-group1 = 'MD5'
    OR screen-group1 = 'MD6' OR screen-group1 = 'MD7'
    OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_830 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_850 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_862 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_810 EQ 'X'
    AND ( screen-group1 = 'MD3' OR screen-group1 = 'MD4'
    OR screen-group1 = 'MD5' OR screen-group1 = 'MD6'
    OR screen-group1 = 'MD7' OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_820 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD3'
    OR screen-group1 = 'MD4' OR screen-group1 = 'MD5'
    OR screen-group1 = 'MD6' OR screen-group1 = 'MD7' ).
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ELSEIF r_824 EQ 'X'
    AND ( screen-group1 = 'SD1' OR screen-group1 = 'MD1'
    OR screen-group1 = 'MD2' OR screen-group1 = 'MD3'
    OR screen-group1 = 'MD4' OR screen-group1 = 'MD5'
    OR screen-group1 = 'MD6' OR screen-group1 = 'MD7'
    OR screen-group1 = 'MD8' ) .
    screen-active = '0'.
    screen-invisible = '1'.
    screen-input = '0'.
    screen-output = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    Regards,
    Chandru

  • How can I allow the application to line through a field that has been locked after being digitally signed?  We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once

    How can I allow the application to line through a field that has been locked after being digitally signed?
    We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once the approved information is entered we line through the proposed field so the data entry clerk won't pick up the wrong information.  However we are receiving an error when attempting to enter data  in the field which we have this edit.  Error property: line through cannot be set because doing so would violate the document permission setting.  any idea how we can get around this issue?

    You can control which fields are locked down after signing by setting up a collection. Then those that are not locked can be changed after signing. If this is not possible, then the line outs must occur prior to signing.

  • HT1498 Horrible experience and the movie kept stalling through iTunes on appletv. Gave up (after paying for it) and ended up renting it through cable provider. Anyone know how to get $ back from apple?!

    Horrible experience and the movie kept stalling through iTunes on appletv. Gave up (after paying for it) and ended up renting it through cable provider. Anyone know how to get $ back from apple?!

    Issues are usually network related
    What is your internet speed? www.speedtest.net
    6mbps is required for instant HD (you can switch to SD in the settings)
    If on wifi try ethernet and www.istumbler.net to rule out interference
    Make sure you're using your ISP's DNS

  • How to create WWWBinaryFileAsset through programming

    Hi, Could anybody provide me steps to create WWWBinaryFileAsset through programming.
    I followed below steps but i am getting error,
    MutableRepository pubRepository = getPublishingRepository();
    // pub repository is pointing to /atg/epub/file/SecuredPublishingFileRepository
    wwwBinaryFileAsset = pubRepository.createItem(filesProperties.getWwwBinaryFileAssetItemDescriptorName());
         if (wwwBinaryFileAsset != null) {
         wwwBinaryFileAsset.setPropertyValue(filesProperties.getFilenamePropertyName(), imageName);
         wwwBinaryFileAsset.setPropertyValue(filesProperties.getParentFolderPropertyName(), parentFolder);
         wwwBinaryFileAsset.setPropertyValue("content", new File("D:\\media\\images\\hmc\\Penguins.jpg"));
         pubRepository.addItem(wwwBinaryFileAsset);
    Thanks,
    Raj

    Hi,
    I am able to create project and adding binary file asset to the project with code as i copy/pasted in this query, after creation, also i am able to see the asset in BCC editor as well.
    I can say asset looks like as it was created in BCC editor, means there are nodifferences in assest properties which created through programming from asset created in BCC editor.
    I am not sure what i am missing. But only the problem is, i am getting the error when deploying project from BCC, error stack trace is,
    /atg/epub/DeploymentServer 14000002:Production:atg.deployment.adapter.DistributedDeploymentAdapter.pollTillDataApplied(DistributedDeploymentAdapter.java:2588) Polling Until Data Appplied
    /atg/deployment/DeploymentManager Starting deployment with id: 14000002
    /atg/deployment/DeploymentManager Executing deployment in LOCAL mode
    /atg/deployment/DeploymentManager item = fileMarker:mark7800001 cause = java.lang.IllegalArgumentException: Negative initial size: -1
    /atg/deployment/DeploymentManager at java.io.ByteArrayOutputStream.<init>(ByteArrayOutputStream.java:57)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileDeploymentCommandImpl.getUncompressedInputStream(FileDeploymentCommandImpl.java:398)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileDeploymentCommandImpl.getInputStream(FileDeploymentCommandImpl.java:470)
    /atg/deployment/DeploymentManager at atg.deployment.file.DeploymentProtocolImpl.sendFileDeploymentCommand(DeploymentProtocolImpl.java:913)
    /atg/deployment/DeploymentManager at atg.deployment.file.DeploymentProtocolImpl.sendCommand(DeploymentProtocolImpl.java:179)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileWorkerThread.runCommand(FileWorkerThread.java:716)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileWorkerThread.processMarkerForAddUpdatePhase(FileWorkerThread.java:441)
    /atg/deployment/DeploymentManager at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:521)
    /atg/deployment/DeploymentManager at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:300)
    /atg/deployment/DeploymentManager message = Deployment Failed time = Wed Jun 20 09:12:50 IST 2012 atg.deployment.DeploymentFailure@93d841 java.lang.IllegalArgumentException: Negative initial size: -1
    /atg/deployment/DeploymentManager at java.io.ByteArrayOutputStream.<init>(ByteArrayOutputStream.java:57)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileDeploymentCommandImpl.getUncompressedInputStream(FileDeploymentCommandImpl.java:398)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileDeploymentCommandImpl.getInputStream(FileDeploymentCommandImpl.java:470)
    /atg/deployment/DeploymentManager at atg.deployment.file.DeploymentProtocolImpl.sendFileDeploymentCommand(DeploymentProtocolImpl.java:913)
    /atg/deployment/DeploymentManager at atg.deployment.file.DeploymentProtocolImpl.sendCommand(DeploymentProtocolImpl.java:179)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileWorkerThread.runCommand(FileWorkerThread.java:716)
    /atg/deployment/DeploymentManager at atg.deployment.file.FileWorkerThread.processMarkerForAddUpdatePhase(FileWorkerThread.java:441)
    /atg/deployment/DeploymentManager at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:521)
    /atg/deployment/DeploymentManager at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:300)
    /atg/deployment/DeploymentManager
    /atg/deployment/DeploymentManager Unexpected error occurred. DeploymentWorkerThread terminated prematurely. atg.deployment.DistributedDeploymentException: Exceeded allowable error count (0)
    /atg/deployment/DeploymentManager at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:626)
    /atg/deployment/DeploymentManager at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:300)
    Thanks.
    Edited by: 938890 on Jun 19, 2012 9:09 PM

  • How to process batch input session through program

    Hi Friends,
    I am getting 5 batch input sessions in SM35,but  I want to process these all sessions through program without going to SM35.
    How it is possible through Program?
    Please Guide me!
    Thanks,
    Yogesh

    Hi,
    It's the report to run the batchinput sessions.
    When you create to B.I. session, you can execute it by transaction SM35 (but it uses rsbdcsub) or rsbdcsub.
    For example you can use it in the same program where you create B.I.:
    Here the code to fill the structures of FI batch input
    standard....
    ...here it creates session...
    SUBMIT RFBIBL00 WITH DS_NAME = VA_FILE
    WITH CALLMODE = CALLMODE AND RETURN.
    ....here it runs session....
    SUBMIT RSBDCSUB WITH MAPPE = P_NAME
    WITH VON = SY-DATUM
    WITH BIS = SY-DATUM
    WITH FEHLER = ' '
    TO SAP-SPOOL
    LIST NAME P_NAME
    LIST DATASET P_NAME
    COVER TEXT P_NAME
    NEW LIST IDENTIFICATION ' '
    EXPORTING LIST TO MEMORY
    AND RETURN.
    regards,
    Shiva.

  • How create the SMQ2 error through program ?

    Hi all,
    How create the SMQ2 error through program ?
    Any idea ... plsease share.
    Regards,
    Srikanth

    Hi juturusrikanth ,
    which one is the SMQ2 error?
    [FAQ's, intros and memorable discussions in the ABAP General Forum|FAQ's, intros and memorable discussions in the ABAP General Forum;
    [How to post code in SCN, and some things NOT to do...|How to post code in SCN, and some things NOT to do...;
    Regards
    Clemens

  • Aperture: after deleting a project (trash) this reappear opening again the program, how solve it?

    Aperture: after deleting a project (trash) this reappear opening again the program, how solve it?

    I have the same issue. When I use fotostream, there will be automatically generated projects for each month. So I deleted all fotos inside the project and now I have empty projects. When I delete them (with or without empty trash), they will reappear after opening Aperture again.
    If I delete them, close Aperture and start iPhoto with the same library, the projects will not reappear, but after the next start of Aperture, they reappear.
    I've tried to put fotos into the project and deleted them with the fotos inside, but this didn't make any difference.

  • How we can open the cd divr through programming?

    Hi,
    How we can open the cd divr through programming?If you know please send me the corresponding information.

    which OS ?
    under linux,
    to open the tray
    eject
    to close the tray
    eject --trayclose
    use it with Runtime.exec()
    Under windows,
    the function mciSendString can be called with jnative
    --Marc (http://jnative.sf.net)                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to inser data in database through programming

    hi
    if some one try to insert data directly in the data base that was displayed through programming then how can database will be updated
    bye

    hi
    thanx 4 ur reply
    but the tutorial is abt manullay changing the database through programming
    but wat if user of the prgram change it and it will be change at the place of the database
    bye

  • How can I allow the apHow can I allow the application to line through a field that has been locked after being digitally signed? plication to line through a field that has been locked after being digitally signed?

    How can I allow the application to line through a field that has been locked after being digitally signed?
    We have multiple sections on a form with some fields being proposed information and other in another section having the approved information. once the approved information is entered we line through the proposed field so the data entry clerk won't pick up the wrong information.  However we are receiving an error when attempting to enter data  in the field which we have this edit.  Error property: line through cannot be set because doing so would violate the document permission setting.  any idea how we can get around this issue?

    HI,
    Kindly post this query in Acrobat forum:Acrobat
    Regards,
    Florence

  • I want to do rpc programming through java how can i do it?

    i want to do rpc programming through java how can i do it? any classes for it? i am not goin to use rmi its an assignment for us in syllabe help is strongly needed

    So, you are in a class. You are a student, your job is to learn something. Unless your instructor has failed horribly in his/her duty, then you are failing in your duty as a student.
    Your lack of even trying hurts me personally as a life-long student, I find your post ill-advised.
    Please, do not post to these forums anymore. Thank you.

  • Error during idoc creation through program?

    hi,
    I hav created a idoc through program it gives status 26.can anyone tell me wat's wrong & how to get status 03??
    Plz reply fast I hav to submit this program today only.
    Rewards will be given to good answer.
    regards,
    hemlata

    hi,
    Actually I hav created my own basic type in which 5 segments.
    1. header data of sales order
    2. item data
    3.text data.
    4. partner fuction.
    5. business partner details.
    I hav released all segment and basic type.
    also I hav created message type for this basic type  and linked also.
    actually,previously there was 4 segment in this basic type  and now we add one new segment ( 5 th one )to this basic type .prior to that my program is running successfully but after adding this segment gives error .I am entering all values in the fields of this segment prefectly.data comes in data recorde but showing status 26.
    regards
    hem

  • How to install Ciscom Connect after setting up the devise

    I have set up my router E1200 v2 with the disc after the direction through live chat as I received error code. Now my router works well but I don't have Ciscom Connect software in my program. I downloaded it from the site and saved it in my folder as an application. Now, how I can install it? As it is 'set up software', when I make it run, it tries to set up but the router has already been set up so it can't complete the setting-up then no software is saved as a program nor no 'ciscom' file is created.
    The software I downloaded was not the right one?
    I can enter Ciscom Connect page as I know the address for directly connection but still I would like to have one as a program which allow me to go to the CC easily.
    Let me know how to install CC software after setting up...
    Thank you! 

    Hello,
    Glad to heard that the issue had been resolved. And thanks for your sharing.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • How can I use aperture after receiving the full adobe suite? It won't allow me to use it.

    How can I use aperture after receiving the full adobe suite? It won't allow me to use it. I receive a dialogue box which states previews are not allowed in  aperture and the application is shut down.

    Aperture is Apples version of Lightroom. This has nothing to do with Adobe. Ask on a Apple forum. You won't find many people here using this program.
    Mylenium

Maybe you are looking for

  • SLD Logical System Name Changes not taking effect in IDOC

    All - I've had to change a logical system name in the SLD, everything appears to be okay but new Idocs are still posting with the old LS name - any suggestions as to where to look for the old name would be most appreciated. Thanks!

  • Having to display only one record using XML tags in XML Publisher

    Hello, I have a query which returns two rows for one particular contract number. Output contains in the following style. ID | Contract_No | Item_Desc | Item_Num | colA | colB | Term_Dur 1 ABC1 Item1 12 Y Y 20 2 ABC1 Item2 13 Y Y 20 the rows returned

  • Please help, simple question about Smart Playlists and Live Updating

    PLEASE for some reason I've never gotten an answer on this. I have a Smart Playlist called "Recently Played" with Live Updating. No matter how I set the parameters, the most recently played *song will ALWAYS appear on the bottom of the list when usin

  • Handling XSD QName types in VC 7.1

    VC Experts, I'm trying to call one of the Service Registry web services (publishServiceDefinitions) but am having problems with correctly passing a value for an element with XSD type QName.  Following is a sample XML payload that works, which was gen

  • Leopard 10.5.2 can't find Canaon driver

    I recently upgraded my wife's G5 iMac to 10.5.2. She has a Canon MP530 connected via usb. The scanner works fine since the Leopard upgrade, but I can't get the printer to work. When I go to the print preferences, it says no printer selected, so I hit